HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: //home/arjun/projects/buyercall_forms/buyercall/deploy/dumps/stage.sql
--
-- 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: 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';


SET search_path = public, pg_catalog;

--
-- Name: billing_types; Type: TYPE; Schema: public; Owner: -
--

CREATE TYPE billing_types AS ENUM (
    'partnership',
    'account',
    'invoice'
);


--
-- Name: duration_types; Type: TYPE; Schema: public; Owner: -
--

CREATE TYPE duration_types AS ENUM (
    'forever',
    'once',
    'repeating'
);


--
-- Name: label_types; Type: TYPE; Schema: public; Owner: -
--

CREATE TYPE label_types AS ENUM (
    'login',
    'signup',
    'billing',
    'email',
    'request',
    'other'
);


--
-- Name: role_types; Type: TYPE; Schema: public; Owner: -
--

CREATE TYPE role_types AS ENUM (
    'admin',
    'agent',
    'guest',
    'member',
    'partner',
    'sysadmin'
);


--
-- Name: status_types; Type: TYPE; Schema: public; Owner: -
--

CREATE TYPE status_types AS ENUM (
    'unread',
    'open',
    'contacted',
    'closed'
);


--
-- Name: subscription_status; Type: TYPE; Schema: public; Owner: -
--

CREATE TYPE subscription_status AS ENUM (
    'inactive',
    'active',
    'suspended',
    'closed'
);


--
-- Name: foo(); Type: FUNCTION; Schema: public; Owner: -
--

CREATE FUNCTION foo() RETURNS integer
    LANGUAGE plpgsql
    AS $$ -- here start procedural part
   DECLARE counter int;
   DECLARE cur_count int;
   DECLARE ls record;
   BEGIN
     counter := (select count(*) from leads AS L where L.notes <> '');
     cur_count := 0;

FOR ls IN select * from leads AS L where L.notes <> '' LOOP

insert into lead_notes(created_on, user_id, lead_id, text, is_enabled)
values (ls.updated_on, ls.user_id, ls.id, ls.notes, TRUE);

update leads
set notes = ''
where id = ls.id;

cur_count := cur_count + 1;

END LOOP;

     RETURN cur_count;

     
   END;
$$;


SET default_tablespace = '';

SET default_with_oids = false;

--
-- Name: agent_groups; Type: TABLE; Schema: public; Owner: -; Tablespace: 
--

CREATE TABLE agent_groups (
    group_id integer NOT NULL,
    agent_id integer NOT NULL
);


--
-- Name: agent_schedules; Type: TABLE; Schema: public; Owner: -; Tablespace: 
--

CREATE TABLE agent_schedules (
    created_on timestamp with time zone NOT NULL,
    updated_on timestamp with time zone NOT NULL,
    id integer NOT NULL,
    agent_id integer NOT NULL,
    day integer NOT NULL,
    available_from character(8) DEFAULT '00:00:00'::bpchar NOT NULL,
    available_to character(8) DEFAULT '00:00:00'::bpchar NOT NULL,
    is_active boolean NOT NULL,
    partnership_account_id integer NOT NULL
);


--
-- Name: agent_schedules_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

CREATE SEQUENCE agent_schedules_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


--
-- Name: agent_schedules_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE agent_schedules_id_seq OWNED BY agent_schedules.id;


--
-- Name: agents; Type: TABLE; Schema: public; Owner: -; Tablespace: 
--

CREATE TABLE agents (
    created_on timestamp with time zone NOT NULL,
    updated_on timestamp with time zone NOT NULL,
    id integer NOT NULL,
    user_id integer,
    firstname character varying(128) DEFAULT ''::character varying NOT NULL,
    lastname character varying(128) DEFAULT ''::character varying NOT NULL,
    title character varying(128),
    email character varying(254) DEFAULT ''::character varying NOT NULL,
    phonenumber character varying(20) DEFAULT ''::character varying NOT NULL,
    mobile character varying(20) DEFAULT ''::character varying NOT NULL,
    extension integer,
    department character varying(128),
    timezone character varying(50) DEFAULT 'US/Central'::character varying NOT NULL,
    all_hours boolean,
    partnership_account_id integer NOT NULL,
    is_group boolean DEFAULT false NOT NULL,
    description character varying,
    deactivated_on timestamp without time zone,
    is_deactivated boolean DEFAULT false NOT NULL
);


--
-- Name: agents_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

CREATE SEQUENCE agents_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


--
-- Name: agents_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE agents_id_seq OWNED BY agents.id;


--
-- Name: alembic_version; Type: TABLE; Schema: public; Owner: -; Tablespace: 
--

CREATE TABLE alembic_version (
    version_num character varying(32) NOT NULL
);


--
-- Name: api_tokens; Type: TABLE; Schema: public; Owner: -; Tablespace: 
--

CREATE TABLE api_tokens (
    id integer NOT NULL,
    created_on timestamp with time zone,
    updated_on timestamp with time zone,
    api_token_hash character varying(60) NOT NULL,
    is_active boolean DEFAULT true NOT NULL
);


--
-- Name: api_tokens_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

CREATE SEQUENCE api_tokens_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


--
-- Name: api_tokens_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE api_tokens_id_seq OWNED BY api_tokens.id;


--
-- Name: audio_urls; Type: TABLE; Schema: public; Owner: -; Tablespace: 
--

CREATE TABLE audio_urls (
    created_on timestamp with time zone,
    updated_on timestamp with time zone,
    id integer NOT NULL,
    inbound_id integer,
    widget_guid character varying(128),
    whisper_message_type character varying(128) NOT NULL,
    audio_url character varying(256) NOT NULL,
    is_enabled boolean DEFAULT false NOT NULL
);


--
-- Name: audio_urls_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

CREATE SEQUENCE audio_urls_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


--
-- Name: audio_urls_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE audio_urls_id_seq OWNED BY audio_urls.id;


--
-- Name: block_numbers; Type: TABLE; Schema: public; Owner: -; Tablespace: 
--

CREATE TABLE block_numbers (
    created_on timestamp with time zone,
    updated_on timestamp with time zone,
    id integer NOT NULL,
    phonenumber character varying(20) NOT NULL,
    status character varying(128) DEFAULT 'blocked'::character varying NOT NULL,
    partnership_accounts_id integer,
    is_global_exclusion boolean DEFAULT false NOT NULL
);


--
-- Name: block_numbers_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

CREATE SEQUENCE block_numbers_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


--
-- Name: block_numbers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE block_numbers_id_seq OWNED BY block_numbers.id;


--
-- Name: contact_notes; Type: TABLE; Schema: public; Owner: -; Tablespace: 
--

CREATE TABLE contact_notes (
    created_on timestamp with time zone,
    updated_on timestamp with time zone,
    id integer NOT NULL,
    contact_id integer,
    text character varying(5000) DEFAULT ''::character varying,
    lastname character varying(64) DEFAULT ''::character varying NOT NULL,
    is_enabled boolean DEFAULT true NOT NULL,
    user_id integer NOT NULL,
    partnership_account_id integer NOT NULL
);


--
-- Name: contact_notes_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

CREATE SEQUENCE contact_notes_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


--
-- Name: contact_notes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE contact_notes_id_seq OWNED BY contact_notes.id;


--
-- Name: contacts; Type: TABLE; Schema: public; Owner: -; Tablespace: 
--

CREATE TABLE contacts (
    created_on timestamp with time zone,
    updated_on timestamp with time zone,
    id integer NOT NULL,
    firstname character varying(64) DEFAULT ''::character varying NOT NULL,
    lastname character varying(64) DEFAULT ''::character varying NOT NULL,
    phonenumber_1 character varying(20) DEFAULT ''::character varying NOT NULL,
    phonenumber_2 character varying(20) DEFAULT ''::character varying NOT NULL,
    address_1 character varying(128) DEFAULT ''::character varying NOT NULL,
    address_2 character varying(128) DEFAULT ''::character varying NOT NULL,
    city character varying(64) DEFAULT ''::character varying NOT NULL,
    state character varying(64) DEFAULT ''::character varying NOT NULL,
    zip character varying(10) DEFAULT ''::character varying NOT NULL,
    ip character varying(32) DEFAULT ''::character varying NOT NULL,
    partnership_account_id integer,
    is_do_not_call boolean DEFAULT false NOT NULL,
    is_unsubscribe boolean DEFAULT false NOT NULL,
    email character varying(64) DEFAULT ''::character varying NOT NULL,
    caller_id character varying(128) DEFAULT ''::character varying NOT NULL,
    status character varying(128) DEFAULT 'no status'::character varying NOT NULL,
    agent_assigned character varying(128),
    country character varying(64) DEFAULT ''::character varying NOT NULL
);


--
-- Name: contacts_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

CREATE SEQUENCE contacts_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


--
-- Name: contacts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE contacts_id_seq OWNED BY contacts.id;


--
-- Name: coupons; Type: TABLE; Schema: public; Owner: -; Tablespace: 
--

CREATE TABLE coupons (
    created_on timestamp with time zone NOT NULL,
    updated_on timestamp with time zone NOT NULL,
    id integer NOT NULL,
    code character varying(32),
    duration duration_types DEFAULT 'forever'::duration_types NOT NULL,
    amount_off integer,
    percent_off integer,
    currency character varying(8),
    duration_in_months integer,
    max_redemptions integer,
    redeem_by timestamp with time zone,
    times_redeemed integer NOT NULL,
    valid boolean DEFAULT true NOT NULL
);


--
-- Name: coupons_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

CREATE SEQUENCE coupons_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


--
-- Name: coupons_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE coupons_id_seq OWNED BY coupons.id;


--
-- Name: credit_cards; Type: TABLE; Schema: public; Owner: -; Tablespace: 
--

CREATE TABLE credit_cards (
    created_on timestamp with time zone NOT NULL,
    updated_on timestamp with time zone NOT NULL,
    id integer NOT NULL,
    brand character varying(32),
    last4 integer,
    exp_date date,
    is_expiring boolean DEFAULT false NOT NULL,
    cc_name character varying(128),
    is_deleted boolean DEFAULT false NOT NULL
);


--
-- Name: credit_cards_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

CREATE SEQUENCE credit_cards_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


--
-- Name: credit_cards_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE credit_cards_id_seq OWNED BY credit_cards.id;


--
-- Name: external_api_service_providers; Type: TABLE; Schema: public; Owner: -; Tablespace: 
--

CREATE TABLE external_api_service_providers (
    created_on timestamp with time zone,
    updated_on timestamp with time zone,
    id integer NOT NULL,
    name character varying(128) NOT NULL
);


--
-- Name: external_api_service_providers_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

CREATE SEQUENCE external_api_service_providers_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


--
-- Name: external_api_service_providers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE external_api_service_providers_id_seq OWNED BY external_api_service_providers.id;


--
-- Name: external_api_service_providers_partnership_account_tie; Type: TABLE; Schema: public; Owner: -; Tablespace: 
--

CREATE TABLE external_api_service_providers_partnership_account_tie (
    created_on timestamp with time zone,
    updated_on timestamp with time zone,
    external_api_service_provider_id integer NOT NULL,
    partnership_account_id integer NOT NULL,
    username character varying(128) DEFAULT ''::character varying NOT NULL,
    password character varying(128) DEFAULT ''::character varying NOT NULL,
    secret character varying(128) DEFAULT ''::character varying NOT NULL,
    url character varying(128) DEFAULT ''::character varying NOT NULL,
    token_url character varying(128) DEFAULT ''::character varying NOT NULL,
    client_id character varying(128) DEFAULT ''::character varying NOT NULL,
    source character varying(128) DEFAULT ''::character varying NOT NULL,
    app_source character varying(128) DEFAULT ''::character varying NOT NULL
);


--
-- Name: external_form_fields; Type: TABLE; Schema: public; Owner: -; Tablespace: 
--

CREATE TABLE external_form_fields (
    form_id integer NOT NULL,
    "position" integer NOT NULL,
    field_id character varying(50) NOT NULL,
    display_name character varying NOT NULL,
    show_in_table boolean DEFAULT false NOT NULL
);


--
-- Name: external_form_fields_position_seq; Type: SEQUENCE; Schema: public; Owner: -
--

CREATE SEQUENCE external_form_fields_position_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


--
-- Name: external_form_fields_position_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE external_form_fields_position_seq OWNED BY external_form_fields."position";


--
-- Name: external_forms; Type: TABLE; Schema: public; Owner: -; Tablespace: 
--

CREATE TABLE external_forms (
    id integer NOT NULL,
    public_id character varying(50) NOT NULL,
    display_name character varying DEFAULT ''::character varying NOT NULL,
    created_on timestamp with time zone NOT NULL,
    updated_on timestamp with time zone NOT NULL,
    routing_id integer,
    is_external_api_auto boolean DEFAULT false NOT NULL,
    email_addresses json DEFAULT '{}'::json NOT NULL,
    partnership_account_id integer,
    email_subject character varying(64) DEFAULT ''::character varying NOT NULL,
    partial_data_email boolean DEFAULT true NOT NULL,
    full_submit_email boolean DEFAULT false NOT NULL,
    adf_email_addresses json DEFAULT '{"emails": ""}'::json NOT NULL,
    send_auto_email boolean DEFAULT false NOT NULL,
    send_auto_email_subject character varying(128) DEFAULT ''::character varying NOT NULL,
    send_auto_email_msg character varying(512) DEFAULT ''::character varying NOT NULL,
    send_auto_sms boolean DEFAULT false NOT NULL,
    send_auto_sms_inbound_id integer,
    send_auto_sms_msg character varying(256) DEFAULT ''::character varying NOT NULL
);


--
-- Name: external_forms_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

CREATE SEQUENCE external_forms_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


--
-- Name: external_forms_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE external_forms_id_seq OWNED BY external_forms.id;


--
-- Name: form_lead_fields; Type: TABLE; Schema: public; Owner: -; Tablespace: 
--

CREATE TABLE form_lead_fields (
    lead_id integer NOT NULL,
    field_id character varying(50) NOT NULL,
    field_value character varying
);


--
-- Name: form_leads; Type: TABLE; Schema: public; Owner: -; Tablespace: 
--

CREATE TABLE form_leads (
    id integer NOT NULL,
    form_id integer NOT NULL,
    created_on timestamp with time zone NOT NULL,
    updated_on timestamp with time zone NOT NULL,
    external_api_lead_id character varying(50),
    email_sent boolean DEFAULT false NOT NULL,
    partnership_account_id integer,
    contact_id integer
);


--
-- Name: form_leads_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

CREATE SEQUENCE form_leads_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


--
-- Name: form_leads_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE form_leads_id_seq OWNED BY form_leads.id;


--
-- Name: form_logs; Type: TABLE; Schema: public; Owner: -; Tablespace: 
--

CREATE TABLE form_logs (
    posted_on timestamp with time zone NOT NULL,
    id integer NOT NULL,
    form_id integer NOT NULL,
    form_lead_id integer NOT NULL,
    status character varying(32) DEFAULT 'fail'::character varying NOT NULL,
    description character varying(1024) DEFAULT ''::character varying NOT NULL
);


--
-- Name: form_logs_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

CREATE SEQUENCE form_logs_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


--
-- Name: form_logs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE form_logs_id_seq OWNED BY form_logs.id;


--
-- Name: holdmusic; Type: TABLE; Schema: public; Owner: -; Tablespace: 
--

CREATE TABLE holdmusic (
    id integer NOT NULL,
    created_on timestamp with time zone NOT NULL,
    updated_on timestamp with time zone NOT NULL,
    uuid character varying,
    filename character varying,
    partnership_account_id integer NOT NULL,
    url character varying
);


--
-- Name: holdmusic_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

CREATE SEQUENCE holdmusic_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


--
-- Name: holdmusic_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE holdmusic_id_seq OWNED BY holdmusic.id;


--
-- Name: invoices; Type: TABLE; Schema: public; Owner: -; Tablespace: 
--

CREATE TABLE invoices (
    created_on timestamp with time zone NOT NULL,
    updated_on timestamp with time zone NOT NULL,
    id integer NOT NULL,
    plan character varying(128),
    receipt_number character varying(128),
    description character varying(128),
    period_start_on date,
    period_end_on date,
    currency character varying(8),
    tax integer,
    tax_percent double precision,
    total integer,
    credit_card_id integer,
    partnership_account_id integer,
    partnership_id integer
);


--
-- Name: invoices_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

CREATE SEQUENCE invoices_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


--
-- Name: invoices_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE invoices_id_seq OWNED BY invoices.id;


--
-- Name: issues; Type: TABLE; Schema: public; Owner: -; Tablespace: 
--

CREATE TABLE issues (
    created_on timestamp with time zone NOT NULL,
    updated_on timestamp with time zone NOT NULL,
    id integer NOT NULL,
    status status_types DEFAULT 'unread'::status_types NOT NULL,
    label label_types DEFAULT 'login'::label_types NOT NULL,
    email character varying(255) DEFAULT ''::character varying NOT NULL,
    question text,
    partnership_account_id integer,
    partnership_id integer
);


--
-- Name: issues_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

CREATE SEQUENCE issues_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


--
-- Name: issues_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE issues_id_seq OWNED BY issues.id;


--
-- Name: lead_notes; Type: TABLE; Schema: public; Owner: -; Tablespace: 
--

CREATE TABLE lead_notes (
    created_on timestamp with time zone NOT NULL,
    updated_on timestamp with time zone,
    id integer NOT NULL,
    user_id integer NOT NULL,
    lead_id integer NOT NULL,
    text text DEFAULT ''::text,
    is_enabled boolean NOT NULL
);


--
-- Name: lead_notes_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

CREATE SEQUENCE lead_notes_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


--
-- Name: lead_notes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE lead_notes_id_seq OWNED BY lead_notes.id;


--
-- Name: leads; Type: TABLE; Schema: public; Owner: -; Tablespace: 
--

CREATE TABLE leads (
    created_on timestamp with time zone NOT NULL,
    updated_on timestamp with time zone NOT NULL,
    id integer NOT NULL,
    status character varying(64) DEFAULT ''::character varying,
    firstname character varying(255) DEFAULT ''::character varying NOT NULL,
    lastname character varying(255) DEFAULT ''::character varying NOT NULL,
    email character varying(128) DEFAULT ''::character varying NOT NULL,
    phonenumber character varying(20) DEFAULT ''::character varying NOT NULL,
    question character varying(255) DEFAULT ''::character varying,
    duration integer,
    starttime timestamp without time zone,
    endtime timestamp without time zone,
    call_sid character varying(128) DEFAULT ''::character varying,
    widget_guid character varying,
    agent_id integer,
    notes text DEFAULT ''::text,
    recording_url character varying(1024) DEFAULT ''::character varying,
    call_count integer DEFAULT 0 NOT NULL,
    call_type character varying(10) NOT NULL,
    my_phone character varying DEFAULT ''::character varying NOT NULL,
    inbound_id integer,
    response_time_seconds double precision,
    additional_info json,
    progress_status character varying(128),
    caller_id character varying(256) DEFAULT ''::character varying,
    partnership_account_id integer NOT NULL,
    call_source character varying(50),
    agent_assigned_id integer,
    contact_id integer
);


--
-- Name: leads_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

CREATE SEQUENCE leads_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


--
-- Name: leads_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE leads_id_seq OWNED BY leads.id;


--
-- Name: messages; Type: TABLE; Schema: public; Owner: -; Tablespace: 
--

CREATE TABLE messages (
    created_on timestamp with time zone,
    updated_on timestamp with time zone,
    id integer NOT NULL,
    type character varying(32) DEFAULT ''::character varying NOT NULL,
    provider character varying(32) DEFAULT ''::character varying NOT NULL,
    provider_message_id character varying(64) DEFAULT ''::character varying NOT NULL,
    provider_message_date character varying(64) DEFAULT ''::character varying NOT NULL,
    "to" character varying(20) DEFAULT ''::character varying NOT NULL,
    body_text character varying(1024) DEFAULT ''::character varying NOT NULL,
    num_media_files character varying(10),
    media_url character varying(512),
    status character varying(64) DEFAULT ''::character varying NOT NULL,
    delivery_code integer,
    delivery_description character varying(256),
    direction character varying(64) DEFAULT ''::character varying NOT NULL,
    inbound_id integer NOT NULL,
    partnership_account_id integer NOT NULL,
    contact_id integer NOT NULL,
    from_ character varying(20) DEFAULT ''::character varying NOT NULL
);


--
-- Name: messages_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

CREATE SEQUENCE messages_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


--
-- Name: messages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE messages_id_seq OWNED BY messages.id;


--
-- Name: partnership_account_group_tie; Type: TABLE; Schema: public; Owner: -; Tablespace: 
--

CREATE TABLE partnership_account_group_tie (
    created_on timestamp with time zone,
    updated_on timestamp with time zone,
    partnership_account_group_id integer NOT NULL,
    partnership_account_id integer NOT NULL
);


--
-- Name: partnership_account_groups; Type: TABLE; Schema: public; Owner: -; Tablespace: 
--

CREATE TABLE partnership_account_groups (
    created_on timestamp with time zone,
    updated_on timestamp with time zone,
    id integer NOT NULL,
    name character varying(128) NOT NULL
);


--
-- Name: partnership_account_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

CREATE SEQUENCE partnership_account_groups_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


--
-- Name: partnership_account_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE partnership_account_groups_id_seq OWNED BY partnership_account_groups.id;


--
-- Name: partnership_accounts; Type: TABLE; Schema: public; Owner: -; Tablespace: 
--

CREATE TABLE partnership_accounts (
    id integer NOT NULL,
    created_on timestamp with time zone NOT NULL,
    updated_on timestamp with time zone NOT NULL,
    name character varying(255) DEFAULT ''::character varying NOT NULL,
    partnership_id integer,
    is_active boolean DEFAULT true NOT NULL,
    billing_type billing_types DEFAULT 'partnership'::billing_types NOT NULL,
    subscription_id integer,
    api_token_id integer,
    partner_account_code character varying(64) DEFAULT ''::character varying NOT NULL
);


--
-- Name: partnership_accounts_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

CREATE SEQUENCE partnership_accounts_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


--
-- Name: partnership_accounts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE partnership_accounts_id_seq OWNED BY partnership_accounts.id;


--
-- Name: partnerships; Type: TABLE; Schema: public; Owner: -; Tablespace: 
--

CREATE TABLE partnerships (
    id integer NOT NULL,
    created_on timestamp with time zone NOT NULL,
    updated_on timestamp with time zone NOT NULL,
    name character varying(255) DEFAULT ''::character varying NOT NULL,
    is_active boolean DEFAULT true NOT NULL,
    account_invitation_url_token character varying(255) DEFAULT ''::character varying NOT NULL,
    default_billing_type billing_types DEFAULT 'partnership'::billing_types NOT NULL,
    logo character varying(2000) DEFAULT ''::character varying NOT NULL,
    subscription_id integer,
    default_provider character varying(10) DEFAULT 'twilio'::character varying NOT NULL,
    api_token_id integer,
    partner_url character varying(256) DEFAULT ''::character varying NOT NULL,
    email_sender character varying(64) DEFAULT ''::character varying NOT NULL
);


--
-- Name: partnerships_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

CREATE SEQUENCE partnerships_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


--
-- Name: partnerships_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE partnerships_id_seq OWNED BY partnerships.id;


--
-- Name: phonenumbers; Type: TABLE; Schema: public; Owner: -; Tablespace: 
--

CREATE TABLE phonenumbers (
    created_on timestamp with time zone NOT NULL,
    updated_on timestamp with time zone NOT NULL,
    id integer NOT NULL,
    phonenumber character varying(20) DEFAULT ''::character varying NOT NULL,
    is_local boolean DEFAULT false NOT NULL,
    is_tollfree boolean DEFAULT false NOT NULL,
    is_active boolean DEFAULT true NOT NULL,
    friendly_name character varying(128) DEFAULT ''::character varying NOT NULL,
    twilio_number_sid character varying(34) DEFAULT ''::character varying NOT NULL,
    routings json DEFAULT '{}'::json NOT NULL,
    notifications json DEFAULT '{}'::json NOT NULL,
    is_callerid boolean DEFAULT false NOT NULL,
    partnership_account_id integer NOT NULL,
    is_deactivated boolean DEFAULT false NOT NULL,
    deactivated_on timestamp without time zone,
    source character varying(256) DEFAULT ''::character varying NOT NULL,
    type character varying DEFAULT 'priority'::character varying NOT NULL,
    channel character varying(256),
    provider character varying(10) DEFAULT ''::character varying NOT NULL
);


--
-- Name: phonenumbers_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

CREATE SEQUENCE phonenumbers_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


--
-- Name: phonenumbers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE phonenumbers_id_seq OWNED BY phonenumbers.id;


--
-- Name: report_user_tie; Type: TABLE; Schema: public; Owner: -; Tablespace: 
--

CREATE TABLE report_user_tie (
    created_on timestamp with time zone NOT NULL,
    updated_on timestamp with time zone NOT NULL,
    user_id integer NOT NULL,
    report_id integer NOT NULL,
    partnership_accounts_id integer NOT NULL,
    emails json DEFAULT '{}'::json NOT NULL
);


--
-- Name: reports; Type: TABLE; Schema: public; Owner: -; Tablespace: 
--

CREATE TABLE reports (
    id integer NOT NULL,
    name character varying(255) NOT NULL
);


--
-- Name: reports_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

CREATE SEQUENCE reports_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


--
-- Name: reports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE reports_id_seq OWNED BY reports.id;


--
-- Name: subscriptions; Type: TABLE; Schema: public; Owner: -; Tablespace: 
--

CREATE TABLE subscriptions (
    created_on timestamp with time zone NOT NULL,
    updated_on timestamp with time zone NOT NULL,
    id integer NOT NULL,
    plan character varying(128),
    coupon character varying(32),
    credit_card_id integer,
    cancelled_subscription_on timestamp with time zone,
    limit_warning_count integer DEFAULT 0 NOT NULL,
    payment_id character varying(128),
    twilio_subaccount_sid character varying(128),
    usage_current_month integer DEFAULT 0 NOT NULL,
    status subscription_status DEFAULT 'inactive'::subscription_status NOT NULL
);


--
-- Name: subscriptions_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

CREATE SEQUENCE subscriptions_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


--
-- Name: subscriptions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE subscriptions_id_seq OWNED BY subscriptions.id;


--
-- Name: users; Type: TABLE; Schema: public; Owner: -; Tablespace: 
--

CREATE TABLE users (
    created_on timestamp with time zone NOT NULL,
    updated_on timestamp with time zone NOT NULL,
    id integer NOT NULL,
    role role_types DEFAULT 'member'::role_types NOT NULL,
    is_active boolean DEFAULT true NOT NULL,
    username character varying(24),
    email character varying(255) DEFAULT ''::character varying NOT NULL,
    password character varying(128) DEFAULT ''::character varying NOT NULL,
    is_tos_agreed boolean DEFAULT false NOT NULL,
    sign_in_count integer NOT NULL,
    current_sign_in_on timestamp with time zone,
    current_sign_in_ip character varying(45),
    last_sign_in_on timestamp with time zone,
    last_sign_in_ip character varying(45),
    firstname character varying(128) DEFAULT ''::character varying NOT NULL,
    lastname character varying(128) DEFAULT ''::character varying NOT NULL,
    phonenumber character varying(20) DEFAULT ''::character varying NOT NULL,
    company character varying(256) DEFAULT ''::character varying NOT NULL,
    extension integer,
    title character varying(128),
    department character varying(128),
    locale character varying(5) DEFAULT 'en'::character varying NOT NULL,
    leads_onboard boolean DEFAULT false NOT NULL,
    agents_onboard boolean DEFAULT false NOT NULL,
    outbound_onboard boolean DEFAULT false NOT NULL,
    inbound_onboard boolean DEFAULT false NOT NULL,
    full_feature_access boolean DEFAULT true NOT NULL,
    inbound_routing_access boolean DEFAULT true NOT NULL,
    outbound_routing_access boolean DEFAULT true NOT NULL,
    forms_access boolean DEFAULT true NOT NULL,
    external_api_access boolean DEFAULT false NOT NULL,
    partnership_account_id integer,
    partnership_id integer,
    two_factor_auth boolean DEFAULT false NOT NULL,
    two_factor_auth_onboard boolean DEFAULT false NOT NULL,
    partnership_account_group_id integer
);


--
-- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

CREATE SEQUENCE users_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


--
-- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE users_id_seq OWNED BY users.id;


--
-- Name: widget_agents; Type: TABLE; Schema: public; Owner: -; Tablespace: 
--

CREATE TABLE widget_agents (
    widget_id integer NOT NULL,
    agent_id integer NOT NULL,
    contact_using character varying NOT NULL,
    "order" integer
);


--
-- Name: widget_files; Type: TABLE; Schema: public; Owner: -; Tablespace: 
--

CREATE TABLE widget_files (
    created_on timestamp with time zone NOT NULL,
    updated_on timestamp with time zone NOT NULL,
    guid character varying(36) NOT NULL,
    partnership_account_id integer NOT NULL
);


--
-- Name: widgets; Type: TABLE; Schema: public; Owner: -; Tablespace: 
--

CREATE TABLE widgets (
    created_on timestamp with time zone NOT NULL,
    updated_on timestamp with time zone NOT NULL,
    id integer NOT NULL,
    guid character varying NOT NULL,
    name character varying(128) NOT NULL,
    options json NOT NULL,
    enabled boolean DEFAULT true NOT NULL,
    phone_number_id integer,
    partnership_account_id integer NOT NULL,
    email character varying(255),
    type character varying(50) DEFAULT 'widget'::character varying NOT NULL
);


--
-- Name: widgets_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

CREATE SEQUENCE widgets_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


--
-- Name: widgets_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE widgets_id_seq OWNED BY widgets.id;


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--

ALTER TABLE ONLY agent_schedules ALTER COLUMN id SET DEFAULT nextval('agent_schedules_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--

ALTER TABLE ONLY agents ALTER COLUMN id SET DEFAULT nextval('agents_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--

ALTER TABLE ONLY api_tokens ALTER COLUMN id SET DEFAULT nextval('api_tokens_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--

ALTER TABLE ONLY audio_urls ALTER COLUMN id SET DEFAULT nextval('audio_urls_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--

ALTER TABLE ONLY block_numbers ALTER COLUMN id SET DEFAULT nextval('block_numbers_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--

ALTER TABLE ONLY contact_notes ALTER COLUMN id SET DEFAULT nextval('contact_notes_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--

ALTER TABLE ONLY contacts ALTER COLUMN id SET DEFAULT nextval('contacts_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--

ALTER TABLE ONLY coupons ALTER COLUMN id SET DEFAULT nextval('coupons_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--

ALTER TABLE ONLY credit_cards ALTER COLUMN id SET DEFAULT nextval('credit_cards_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--

ALTER TABLE ONLY external_api_service_providers ALTER COLUMN id SET DEFAULT nextval('external_api_service_providers_id_seq'::regclass);


--
-- Name: position; Type: DEFAULT; Schema: public; Owner: -
--

ALTER TABLE ONLY external_form_fields ALTER COLUMN "position" SET DEFAULT nextval('external_form_fields_position_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--

ALTER TABLE ONLY external_forms ALTER COLUMN id SET DEFAULT nextval('external_forms_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--

ALTER TABLE ONLY form_leads ALTER COLUMN id SET DEFAULT nextval('form_leads_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--

ALTER TABLE ONLY form_logs ALTER COLUMN id SET DEFAULT nextval('form_logs_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--

ALTER TABLE ONLY holdmusic ALTER COLUMN id SET DEFAULT nextval('holdmusic_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--

ALTER TABLE ONLY invoices ALTER COLUMN id SET DEFAULT nextval('invoices_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--

ALTER TABLE ONLY issues ALTER COLUMN id SET DEFAULT nextval('issues_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--

ALTER TABLE ONLY lead_notes ALTER COLUMN id SET DEFAULT nextval('lead_notes_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--

ALTER TABLE ONLY leads ALTER COLUMN id SET DEFAULT nextval('leads_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--

ALTER TABLE ONLY messages ALTER COLUMN id SET DEFAULT nextval('messages_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--

ALTER TABLE ONLY partnership_account_groups ALTER COLUMN id SET DEFAULT nextval('partnership_account_groups_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--

ALTER TABLE ONLY partnership_accounts ALTER COLUMN id SET DEFAULT nextval('partnership_accounts_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--

ALTER TABLE ONLY partnerships ALTER COLUMN id SET DEFAULT nextval('partnerships_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--

ALTER TABLE ONLY phonenumbers ALTER COLUMN id SET DEFAULT nextval('phonenumbers_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--

ALTER TABLE ONLY reports ALTER COLUMN id SET DEFAULT nextval('reports_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--

ALTER TABLE ONLY subscriptions ALTER COLUMN id SET DEFAULT nextval('subscriptions_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--

ALTER TABLE ONLY users ALTER COLUMN id SET DEFAULT nextval('users_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--

ALTER TABLE ONLY widgets ALTER COLUMN id SET DEFAULT nextval('widgets_id_seq'::regclass);


--
-- Data for Name: agent_groups; Type: TABLE DATA; Schema: public; Owner: -
--

COPY agent_groups (group_id, agent_id) FROM stdin;
165	164
165	15
\.


--
-- Data for Name: agent_schedules; Type: TABLE DATA; Schema: public; Owner: -
--

COPY agent_schedules (created_on, updated_on, id, agent_id, day, available_from, available_to, is_active, partnership_account_id) FROM stdin;
2019-03-01 02:30:19.463226+00	2019-03-01 02:30:37.56165+00	640	186	2	08:00 AM	17:00 PM	t	4
2019-03-01 02:30:19.464332+00	2019-03-01 02:30:37.567299+00	641	186	3	08:00 AM	17:00 PM	t	4
2019-03-01 02:30:19.465165+00	2019-03-01 02:30:37.572599+00	642	186	4	08:00 AM	17:00 PM	t	4
2019-03-01 02:30:19.466009+00	2019-03-01 02:30:37.57779+00	643	186	5	08:00 AM	17:00 PM	t	4
2019-03-01 02:30:19.466845+00	2019-03-01 02:30:37.582927+00	644	186	6	08:00 AM	17:00 PM	f	4
2019-03-05 22:09:55.533361+00	2019-03-05 22:09:55.533375+00	645	187	0	08:00 AM	17:00 PM	f	4
2019-03-05 22:09:55.53773+00	2019-03-05 22:09:55.537744+00	646	187	1	08:00 AM	17:00 PM	f	4
2018-01-03 00:24:20.216628+00	2018-01-03 00:24:20.216655+00	582	166	0	08:00 AM	17:00 PM	f	4
2018-01-03 00:24:20.222703+00	2018-01-03 00:24:20.22273+00	583	166	1	08:00 AM	17:00 PM	t	4
2018-01-03 00:24:20.223715+00	2018-01-03 00:24:20.223731+00	584	166	2	08:00 AM	17:00 PM	t	4
2018-01-03 00:24:20.225463+00	2018-01-03 00:24:20.225479+00	585	166	3	08:00 AM	17:00 PM	t	4
2018-01-03 00:24:20.22633+00	2018-01-03 00:24:20.226351+00	586	166	4	08:00 AM	17:00 PM	t	4
2018-01-03 00:24:20.22719+00	2018-01-03 00:24:20.227204+00	587	166	5	08:00 AM	17:00 PM	t	4
2018-01-03 00:24:20.228096+00	2018-01-03 00:24:20.228111+00	588	166	6	08:00 AM	17:00 PM	f	4
2019-03-05 22:09:55.538473+00	2019-03-05 22:09:55.538487+00	647	187	2	08:00 AM	17:00 PM	f	4
2019-03-05 22:09:55.539605+00	2019-03-05 22:09:55.539618+00	648	187	3	08:00 AM	17:00 PM	f	4
2019-03-05 22:09:55.540366+00	2019-03-05 22:09:55.540378+00	649	187	4	08:00 AM	17:00 PM	f	4
2019-03-05 22:09:55.541179+00	2019-03-05 22:09:55.541192+00	650	187	5	08:00 AM	17:00 PM	f	4
2019-03-05 22:09:55.541959+00	2019-03-05 22:09:55.541971+00	651	187	6	08:00 AM	17:00 PM	f	4
2019-04-08 14:12:03.059159+00	2019-04-08 14:12:03.05918+00	652	188	0	08:00 AM	17:00 PM	f	4
2019-04-08 14:12:03.06484+00	2019-04-08 14:12:03.064869+00	653	188	1	08:00 AM	17:00 PM	t	4
2018-02-07 23:27:44.606581+00	2018-02-07 23:27:44.60661+00	603	174	0	08:00 AM	17:00 PM	f	23
2018-02-07 23:27:44.607929+00	2018-02-07 23:27:44.607946+00	604	174	1	08:00 AM	17:00 PM	t	23
2018-02-07 23:27:44.608648+00	2018-02-07 23:27:44.608664+00	605	174	2	08:00 AM	17:00 PM	t	23
2018-02-07 23:27:44.60933+00	2018-02-07 23:27:44.609345+00	606	174	3	08:00 AM	17:00 PM	t	23
2018-02-07 23:27:44.610079+00	2018-02-07 23:27:44.610094+00	607	174	4	08:00 AM	17:00 PM	t	23
2018-02-07 23:27:44.61076+00	2018-02-07 23:27:44.610788+00	608	174	5	08:00 AM	17:00 PM	t	23
2018-02-07 23:27:44.611585+00	2018-02-07 23:27:44.6116+00	609	174	6	08:00 AM	17:00 PM	f	23
2019-04-08 14:12:03.065669+00	2019-04-08 14:12:03.065684+00	654	188	2	08:00 AM	17:00 PM	t	4
2019-04-08 14:12:03.066757+00	2019-04-08 14:12:03.06677+00	655	188	3	08:00 AM	17:00 PM	t	4
2019-04-08 14:12:03.068722+00	2019-04-08 14:12:03.068737+00	656	188	4	08:00 AM	17:00 PM	t	4
2019-04-08 14:12:03.069536+00	2019-04-08 14:12:03.06962+00	657	188	5	08:00 AM	17:00 PM	t	4
2019-04-08 14:12:03.070504+00	2019-04-08 14:12:03.070518+00	658	188	6	08:00 AM	17:00 PM	f	4
2018-03-20 00:19:16.566253+00	2018-03-20 00:19:16.566269+00	624	183	0	08:00 AM	17:00 PM	f	4
2018-03-20 00:19:16.568302+00	2018-03-20 00:19:16.568317+00	625	183	1	08:00 AM	17:00 PM	f	4
2018-03-20 00:19:16.569086+00	2018-03-20 00:19:16.5691+00	626	183	2	08:00 AM	17:00 PM	f	4
2018-03-20 00:19:16.570642+00	2018-03-20 00:19:16.570656+00	627	183	3	08:00 AM	17:00 PM	f	4
2018-03-20 00:19:16.571441+00	2018-03-20 00:19:16.571455+00	628	183	4	08:00 AM	17:00 PM	f	4
2018-03-20 00:19:16.572485+00	2018-03-20 00:19:16.572499+00	629	183	5	08:00 AM	17:00 PM	f	4
2018-03-20 00:19:16.573284+00	2018-03-20 00:19:16.573298+00	630	183	6	08:00 AM	17:00 PM	f	4
1970-01-01 00:00:00+00	2019-05-23 22:53:37.051747+00	9	15	1	23:45:00	23:59:59	t	4
1970-01-01 00:00:00+00	2019-04-14 00:50:11.450303+00	463	144	0	08:00 AM	17:00 PM	f	4
1970-01-01 00:00:00+00	2019-04-14 00:50:11.450338+00	464	144	1	08:00 AM	17:00 PM	f	4
1970-01-01 00:00:00+00	2019-04-14 00:50:11.450346+00	465	144	2	08:00 AM	17:00 PM	f	4
1970-01-01 00:00:00+00	2019-04-14 00:50:11.450353+00	466	144	3	08:00 AM	17:00 PM	f	4
1970-01-01 00:00:00+00	2019-04-14 00:50:11.45036+00	467	144	4	08:00 AM	17:00 PM	f	4
1970-01-01 00:00:00+00	2019-04-14 00:50:11.450366+00	468	144	5	08:00 AM	17:00 PM	f	4
1970-01-01 00:00:00+00	2019-04-14 00:50:11.450373+00	469	144	6	08:00 AM	17:00 PM	f	4
2019-04-26 17:07:50.886987+00	2019-04-26 17:07:50.887014+00	659	191	0	08:00 AM	17:00 PM	f	4
2019-04-26 17:07:50.890786+00	2019-04-26 17:07:50.890801+00	660	191	1	08:00 AM	17:00 PM	t	4
2019-04-26 17:07:50.891568+00	2019-04-26 17:07:50.891594+00	661	191	2	08:00 AM	17:00 PM	t	4
2019-04-26 17:07:50.892812+00	2019-04-26 17:07:50.892825+00	662	191	3	08:00 AM	17:00 PM	t	4
2018-11-07 20:00:16.119616+00	2018-11-07 20:00:16.119637+00	631	185	0	08:00 AM	17:00 PM	f	4
2018-11-07 20:00:16.123429+00	2018-11-07 20:00:16.123445+00	632	185	1	08:00 AM	17:00 PM	t	4
2018-11-07 20:00:16.124282+00	2018-11-07 20:00:16.124296+00	633	185	2	08:00 AM	17:00 PM	t	4
2018-11-07 20:00:16.12545+00	2018-11-07 20:00:16.125475+00	634	185	3	08:00 AM	17:00 PM	t	4
2018-11-07 20:00:16.126225+00	2018-11-07 20:00:16.126238+00	635	185	4	08:00 AM	17:00 PM	t	4
2018-11-07 20:00:16.127113+00	2018-11-07 20:00:16.127126+00	636	185	5	08:00 AM	17:00 PM	t	4
2018-11-07 20:00:16.127914+00	2018-11-07 20:00:16.127927+00	637	185	6	08:00 AM	17:00 PM	f	4
2018-01-01 21:57:06.562102+00	2018-11-20 17:43:17.784359+00	575	164	0	08:00 AM	17:00 PM	f	4
2018-01-01 21:57:06.564154+00	2018-11-20 17:43:17.791511+00	576	164	1	08:00 AM	17:00 PM	t	4
2018-01-01 21:57:06.564995+00	2018-11-20 17:43:17.800167+00	577	164	2	08:00 AM	17:00 PM	t	4
2018-01-01 21:57:06.566605+00	2018-11-20 17:43:17.805506+00	578	164	3	08:00 AM	17:00 PM	t	4
2018-01-01 21:57:06.567456+00	2018-11-20 17:43:17.810657+00	579	164	4	08:00 AM	17:00 PM	t	4
2018-01-01 21:57:06.568301+00	2018-11-20 17:43:17.815605+00	580	164	5	08:00 AM	17:00 PM	t	4
2018-01-01 21:57:06.569145+00	2018-11-20 17:43:17.820615+00	581	164	6	08:00 AM	17:00 PM	f	4
2019-03-01 02:30:19.458914+00	2019-03-01 02:30:37.550318+00	638	186	0	08:00 AM	17:00 PM	f	4
2019-03-01 02:30:19.462444+00	2019-03-01 02:30:37.556359+00	639	186	1	08:00 AM	17:00 PM	t	4
2019-04-26 17:07:50.893564+00	2019-04-26 17:07:50.893578+00	663	191	4	08:00 AM	17:00 PM	t	4
2019-04-26 17:07:50.894298+00	2019-04-26 17:07:50.894311+00	664	191	5	08:00 AM	17:00 PM	t	4
2019-04-26 17:07:50.895069+00	2019-04-26 17:07:50.895082+00	665	191	6	08:00 AM	17:00 PM	f	4
1970-01-01 00:00:00+00	2019-05-23 22:53:37.048969+00	8	15	0	23:45:00	23:59:59	t	4
1970-01-01 00:00:00+00	2019-05-23 22:53:37.054118+00	10	15	2	23:45:00	23:59:59	t	4
1970-01-01 00:00:00+00	2019-05-23 22:53:37.05636+00	11	15	3	23:45:00	23:59:59	t	4
1970-01-01 00:00:00+00	2019-05-23 22:53:37.058692+00	12	15	4	11:45:00	23:59:59	f	4
1970-01-01 00:00:00+00	2019-05-23 22:53:37.060967+00	13	15	5	23:45:00	23:59:59	t	4
1970-01-01 00:00:00+00	2019-05-23 22:53:37.06342+00	14	15	6	02:45:00	23:59:59	t	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	15	17	0	00:00:00	23:59:59	f	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	16	17	1	09:00:00	17:00:00	t	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	17	17	2	09:00:00	17:00:00	t	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	18	17	3	09:00:00	17:00:00	t	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	19	17	4	09:00:00	17:00:00	t	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	20	17	5	09:00:00	17:00:00	t	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	21	17	6	00:00:00	23:59:59	f	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	22	18	0	00:00:00	23:59:59	f	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	23	18	1	09:00:00	17:00:00	t	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	24	18	2	09:00:00	17:00:00	t	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	25	18	3	09:00:00	17:00:00	t	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	26	18	4	09:00:00	17:00:00	t	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	27	18	5	09:00:00	17:00:00	t	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	28	18	6	00:00:00	23:59:59	f	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	29	16	0	00:00:00	23:59:59	f	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	30	16	1	08:00:00	18:00:00	t	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	31	16	2	08:00:00	18:00:00	t	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	32	16	3	08:00:00	18:00:00	t	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	33	16	4	08:00:00	18:00:00	t	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	34	16	5	08:00:00	18:00:00	t	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	35	16	6	00:00:00	23:59:59	f	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	36	76	0	00:00:00	23:59:59	f	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	37	76	1	09:00:00	21:00:00	t	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	38	76	2	09:00:00	21:00:00	t	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	39	76	3	09:00:00	21:00:00	t	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	40	76	4	09:00:00	21:00:00	t	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	41	76	5	00:00:00	21:00:00	t	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	42	76	6	11:00:00	19:00:00	t	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	470	145	0	08:00 AM	17:00 PM	f	6
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	114	81	1	08:30:00	19:30:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	43	78	0	00:00:00	23:59:59	f	6
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	44	78	1	09:00:00	18:00:00	t	6
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	45	78	2	09:00:00	18:00:00	t	6
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	46	78	3	09:00:00	18:00:00	t	6
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	47	78	4	09:00:00	18:00:00	t	6
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	48	78	5	09:00:00	18:00:00	t	6
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	49	78	6	00:00:00	23:59:59	f	6
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	73	1	2	00:00:00	23:59:59	f	1
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	123	82	3	10:00:00	20:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	1	14	0	00:00:00	23:59:59	f	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	2	14	1	00:00:00	23:59:59	t	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	3	14	2	00:00:00	23:59:59	t	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	4	14	3	00:00:00	23:59:59	t	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	5	14	4	00:00:00	23:59:59	t	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	6	14	5	08:00:00	17:00:00	t	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	7	14	6	00:00:00	23:59:59	f	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	113	81	0	00:00:00	23:59:59	f	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	72	1	1	00:00:00	23:59:59	f	1
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	125	82	5	10:00:00	20:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	78	91	0	08:00 AM	17:00 PM	f	1
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	79	91	1	08:00 AM	17:00 PM	t	1
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	50	77	0	00:00:00	23:59:59	f	6
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	51	77	1	00:00:00	23:59:59	f	6
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	52	77	2	00:00:00	23:59:59	f	6
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	53	77	3	00:00:00	23:59:59	f	6
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	54	77	4	00:00:00	23:59:59	f	6
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	55	77	5	00:00:00	23:59:59	f	6
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	56	77	6	23:55:00	23:59:59	t	6
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	57	79	0	00:00:00	23:59:59	f	1
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	58	79	1	08:00:00	17:00:00	t	1
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	59	79	2	08:00:00	17:00:00	t	1
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	60	79	3	08:00:00	17:00:00	t	1
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	61	79	4	08:00:00	17:00:00	t	1
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	62	79	5	08:00:00	17:00:00	t	1
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	63	79	6	00:00:00	23:59:59	f	1
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	67	2	3	00:00:00	23:59:59	f	1
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	68	2	4	00:00:00	23:59:59	t	1
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	69	2	5	23:55:00	23:59:59	t	1
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	70	2	6	00:00:00	23:59:59	f	1
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	80	91	2	08:00 AM	17:00 PM	t	1
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	81	91	3	08:00 AM	17:00 PM	t	1
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	82	91	4	08:00 AM	17:00 PM	t	1
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	83	91	5	08:00 AM	17:00 PM	t	1
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	84	91	6	08:00 AM	17:00 PM	f	1
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	121	82	1	10:00:00	20:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	66	2	2	00:00:00	23:59:59	f	1
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	74	1	3	00:00:00	23:59:59	f	1
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	75	1	4	13:00:00	23:59:59	t	1
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	76	1	5	23:45:00	23:59:59	f	1
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	77	1	6	14:00:00	23:59:59	f	1
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	122	82	2	10:00:00	21:00:00	f	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	120	82	0	00:00:00	23:59:59	f	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	115	81	2	08:30:00	19:30:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	116	81	3	00:00:00	23:59:59	f	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	117	81	4	08:00:00	20:30:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	118	81	5	08:00:00	20:30:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	119	81	6	08:00:00	20:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	92	93	0	08:00 AM	17:00 PM	f	1
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	93	93	1	08:00 AM	17:00 PM	t	1
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	94	93	2	08:00 AM	17:00 PM	t	1
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	95	93	3	08:00 AM	17:00 PM	t	1
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	96	93	4	08:00 AM	17:00 PM	t	1
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	97	93	5	08:00 AM	17:00 PM	t	1
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	98	93	6	08:00 AM	17:00 PM	f	1
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	64	2	0	07:00:00	23:59:59	t	1
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	65	2	1	00:00:00	23:59:59	f	1
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	71	1	0	08:00:00	23:59:59	t	1
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	130	83	3	09:00:00	20:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	471	145	1	09:00:00	19:00:00	t	6
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	472	145	2	09:00:00	19:00:00	t	6
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	473	145	3	09:00:00	19:00:00	t	6
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	474	145	4	09:00:00	19:00:00	t	6
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	475	145	5	09:00:00	19:00:00	t	6
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	476	145	6	09:00:00	18:00:00	t	6
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	145	96	4	09:00:00	20:00:00	f	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	146	96	5	09:00:00	18:00:00	f	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	147	96	6	09:00:00	20:00:00	f	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	212	107	1	19:00:00	23:59:00	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	260	115	0	08:00 AM	17:00 PM	f	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	257	114	4	08:00 AM	17:00 PM	f	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	151	97	3	09:00:00	20:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	137	84	3	00:00:00	23:59:59	f	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	138	84	4	09:00:00	20:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	139	84	5	09:00:00	18:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	140	84	6	09:00:00	20:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	274	117	0	08:00 AM	17:00 PM	f	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	143	96	2	12:00:00	20:00:00	f	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	144	96	3	08:00 AM	17:00 PM	f	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	184	103	1	19:00:00	23:59:00	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	185	103	2	19:00:00	23:59:00	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	216	107	5	19:00:00	23:59:00	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	126	82	6	10:00:00	20:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	134	84	0	00:00:00	23:59:59	f	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	213	107	2	19:00:00	23:59:00	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	188	103	5	19:00:00	23:59:00	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	477	146	0	08:00 AM	17:00 PM	f	12
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	478	146	1	07:00:00	22:00:00	t	12
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	479	146	2	07:00:00	22:00:00	t	12
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	480	146	3	07:00:00	22:00:00	t	12
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	189	103	6	00:00:00	12:00:00	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	217	107	6	00:00:00	12:00:00	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	481	146	4	07:00:00	22:00:00	t	12
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	482	146	5	07:00:00	22:00:00	t	12
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	483	146	6	07:00:00	22:00:00	t	12
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	155	99	0	00:00:00	23:59:00	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	158	99	3	19:00:00	23:59:00	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	186	103	3	19:00:00	23:59:00	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	197	105	0	00:00:00	23:59:00	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	201	105	4	19:00:00	23:59:00	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	202	105	5	19:00:00	23:59:00	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	214	107	3	19:00:00	23:59:00	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	259	114	6	09:00:00	20:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	156	99	1	19:00:00	23:59:00	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	159	99	4	19:00:00	23:59:00	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	157	99	2	19:00:00	23:59:00	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	513	152	1	09:00:00	19:00:00	f	13
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	160	99	5	19:00:00	23:59:00	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	198	105	1	19:00:00	23:59:00	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	187	103	4	19:00:00	23:59:00	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	141	96	0	08:00 AM	17:00 PM	f	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	211	107	0	00:00:00	12:00:00	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	215	107	4	19:00:00	23:59:00	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	515	152	3	09:00:00	19:00:00	t	13
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	514	152	2	09:00:00	19:00:00	t	13
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	161	99	6	00:00:00	23:59:00	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	516	152	4	08:00 AM	19:00:00	t	13
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	199	105	2	19:00:00	23:59:00	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	149	97	1	12:00:00	20:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	256	114	3	09:00:00	20:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	129	83	2	09:00:00	18:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	258	114	5	12:00:00	20:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	131	83	4	00:00:00	23:59:59	f	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	132	83	5	12:00:00	20:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	133	83	6	09:00:00	20:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	255	114	2	09:00:00	18:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	150	97	2	09:00:00	18:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	128	83	1	12:00:00	20:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	152	97	4	08:00 AM	17:00 PM	f	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	153	97	5	12:00:00	20:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	154	97	6	09:00:00	20:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	124	82	4	10:00:00	20:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	200	105	3	19:00:00	23:59:00	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	203	105	6	00:00:00	23:59:00	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	183	103	0	00:00:00	12:00:00	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	518	152	6	09:00:00	18:00:00	t	13
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	517	152	5	09:00:00	19:00:00	t	13
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	520	153	1	09:00:00	17:00:00	f	13
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	519	153	0	08:00 AM	17:00 PM	f	13
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	148	97	0	08:00 AM	17:00 PM	f	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	261	115	1	12:00:00	20:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	262	115	2	09:00:00	18:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	263	115	3	09:00:00	20:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	264	115	4	08:00 AM	17:00 PM	f	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	265	115	5	12:00:00	20:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	266	115	6	09:00:00	20:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	127	83	0	00:00:00	23:59:59	f	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	136	84	2	12:00:00	20:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	269	116	2	09:00:00	18:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	270	116	3	09:00:00	20:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	271	116	4	08:00 AM	17:00 PM	f	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	272	116	5	12:00:00	20:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	273	116	6	09:00:00	20:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	142	96	1	09:00:00	18:00:00	f	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	275	117	1	09:00:00	18:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	268	116	1	12:00:00	20:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	267	116	0	08:00 AM	17:00 PM	f	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	135	84	1	09:00:00	18:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	498	150	0	08:00 AM	17:00 PM	f	13
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	329	124	6	08:00 AM	17:00 PM	f	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	330	125	0	08:00 AM	17:00 PM	f	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	340	126	3	08:00 AM	17:00 PM	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	341	126	4	08:00 AM	17:00 PM	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	288	119	0	08:00 AM	17:00 PM	f	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	289	119	1	09:00:00	18:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	290	119	2	12:00:00	20:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	291	119	3	08:00 AM	17:00 PM	f	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	292	119	4	09:00:00	20:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	293	119	5	09:00:00	18:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	294	119	6	09:00:00	20:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	281	118	0	08:00 AM	17:00 PM	f	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	282	118	1	09:00:00	18:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	283	118	2	12:00:00	20:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	284	118	3	08:00 AM	17:00 PM	f	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	285	118	4	09:00:00	20:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	286	118	5	09:00:00	18:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	287	118	6	09:00:00	20:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	276	117	2	12:00:00	20:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	277	117	3	08:00 AM	17:00 PM	f	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	278	117	4	09:00:00	20:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	279	117	5	09:00:00	18:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	280	117	6	09:00:00	20:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	253	114	0	08:00 AM	17:00 PM	f	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	254	114	1	12:00:00	20:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	295	120	0	08:00 AM	17:00 PM	f	10
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	296	120	1	08:00 AM	17:00 PM	t	10
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	297	120	2	08:00 AM	17:00 PM	t	10
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	298	120	3	08:00 AM	17:00 PM	t	10
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	299	120	4	08:00 AM	17:00 PM	t	10
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	300	120	5	08:00 AM	17:00 PM	t	10
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	301	120	6	08:00 AM	17:00 PM	f	10
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	309	121	0	00:00:00	23:59:59	f	12
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	310	121	1	00:00:00	23:59:59	f	12
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	311	121	2	00:00:00	23:59:59	f	12
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	312	121	3	00:00:00	23:59:59	f	12
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	313	121	4	00:00:00	23:59:59	f	12
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	314	121	5	00:00:00	23:59:59	f	12
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	315	121	6	00:00:00	23:59:59	f	12
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	343	126	6	08:00 AM	17:00 PM	f	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	351	128	0	08:00 AM	17:00 PM	f	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	352	128	1	09:00:00	18:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	324	124	1	08:00 AM	17:00 PM	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	325	124	2	08:00 AM	17:00 PM	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	326	124	3	08:00 AM	17:00 PM	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	327	124	4	08:00 AM	17:00 PM	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	328	124	5	08:00 AM	17:00 PM	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	344	127	0	08:00 AM	17:00 PM	f	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	358	129	0	08:00 AM	17:00 PM	f	12
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	365	130	0	08:00 AM	17:00 PM	f	12
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	366	130	1	07:00:00	22:00:00	t	12
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	353	128	2	12:00:00	20:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	354	128	3	08:00 AM	17:00 PM	f	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	355	128	4	09:00:00	20:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	356	128	5	09:00:00	18:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	357	128	6	09:00:00	20:00:00	t	8
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	331	125	1	08:00 AM	17:00 PM	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	332	125	2	08:00 AM	17:00 PM	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	333	125	3	08:00 AM	17:00 PM	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	334	125	4	08:00 AM	17:00 PM	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	335	125	5	08:00 AM	17:00 PM	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	336	125	6	08:00 AM	17:00 PM	f	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	337	126	0	08:00 AM	17:00 PM	f	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	338	126	1	08:00 AM	17:00 PM	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	339	126	2	08:00 AM	17:00 PM	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	342	126	5	08:00 AM	17:00 PM	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	359	129	1	07:00:00	22:00:00	t	12
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	360	129	2	07:00:00	22:00:00	t	12
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	361	129	3	07:00:00	22:00:00	t	12
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	362	129	4	07:00:00	22:00:00	t	12
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	363	129	5	07:00:00	22:00:00	t	12
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	364	129	6	07:00:00	22:00:00	t	12
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	367	130	2	07:00:00	22:00:00	t	12
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	368	130	3	07:00:00	22:00:00	t	12
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	369	130	4	07:00:00	22:00:00	t	12
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	370	130	5	07:00:00	22:00:00	t	12
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	345	127	1	08:00 AM	17:00 PM	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	346	127	2	08:00 AM	17:00 PM	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	347	127	3	08:00 AM	17:00 PM	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	349	127	5	08:00 AM	17:00 PM	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	350	127	6	08:00 AM	17:00 PM	f	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	371	130	6	07:00:00	22:00:00	t	12
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	372	131	0	08:00 AM	17:00 PM	f	12
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	373	131	1	07:00:00	22:00:00	t	12
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	374	131	2	07:00:00	22:00:00	t	12
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	375	131	3	07:00:00	22:00:00	t	12
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	376	131	4	07:00:00	22:00:00	t	12
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	377	131	5	07:00:00	22:00:00	t	12
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	378	131	6	07:00:00	22:00:00	t	12
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	379	132	0	08:00 AM	17:00 PM	f	12
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	380	132	1	07:00:00	22:00:00	t	12
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	381	132	2	07:00:00	22:00:00	t	12
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	382	132	3	07:00:00	22:00:00	t	12
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	383	132	4	07:00:00	22:00:00	t	12
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	384	132	5	07:00:00	22:00:00	t	12
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	385	132	6	07:00:00	22:00:00	t	12
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	323	124	0	08:00 AM	17:00 PM	f	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	348	127	4	08:00 AM	17:00 PM	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	391	133	5	19:00:00	23:59:00	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	392	133	6	00:00:00	23:59:00	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	548	158	1	00:00:00	23:59:59	f	15
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	521	153	2	08:00 AM	19:00:00	t	13
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	525	153	6	09:00:00	18:00:00	t	13
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	523	153	4	09:00:00	19:00:00	t	13
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	568	157	0	00:00:00	23:59:59	f	14
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	503	150	5	09:00:00	19:00:00	t	13
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	554	159	0	08:00 AM	17:00 PM	f	15
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	555	159	1	08:00 AM	17:00 PM	t	15
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	504	150	6	09:00:00	18:00:00	t	13
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	556	159	2	08:00 AM	17:00 PM	t	15
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	512	152	0	08:00 AM	17:00 PM	f	13
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	547	158	0	00:00:00	23:59:59	f	15
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	557	159	3	08:00 AM	17:00 PM	t	15
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	540	156	0	08:00 AM	17:00 PM	f	10
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	541	156	1	08:00 AM	17:00 PM	t	10
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	542	156	2	08:00 AM	17:00 PM	t	10
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	543	156	3	08:00 AM	17:00 PM	t	10
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	522	153	3	09:00:00	19:00:00	t	13
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	558	159	4	08:00 AM	17:00 PM	t	15
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	559	159	5	08:00 AM	17:00 PM	t	15
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	500	150	2	09:00:00	17:00 PM	t	13
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	449	142	0	08:00 AM	17:00 PM	t	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	450	142	1	08:00 AM	17:00 PM	t	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	451	142	2	08:00 AM	17:00 PM	t	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	452	142	3	08:00 AM	17:00 PM	t	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	453	142	4	08:00 AM	17:00 PM	t	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	454	142	5	08:00 AM	17:00 PM	t	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	533	155	0	08:00 AM	17:00 PM	f	12
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	534	155	1	07:00:00	22:00:00	f	12
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	386	133	0	00:00:00	23:59:00	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	387	133	1	19:00:00	23:59:00	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	388	133	2	19:00:00	23:59:00	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	389	133	3	19:00:00	23:59:00	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	390	133	4	19:00:00	23:59:00	t	9
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	455	142	6	08:00 AM	17:00 PM	t	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	456	143	0	08:00 AM	17:00 PM	t	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	457	143	1	08:00 AM	17:00 PM	t	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	458	143	2	08:00 AM	17:00 PM	t	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	459	143	3	08:00 AM	17:00 PM	t	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	460	143	4	08:00 AM	17:00 PM	t	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	461	143	5	08:00 AM	17:00 PM	t	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	462	143	6	08:00 AM	17:00 PM	t	4
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	535	155	2	07:00:00	22:00:00	f	12
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	536	155	3	07:00:00	22:00:00	f	12
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	537	155	4	07:00:00	22:00:00	f	12
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	538	155	5	07:00:00	22:00:00	f	12
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	539	155	6	07:00:00	22:00:00	f	12
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	526	154	0	08:00 AM	17:00 PM	f	13
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	527	154	1	09:00:00	21:00:00	t	13
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	528	154	2	09:00:00	21:00:00	t	13
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	544	156	4	08:00 AM	17:00 PM	t	10
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	545	156	5	08:00 AM	17:00 PM	t	10
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	546	156	6	08:00 AM	17:00 PM	f	10
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	529	154	3	09:00:00	21:00:00	t	13
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	530	154	4	09:00:00	21:00:00	t	13
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	531	154	5	09:00:00	21:00:00	t	13
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	532	154	6	11:00:00	19:00:00	f	13
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	560	159	6	08:00 AM	17:00 PM	f	15
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	524	153	5	09:00:00	19:00:00	t	13
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	501	150	3	08:00 AM	17:00 PM	t	13
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	549	158	2	00:00:00	23:59:59	f	15
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	550	158	3	00:00:00	23:59:59	f	15
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	551	158	4	00:00:00	23:59:59	f	15
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	552	158	5	00:00:00	23:59:59	f	15
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	553	158	6	00:00:00	23:59:59	f	15
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	499	150	1	09:00:00	17:00:00	f	13
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	569	157	1	00:00:00	23:59:59	f	14
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	570	157	2	00:00:00	23:59:59	f	14
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	571	157	3	00:00:00	23:59:59	f	14
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	572	157	4	00:00:00	23:59:59	f	14
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	573	157	5	00:00:00	23:59:59	f	14
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	574	157	6	00:00:00	23:59:59	f	14
1970-01-01 00:00:00+00	1970-01-01 00:00:00+00	502	150	4	09:00:00	19:00:00	t	13
\.


--
-- Name: agent_schedules_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('agent_schedules_id_seq', 665, true);


--
-- Data for Name: agents; Type: TABLE DATA; Schema: public; Owner: -
--

COPY agents (created_on, updated_on, id, user_id, firstname, lastname, title, email, phonenumber, mobile, extension, department, timezone, all_hours, partnership_account_id, is_group, description, deactivated_on, is_deactivated) FROM stdin;
2016-10-13 15:50:01.403804+00	2016-10-13 15:50:01.40385+00	73	\N	Clarence	Smith		hermanjvermaak@gmail.com	7739699892		\N		US/Central	\N	5	f	\N	\N	f
2016-02-03 23:48:14.826254+00	2016-02-03 23:48:14.82629+00	7	\N	Butch	Ravi Sankar	Manager	butch@me.co	7659941314	7659941314	0	management	US/Central	\N	2	f	\N	\N	f
2016-02-17 15:20:50.743869+00	2016-02-17 15:27:59.128593+00	10	\N	Juan	Franky	Director	test@incoko.co.za	954-609-0301	954-609-0301	0	management	US/Central	\N	2	f	\N	\N	f
2016-01-31 15:50:44.288387+00	2016-04-01 09:48:41.982744+00	4	\N	Herman	Vermaak	Manager	hv13@hotmail.com	7732909650	7732909650	773	internet sales	US/Central	\N	2	f	\N	\N	f
2016-01-30 18:36:30.173677+00	2016-04-01 09:49:44.509208+00	3	\N	Harry	Vermaak		hv13@hotmail.com	7732909650		\N	none	US/Central	\N	2	f	\N	\N	f
2016-04-01 14:24:26.719229+00	2016-04-21 21:57:02.126634+00	11	\N	Steve	Neu		steveneu@live.com	803-490-2508	803-546-2731	\N	none	US/Eastern	\N	2	f	\N	\N	f
2016-05-18 13:46:12.210372+00	2017-02-11 19:48:16.910881+00	18	\N	Jerry	Thompson	Representative	jt@recaptureservices.com	512-431-5677		\N	none	US/Eastern	f	4	f	\N	\N	f
2016-05-24 17:51:29.009503+00	2016-08-18 21:15:41.490053+00	21	\N	Team Langhorne Service	Team	Service	service@teamlanghornerewards.com	866-901-5747	866-901-5747	\N	none	US/Eastern	\N	3	f	\N	\N	f
2016-06-22 02:52:50.814296+00	2016-08-18 21:16:07.543257+00	31	\N	DCH Toyota of Oxnard Parts	DCH Toyota	Parts	parts@dchtoyotaofoxnard.com	877-618-5842	877-618-5842	\N	none	US/Eastern	\N	3	f	\N	\N	f
2016-06-22 02:48:46.727628+00	2016-08-18 21:17:41.08577+00	29	\N	DCH Toyota of Oxnard Sales	DCH Toyota	Sales	sales@dchtoyotaofoxnard.com	855-230-1670	855-230-1670	\N	none	US/Eastern	\N	3	f	\N	\N	f
2016-06-14 14:56:43.29715+00	2016-08-18 21:20:34.146644+00	27	\N	Phillipsburg Honda Service	Phillipsburg	Service	service@phillipsburgrewards.com	800-720-7352	800-720-7352	\N	none	US/Eastern	\N	3	f	\N	\N	f
2016-06-14 14:58:12.211677+00	2016-08-18 21:20:03.181125+00	28	\N	Phillipsburg Honda Parts	Phillipsburg	Parts	parts@phillipsburgrewards.com	800-720-7352	800-720-7352	\N	none	US/Eastern	\N	3	f	\N	\N	f
2016-07-27 18:56:26.913661+00	2016-08-18 21:21:12.636297+00	49	\N	Frank Toyota Sales	Frank Toyota	Sales	sales@franktoyota.com	6195353588	6195353588	\N	sales	US/Eastern	\N	3	f	\N	\N	f
2016-06-14 14:53:02.073697+00	2016-08-26 21:09:40.317533+00	25	\N	Tri County Toyota Body Shop	Tri County	Body Shop	bodyshop@tricountyrewards.com	 6104954588	 6104954588	\N	none	US/Eastern	\N	3	f	\N	\N	f
2016-07-21 14:45:25.162756+00	2016-09-07 17:07:09.085891+00	36	\N	Porter Chevy Sales	Porter Chevy	Sales	sales@porterchevy.com	3024536800	3024536800	0	sales	US/Eastern	\N	3	f	\N	\N	f
2016-07-26 23:36:41.503702+00	2016-08-18 21:26:13.437643+00	47	\N	Duncan Acura Audi Service	Duncan Acura Audi	Service	service@duncanacuraaudi.com	5405622112	5405622112	\N	service	US/Eastern	\N	3	f	\N	\N	f
2016-05-18 13:43:33.881479+00	2017-02-11 19:49:39.890721+00	16	\N	Mark	Davis	Representative	mark@recaptureservices.com	5122704742	5122704742	\N	none	US/Eastern	f	4	f	\N	\N	f
2016-05-24 17:49:42.390773+00	2016-08-18 21:16:18.540436+00	20	\N	Team Langhorne Sales	Team	Sales	sales@teamlanghornerewards.com	866-906-3494	866-906-3494	\N	none	US/Eastern	\N	3	f	\N	\N	f
2016-05-24 17:53:09.574434+00	2016-08-18 21:16:46.116822+00	22	\N	Team Langhorne Body Shop	Team	Body Shop	bodyshop@teamlanghornerewards.com	866-901-5747	866-901-5747	\N	none	US/Eastern	\N	3	f	\N	\N	f
2016-07-14 21:41:06.508002+00	2016-09-07 17:12:17.688486+00	34	\N	Porter Ford  Service	PorterFord	Service	service@porterford.com	3027380800	3027380800	\N	service	US/Eastern	\N	3	f	\N	\N	f
2016-05-18 13:44:50.46888+00	2017-02-11 19:46:50.522717+00	17	\N	Patrick	Mueller	Representative	patrickjmueller@gmail.com	513 616 4811		\N	none	US/Eastern	f	4	f	\N	\N	f
2016-06-14 14:55:12.417304+00	2016-08-18 21:19:30.78963+00	26	\N	Phillipsburg Honda Sales	Phillipsburg	Sales	sales@phillipsburgrewards.com	800-761-0532	800-761-0532	\N	none	US/Eastern	\N	3	f	\N	\N	f
2016-06-14 14:51:30.889566+00	2016-08-26 21:08:42.661958+00	24	\N	Tri County Toyota Service	Tri County	Service	service@tricountyrewards.com	 6104954588	 6104954588	\N	none	US/Eastern	\N	3	f	\N	\N	f
2016-05-24 17:45:21.569877+00	2016-07-29 17:24:05.412958+00	19	\N	Herman	Vermaak	Consultant	harry@buyercall.com	7732909650	7732909650	\N	none	America/Chicago	\N	3	f	\N	\N	f
2016-07-26 23:35:21.751652+00	2016-08-18 21:26:33.924918+00	46	\N	Duncan Acura Audi Sales	Duncan Acura Audi	Sales	sales@duncanacuraaudi.com	5405622112	5405622112	\N	sales	US/Eastern	\N	3	f	\N	\N	f
2016-05-02 19:09:58.332269+00	2016-07-29 17:26:10.03105+00	12	\N	Scott	Jardine		scottj@4smarttech.com	6103573735	6103573735	\N	none	US/Eastern	\N	3	f	\N	\N	f
2016-07-26 23:38:15.133814+00	2016-08-18 21:26:57.840892+00	48	\N	Duncan Acura Audi Parts	Duncan Acura Audi	Parts	parts@duncanacuraaudi.com	5405622112	5405622112	\N	other	US/Eastern	\N	3	f	\N	\N	f
2016-07-21 20:05:34.800805+00	2016-09-15 12:51:40.592657+00	40	\N	Porter Infinity Service	Porter Infinity	Service	service@porterinfinity.com	3023686300	3023686300	\N	service	US/Eastern	\N	3	f	\N	\N	f
2016-07-14 21:39:45.09449+00	2016-09-07 17:12:31.490267+00	33	\N	Porter Ford Sales	Porter Ford	Sales	sales@porterford.com	3027380800	3027380800	\N	sales	US/Eastern	\N	3	f	\N	\N	f
2016-07-21 14:50:25.810185+00	2016-09-07 17:07:41.076103+00	38	\N	Porter Chevy Body Shop	Porter Chevy	Body Shop	bodyshop@porterchevy.com	3024536800	3024536800	\N	other	US/Eastern	\N	3	f	\N	\N	f
2016-07-21 14:47:08.26104+00	2016-09-07 17:08:14.216225+00	37	\N	Porter Chevy Service	Porter Chevy	Service	service@porterchevy.com	3024536800	3024536800	\N	service	US/Eastern	\N	3	f	\N	\N	f
2016-07-21 20:04:05.419027+00	2016-09-15 12:52:21.951409+00	39	\N	Porter Infinity Sales	Porter Infinity	Sales	sales@porterinfinity.com	3023686300	3023686300	\N	sales	US/Eastern	\N	3	f	\N	\N	f
2016-07-21 20:07:15.969975+00	2016-09-07 17:10:15.981618+00	41	\N	Porter Infinity Body Shop	Porter Infinity	Body Shop	bodyshop@porterinfinity.com	3023686305	3023686305	\N	none	US/Eastern	\N	3	f	\N	\N	f
2016-01-28 22:31:08.432876+00	2017-03-08 03:33:08.557679+00	2	\N	Harry	Vermaak	Internet Sales Manager	mike@buyercall.com	7735436541	7735436541	0	internet sales	US/Central	t	1	f	\N	\N	f
2016-07-14 21:42:21.226945+00	2016-09-07 17:11:41.499527+00	35	\N	Porter Ford Parts	Porter Ford	Parts	parts@porterford.com	3027380800	3027380800	\N	other	US/Eastern	\N	3	f	\N	\N	f
2016-07-22 14:08:55.889342+00	2016-08-18 21:30:34.681338+00	43	\N	Porter Nissan Service	Porter Nissan	Service	service@porternissan.com	3023686300	3023686300	\N	none	US/Eastern	\N	3	f	\N	\N	f
2016-06-14 13:59:25.081706+00	2016-08-26 21:09:07.096782+00	23	\N	Tri County Toyota Sales	Tri County	Sales	sales@tricountyrewards.com	 6104954588	 6104954588	\N	none	US/Eastern	\N	3	f	\N	\N	f
2016-07-22 14:01:41.681982+00	2016-08-18 21:30:54.703527+00	42	\N	Porter Nissan Sales	Porter Nissan	Sales	sales@porternissan.com	3023686300	3023686300	\N	sales	US/Eastern	\N	3	f	\N	\N	f
2016-01-28 22:30:09.589379+00	2017-02-23 17:42:41.136423+00	1	\N	Herman	Vermaak	Founder	hv13@hotmail.com	7732909650	773 969 9892	0	internet sales	US/Central	t	1	f	\N	\N	f
2016-05-04 21:13:38.095524+00	2017-02-11 19:39:13.704591+00	14	\N	Steve	Neu		admin@buyercall.com	8035462731		\N	none	EST	f	4	f	\N	\N	f
2017-02-10 22:05:02.766769+00	2017-02-23 17:18:45.201445+00	84	\N	Luis	Quinones		lquinones@mazdaofmesquite.com	4696557980	4696557980	\N	sales	US/Central	f	8	f	\N	\N	f
2016-11-09 16:30:37.7476+00	2017-02-11 20:06:35.031296+00	78	\N	Steve	Neu		steve@neuautomotiveservices.com	803-546-2731	803-546-2731	\N	none	EST	f	6	f	\N	\N	f
2016-07-28 00:07:18.200828+00	2016-07-29 17:26:03.051935+00	54	\N	Pat	Matthews	Sales Representative	patm@4smarttech.com	6103576138	6103576138	\N	none	US/Eastern	\N	3	f	\N	\N	f
2016-07-28 00:06:15.147748+00	2016-07-29 17:27:24.221192+00	53	\N	Jason	Stroble	Sales Representative	jasons@4smartttech.com	4435282812	4435282812	\N	sales	US/Eastern	\N	3	f	\N	\N	f
2016-09-08 03:54:03.945919+00	2016-09-09 21:28:45.823853+00	61	\N	Toyota of San Bernardino Service	Toyota of San Bernardino	Service	service@toyotaofsanbernardino.com	9095715083	9095715083	\N	none	US/Pacific	\N	3	f	\N	\N	f
2016-09-12 14:35:20.501507+00	2016-09-12 14:35:20.501546+00	62	\N	Toyota of San Bernardino Sales	Toyota of San Bernardino	Sales	sales@toyotaofsanbernardino.com	9095715082	9095715082	\N	none	US/Pacific	\N	3	f	\N	\N	f
2016-06-22 02:51:05.380531+00	2016-08-18 21:15:51.861602+00	30	\N	DCH Toyota of Oxnard Service	DCH Toyota	Service	service@dchtoyotaofoxnard.com	877-618-5842	877-618-5842	\N	none	US/Eastern	\N	3	f	\N	\N	f
2016-07-27 18:58:57.345083+00	2016-08-18 21:21:43.605839+00	50	\N	Frank Toyota Service	Frank Toyota	Service	service@franktoyota.com	6195353588	6195353588	\N	service	US/Eastern	\N	3	f	\N	\N	f
2016-07-27 18:59:52.886261+00	2016-08-18 21:22:22.812594+00	51	\N	Frank Toyota BodyShop	Frank Toyota	Body Shop	bodyshop@franktoyota.com	6195353588	6195353588	\N	other	US/Eastern	\N	3	f	\N	\N	f
2016-08-09 14:10:57.413525+00	2016-08-18 21:22:42.201604+00	56	\N	Frank Hyundai	Frank Hyundai	Sales	sales@frankhyundai.com	6194745502	6194745502	\N	none	US/Eastern	\N	3	f	\N	\N	f
2016-08-11 20:57:59.022772+00	2016-08-18 21:23:03.02575+00	57	\N	Frank Subaru	Frank Subaru	Sales	sales@franksubaru.com	6194705600	6194705600	\N	none	US/Eastern	\N	3	f	\N	\N	f
2016-07-28 00:04:41.983083+00	2016-08-18 21:23:42.405583+00	52	\N	Kevin	Stroble	Sales Representative	kevins@4smarttech.com	6107033116	6107033116	\N	sales	US/Eastern	\N	3	f	\N	\N	f
2016-07-22 14:10:04.289906+00	2016-08-18 21:31:22.544186+00	44	\N	Porter Nissan Body Shop	Porter Nissan	Body Shop	bodyshop@porternissan.com	3023686300	3023686300	\N	other	US/Eastern	\N	3	f	\N	\N	f
2016-08-23 16:16:00.488588+00	2016-08-23 19:09:08.100265+00	58	\N	Toyota of San Bernadino	Toyota of SB		steven@4smarttech.com	9095715098	9095715098	\N	none	US/Pacific	\N	3	f	\N	\N	f
2016-08-24 20:28:56.575331+00	2016-08-24 20:29:15.925821+00	59	\N	Duncan Hokie Honda and Hyundai	Duncan Hokie Honda and Hyundai	Sales	sales@duncanhokiehondaandhyundai.com	5403813200	5403813200	\N	sales	America/Chicago	\N	3	f	\N	\N	f
2016-09-19 21:42:38.088775+00	2016-09-19 21:42:38.088822+00	66	\N	Kundert Volvo Sales	Kundert Volvo	Sales	sales@kundertvolvo.com	2015672300	2015672300	\N	sales	US/Mountain	\N	3	f	\N	\N	f
2016-09-21 14:45:03.727015+00	2016-09-21 14:45:03.727084+00	67	\N	Team Toyota Princeton Sales	Team Toyota Princeton	Sales	sales@teamtoyotaprinceton.com	6098834200	6098834200	\N	none	US/Eastern	\N	3	f	\N	\N	f
2016-09-21 22:01:15.220971+00	2016-09-21 22:01:15.221+00	68	\N	Kundert Volvo Cars of Hasbrouck Heights Sales	Kundert Volvo Cars	Sales	sales@kundertvolvocarsofhasbrouckheightssales.com	2012888984	2012888984	\N	none	US/Eastern	\N	3	f	\N	\N	f
2016-08-08 20:13:52.345504+00	2016-09-01 22:25:05.267977+00	55	\N	Team Toyota of Glen Mills	Team Toyota of Glen Mills	Sales	sales@teamtoyotaglenmills.com	8664140942	8664140942	\N	sales	US/Eastern	\N	3	f	\N	\N	f
2016-09-07 17:01:28.467739+00	2016-09-07 17:01:28.467768+00	60	\N	Ultimate Subaru	Ultimate Subaru	Sales	sales@ultimatesubaru.com	5408986200	5408986200	\N	sales	US/Eastern	\N	3	f	\N	\N	f
2016-10-06 22:17:37.581997+00	2016-10-06 22:17:37.582045+00	69	\N	Freedom Hyundai Sales	Freedom Hyundai	Sales	sales@freedomhyundai.com	4842234916	4842234916	\N	none	US/Eastern	\N	3	f	\N	\N	f
2016-10-12 19:58:50.18654+00	2016-10-12 19:58:50.186599+00	70	\N	Freedom Toyota Sales	Freedom Toyota	Sales	sales@freedomtoyota.com	4846650130	4846650130	\N	none	US/Eastern	\N	3	f	\N	\N	f
2016-10-12 20:03:56.575105+00	2016-10-12 20:03:56.575155+00	72	\N	Clinton Acura Service	Clinton Acura	Service	service@clintonacura.com	9087355553	9087355553	\N	none	US/Eastern	\N	3	f	\N	\N	f
2016-10-12 20:02:23.230377+00	2016-10-12 20:04:12.019539+00	71	\N	Clinton Acura Sales	Clinton Acura	Sales	sales@clintonacura.com	9087355555	9087355555	\N	none	US/Eastern	\N	3	f	\N	\N	f
2016-10-13 15:54:12.761537+00	2016-10-13 15:54:12.761574+00	74	\N	General Protokinetix number	General Protokinetix number		contact@protokinetix.com	3042995070	3042995070	\N	none	US/Eastern	\N	5	f	\N	\N	f
2016-10-17 03:17:08.733845+00	2016-10-17 03:17:08.733873+00	75	\N	Joel Confer Toyota Sales	Joel Confer Toyota	Sales	sales@joelconfertoyota.com	8142375713	8142375713	\N	none	US/Eastern	\N	3	f	\N	\N	f
2017-02-05 08:14:11.501077+00	2017-02-05 08:14:11.501106+00	80	\N	babu	khan		luxryhealthcare@gmail.com	+14156637470		\N		US/Central	\N	7	f	\N	\N	f
2016-10-20 13:44:59.260045+00	2017-02-11 19:53:53.735984+00	76	\N	Auto	Pay	AutoPay	steveneu@finservgroup.com	8446075252		\N	none	US/Eastern	f	4	f	\N	\N	f
2016-11-09 15:22:37.568096+00	2017-02-11 20:06:55.285507+00	77	\N	Harry	Vermaak		support@buyercall.com	7732909650		\N	none	US/Central	f	6	f	\N	\N	f
2017-01-07 02:44:26.338926+00	2017-02-11 20:10:33.899361+00	79	\N	Skip 	Esch		skip@buyercall.com	949-280-5308	949-280-5308	\N	none	US/Pacific	f	1	f	\N	\N	f
2017-02-10 21:41:52.652447+00	2017-02-23 17:06:57.243404+00	81	\N	Hoss	Maleki	Manager	hoss@mazdaofmesquite.com	2146840449	2146840449	\N	sales	US/Central	f	8	f	\N	\N	f
2017-02-10 21:59:39.213802+00	2017-02-23 17:11:48.680348+00	82	\N	Dane	Justice		djustice@mazdaofmesquite.com	5034128722	5034128722	\N	internet sales	US/Central	f	8	f	\N	\N	f
2017-02-10 22:01:48.22862+00	2017-02-23 17:16:14.186673+00	83	\N	Gabby	Duran		gduran@mazdaofmesquite.com	2144444982	2144444982	\N	sales	US/Central	f	8	f	\N	\N	f
2017-02-12 18:51:08.773837+00	2017-02-12 18:51:08.773882+00	91	\N	Harri	Vermaak		hv13@hotmail.com	7739699892	7739699892	\N	none		t	1	f	\N	\N	f
2017-02-12 18:53:39.022301+00	2017-02-12 18:53:39.022327+00	93	\N	Local	Number		local@buyercall.com	7732950301	7732950301	\N	none		t	1	f	\N	\N	f
2017-02-23 21:36:30.119229+00	2017-02-23 21:36:30.119303+00	96	\N	Ryan	Smith	Sales	rsmith@mazdaofmesquite.com	2149860661	2149860661	\N	sales	America/Chicago	f	8	f	\N	\N	f
2017-03-01 21:02:44.194664+00	2017-03-01 21:02:44.194738+00	97	\N	Diva	Bennett	Sales	dbennett@mazdaofmesquite.com	9178335335	9178335335	\N	internet sales	America/Chicago	f	8	f	\N	\N	f
2017-03-13 14:06:26.313633+00	2017-03-13 17:23:21.306295+00	118	\N	Mike	Turner		mturner@mazdaofmesquite.com	4695868435	4695868435	\N	internet sales	US/Central	f	8	f	\N	\N	f
2017-03-13 14:01:51.933721+00	2017-03-13 17:31:23.377309+00	114	\N	Jon	McMenamy		jmcmenamy@mazdaofmesquite.com	9729225515	9729225515 	\N	internet sales	US/Central	f	8	f	\N	\N	f
2017-03-13 20:11:36.212948+00	2017-03-13 20:11:36.213089+00	120	\N	Demo	One	Sales	admin@perfectcarsearch.com	803-546-2731		\N	none		t	10	f	\N	\N	f
2017-03-01 21:16:26.091398+00	2017-05-09 17:08:56.806784+00	99	\N	Donny	Fabriani	Sales	donny@empireexoticmotors.com	4693347023	4693347023	\N	sales	US/Central	t	9	f	\N	\N	f
2017-03-30 16:40:57.370755+00	2017-04-10 16:14:54.08091+00	124	\N	Accounts Payables	Department	Accounting	holly@empireexoticmotors.com	2148129395		1002	other	America/Chicago	t	9	f	\N	\N	f
2017-03-01 21:28:01.591133+00	2017-05-09 17:09:05.261316+00	105	\N	Luis	Morales	Sales	luis@empireexoticmotors.com	4692360563	4692360563	\N	sales	US/Central	t	9	f	\N	\N	f
2017-03-30 18:19:09.243975+00	2017-04-10 22:06:38.2755+00	125	\N	Title and License	Department	Account	luism@empireexoticmotors.com	2148129395		1005	other		t	9	f	\N	\N	f
2017-03-30 18:21:06.522926+00	2017-04-11 15:44:42.114907+00	126	\N	Automotive Finance	Department	Finance Director	raul@empireexoticmotors.com	2148129395		1006	none		t	9	f	\N	\N	f
2017-03-22 15:44:47.538787+00	2017-03-22 15:49:53.086012+00	121	\N	Blake	Mclain		mycarstoreleads@gmail.com	6822270659		\N	none	US/Central	f	12	f	\N	\N	f
2017-03-30 19:13:20.055597+00	2017-04-11 21:33:54.582401+00	127	\N	General Dealership Caller	Department	Call Dealership	rick@empireexoticmotors.com	2148129395		1003	other		t	9	f	\N	\N	f
2017-03-09 15:49:41.985291+00	2017-03-09 15:49:41.985316+00	112	\N	Harry	Vermaak		buyercall@gmail.com	7739699892		\N		US/Central	\N	10	f	\N	\N	f
2017-03-12 17:46:22.84083+00	2017-03-12 17:46:22.840849+00	113	\N	niwale	dishman		deeplaidpharmaco@msgsafe.io	+15175217731		\N		US/Central	\N	11	f	\N	\N	f
2017-03-13 14:03:24.826662+00	2017-03-13 14:03:24.826732+00	115	\N	Reginald	Barker		reginald@mazdaofmesquite.com	2149091364	2149091364	\N	internet sales	US/Central	f	8	f	\N	\N	f
2017-03-13 14:04:23.36184+00	2017-03-13 14:04:23.361878+00	116	\N	Chris	Leighton		chris@mazdaofmesquite.com	4693528092	4693528092	\N	internet sales	US/Central	f	8	f	\N	\N	f
2017-03-13 14:05:33.984194+00	2017-03-13 14:05:33.984255+00	117	\N	Gregory	Powell		gregory@mazdaofmesquite.com	4695307898	4695307898	\N	internet sales	US/Central	f	8	f	\N	\N	f
2017-03-13 14:07:42.358843+00	2017-03-13 14:07:42.358882+00	119	\N	Christian	Tyler		christian@mazdaofmesquite.com	9039100947	9039100947	\N	none	US/Central	f	8	f	\N	\N	f
2017-11-21 16:25:18.732622+00	2017-11-21 16:25:18.732682+00	159	\N	Herman	Vermaak	Consultant	hv13@hotmail.com	7732909650	7732909650	\N	none		t	15	f	\N	\N	f
2017-04-02 23:51:38.434544+00	2017-04-02 23:52:11.38808+00	128	\N	Ronald	Jackson	Sales	rjackson@mazdaofmesquite.com	2146820881	2146820881	\N	sales	US/Central	f	8	f	\N	\N	f
2017-04-19 23:52:48.644102+00	2017-05-09 17:09:35.388629+00	133	\N	Anthony	Heverly	Sales	anthony@empireexoticmotors.com	2146767311	2146767311	\N	sales	America/Chicago	t	9	f	\N	\N	f
2017-04-07 21:06:32.006028+00	2017-04-07 21:06:32.00608+00	129	\N	Cody	Nelson		mycarstoreleads@gmail.com	6822018734	6822018734	\N	sales	US/Central	f	12	f	\N	\N	f
2017-04-07 21:09:52.740343+00	2017-04-07 21:09:52.740397+00	130	\N	Lino	Hernandez		mycarstoreleads@gmail.com	8174804705	8174804705	\N	sales	US/Central	f	12	f	\N	\N	f
2017-04-07 21:11:52.572273+00	2017-04-07 21:11:52.57233+00	131	\N	Mia	Witaker		mycarstoreleads@gmail.com	8174958621	8174958621	\N	sales	US/Central	f	12	f	\N	\N	f
2017-04-07 21:13:57.964046+00	2017-04-07 21:13:57.9641+00	132	\N	Lafayette	Brown		mycarstoreleads@gmail.com	4695314256	4695314256	\N	sales	US/Central	f	12	f	\N	\N	f
2017-03-01 21:24:23.500494+00	2017-05-09 17:09:45.584533+00	103	\N	Micheal	Marrero	Sales	micheal@empireexoticmotors.com	2145778155	2145778155	\N	sales	US/Central	t	9	f	\N	\N	f
2017-07-01 20:03:32.179363+00	2017-07-01 20:03:32.179426+00	154	\N	Cavender Main	Line		cavenderr@cavenderautosales.com	770-297-8700		\N	none	America/New_York	f	13	f	\N	\N	f
2017-06-24 14:59:41.860381+00	2017-06-24 14:59:41.860525+00	153	\N	Kim	South	Sales Representative	kim@cavenderautosales.com	404-914-7800		\N	none	America/New_York	f	13	f	\N	\N	f
2017-03-01 21:31:37.643481+00	2017-05-09 17:07:28.022109+00	107	\N	Frankie	Wells	Sales	frankie@empireexoticmotors.com	9728915612	9728915612	\N	sales	US/Central	t	9	f	\N	\N	f
2017-06-24 14:58:03.541857+00	2017-07-22 15:11:53.980362+00	152	\N	Wanda	Merced	Sales Representative	wandam@cavenderautosales.com	678-707-2380		\N	none	America/New_York	f	13	f	\N	\N	f
2017-05-17 16:27:14.808612+00	2017-05-18 15:26:14.159502+00	142	\N	Elkins	Chevrolet		steve@teamvelocitymarketing.com	8568723994		\N	none	America/New_York	t	4	f	\N	\N	f
2017-05-17 18:59:41.391765+00	2017-05-18 15:26:43.598909+00	143	\N	Reedman	Toll		steve@teamvelocitymarketing.com	2157574961		\N	none	America/New_York	t	4	f	\N	\N	f
2017-06-04 15:12:27.856922+00	2017-06-04 15:12:27.857161+00	145	\N	Cavender	Auto Sales		steve@neuautomotiveservices.com	770-297-8700		\N	none	America/New_York	f	6	f	\N	\N	f
2017-06-09 21:23:12.85425+00	2017-06-09 21:23:12.854315+00	146	\N	Angel	Vazquez	Sales	mycarstoreleads@gmail.com	8179371078	8179371078	\N	internet sales	US/Central	f	12	f	\N	\N	f
2017-11-10 16:25:23.882369+00	2017-11-27 21:41:23.7056+00	158	\N	Auto	Approve		info@autoapprove.com	8443363365		\N	none	US/Central	t	15	f	\N	\N	f
2017-06-16 16:22:25.801274+00	2017-09-12 13:43:59.778128+00	150	\N	Carlos	Guerra	Sales Representative	carlosg@cavenderautosales.com	770-561-0202		\N	none	America/New_York	f	13	f	\N	\N	f
2017-12-19 08:58:49.137492+00	2017-12-19 08:58:49.137552+00	163	\N	JamisonHer	JamisonHerHY		johnkelly51kzp5cr@yahoo.com	86983185799		\N		US/Central	\N	18	f	\N	\N	f
2017-11-07 16:24:23.751584+00	2017-11-30 20:29:31.36533+00	157	\N	Wayne	Daniel		waynedaniel3@gmail.com	7706272693		\N	none	US/Central	t	14	f	\N	\N	f
2017-09-21 20:04:35.190683+00	2017-09-21 20:04:35.190736+00	155	\N	Marisela	Boatright	Sales Representative	mycarstoreleads@gmail.com	8179918865	8179918865	\N	sales	US/Central	f	12	f	\N	\N	f
2017-10-24 19:28:05.498509+00	2017-10-24 19:28:05.498612+00	156	\N	Neu	Ford		steveneu@live.com	8035462731		\N	none		t	10	f	\N	\N	f
2017-11-30 20:34:58.420919+00	2017-11-30 20:34:58.420977+00	161	\N	Connor	Kroshus		ckroshus@autoapprove.com	7202265551		\N		US/Central	\N	16	f	\N	\N	f
2017-11-30 20:37:20.768794+00	2017-11-30 20:37:20.76881+00	162	\N	Connor	Kroshus		info@autoapprove.com	763-200-4560		\N		US/Central	\N	17	f	\N	\N	f
2018-01-02 16:38:23.173365+00	2018-01-02 16:38:23.173403+00	165	\N	Beastest Group		\N				\N	\N	US/Central	\N	4	t	Group Beast	\N	f
2018-01-03 00:24:20.197265+00	2018-01-03 00:24:35.012964+00	166	21	John	McGill		harry@buyercall.com	8473123318	8473123318	847	none		t	4	f	\N	\N	f
2018-01-30 22:41:21.503897+00	2018-01-30 22:41:21.503922+00	168	23	Brock	Monster		monster@buyercall.com	7732909650		\N		US/Central	\N	19	f	\N	\N	f
2018-01-31 16:10:34.890028+00	2018-01-31 16:10:34.89005+00	169	28	dsfsdf	sdfsdf		sdfsd@dsfsd.com	7732909650		\N		US/Central	\N	20	f	\N	\N	f
2018-01-31 16:10:38.606269+00	2018-01-31 16:10:38.606286+00	170	29	Steve	Neu		steveneu@live.com	8035462731		\N		US/Central	\N	21	f	\N	\N	f
2018-01-31 16:15:12.292466+00	2018-01-31 16:15:12.292494+00	171	30	Test	Customer		steveneu12@gmail.com	803-546-2731		\N		US/Central	\N	22	f	\N	\N	f
2018-02-07 23:19:01.186875+00	2018-02-07 23:19:01.186906+00	172	40	Blue	Man		blue@buyercall.com	7732909650		\N		US/Central	\N	23	f	\N	\N	f
2018-02-07 23:27:44.592544+00	2018-02-07 23:27:50.727807+00	174	42	Bobbyu	Johe	fdgdf	buyercall@gmail.com	7732909650	7732909650	\N	none		t	23	f	\N	\N	f
2018-02-08 20:31:38.026092+00	2018-02-08 20:31:38.026115+00	175	45	Harry	Vermoos		harry007@buyercall.com	7732909650		\N		US/Central	\N	24	f	\N	\N	f
2018-02-08 22:34:57.427294+00	2018-02-08 22:34:57.427322+00	176	46	Steve	Motelas		steve@gmailbuyercall.com	7732909650		\N		US/Central	\N	25	f	\N	\N	f
2018-02-08 23:05:23.535259+00	2018-02-08 23:05:23.535275+00	177	47	Sally	mARY		mary@buyercall.com	7732909650		\N		US/Central	\N	26	f	\N	\N	f
2018-02-08 23:10:13.819512+00	2018-02-08 23:10:13.819529+00	178	48	Bow	Tie		bow@buyercall.com	7732909650		\N		US/Central	\N	27	f	\N	\N	f
2018-02-13 01:00:32.584513+00	2018-02-13 01:00:32.584558+00	179	49	Coby	Steak		steak@buyercall.com	7732909650		\N		US/Central	\N	28	f	\N	\N	f
2018-02-13 01:16:09.384797+00	2018-02-13 01:16:09.38483+00	180	50	Molly	Perpleel		morry@buyercall.com	7732909650		\N		US/Central	\N	29	f	\N	\N	f
2018-03-20 00:19:16.560549+00	2018-03-20 00:19:16.560571+00	183	\N	Mike	Jones	\N	mike@buyercall.com	2248758574		\N	\N	US/Central	t	4	f	\N	\N	f
2018-04-21 20:25:15.371912+00	2018-04-21 20:25:15.371945+00	184	53	Bruce	Last		last@buyercall.com	7732909650		\N		US/Central	\N	30	f	\N	\N	f
2018-11-07 20:00:16.109037+00	2018-11-07 20:00:25.728703+00	185	54	Trevor	Moortgat	Manager	saastool@gmail.com	703-543-9012	703-543-9012	\N	none		t	4	f	\N	\N	f
2018-01-01 21:57:06.550818+00	2018-11-20 17:43:17.769613+00	164	\N	Barry	Bermaak		hv13@gmail.com	7732909650	7732909650	773	none		t	4	f	\N	\N	f
2019-03-01 02:30:19.44867+00	2019-03-01 02:30:19.448705+00	186	\N	Bob	Vans	Manager	bob@buyercall.com	7732909650		\N	none		t	4	f	\N	\N	f
2019-03-05 22:09:55.527282+00	2019-03-05 22:09:55.527311+00	187	\N			\N		8743123318		\N	\N	US/Central	t	4	f	\N	\N	f
2019-04-08 14:12:03.046965+00	2019-04-08 14:13:06.980622+00	188	57	Autosoft	DMS		autosoft@buyercall.com	8004734630	8004734630	\N	none		t	4	f	\N	\N	f
2019-04-11 22:08:14.894105+00	2019-04-11 22:08:14.894119+00	189	58	Josh	Moore		josh@buyercall.com	7732909650		\N		US/Central	\N	32	f	\N	\N	f
2019-04-11 22:12:50.160883+00	2019-04-11 22:12:50.16091+00	190	59	Bobby	Jones		jones@bobby.com	7732909650		\N		US/Central	\N	33	f	\N	\N	f
2017-05-17 19:02:00.150621+00	2019-04-14 00:50:11.437353+00	144	\N	New Rochelle	 Chevrolet		steve@teamvelocitymarketing.com	9147309960		\N	none	America/New_York	f	4	f	\N	2019-04-14 00:50:11.435887	t
2019-04-26 17:07:50.880793+00	2019-04-26 17:07:50.880816+00	191	\N	Trevor	Moortgat		trevor@level5advertising.com	7035439012		\N	none		t	4	f	\N	\N	f
2016-05-04 22:17:52.43163+00	2019-05-23 22:52:22.329752+00	15	20	Herman	Vermaak	Consultant	hv13@hotmail.com	7732909650	7732909653	773	none	America/Chicago	f	4	f		\N	f
2019-10-22 15:18:28.062512+00	2019-10-22 15:19:09.035456+00	192	62	TeamV	Dealer		teamvdealer@buyercall.com	7739899698		\N	none	US/Central	t	34	f		\N	f
\.


--
-- Name: agents_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('agents_id_seq', 192, true);


--
-- Data for Name: alembic_version; Type: TABLE DATA; Schema: public; Owner: -
--

COPY alembic_version (version_num) FROM stdin;
3301c0c66ef1
\.


--
-- Data for Name: api_tokens; Type: TABLE DATA; Schema: public; Owner: -
--

COPY api_tokens (id, created_on, updated_on, api_token_hash, is_active) FROM stdin;
1	2018-01-01 20:00:36.491504+00	\N	$2a$12$ras4De/jK2VJ/xJKgj7eIestpKsPcxH79hBb2HmdJdu6wB15BZ44a	t
2	2018-01-01 20:00:36.491504+00	\N	$2a$12$bZPI66mXlmNDjox6PM8p/.ikXGvcldEKxVX2GK3iun.d2pBDBWi22	t
3	2018-01-01 20:00:36.491504+00	\N	$2a$12$jLsUK/UVCheXkylU49jzu.gm1Pj7r2zJPitBXMB39mI1jCsYzgsyy	t
4	2018-01-30 22:53:48.953005+00	2018-01-30 22:53:48.953034+00	$2a$12$fhUpGlGXeygfwdWkjdr9MORUSH8TdXeFdS.7io3fwYIQk2UnQANYu	t
5	2018-01-30 23:27:48.336532+00	2018-01-30 23:27:48.336568+00	$2a$12$IkMQelp0ToLwQ2Aat8w8z.inPLkD8K.5vAoE9yzieIeaBBfvLVi.a	t
6	2018-01-30 23:28:10.166452+00	2018-01-30 23:28:10.166482+00	$2a$12$ftRbdiXGIWXD/feEr05XLO1er1VdflZ8uWaCTTq1eDnHUgGKJCXDi	t
7	2018-01-30 23:50:51.06205+00	2018-01-30 23:50:51.062084+00	$2a$12$KHCDhsDSMsZllIWedld9UuDKMu6DkG6jHBvfVBkz1xi3aCENWunkK	t
9	2018-02-06 19:41:28.674675+00	2018-02-06 19:41:28.674709+00	$2a$12$FQQ9JrEq0lW/qnMG.0fTmuVLVOXGdHXhLu0o5U3qmmHSdEm0dX4mS	f
10	2018-02-06 21:17:34.580491+00	2018-02-06 21:17:34.580522+00	$2a$12$bUk1Si3q7RWMW/L7mCGnXu7ogF4nnZNzlXgGy9oCdr6los76QGJt6	f
11	2018-02-07 01:22:02.28467+00	2018-02-07 01:22:02.284704+00	$2a$12$N3HQgIBR4mTvN2lTX9pCXu/xLvfTM4EX47MQ.E/DL/5FxJT7NEe/i	f
12	2018-02-07 02:08:22.859026+00	2018-02-07 02:08:22.859061+00	$2a$12$83TN5m8c.O2wKEVFCtv16O3JHVeL3yvcNiBl1/VvUOdPdszmO4zaO	f
13	2018-02-07 15:56:00.786016+00	2018-02-07 15:56:00.786048+00	$2a$12$5lEYsuQMaWCXFsqcySpFfOlmwogsVY6sisqstLHlu0Mfhkc6MeN12	f
14	2018-02-07 16:06:15.426931+00	2018-02-07 16:06:15.426961+00	$2a$12$wU5IUbmORVb5SrZSiPDqx.XrGHne5g/xDSkBbuB3gfXgqURf5uCMu	f
15	2018-02-07 17:36:13.907256+00	2018-02-07 17:36:13.907311+00	$2a$12$5A01.BzeI1L5vHT8T0VQM.IT8chBkXgUsyUQbDzXlGvoUrvgdEz3i	f
16	2018-02-07 22:54:36.682053+00	2018-02-07 22:54:36.682087+00	$2a$12$n96yqiMdPsbMJyEXsF2ebuKZDXtuRVtN/kKQkTUL47PFJxoQuHE/K	f
17	2018-02-07 22:59:53.048943+00	2018-02-07 22:59:53.048973+00	$2a$12$4OBqVxYC3ljuPilbundcru1KUghAQ3f86MtaxCtTAC1w2b8MtadmW	f
18	2018-02-08 16:34:54.938379+00	2018-02-08 16:34:54.938411+00	$2a$12$E2hQqdZfWN9SRgr0gN.Q3.QzMjQIeBpdsztLyZPyi2T.DM.yLqbBe	f
19	2018-02-08 17:52:17.307263+00	2018-02-08 17:52:17.307293+00	$2a$12$K3JUsaHaXwZHpI8/AV1jHuB5v98TDzc432RqnlF.5FE6GCGk9K8.q	f
8	2018-02-04 14:25:11.130364+00	2019-03-04 15:20:00.116938+00	$2a$12$zD80z7gfJ8.zD3ghIJvdzOCzRWua/y/uSKZtKN3GBMD3E3lZ2rWxS	t
20	2019-07-27 18:32:29.958548+00	2019-07-27 18:32:29.958565+00	$2a$12$C/FdbPqBSQSPlkP7qoxeaulBtlPFBedecAwuo8eSqUUZ2sTwo1X4G	f
21	2019-10-22 12:55:37.252182+00	2019-10-22 12:55:37.252207+00	$2a$12$NqltHLga18zGTy00nU2If.g3HpTEckpfID9g/XExLWh2gArJJYWTq	f
\.


--
-- Name: api_tokens_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('api_tokens_id_seq', 21, true);


--
-- Data for Name: audio_urls; Type: TABLE DATA; Schema: public; Owner: -
--

COPY audio_urls (created_on, updated_on, id, inbound_id, widget_guid, whisper_message_type, audio_url, is_enabled) FROM stdin;
2017-02-19 13:00:10+00	2017-02-19 13:00:10+00	1	104	\N	whisperMessage	https://s3-us-west-2.amazonaws.com/buyercall-audio-whispers/this_is_harry.mp3	t
2017-02-23 13:00:10+00	2017-02-23 13:00:10+00	2	121	\N	whisperMessage	https://s3-us-west-2.amazonaws.com/buyercall-audio-whispers/MazadaMesquite/welcome-04.mp3	t
2017-02-19 13:00:10+00	2017-02-19 13:00:10+00	3	121	\N	voicemailMessage	https://s3-us-west-2.amazonaws.com/buyercall-audio-whispers/MazadaMesquite/voicemail-03.mp3	t
2017-02-23 13:00:10+00	2017-02-23 13:00:10+00	4	121	\N	CallBackText	https://s3-us-west-2.amazonaws.com/buyercall-audio-whispers/MazadaMesquite/call-back-01.mp3	t
2017-04-13 13:00:10+00	2017-04-13 13:00:10+00	7	125		noDigitWhisperMessage	https://s3-us-west-2.amazonaws.com/buyercall-audio-whispers/EmpireExoticMotors/menu.mp3	t
2017-04-13 13:00:10+00	2017-04-13 13:00:10+00	5	104		whisperMessage	https://s3-us-west-2.amazonaws.com/buyercall-audio-whispers/EmpireExoticMotors/welcome.mp3	f
2017-02-19 13:00:10+00	2017-02-19 13:00:10+00	8	104		noDigitWhisperMessage	https://s3-us-west-2.amazonaws.com/buyercall-audio-whispers/EmpireExoticMotors/menu.mp3	t
2017-04-13 13:00:10+00	2017-04-13 13:00:10+00	6	125		digitWhisperMessage	https://s3-us-west-2.amazonaws.com/buyercall-audio-whispers/EmpireExoticMotors/geeting_menu.mp3	t
2018-01-02 17:42:30.802182+00	2018-01-02 17:42:38.181977+00	9	139	\N	whisperMessage	https://buyercall-test-whispers.s3.amazonaws.com/4/9_this_is_harry.mp3	t
2018-01-02 17:45:28.55097+00	2018-01-02 17:45:33.17769+00	10	139	\N	digitWhisperMessage	https://buyercall-test-whispers.s3.amazonaws.com/4/10_EdMeeker-TakeMeOutToTheBallGame-remastered.mp3	t
2018-03-20 03:06:50.529478+00	2018-03-20 03:07:00.591277+00	26	151	\N	whisperMessage	https://buyercall-test-whispers.s3.amazonaws.com/4/26_this_is_harry.mp3	t
2018-01-02 17:48:47.05448+00	2018-01-02 17:48:53.014982+00	11	140	\N	whisperMessage	https://buyercall-test-whispers.s3.amazonaws.com/4/11_hello_chutney.wma	t
2018-01-02 18:33:59.316897+00	2018-01-02 18:34:07.753406+00	12	140	\N	whisperMessage	https://buyercall-test-whispers.s3.amazonaws.com/4/12_this_is_harry.mp3	t
2018-01-02 19:14:56.800939+00	2018-01-02 19:15:01.549598+00	13	139	\N	whisperMessage	https://buyercall-test-whispers.s3.amazonaws.com/4/13_hello_chutney.wma	t
2018-03-20 04:02:37.585123+00	2018-03-20 04:02:47.893891+00	27	152	\N	whisperMessage	https://buyercall-test-whispers.s3.amazonaws.com/28/27_this_is_harry.mp3	t
2018-01-02 19:16:40.37131+00	2018-01-02 19:16:48.924347+00	14	139	\N	whisperMessage	https://buyercall-test-whispers.s3.amazonaws.com/4/14_Check_Out_The_Mother.mp3	t
2018-01-02 19:18:04.215527+00	2018-01-02 19:18:05.833721+00	15	139	\N	whisperMessage	https://buyercall-test-whispers.s3.amazonaws.com/4/15_Check_Out_The_Mother.mp3	t
2018-01-02 19:19:33.202133+00	2018-01-02 19:19:38.209196+00	16	139	\N	whisperMessage	https://buyercall-test-whispers.s3.amazonaws.com/4/16_Check_Out_The_Mother.mp3	t
2018-01-02 21:09:50.883432+00	2018-01-02 21:09:56.682046+00	17	139	\N	whisperMessage	https://buyercall-test-whispers.s3.amazonaws.com/4/17_Check_Out_The_Mother.mp3	t
2018-01-02 21:15:03.190422+00	2018-01-02 21:15:03.417132+00	18	\N	\N	whisperMessage	https://buyercall-test-whispers.s3.amazonaws.com/4/18_this_is_harry.mp3	t
2018-01-02 21:15:35.817074+00	2018-01-02 21:15:39.019172+00	19	139	\N	whisperMessage	https://buyercall-test-whispers.s3.amazonaws.com/4/19_welcome-04.mp3	t
2018-01-02 21:17:06.198561+00	2018-01-02 21:17:07.240343+00	20	139	\N	whisperMessage	https://buyercall-test-whispers.s3.amazonaws.com/4/20_voicemail-04.mp3	t
2018-01-02 21:20:59.412489+00	2018-01-02 21:21:03.995285+00	21	140	\N	whisperMessage	https://buyercall-test-whispers.s3.amazonaws.com/4/21_call-back-01.mp3	t
2018-01-30 21:50:20.157126+00	2018-01-30 21:50:20.383229+00	22	\N	\N	whisperMessage	https://buyercall-test-whispers.s3.amazonaws.com/4/22_welcome-04.mp3	t
2018-01-30 21:51:52.843051+00	2018-01-30 21:51:57.971106+00	23	141	\N	whisperMessage	https://buyercall-test-whispers.s3.amazonaws.com/4/23_welcome-01.mp3	t
2018-01-30 22:05:22.795644+00	2018-01-30 22:05:47.102718+00	24	142	\N	whisperMessage	https://buyercall-test-whispers.s3.amazonaws.com/4/24_welcome-01.mp3	t
2018-03-20 00:28:33.350145+00	2018-03-20 00:28:40.180749+00	25	148	\N	whisperMessage	https://buyercall-test-whispers.s3.amazonaws.com/4/25_Check_Out_The_Mother.mp3	t
\.


--
-- Name: audio_urls_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('audio_urls_id_seq', 27, true);


--
-- Data for Name: block_numbers; Type: TABLE DATA; Schema: public; Owner: -
--

COPY block_numbers (created_on, updated_on, id, phonenumber, status, partnership_accounts_id, is_global_exclusion) FROM stdin;
2017-06-19 19:31:07.211577+00	2017-06-19 19:31:07.211693+00	1	+16183551134	blocked	13	f
2017-07-19 13:51:38.374707+00	2017-07-19 13:51:38.374779+00	2	17062442005	blocked	13	f
2017-11-25 04:41:15.192716+00	2017-11-25 04:41:15.192755+00	4	1-678-876-6226	blocked	13	f
2017-11-25 15:33:03.05612+00	2017-11-25 15:33:03.056181+00	5	1-770-297-8700	blocked	13	f
2017-12-19 19:27:36.540595+00	2017-12-19 19:27:54.178169+00	8	770-941-1200	blocked	13	f
2017-11-28 23:24:47.336981+00	2017-11-28 23:24:47.337008+00	7	1-303-518-2891	blocked	15	f
2018-01-03 00:45:56.348858+00	2018-01-03 00:45:56.34892+00	9	8473123318	blocked	4	f
\.


--
-- Name: block_numbers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('block_numbers_id_seq', 9, true);


--
-- Data for Name: contact_notes; Type: TABLE DATA; Schema: public; Owner: -
--

COPY contact_notes (created_on, updated_on, id, contact_id, text, lastname, is_enabled, user_id, partnership_account_id) FROM stdin;
2016-08-22 11:53:21.980551+00	\N	1	3873	8.22.16 sent to autopay		t	4	1
2017-01-27 21:12:23.813393+00	\N	2	1350	CCB LVM RF 8-17-16		t	4	1
2016-05-25 16:27:39.345911+00	\N	3	3747	Boyd Massey		t	4	1
2016-05-25 16:36:04.663392+00	\N	4	3747	270k unable to refinance		t	4	1
2016-05-25 16:40:37.271819+00	\N	5	4015	Left Message\r\n		t	4	1
2016-05-25 17:12:41.551243+00	\N	6	1596	Doctors office.		t	4	1
2016-05-25 16:47:38.916867+00	\N	7	1158	Left message 5.25.16		t	4	1
2016-05-25 17:00:15.434514+00	\N	8	4010	Closed 5.25.16		t	4	1
2016-05-25 17:17:29.170322+00	\N	9	4007	Left Messge 5.25.16		t	4	1
2016-05-25 18:21:19.217457+00	\N	10	4078	VM Not set up. unable to leave message		t	4	1
2016-05-25 18:10:53.180617+00	\N	11	3067	LM 5.25.16		t	4	1
2016-05-25 18:15:15.079902+00	\N	12	2967	Jeannie Blanko - submitted app		t	4	1
2016-05-25 18:25:20.810743+00	\N	13	2384	Edwards Tel #		t	4	1
2016-05-25 18:27:33.023035+00	\N	14	721	wrong #		t	4	1
2016-05-25 16:31:23.600549+00	\N	15	3302	Said he would call back. In meeting		t	4	1
2016-08-08 16:33:20.84504+00	\N	16	661	8.8.16 Autopay\r\n		t	4	1
2016-05-25 16:44:48.650711+00	\N	17	3969	Mail box full. Cannot leave message.		t	4	1
2016-05-25 18:24:00.595132+00	\N	18	3105	Dara Shelton going online		t	4	1
2016-05-25 18:31:07.22972+00	\N	19	3281	Wants to finance a new car		t	4	1
2016-07-08 19:15:19.271388+00	\N	20	3254	Calling back to do the app		t	4	1
2016-08-29 21:11:00.718892+00	\N	21	3100	8.9.16 sent to autopay		t	4	1
2016-05-31 16:25:19.351167+00	\N	22	213	LM 5.31.16		t	4	1
2016-05-31 17:46:17.728562+00	\N	23	1787	filling out app when I called back. 5.31.16		t	4	1
2016-05-31 18:30:57.50753+00	\N	24	436	customer hung  up 5.31.16		t	4	1
2016-05-31 19:52:31.09934+00	\N	25	3284	spam		t	4	1
2016-06-01 13:17:46.684785+00	\N	26	1823	LM 6.1.16 Sarah Buckley		t	4	1
2016-08-17 21:02:39.055983+00	\N	27	618	8.10.16 sent to CU\r\n8.17.16 sent to autopay		t	4	1
2016-06-01 19:43:09.147026+00	\N	28	3166	Lois Mills		t	4	1
2016-06-01 21:18:35.288285+00	\N	29	271	Yolanda Jackson. LM 6.1.16		t	4	1
2016-06-01 21:42:42.649646+00	\N	30	1699	Jacob Burris		t	4	1
2016-06-01 17:26:28.25577+00	\N	31	4019	Lynda Maxwell		t	4	1
2016-06-02 21:14:26.423891+00	\N	32	2801	LM 6.2.16\r\n		t	4	1
2016-06-02 13:03:39.180994+00	\N	33	1953	spam		t	4	1
2016-08-12 21:04:19.011176+00	\N	34	2762	CCB Inform they have autos refinance with someone else now RF 8-12-16		t	4	1
2016-08-24 16:31:42.983418+00	\N	35	578	8.24.16 sent to autopay		t	4	1
2016-06-01 17:57:33.235177+00	\N	36	4019	questions on app		t	4	1
2016-06-02 14:23:23.700894+00	\N	37	3166	going online tonight		t	4	1
2017-01-27 21:12:23.813076+00	\N	38	2806	CCB to check status of completing online app. 8-10-16 RF		t	4	1
2016-07-20 15:45:48.07608+00	\N	39	980	client called wanting to get more info on her loan, also she wanted to see if she was approved or not.  She also said Mark left her a voicemail. Contact number: 972-689-5620		t	4	1
2016-06-01 19:16:44.66422+00	\N	40	1269	spam		t	4	1
2016-06-03 14:39:12.638166+00	\N	41	3753	513-235-8208		t	4	1
2016-06-07 13:33:38.927622+00	\N	42	1923	781-724-1889		t	4	1
2016-08-23 17:06:04.46843+00	\N	43	4033	8.23.16 sent to cu		t	4	1
2016-06-13 21:22:51.792868+00	\N	44	2777	ring no answer		t	4	1
2016-06-13 21:23:12.197859+00	\N	45	2777	ring no answer\r\n		t	4	1
2016-06-27 14:39:07.460574+00	\N	46	3609	going online		t	4	1
2016-06-27 14:41:48.350549+00	\N	47	3386	LM 		t	4	1
2016-06-27 14:44:06.105348+00	\N	48	3202	Rude\r\n		t	4	1
2016-06-27 14:51:39.907031+00	\N	49	2026	LM		t	4	1
2016-06-27 14:57:36.975636+00	\N	50	1545	Going to the branch		t	4	1
2016-06-27 15:07:31.241859+00	\N	51	1963	LM		t	4	1
2016-06-27 15:09:37.972031+00	\N	52	917	LM		t	4	1
2016-06-27 18:38:51.050514+00	\N	53	743	614-204-0877 cell		t	4	1
2016-06-27 15:51:18.628067+00	\N	54	2721	LM		t	4	1
2016-06-27 15:59:45.006454+00	\N	55	2495	330-518-2614\r\nco signor for son		t	4	1
2016-06-27 15:01:17.338979+00	\N	56	3740	No answer		t	4	1
2016-06-27 20:41:08.194688+00	\N	57	1969	LM		t	4	1
2016-06-27 18:57:47.254648+00	\N	58	2655	Business number		t	4	1
2016-06-28 17:09:39.210917+00	\N	59	1969	SPOKE TO NANCY AT NEWTOWN FALLS		t	4	1
2016-08-10 16:01:42.651215+00	\N	60	74	Cust. cant take on any more credit obligations. he has just refinance is house and says he just don't want his credit pulled anymore. 8-9-16 RF		t	4	1
2016-08-12 18:14:18.427255+00	\N	61	1899	8.10.16 sent to autopay		t	4	1
2016-06-29 18:41:48.516825+00	\N	62	537	330-360-2062		t	4	1
2016-06-29 15:22:40.008704+00	\N	63	3941	LM 		t	4	1
2016-07-05 16:57:55.682252+00	\N	64	1622	Declined LTV		t	4	1
2016-04-21 21:55:13.252712+00	\N	65	3586	Need to follow!		t	2	2
2016-08-08 18:54:54.128484+00	\N	66	503	Cb no answer LVM		t	4	1
2016-05-25 17:04:30.503361+00	\N	67	2642	Left message - 5.25.16		t	4	1
2016-05-25 17:14:58.354506+00	\N	68	3747	This is an Ashland CU Number		t	4	1
2016-05-25 17:15:20.517931+00	\N	69	3747	This is an Ashland CU Number		t	4	1
2016-05-25 18:16:26.475258+00	\N	70	1538	David McKibbin		t	4	1
2016-05-25 18:28:34.615745+00	\N	71	2331	my #. Testing DID		t	4	1
2016-06-01 16:58:10.936246+00	\N	72	1531	app sent		t	4	1
2016-06-14 11:50:15.706705+00	\N	73	3508	Sent App		t	4	1
2016-06-14 11:50:33.243276+00	\N	74	125	Sent App		t	4	1
2016-06-27 15:48:40.693493+00	\N	75	3740	LM		t	4	1
2016-08-25 13:27:22.962121+00	\N	76	3283	8.25.16 sent to CU.		t	4	1
2016-08-17 21:17:25.344041+00	\N	77	1678	8.17.16 sent to cu		t	4	1
2016-08-16 19:31:15.016135+00	\N	78	2709	Call customer and LM		t	4	1
2016-08-11 12:20:49.474101+00	\N	79	2669	8.11.16 sent to autopay		t	4	1
2016-08-22 14:22:04.486094+00	\N	80	1420	8.22.16 CU is calling to set appointment		t	4	1
2016-08-16 19:29:29.725565+00	\N	81	3963	8.16.16 sent to autopay		t	4	1
2016-08-10 16:39:34.241669+00	\N	82	1621	8.10.16 sent to autopay		t	4	1
2017-01-27 21:12:23.812525+00	\N	83	4103	LVM 8-10-16 RF		t	4	1
2016-08-03 21:26:19.649416+00	\N	84	2662	8.3.16 - has not been approved yet,\r\n		t	4	1
2016-08-12 16:33:26.818107+00	\N	85	3028	Customer has already talked to someone in regard to questions		t	4	1
2016-08-16 19:30:47.99018+00	\N	86	538	8.16.16 sent to autopay		t	4	1
2016-08-16 19:31:15.000181+00	\N	87	2709	8.16.16 sent to autopay		t	4	1
2016-08-16 19:31:40.10093+00	\N	88	3597	8.16.16 sent to autopay		t	4	1
2016-08-05 15:39:17.915208+00	\N	89	3108	Says no one called from this number and wishes not to receive anymore calls.		t	4	1
2016-08-11 12:20:27.388218+00	\N	90	1979	8.11.16 sent to cu		t	4	1
2016-08-11 12:21:15.089629+00	\N	91	1306	8.11.16 sent to autopay		t	4	1
2017-11-30 23:54:57.95665+00	2017-11-30 23:54:57.956718+00	92	1168	KIM LEFT MESSAG		t	13	13
2016-08-08 13:56:30.694473+00	\N	93	2214	This customer insisted that no one called from this number and we dialed the wrong number. Not interested 		t	4	1
2017-01-27 21:12:23.813736+00	\N	94	4181	CCB/LVM		t	4	1
2016-08-08 14:02:26.152162+00	\N	95	4106	Customer is going into the branch in Lancaster to submit application		t	4	1
2016-08-09 17:08:20.722559+00	\N	96	2724	8.8.16 Credit Union has been trying to reach him. Will follow-up with CU today.		t	4	1
2016-08-09 17:08:43.530706+00	\N	97	3940	8.9.16 sent to autopay		t	4	1
2017-01-27 21:12:23.812756+00	\N	98	2221	Customer was belligerent and asked if to be taken off do not call list. RF 		t	4	1
2016-08-08 15:50:55.826128+00	\N	99	2221	DO NOT CALL THIS CUSTOMER BACK		t	4	1
2016-08-08 17:01:56.072776+00	\N	100	4	8.8.16		t	4	1
2016-08-08 20:08:04.885225+00	\N	101	1809	8.8.16 sent to cu - declined. sent to autopay 8.8.16		t	4	1
2016-08-08 20:20:25.607566+00	\N	102	2426	 CB customer and he was informed that application was declined.		t	4	1
2016-08-08 20:42:05.261522+00	\N	103	2738	8.8.16 sent to CU.		t	4	1
2016-08-08 22:03:52.029652+00	\N	104	1271	8.8.16 sent to autopay		t	4	1
2016-08-08 22:04:13.130176+00	\N	105	1271	8.8.16 sent to autopaty		t	4	1
2016-08-09 17:08:20.713232+00	\N	106	2724	8.9.16 sent to autopay		t	4	1
2016-08-10 14:57:16.412591+00	\N	107	757	8.10.16 Sent to CU		t	4	1
2016-08-09 21:12:13.886825+00	\N	108	255	8.9.16 Sent to CU		t	4	1
2016-08-17 21:03:06.583869+00	\N	109	2338	8.12.16 sent to cu\r\n8.17.16 sent to autopay		t	4	1
2016-08-10 14:09:28.02701+00	\N	110	3772	Call in regard to a loan app. plans to do application over through website		t	4	1
2016-08-10 15:36:03.143874+00	\N	111	2274	Cust. called in regard to credit card not to refinance auto loan. safe to take her off the DO NOT CALL LIST		t	4	1
2016-08-12 13:19:47.022649+00	\N	112	3161	8.12.16 sent to cu		t	4	1
2016-08-16 19:32:06.19221+00	\N	113	2191	8.12.16 sent to cu\r\n8.16.16 sent to autopay		t	4	1
2016-08-12 16:33:26.804646+00	\N	114	3028	8.12.16 sent to autopay		t	4	1
2016-08-12 19:38:54.438964+00	\N	115	3471	8.12.16 sent to autopay\r\n		t	4	1
2016-08-12 19:38:54.449185+00	\N	116	3471	8.12.16 need vehicle model. LM 		t	4	1
2016-08-12 19:08:45.409165+00	\N	117	1504	terry Riebe Cell number is (406)218-9018.....Wife Donna Riebe Cell (406)550-0738 RF 8-12-16\r\n8.12.16 sent to cu.\r\n		t	4	1
2016-08-25 14:45:19.80611+00	\N	118	4181	8.25.16 sent to CU		t	4	1
2016-08-22 14:22:04.504895+00	\N	119	1420	Called her back - completed		t	4	1
2016-08-22 17:12:49.3494+00	\N	120	2397	Quicken loans. Called LVM about refinancing of home		t	4	1
2016-08-23 12:03:32.115854+00	\N	121	616	8.18.16 sent to CU\r\n8.23.16 sent to autopay		t	4	1
2016-08-15 12:15:41.589285+00	\N	122	3739	8.15.16 sent to autopay		t	4	1
2016-08-15 12:16:04.408341+00	\N	123	1213	8.15.16 sent to autopay		t	4	1
2016-08-15 12:16:27.487224+00	\N	124	1835	8.15.16 sent to autopay		t	4	1
2016-08-15 12:16:27.498902+00	\N	125	1835	CB LVM RF		t	4	1
2017-01-27 21:12:23.812811+00	\N	126	1835	CB and LVM. will Cb 		t	4	1
2017-01-27 21:12:23.813055+00	\N	127	735	A women answers and said no one call and no to offer. 8/09/16  R.F 		t	4	1
2016-08-15 18:08:54.335398+00	\N	128	2786	8.15.16 sent to cu		t	4	1
2017-01-27 21:12:23.81325+00	\N	129	4004	CCB LMV 8-15-16 RF		t	4	1
2016-08-15 18:49:06.218997+00	\N	130	3823	10.15.16 sent to cu		t	4	1
2016-08-15 18:52:16.288072+00	\N	131	3267	10.15.16 sent to cu		t	4	1
2016-08-15 19:19:00.088926+00	\N	132	4067	8.15.16 sent to cu		t	4	1
2016-08-15 20:17:34.41722+00	\N	133	365	called in regard application being sent to his email. RF 8-15-16		t	4	1
2016-08-16 15:33:43.630669+00	\N	134	2081	8.15.16 sent to CU\r\n8.16.16 sent to autopay not eligible at CU		t	4	1
2016-08-16 20:01:05.541323+00	\N	135	365	This guy is the same person. He  kepts changing up his name for some odd reason. He is Jeremiah Soval ; Joseph Remeral and Jamie Sandoval. Not sure what's is problem \r\nBut he was giving every option to a credit app. All of his questions have been answered. 8-16-16 RF		t	4	1
2016-08-23 19:19:02.402776+00	\N	136	3480	8.15.16 sent to cu\r\n8.23.16 sent to autopay		t	4	1
2017-01-27 21:12:23.813257+00	\N	137	897	Customer started speaking English then went to speaking Spanish said I had wrong number. 8-15-16 RF		t	4	1
2016-08-15 21:15:12.486125+00	\N	138	2780	Second contact number (661)309-5008\r\n8.15.16 sent to autopay		t	4	1
2016-08-16 11:05:56.134496+00	\N	139	2828	8.16.16 sent to autopay		t	4	1
2016-08-16 11:10:52.983007+00	\N	140	1363	8.15.16 sent to cu		t	4	1
2016-08-16 19:29:55.405347+00	\N	141	3735	8.16.16 sent to autopay		t	4	1
2016-08-16 19:30:23.622599+00	\N	142	1026	8.16.16 sent to autopay		t	4	1
2016-08-16 19:30:23.647586+00	\N	143	1026	Please do not call this customer back until after 4:00pm he is at work.		t	4	1
2016-08-16 19:32:35.842617+00	\N	144	1119	8.10.16 sent to cu\r\n8.16.16 sent to autopay		t	4	1
2016-08-17 16:03:49.250392+00	\N	145	349	8.17.16 sent to autopay		t	4	1
2016-08-17 17:05:00.37423+00	\N	146	4004	Will call Back and give correct vin number. RF		t	4	1
2016-08-19 18:14:58.703918+00	\N	147	2973	8.19.16 sent to cu		t	4	1
2016-08-19 18:14:58.715164+00	\N	148	2973	Called and left message , says he was calling about offer in the mail		t	4	1
2016-08-22 22:19:14.807143+00	\N	149	1681	8.22.16 sent to autopay		t	4	1
2016-08-25 16:47:09.538071+00	\N	150	3257	8.15.16 sent to cu\r\n8.25.16 sent to autopay		t	4	1
2016-08-24 13:58:01.707578+00	\N	151	4026	Talked to this gentleman already he's really not interested. Said he will not even consider doing business with us unless its in the local branch. I gave him the info to a local branch in his area as well as other information. Answer all of his questions. RF		t	4	1
2016-08-26 17:41:45.444232+00	\N	152	390	8.26.16 LM		t	4	1
2016-08-22 21:54:05.186121+00	\N	153	3558	8.22.16 sent to autopay		t	4	1
2016-08-23 11:47:27.216241+00	\N	154	149	8.23.16 sent to autopay		t	4	1
2016-08-23 11:59:23.202261+00	\N	155	390	8.23.16 sent to CU		t	4	1
2016-08-23 14:20:04.256738+00	\N	156	2397	CCB LVM 		t	4	1
2017-01-27 21:12:23.813616+00	\N	157	578	CCB NA		t	4	1
2017-01-27 21:12:23.813623+00	\N	158	192	CCB/LVM RF		t	4	1
2017-01-27 21:12:23.81363+00	\N	159	4061	unknown caller		t	4	1
2016-08-29 12:09:17.77865+00	\N	160	1298	8.29.16 sent to cu		t	4	1
2016-08-29 12:09:36.28067+00	\N	161	1624	8.29.16 sent to autopay		t	4	1
2016-08-24 12:01:24.830913+00	\N	162	777	8.24.16 sent to CU		t	4	1
2016-08-29 12:31:08.461213+00	\N	163	2741	8.29.16 sent to cu		t	4	1
2016-08-29 12:41:22.365045+00	\N	164	3249	8.29.016 sent to cu		t	4	1
2016-08-31 16:57:34.173484+00	\N	165	2874	8.29.16 sent to cu\r\n8.30.16 sent to autopay		t	4	1
2017-01-27 21:12:23.813323+00	\N	231	1363	Cust. is going to gather info. and do it from the website. RF 8-15-16		t	4	1
2017-01-27 21:12:23.813069+00	\N	166	618	Customer going through website to complete app. If can't complete will cb and do over phone. 8-10-16 RF		t	4	1
2017-12-20 23:43:24.931113+00	2017-12-20 23:43:24.931172+00	167	1673	KIM TALKED TO . MADE AN APPOINTMENT FOR FRIDAY		t	13	13
2017-01-27 21:12:23.81309+00	\N	168	1899	Error this app. Should have been push through Edwards not Emerald 8-10-16 RF		t	4	1
2017-01-27 21:12:23.813114+00	\N	169	365	Wants application and info on his offer sent to email. jeremiah7767@yahoo.com  8/10/16 RF		t	4	1
2016-08-31 14:43:00.567311+00	\N	170	2104	8.30.16 sent to CU		t	4	1
2016-08-30 21:07:17.608603+00	\N	171	1356	She dialed the wrong number		t	4	1
2017-01-27 21:12:23.813721+00	\N	172	366	CCB customer said he is in the market of buying a house. Had applied with us 6mo. ago and no returned call on his status of approval. Will call back in 2days to see if he wants to go forward		t	4	1
2016-08-31 17:02:24.721035+00	\N	173	3338	She called to check status of her app RF 8-19-16. This is her cell number\r\n8.30.16 sent to autopay		t	4	1
2016-08-31 21:49:26.2593+00	\N	174	1470	8.30.16 Taking over the loan on Juan Palma's application.\r\n		t	4	1
2017-01-27 21:12:23.813129+00	\N	175	1899	8.12.16 customer declined offer with autopay		t	4	1
2016-09-02 19:31:36.093337+00	\N	176	2560	9.2.16 sent to autopay		t	4	1
2017-01-27 21:12:23.813136+00	\N	177	1504	Will call back in 45min. to do app. 8-12-16 RF		t	4	1
2017-01-27 21:12:23.813158+00	\N	178	192	CCB LVM 8-12-16 RF		t	4	1
2017-01-27 21:12:23.813165+00	\N	179	4039	CCB LVM 8-12-16 RF		t	4	1
2016-09-06 11:45:58.072097+00	\N	180	307	9.6.16 need info. sent em		t	4	1
2016-09-07 17:37:42.920086+00	\N	181	4124	9.6.16 sent to CU		t	4	1
2016-09-07 18:56:15.403471+00	\N	182	3773	9.7.16 sent to autopay		t	4	1
2016-09-08 11:09:21.525647+00	\N	183	1979	9.8.16 duplicate application.		t	4	1
2016-09-15 20:04:15.584183+00	\N	184	1728	\r\n		t	4	1
2016-09-15 20:04:40.751971+00	\N	185	1728	9.13.16 sent to CU\r\n9.15.16 EM CU for status		t	4	1
2016-09-19 16:43:33.955618+00	\N	186	374	9.19.16 sent to autopay		t	4	1
2017-01-27 21:12:23.812098+00	\N	187	1277	He will go to the local branch if he decides to proceed. Not interested in applying as of yet. 07-26-16 RF		t	4	1
2017-01-27 21:12:23.812132+00	\N	188	1285	CCB LVM RF 8-12-16		t	4	1
2017-01-27 21:12:23.812142+00	\N	189	3912	customer called in with questions before wanting to proceed 7-26-16 RF		t	4	1
2017-01-27 21:12:23.812179+00	\N	190	2307	will go to website to do app. 7-27-16 RF		t	4	1
2017-01-27 21:12:23.812269+00	\N	191	20	Wants to do application over the phone		t	4	1
2017-01-27 21:12:23.812319+00	\N	192	1586	Wants information through email. Email: candiashley443@yahoo.com		t	4	1
2017-01-27 21:12:23.812326+00	\N	193	3666	General questions. he is not interested. RF 		t	4	1
2017-01-27 21:12:23.812355+00	\N	194	1831	Please don't not call this customer during working hours. He is not available until after 7pm Mon-Fr		t	4	1
2016-11-03 15:23:06.265366+00	\N	195	4129	11/2 called customer back. No answer and did not go back to voicemail. Will call again in three hours.		t	4	1
2017-01-27 21:12:23.813186+00	\N	196	2605	CCB LVM RRF 8-12-16\r\n8-12-16 4:23pm CCB in regard to her grandmother and refinancing loan. She wil do app. Online		t	4	1
2016-11-01 22:33:56.490157+00	\N	197	2304	11/1 customer was not successful in moving past step 4 in the application process. Follow up on 11/2 to see if customer was successful		t	4	1
2017-01-27 21:12:23.812461+00	\N	198	3199	called on behalf for dad and also had problems with website and uploading app. 8-02-16 RF		t	4	1
2016-11-02 18:24:36.463002+00	\N	199	1189	11/2: Mr. Diaz completed the application over the phone with Robert. Credit Union is Edwards Credit Union		t	4	1
2017-01-27 21:12:23.812511+00	\N	200	2233	Branch App.		t	4	1
2017-01-27 21:12:23.812568+00	\N	201	3971	Interested in going into the branch to complete ap. RF		t	4	1
2017-01-27 21:12:23.812575+00	\N	202	2546	customer call back for marks fax. number  app. sub. 8-03-16 RF		t	4	1
2017-01-27 21:12:23.812603+00	\N	203	2806	Going to website to complete application		t	4	1
2016-11-30 18:38:28.005225+00	\N	204	2411	11.30.16 sent to CU		t	4	1
2017-01-27 21:12:23.812708+00	\N	205	2709	LM		t	4	1
2017-01-27 21:12:23.812715+00	\N	206	3028	Will go into the local branch to complete app. Wasn't interested in completing one over the phone or through the website		t	4	1
2017-01-27 21:12:23.812722+00	\N	207	2948	Questions and will go to local banker has  a personal banker. 8-8-16 RF		t	4	1
2017-01-27 21:12:23.812729+00	\N	208	3108	General questions Not interested RF 8-16-16		t	4	1
2017-01-27 21:12:23.812743+00	\N	209	2575	661-714-2378 is the alternate number.		t	4	1
2017-01-27 21:12:23.812784+00	\N	210	4106	Cust. CB LVM RF		t	4	1
2016-12-03 16:19:43.795905+00	\N	211	2700	12.3.16\r\n		t	4	1
2017-01-27 21:12:23.812791+00	\N	212	2724	Call back no answer and couldn't understand VM. 8-08-16 		t	4	1
2017-01-27 21:12:23.812797+00	\N	213	667	 CCB LVM. This is a bus. line and they are closed on Mondays 8-8-16\r\nCCB This is a dental office. IDK who called from this number.8-9-16		t	4	1
2017-01-27 21:12:23.812804+00	\N	214	1771	Customer wishes not to have any further contact		t	4	1
2017-01-27 21:12:23.812853+00	\N	215	503	CB no answer LVM 8-8-16 RF\r\nCB LVM 8-09-16 RF		t	4	1
2017-01-27 21:12:23.812861+00	\N	216	1350	CB LVM		t	4	1
2017-01-27 21:12:23.812867+00	\N	217	3145	Mr. Jackson LTV is too high. But has excellent credit. He will try again in 6mos. Not willing to give a try		t	4	1
2017-01-27 21:12:23.812874+00	\N	218	3840	Was giving tool free number. Will call back 8/09/16 with info. to do app		t	4	1
2017-01-27 21:12:23.812888+00	\N	219	3039	Application sub online calling for a update 		t	4	1
2017-01-27 21:12:23.812909+00	\N	220	1835	Cust. has started an online app. 8-9-16 RF		t	4	1
2017-01-27 21:12:23.812916+00	\N	221	70	CCB LMV R.F call dropped		t	4	1
2017-01-27 21:12:23.812923+00	\N	222	503	CCB wants to go through branch.8-08-16 RF		t	4	1
2017-01-27 21:12:23.812958+00	\N	223	3840	CCB. seem to be interested will call back with info. to do app. RF 8-16-16\r\nCCB. This customer disconnected the call twice. From what I did gather from him. He was interested at first but now he is a lil hesitant. 8-09-16 RF		t	4	1
2017-01-27 21:12:23.812986+00	\N	224	4106	Going into branch to complete app. 8-09-16 RF		t	4	1
2017-01-27 21:12:23.813+00	\N	225	3087	Said they don't have any current auto loans. RF 8-09-16		t	4	1
2017-01-27 21:12:23.813014+00	\N	226	4089	Same customer as Lisa Genais		t	4	1
2017-01-27 21:12:23.813229+00	\N	227	1279	CCB LVM 8-12-16 ...Org. Talk to cust. back around 8-1-16. We said he was going to branch to complete app. RF		t	4	1
2017-01-27 21:12:23.813236+00	\N	228	3038	CCB LMV 8-12-16 RF Customer called on 8-12-16 wanting to know how to proceed with applying. 		t	4	1
2017-01-27 21:12:23.813264+00	\N	229	365	8.15.16 calling back to do an app		t	4	1
2017-01-27 21:12:23.813315+00	\N	230	2780	Second contact number (661)309-5008		t	4	1
2017-01-27 21:12:23.813351+00	\N	232	2282	called in about the status on loan. He was told to give it a couple more days since it was pushed through auto pay. RF 8-16-16		t	4	1
2017-01-27 21:12:23.813358+00	\N	233	2948	Called in about status of loan. was told it was still in process. Rf 8-17-16		t	4	1
2017-01-27 21:12:23.813379+00	\N	234	3038	Not interested		t	4	1
2017-01-27 21:12:23.8134+00	\N	235	1119	Calling to check status of loan ap. RF		t	4	1
2017-01-27 21:12:23.813407+00	\N	236	4103	CCB LMV RF		t	4	1
2017-01-27 21:12:23.813414+00	\N	237	1504	called in about status of auto loan RF		t	4	1
2017-01-27 21:12:23.813464+00	\N	238	202	CCB LVM RF		t	4	1
2017-01-27 21:12:23.813471+00	\N	239	2738	Returned call for Mark. RF		t	4	1
2017-01-27 21:12:23.813519+00	\N	240	202	She called wanting information with financing on a new car vehicle. that's something we do not offer at this time. 8-19-16 RF 		t	4	1
2017-01-27 21:12:23.81354+00	\N	241	202	CB LVM 		t	4	1
2017-01-27 21:12:23.813547+00	\N	242	50	CCB NA RF		t	4	1
2017-01-27 21:12:23.813554+00	\N	243	153	Spam		t	4	1
2017-01-27 21:12:23.813568+00	\N	244	2646	Called in for mom they have a joint acct. and interested in refinancing car but just in her moms name. RF		t	4	1
2017-01-27 21:12:23.813575+00	\N	245	775	CCB and was hang up on		t	4	1
2017-01-27 21:12:23.813589+00	\N	246	366	CCB/LVM 		t	4	1
2017-01-27 21:12:23.813596+00	\N	247	70	CCB/LVM		t	4	1
2017-01-27 21:12:23.813603+00	\N	248	1634	CCB/NA/LMV		t	4	1
2017-01-27 21:12:23.813609+00	\N	249	1284	CCB/LVM		t	4	1
2017-01-27 21:12:23.813658+00	\N	250	202	Customer stated they are getting a new car. So not interested		t	4	1
2017-01-27 21:12:23.813672+00	\N	251	50	CCB/NA		t	4	1
2017-01-27 21:12:23.813686+00	\N	252	2646	CCB/NA Vm full could not leave message		t	4	1
2017-01-27 21:12:23.813693+00	\N	253	1350	CCB/NA		t	4	1
2017-01-27 21:12:23.8137+00	\N	254	2397	 A Quicken loans company  refinancing of mortgages		t	4	1
2017-01-27 21:12:23.813707+00	\N	255	578	He will call back with VIN # and bank account num. He was in his truck		t	4	1
2017-01-27 21:12:23.813714+00	\N	256	70	CCB/LVM 		t	4	1
2017-01-27 21:12:23.813757+00	\N	257	3456	CCB: A elderly lady answered and said her daughter may have called and she will ask and call back if so. RF		t	4	1
2017-01-27 21:12:23.813771+00	\N	258	3911	She is already refinance through another source.		t	4	1
2017-01-27 21:12:23.813785+00	\N	259	366	CCB he stated he is waiting to go into his bank on mortgage. Once he gets a approval from them will give us a call to refinance his car.		t	4	1
2017-01-27 21:12:23.813799+00	\N	260	778	CCB/LVM 		t	4	1
2017-01-27 21:12:23.813806+00	\N	261	1252	CCB/LVM		t	4	1
2017-01-27 21:12:23.813834+00	\N	262	4124	9.7.16 sent to autopay		t	4	1
2017-01-27 21:12:23.813841+00	\N	263	2578	CB/LVM		t	4	1
2017-01-27 21:12:23.813847+00	\N	264	778	CB/LVM		t	4	1
2017-01-27 21:12:23.813862+00	\N	265	778	CB/NA		t	4	1
2017-01-27 21:12:23.813869+00	\N	266	2948	Update status on loan app. Sub weeks ago\r\nShe is with autopay, and not responding to their calls.		t	4	1
2017-01-27 21:12:23.813911+00	\N	267	2673	Reached out to the original number. Her husband gave contact information for his wife, whom initiated the call. Contact Ms. Pedack at 817-675-4224		t	4	1
2017-01-27 21:12:23.813918+00	\N	268	4129	Spoke with Ms. Torrens. Is busy today, but is receptive to a call back at 11 on Thursday. Called her back on Thursday and customer was no longer interested in the offer.		t	4	1
2017-01-27 21:12:23.813925+00	\N	269	2404	Mr. Diaz's phone number: 861-575-4023. Email address: otto_diaz@yahoo.com		t	4	1
2017-02-10 15:51:19.511724+00	\N	270	599	Sent 2.9.17		t	4	1
2017-03-28 17:52:24.995504+00	2017-03-28 17:52:24.995555+00	271	33	3.28.17 sent to Emerald\r\n		t	4	1
2017-03-29 12:40:08.758557+00	2017-03-29 12:40:08.758614+00	272	3258	3.29.17 sent to ASECU\r\n		t	4	1
2017-03-29 12:40:39.921562+00	2017-03-29 12:40:39.921614+00	273	222	3.29.17 Sent to Autopay		t	4	1
2017-03-29 18:14:41.260722+00	2017-03-29 18:14:41.26077+00	274	2523	LM 3.29.17\r\n\r\n		t	4	1
2017-04-03 19:53:01.558425+00	2017-04-03 19:53:01.55848+00	275	1679	Sent 4.3.17		t	4	1
2017-04-04 21:47:34.288625+00	2017-04-04 21:47:34.28869+00	276	4079	Spam		t	4	1
2017-04-04 21:48:39.055525+00	2017-04-04 21:48:39.055591+00	277	1423	LM 4.4.17		t	4	1
2017-04-04 21:50:32.498428+00	2017-04-04 21:50:32.498498+00	278	2362	LM 4.4.17		t	4	1
2017-04-04 21:46:56.834321+00	2017-04-04 21:46:56.834376+00	279	4079	Spam		t	4	1
2017-04-04 21:52:16.975287+00	2017-04-04 21:52:16.975344+00	280	4079	SPAM		t	4	1
2017-04-07 16:35:27.728165+00	2017-04-07 16:35:27.728232+00	281	2694	4.7.17 called and unable to leave message.		t	4	1
2017-04-12 17:55:26.270627+00	2017-04-12 17:55:26.270697+00	282	3988	Spam		t	4	1
2017-05-04 13:16:43.334655+00	2017-05-04 13:16:43.3347+00	283	1476	LM 5.4.17\r\n		t	4	1
2017-05-22 20:20:50.941234+00	2017-05-22 20:20:50.941555+00	284	2565	spam call		t	4	1
2017-06-08 12:22:55.475004+00	2017-06-08 12:22:55.475091+00	285	762	6.8.17 ring no answer		t	4	1
2017-06-16 16:21:00.208343+00	2017-06-16 16:21:00.208412+00	286	1337	Company - ACT		t	4	1
2017-07-06 13:08:55.256778+00	2017-07-06 13:08:55.256811+00	287	1230	Carlos has this lead		t	13	13
2017-07-06 13:09:53.470747+00	2017-07-06 13:09:53.470775+00	288	1230	Carlos lead		t	13	13
2017-09-27 23:01:03.841474+00	2017-09-27 23:01:03.841556+00	289	4110	KIM CALLED		t	13	13
2017-09-27 23:01:17.347258+00	2017-09-27 23:01:17.347314+00	290	4110	KIM CALLED		t	13	13
2017-09-27 23:01:42.913058+00	2017-09-27 23:01:42.91311+00	291	4110	KIM CALLED HER WILL TOUCH BASE TOMORROW		t	13	13
2017-10-11 13:48:08.237472+00	2017-10-11 13:48:08.237723+00	292	1529	called no answer  10-11-17		t	13	13
2017-10-11 13:51:26.930056+00	2017-10-11 13:51:26.930109+00	293	2924	had appointment with her yesterday did not make it. Rescheduled for today at 4:45		t	13	13
2017-10-11 13:52:19.158166+00	2017-10-11 13:52:19.158208+00	294	2924	 w. merced		t	13	13
2017-10-11 13:48:44.661475+00	2017-10-11 13:48:44.661583+00	295	3995	called left message  10-11-17		t	13	13
2017-10-11 13:53:04.121592+00	2017-10-11 13:53:04.121647+00	296	3995	W.Merced		t	13	13
2017-10-11 13:54:33.354088+00	2017-10-11 13:54:33.35414+00	297	4025	Called left message 10-11-2017 W.Merced		t	13	13
2017-10-11 14:06:09.033506+00	2017-10-11 14:06:09.033609+00	298	2267	called left message 10-11-17 W.Merced		t	13	13
2017-10-11 14:08:03.283005+00	2017-10-11 14:08:03.283071+00	299	1680	Called but mailbox is full 10-11-2017 W.Merced		t	13	13
2017-10-11 14:09:31.614094+00	2017-10-11 14:09:31.614138+00	300	1758	Called no answer 10-11-2017 W. Merced		t	13	13
2017-10-11 14:15:20.196975+00	2017-10-11 14:15:20.197051+00	301	1654	Called and left her a message 10-11-2017 W.Merced		t	13	13
2017-10-11 14:18:09.692609+00	2017-10-11 14:18:09.692658+00	302	866	Called left message 10-11-2017 W.Merced		t	13	13
2017-10-11 14:20:51.798856+00	2017-10-11 14:20:51.798915+00	303	548	Called left him a message 10-11-2017 W. Merced		t	13	13
2017-10-11 14:26:36.818594+00	2017-10-11 14:26:36.818634+00	304	4118	Called left message 10-11-2017 W.Merced		t	13	13
2017-10-11 14:29:25.398811+00	2017-10-11 14:29:25.398967+00	305	1262	called but can't leave a message 10-11-2017 W.Merced		t	13	13
2017-10-11 14:53:21.490216+00	2017-10-11 14:53:21.490295+00	306	2825	Called left message 10-11-2017 W.Merced		t	13	13
2017-10-11 14:56:51.489624+00	2017-10-11 14:56:51.489676+00	307	2511	Called left message 10-11-2017 W.Merced		t	13	13
2017-10-11 15:22:40.290594+00	2017-10-11 15:22:40.290646+00	308	1256	Called and she said she still needs a car but has no job. Is looking for when will call me when she gats situated		t	13	13
2017-10-11 15:25:29.289659+00	2017-10-11 15:25:29.289713+00	309	3152	Called no service 10-11-2017 W.MERCED		t	13	13
2017-10-23 13:14:24.785459+00	2017-10-23 13:14:24.785514+00	310	3309	had appointment with him sat did not show. Referral from chris lee		t	13	13
2017-10-23 13:44:24.809683+00	2017-10-23 13:44:24.809737+00	311	1019	called no answer 		t	13	13
2017-10-25 14:59:10.77777+00	2017-10-25 14:59:10.777836+00	312	3746	Called left message (wanda)		t	13	13
2017-10-25 15:00:29.562297+00	2017-10-25 15:00:29.56235+00	313	593	called left message \r\nwanda		t	13	13
2017-10-27 20:43:42.178305+00	2017-10-27 20:43:42.17836+00	314	617	called left message		t	13	13
2017-11-03 13:33:05.890811+00	2017-11-03 13:33:05.890881+00	315	550	called and she will call me back in a few wm		t	13	13
2017-11-08 14:42:54.362543+00	2017-11-08 14:42:54.362595+00	316	1784	will be here sat. said he knew people that bought a car here but does not want to use them 		t	13	13
2017-11-14 20:45:37.89459+00	2017-11-14 20:45:37.89464+00	317	1783	Spoke with Amber, appointment on 11/15/2017 at 245		t	13	13
2017-11-14 21:01:34.046819+00	2017-11-14 21:01:34.046875+00	318	3821	Carlos, left message, great news.		t	13	13
2017-11-14 21:17:21.424868+00	2017-11-14 21:17:21.424918+00	319	3899	Spoke with Shanario, will bring me the referral name on friday. appoitment on 11/17/2017		t	13	13
2017-11-14 22:29:02.664907+00	2017-11-14 22:29:02.664974+00	320	1255	This is kim customer.		t	13	13
2017-11-14 23:57:24.329496+00	2017-11-14 23:57:24.329578+00	321	3800	Kim has an appointment with him on 11/15/2017 at noon.		t	13	13
2017-11-15 14:20:41.342247+00	2017-11-15 14:20:41.3423+00	322	1661	KIM CALLED AND LEFT MESSAGE		t	13	13
2017-11-15 19:26:15.572573+00	2017-11-15 19:26:15.572659+00	323	3695	Left him a message, have great news.		t	13	13
2017-11-15 23:00:09.381145+00	2017-11-15 23:00:09.381214+00	324	466	KIM  CALLED AND LEFT MESSAGE		t	13	13
2017-11-16 22:59:07.045267+00	2017-11-16 22:59:07.045348+00	325	2797	Spoke with Wayne, appointment for 11/17/2017 at 215		t	13	13
2017-11-17 13:59:39.124533+00	2017-11-17 13:59:39.124585+00	326	240	Carlos, left a message, have great news call me.		t	13	13
2017-11-17 14:03:56.30124+00	2017-11-17 14:03:56.301292+00	327	4008	Carlos, left message have great news call me.		t	13	13
2017-11-17 14:14:23.520768+00	2017-11-17 14:14:23.520813+00	328	141	Carlos, called but no answer.		t	13	13
2017-11-17 17:21:37.287412+00	2017-11-17 17:21:37.287465+00	329	2207	KIM CALLED IT IS CLIENTS SERVICES.		t	13	13
2017-11-17 18:01:31.160129+00	2017-11-17 18:01:31.160203+00	330	3518	PURCHASED A CASH CAR		t	13	13
2017-11-17 20:25:34.877876+00	2017-11-17 20:25:34.877924+00	331	2228	KIM TALKED TO HER . IS LOOKING FOR CAR INSURANCE		t	13	13
2017-11-18 14:15:35.571531+00	2017-11-18 14:15:35.57162+00	332	1583	KIM LEFT MESSAGE		t	13	13
2017-11-20 14:07:18.219491+00	2017-11-20 14:07:18.219545+00	333	2740	Carlos, Call but no answer.		t	13	13
2017-11-20 20:08:39.603012+00	2017-11-20 20:08:39.603066+00	334	3968	CALLED IN FOR A FRIEND CASSIDY PITTMAN.MADE AN APPOINTMENT FOR WANDA AT 515 TODAY		t	13	13
2017-11-20 20:11:37.688295+00	2017-11-20 20:11:37.688368+00	335	4008	KIM'S CUSTOMER		t	13	13
2017-11-21 14:15:51.157122+00	2017-11-21 14:15:51.157177+00	336	2521	TRYING TO REFINANCE		t	13	13
2017-11-21 14:25:19.425323+00	2017-11-21 14:25:19.42539+00	337	2859	Carlos, looking for a personal loan, not a car loan.		t	13	13
2017-11-21 14:33:14.103906+00	2017-11-21 14:33:14.10397+00	338	2080	called left message 		t	13	13
2017-11-21 14:33:56.623007+00	2017-11-21 14:33:56.623057+00	339	1636	Carlos, left a message, have great news.		t	13	13
2017-11-21 14:36:33.41044+00	2017-11-21 14:36:33.41049+00	340	2355	he will be here wed at 2:15		t	13	13
2017-11-21 14:53:25.903337+00	2017-11-21 14:53:25.903387+00	341	1947	called left message to see when she can make it in . wm		t	13	13
2017-11-17 17:57:25.899292+00	2017-11-17 17:57:25.899351+00	342	3697	A PREVIOUS CUSTOMERS OF WANDA'S .IS GOING TO TRY TO COME IN NEXT WEEK		t	13	13
2017-11-21 15:14:48.208268+00	2017-11-21 15:14:48.208335+00	343	3697	called left her a message 		t	13	13
2017-11-21 17:29:17.316301+00	2017-11-21 17:29:17.316355+00	344	945	KIM LEFT MESSAGE .		t	13	13
2017-11-21 20:14:44.909464+00	2017-11-21 20:14:44.909518+00	345	2619	KIM MAILED BROCHURE CANNOT CONE UNTIL THE 28TH		t	13	13
2017-11-21 21:18:52.172722+00	2017-11-21 21:18:52.17279+00	346	317	KIM SENT A BROCHURE . MADE AN APPOINTMENT FOR Saturday at 1145		t	13	13
2017-11-21 23:58:03.187793+00	2017-11-21 23:58:03.187847+00	347	4171	KIM TALKED TO HER. MADE AN APPOINTMENT FOR FRIDAY AT 415		t	13	13
2017-11-22 14:11:57.032117+00	2017-11-22 14:11:57.032436+00	348	654	Carlos, left her a message. Great news.		t	13	13
2017-11-22 16:16:31.42908+00	2017-11-22 16:16:31.429146+00	349	3153	KIM GAVE THE LEAD TO CARLOS .KIM MADE THE APPT WITH QUINTEZ HUBBARD. FOR 1215 TODAY. REFERRED J MATTOX		t	13	13
2017-11-22 16:20:45.802386+00	2017-11-22 16:20:45.802544+00	350	393	KIM MADE AN APPOINTMENT FOR SATURDAY AT 315		t	13	13
2017-11-22 16:25:24.959718+00	2017-11-22 16:25:24.959771+00	351	656	CALLED CAVENDER AUTO . AND TEMISA ANSWERED		t	13	13
2017-11-22 18:18:18.017052+00	2017-11-22 18:18:18.017126+00	352	654	KIM ACCEPTED CALL. GAVE MAIN NUMBER BECAUSE NEEDED CARLOS		t	13	13
2017-11-22 20:38:30.453343+00	2017-11-22 20:38:30.453417+00	353	881	KIM TALKED TO HER BEFORE SHE WENT ONLINE TO FILL OUT APPLICATION		t	13	13
2017-11-22 21:49:51.80656+00	2017-11-22 21:49:51.806611+00	354	1153	KIM TALKED TO HIM, HE WILL BE IN ON MONDAY AT  145		t	13	13
2017-11-24 14:14:00.287577+00	2017-11-24 14:14:00.287649+00	355	3172	called and she will be here fri next week		t	13	13
2017-11-24 14:57:16.60125+00	2017-11-24 14:57:16.601297+00	356	2593	called left her a message 		t	13	13
2017-11-24 23:16:17.911276+00	2017-11-24 23:16:17.911327+00	357	521	WANDA CALLED		t	13	13
2017-11-25 18:48:45.653999+00	2017-11-25 18:48:45.654055+00	358	3001	KIM TOOK THE CALL AND TURNED IT OVER TO CARLOS . SHE WAS REFERRED BY KEN BRISCOE HIS CUSTOMER		t	13	13
2017-11-25 19:46:11.251591+00	2017-11-25 19:46:11.251673+00	359	4188	KIM LEFT A MESSAGE AND SENT A BROCHURE		t	13	13
2017-11-25 20:52:06.328637+00	2017-11-25 20:52:06.328694+00	360	2299	NEEDED TO MAKE PAYMENT		t	13	13
2017-11-25 20:52:30.261375+00	2017-11-25 20:52:30.26144+00	361	2299	NEEDED TO MAKE PAYMENT		t	13	13
2017-11-25 20:53:54.106529+00	2017-11-25 20:53:54.106593+00	362	3624	KIM TOOK THE CALL. A REFERRAL FROM RHONDA SAMPLES		t	13	13
2017-11-27 14:49:32.098628+00	2017-11-27 14:49:32.098694+00	363	958	Carlos, spoke with customer. She was busy at work, she will call me later.		t	13	13
2017-11-20 20:09:36.753667+00	2017-11-20 20:09:36.753735+00	364	3344	KIM TALKED TO HER, IS UNDECIDED WHEN SHE CAN COME AT THIS TIME		t	13	13
2017-11-27 18:38:53.323904+00	2017-11-27 18:38:53.323971+00	365	3344	CALLED 11/27 PURCHASED A CASH CAR. ASKED ME NOT TO CALL ANYMORE		t	13	13
2017-11-27 19:43:54.625152+00	2017-11-27 19:43:54.625203+00	366	211	KIM LEFT MESSAGE		t	13	13
2017-11-27 20:02:15.447483+00	2017-11-27 20:02:15.447538+00	367	3215	Carlos, left her a message, have great news.		t	13	13
2017-11-27 14:14:14.732451+00	2017-11-27 14:14:14.732507+00	368	691	called left message		t	13	13
2017-11-27 21:02:49.398253+00	2017-11-27 21:02:49.398331+00	369	691	CALLED HIM BACK AND HE SAID HE WAS JUST LOOKING AND WILL BE TRYING TO DO SOMETHING BY TAX TIME 		t	13	13
2017-11-27 21:02:49.643561+00	2017-11-27 21:02:49.643642+00	370	691	CALLED HIM BACK AND HE SAID HE WAS JUST LOOKING AND WILL BE TRYING TO DO SOMETHING BY TAX TIME 		t	13	13
2017-11-28 16:20:20.609821+00	2017-11-28 16:20:20.609876+00	371	467	called no answer 		t	13	13
2017-11-28 16:22:03.239936+00	2017-11-28 16:22:03.240002+00	372	467	rings and rings then goes to busy		t	13	13
2017-11-28 18:17:54.858173+00	2017-11-28 18:17:54.858234+00	373	1857	be here sat 10:45		t	13	13
2017-11-28 17:29:41.067346+00	2017-11-28 17:29:41.067415+00	374	3886	called left message 		t	13	13
2017-11-28 18:20:49.535309+00	2017-11-28 18:20:49.535391+00	375	3886	called left a 2nd message  W.M.		t	13	13
2017-11-28 22:43:04.815381+00	2017-11-28 22:43:04.815432+00	376	2366	KIM TALKED TO HER. CANNOT COME IN UNTIL NEXT WEEK. BROCHURE WAS SENT		t	13	13
2017-11-29 16:30:02.581502+00	2017-11-29 16:30:02.581572+00	377	3502	calling for service department 		t	13	13
2017-11-29 17:00:47.209817+00	2017-11-29 17:00:47.209871+00	378	318	will be here dec 5th 		t	13	13
2017-11-30 15:19:18.277196+00	2017-11-30 15:19:18.27725+00	379	894	KIM TALKED TO HER. WAS REFERRED BY ROBIN BANKS. WILL HERE TOMORROW AT 115		t	13	13
2017-12-01 14:23:14.450405+00	2017-12-01 14:23:14.450458+00	380	3608	referral from Johathan knight , Kim's customer will be here after 12:15		t	13	13
2017-12-01 15:53:39.963779+00	2017-12-01 15:53:39.963848+00	381	1320	Carlos, number is to a fax machine.		t	13	13
2017-12-01 17:18:04.435102+00	2017-12-01 17:18:04.435171+00	382	1167	trying to get a ride 		t	13	13
2017-12-01 18:17:54.853335+00	2017-12-01 18:17:54.853407+00	383	1685	WILL BE HERE TOMORROAW MORNING 		t	13	13
2017-12-01 19:00:32.738704+00	2017-12-01 19:00:32.738757+00	384	134	will be here dec 21 . drive by 		t	13	13
2017-12-01 19:44:41.036781+00	2017-12-01 19:44:41.036833+00	385	357	called left message 		t	13	13
2017-12-02 18:14:39.227464+00	2017-12-02 18:14:39.227516+00	386	1128	TOE TRUCK DRIVER WHO IS BRINGING IN A CAR		t	13	13
2017-12-02 18:16:00.710957+00	2017-12-02 18:16:00.711003+00	387	3501	A CURRENT CUSTOMER PATRICIA GRIFFIN WHO HAD QUESTIONS ABOUT TRADING. WANDA'S CUSTOMER		t	13	13
2017-12-02 18:42:07.813315+00	2017-12-02 18:42:07.813367+00	388	55	A CURRENT CUSTOMER WANTING TO KNOW ABOUT TRADING		t	13	13
2017-12-04 14:20:29.492151+00	2017-12-04 14:20:29.492215+00	389	801	Carlos, spoke with aron. He was at work wants me to call him this afternoon.		t	13	13
2017-12-04 14:24:04.649394+00	2017-12-04 14:24:04.649447+00	390	3179	Carlos, left her a message, great news please call me.		t	13	13
2017-12-06 19:37:53.589255+00	2017-12-06 19:37:53.589307+00	391	642	CALLED ABOUT REFERRAL CHECK		t	13	13
2017-12-06 19:34:53.709365+00	2017-12-06 19:34:53.709421+00	392	372	IN SYSTEM		t	13	13
2017-12-07 19:00:09.412552+00	2017-12-07 19:00:09.412611+00	393	372	IN KIMS SYSTEM		t	13	13
2017-12-09 15:33:23.398682+00	2017-12-09 15:33:23.398735+00	394	2671	will try to be here Monday 		t	13	13
2017-12-09 15:50:22.295906+00	2017-12-09 15:50:22.295938+00	395	2671	will call me back 		t	13	13
2017-12-09 22:21:54.1943+00	2017-12-09 22:21:54.194377+00	396	1044	INSURANCE CALL		t	13	13
2017-12-09 22:23:56.996035+00	2017-12-09 22:23:56.996094+00	397	3958	WILL CALL HIM MONDAY .NEEDS TO FIND RIDE HERE		t	13	13
2017-12-09 22:24:31.219314+00	2017-12-09 22:24:31.219367+00	398	242	LEFT MESSAGE ANS BROCHURE SENT		t	13	13
2017-12-09 22:25:44.622858+00	2017-12-09 22:25:44.622905+00	399	3176	JUST RINGS NO MACHINE COMES ON TO LEAVE A MESSAGE.ADDRESS IS INCOMPLETE CANNOT MAIL BROCHURE		t	13	13
2017-12-09 22:26:07.597129+00	2017-12-09 22:26:07.597163+00	400	1044	INSURANCE CALL		t	13	13
2017-12-11 14:18:18.831965+00	2017-12-11 14:18:18.832022+00	401	3608	will be here today after doc appt		t	13	13
2017-12-11 14:18:51.550043+00	2017-12-11 14:18:51.550098+00	402	126	called no answer 		t	13	13
2017-12-11 14:40:34.957893+00	2017-12-11 14:40:34.957947+00	403	126	called left message 		t	13	13
2017-12-11 15:11:23.430693+00	2017-12-11 15:11:23.430747+00	404	126	Carlos, Left message,		t	13	13
2017-12-11 15:36:53.939723+00	2017-12-11 15:36:53.939779+00	405	3734	WAS FOR SERVICE		t	13	13
2017-12-11 14:20:19.826486+00	2017-12-11 14:20:19.826607+00	406	2843	called no answer 		t	13	13
2017-12-11 16:57:08.323929+00	2017-12-11 16:57:08.324014+00	407	2843	KIM TALKED TO HIM.IN THE SYSTEM		t	13	13
2017-12-11 17:23:54.985508+00	2017-12-11 17:23:54.985574+00	408	2041	WANDAS CUSTOMER I GAVE HER THE INFO		t	13	13
2017-12-11 18:41:00.944571+00	2017-12-11 18:41:00.944624+00	409	3259	KIM LEFT MESSAGE		t	13	13
2017-12-11 20:50:20.974226+00	2017-12-11 20:50:20.974281+00	410	3545	Carlos, this is wandas customer. she has an appointment with her on 12/12/2017 @ 10:45 A.m.		t	13	13
2017-12-11 21:05:07.306231+00	2017-12-11 21:05:07.306284+00	411	3171	Carlos, spoke with Christopher he said was on internet and found us. Will be able to do something the weekend of the 23rd. Will follow up.		t	13	13
2017-12-11 23:17:45.477753+00	2017-12-11 23:17:45.477843+00	412	819	called left message 		t	13	13
2017-12-12 16:02:54.855618+00	2017-12-12 16:02:54.855682+00	413	3903	Carlos, called no answer. phone just keeps ringing.		t	13	13
2017-12-12 16:05:39.099978+00	2017-12-12 16:05:39.100028+00	414	527	Carlos, left a message. Referral from Thomas Kendrick.		t	13	13
2017-12-12 23:26:23.502423+00	2017-12-12 23:26:23.502475+00	415	3545	WILL BE HERE IN THE MORNING 		t	13	13
2017-12-12 23:26:47.848997+00	2017-12-12 23:26:47.849079+00	416	3511	CALLED LEFT MESSAGE 		t	13	13
2017-12-12 23:39:21.960145+00	2017-12-12 23:39:21.960229+00	417	3529	called and spoke to some man . said he was on his way home will give her the message that I called 		t	13	13
2017-12-13 17:25:01.962326+00	2017-12-13 17:25:01.962378+00	418	3903	Carlos, spoke with Robert. He was at the mitsubishi store trying to get approved when he saw our sign and made the app to see if we can help him. appointment for 12/14/2017		t	13	13
2017-12-13 21:16:26.472865+00	2017-12-13 21:16:26.472926+00	419	3056	BROCHURE MAILED . APPT FOR 12/30		t	13	13
2017-12-13 21:17:15.430646+00	2017-12-13 21:17:15.430702+00	420	1101	TALKED TO HIM, ASKED ME TO CALL HIM TOMORROW		t	13	13
2017-12-13 21:18:19.591863+00	2017-12-13 21:18:19.591919+00	421	3545	COMING IN TODAY WANDAS CUSTOMER		t	13	13
2017-12-14 15:07:24.144602+00	2017-12-14 15:07:24.144648+00	422	1542	Carlos, left message. Have great news, please call me.		t	13	13
2017-12-14 15:14:41.47576+00	2017-12-14 15:14:41.475828+00	423	3617	Carlos, left message. Have great news call me.		t	13	13
2017-12-14 15:19:36.583572+00	2017-12-14 15:19:36.583637+00	424	2200	KIM TALKED TO HIM, FOUND US ON FACEBOOK.MADE AN APPOINTMENT FOR SATURDAY		t	13	13
2017-12-14 15:36:22.875426+00	2017-12-14 15:36:22.875499+00	425	1618	Carlos, spoke with customer, previous total loss will be here on 12/15/2017		t	13	13
2017-12-14 19:53:22.421971+00	2017-12-14 19:53:22.422065+00	426	261	CARLOS'S REFERRAL FROM MICHAEL NELMS. . KIM SPOKE TO HEATHER AND MADE AN APPOINTMENT FOR 515 TODAY		t	13	13
2017-12-14 19:56:29.511421+00	2017-12-14 19:56:29.511475+00	427	469	KIM  TALKED TO HIM. CANNOT COME IN UNTIL THE 22ND WHEN HE GETS PAID WAS REFERRED BY ONE OF WANDA'S CUSTOMERS.TONYA ROGERS 		t	13	13
2017-12-14 20:12:01.094924+00	2017-12-14 20:12:01.094965+00	428	3323	KIM TALKED TP HIM. WILL FOLLOW UP WITH HIM TOMORROW		t	13	13
2017-12-15 15:04:14.802273+00	2017-12-15 15:04:14.802399+00	429	2787	Carlos, this number just keeps ringing. no one answers.		t	13	13
2017-12-16 14:03:47.032491+00	2017-12-16 14:03:47.032547+00	430	3259	KIM IS TALKING TO HER .		t	13	13
2017-12-16 17:33:08.93323+00	2017-12-16 17:33:08.933295+00	431	3668	KIM CALLED AND LEFT A MESSAGE AND SENT A BROCHURE		t	13	13
2017-12-18 13:53:52.778835+00	2017-12-18 13:53:52.77889+00	432	3478	CARLOS'S CUSTOMER		t	13	13
2017-12-18 13:55:42.360072+00	2017-12-18 13:55:42.360127+00	433	1248	KIM  LEFT A MESSAGE		t	13	13
2017-12-18 13:58:38.86644+00	2017-12-18 13:58:38.86649+00	434	2562	KIM LEFT MESSAGE		t	13	13
2017-12-18 14:01:08.390962+00	2017-12-18 14:01:08.391017+00	435	3242	KIM  LEFT MESSAGE		t	13	13
2017-12-18 14:03:47.24099+00	2017-12-18 14:03:47.24108+00	436	3849	KIM LEFT MESSAGE		t	13	13
2017-12-18 14:13:36.070678+00	2017-12-18 14:13:36.07073+00	437	2292	KIM TALKED TO HER . CANNOT NOT COME IN UNTIL NEXT WEEKEND		t	13	13
2017-12-18 14:16:43.138787+00	2017-12-18 14:16:43.138839+00	438	83	KIM LEFT MESSAGE 		t	13	13
2017-12-18 14:19:59.01057+00	2017-12-18 14:19:59.010691+00	439	3594	KIM LEFT A MESSAGE		t	13	13
2017-12-18 14:28:01.220086+00	2017-12-18 14:28:01.220139+00	440	166	WANDA'S CUSTOMER		t	13	13
2017-12-18 16:44:25.063838+00	2017-12-18 16:44:25.063893+00	441	3247	called and she will be here tomorrow		t	13	13
2017-12-19 21:09:51.121784+00	2017-12-19 21:09:51.121835+00	442	2577	KIM TALKED TO HIM. MADE AN APPOINTMENT FOR TOMORROW		t	13	13
2017-12-19 21:11:44.23453+00	2017-12-19 21:11:44.234584+00	443	3782	CALLING TO INFO FOR HER 19 YEAR OLD SON. BAILEY GRIFFIN		t	13	13
2017-12-20 18:40:16.974595+00	2017-12-20 18:40:16.974639+00	444	1932	LAW OFFICE DON'T KNOW WHO CALLED HERE		t	13	13
2017-12-20 19:50:51.477073+00	2017-12-20 19:50:51.477124+00	445	2185	CALLED LEFT MESSAGE 		t	13	13
2017-12-20 20:31:43.337102+00	2017-12-20 20:31:43.337157+00	446	3818	GOING TO SEE WHAT DAY HE CAN COME IN . LOOKING FOR A CHARGER 		t	13	13
2017-12-20 22:53:35.595599+00	2017-12-20 22:53:35.59565+00	447	1749	KIM TALKED TO HIM. BROCHURE WAS MAILED		t	13	13
2017-12-18 14:25:13.88822+00	2017-12-18 14:25:13.888274+00	448	3904	KIM LEFT A MESSAGE .		t	13	13
2017-12-20 23:02:48.120929+00	2017-12-20 23:02:48.120983+00	449	3904	WANDA'S HAS CUSTOMER IN THE SYSTEM		t	13	13
2017-12-21 14:17:27.449275+00	2017-12-21 14:17:27.449329+00	450	2918	KIM CALLED MAILBOX IS FULL. CANNOT LEAVE ANY NEW MESSAGES		t	13	13
2017-12-21 14:22:29.397863+00	2017-12-21 14:22:29.397903+00	451	2918	BROCHURE WAS MAILED AND EMAIL SENT		t	13	13
2017-12-21 14:10:39.574294+00	2017-12-21 14:10:39.574331+00	452	2070	KIM CALLED AND WAS HUNG UP ON		t	13	13
2017-12-21 14:22:50.950302+00	2017-12-21 14:22:50.950376+00	453	2070	BROCHURE ANS EMAIL WAS SENT		t	13	13
2017-12-21 14:32:46.723115+00	2017-12-21 14:32:46.723187+00	454	2213	MAILBOX IS FULL. KIM SENT EMAIL AND BROCHURE		t	13	13
2017-12-22 15:06:35.989968+00	2017-12-22 15:06:35.990023+00	455	1473	Carlos, phone just keeps ringing. no one answer.		t	13	13
2017-12-22 17:25:05.509047+00	2017-12-22 17:25:05.509101+00	456	1749	IN THE SYSTEM BROCHURE WAS MAILED		t	13	13
2017-12-22 18:03:31.15312+00	2017-12-22 18:03:31.153175+00	457	2793	JUST RINGS AND RINGS 		t	13	13
2017-12-22 20:19:34.171966+00	2017-12-22 20:19:34.172021+00	458	1587	SPOKE TO HIM AND HE SAID HE LIVED TI SC 		t	13	13
2017-12-22 21:14:03.50364+00	2017-12-22 21:14:03.503701+00	459	3780	IN SYSTEM. MADE APPOINTMENT FOR NEXT FRIDAY		t	13	13
2016-06-14 11:50:15.706705+00	\N	549	3508	Sent App		t	4	1
2017-12-23 14:24:41.102509+00	2017-12-23 14:24:41.102564+00	460	3716	Carlos, spoke with Dimarcus, trying to come next week. Referral from curtis brightwell.		t	13	13
2017-12-23 16:01:18.702014+00	2017-12-23 16:01:18.702068+00	461	1440	KIM LEFT MESSAGE TO HAVE HER CALL ME		t	13	13
2017-12-26 16:12:32.174781+00	2017-12-26 16:12:32.174832+00	462	2349	Carlos, Spoke with Michael appountment for 12/30/2017 @ 10:45a.m. Referral from Ervin Edmonds.		t	13	13
2017-12-26 16:56:14.18233+00	2017-12-26 16:56:14.182402+00	463	4151	GAVE MAIN NUMBER TO CALL WANDA		t	13	13
2017-12-26 17:00:54.45969+00	2017-12-26 17:00:54.459742+00	464	4151	will be here fri  wm 		t	13	13
2017-12-27 20:28:42.035353+00	2017-12-27 20:28:42.035411+00	465	589	CALL WAS  FOR WANDA		t	13	13
2017-12-27 20:29:14.933727+00	2017-12-27 20:29:14.933798+00	466	1573	IN SYSTEM		t	13	13
2017-12-27 20:38:14.267536+00	2017-12-27 20:38:14.26759+00	467	706	KIM TALKED TO HER.		t	13	13
2017-12-28 20:03:00.848978+00	2017-12-28 20:03:00.849056+00	468	463	Carlos, spoke with customer. She will be here on Sat. 12/30/2017 at 4:45p.m. referral from india smith.		t	13	13
2017-12-29 15:44:09.606101+00	2017-12-29 15:44:09.606159+00	469	1720	KIM MADE AN APPOINTMENT FOR TOMORROW		t	13	13
2017-12-29 17:45:13.365007+00	2017-12-29 17:45:13.365092+00	470	1367	WILL BE HERE TOMORROW AT 10:15		t	13	13
2017-12-30 16:38:33.23025+00	2017-12-30 16:38:33.230301+00	471	4014	KIM TALKED TO HER		t	13	13
2018-01-01 21:51:59.254032+00	2018-01-01 21:51:59.254085+00	472	1739	Harry left this message		t	4	1
2018-01-03 00:07:37.114275+00	2018-01-03 00:07:37.11432+00	473	1739	This is another note		t	4	1
2018-01-03 00:13:32.426135+00	2018-01-03 00:13:32.426173+00	474	1739	Keep moving forward		t	4	1
2018-01-03 00:16:39.049369+00	2018-01-03 00:16:39.049409+00	475	1739	Adding another		t	4	1
2018-05-29 15:48:13.274024+00	2018-05-29 15:48:13.274056+00	476	\N	heloo		t	4	4
2016-08-22 11:53:21.980551+00	\N	477	3873	8.22.16 sent to autopay		t	4	1
2017-01-27 21:12:23.813393+00	\N	478	1350	CCB LVM RF 8-17-16		t	4	1
2016-05-25 16:27:39.345911+00	\N	479	3747	Boyd Massey		t	4	1
2016-05-25 16:36:04.663392+00	\N	480	3747	270k unable to refinance		t	4	1
2016-05-25 16:40:37.271819+00	\N	481	4015	Left Message\r\n		t	4	1
2016-05-25 17:12:41.551243+00	\N	482	1596	Doctors office.		t	4	1
2016-05-25 16:47:38.916867+00	\N	483	1158	Left message 5.25.16		t	4	1
2016-05-25 17:00:15.434514+00	\N	484	4010	Closed 5.25.16		t	4	1
2016-05-25 17:17:29.170322+00	\N	485	4007	Left Messge 5.25.16		t	4	1
2016-05-25 18:21:19.217457+00	\N	486	4078	VM Not set up. unable to leave message		t	4	1
2016-05-25 18:10:53.180617+00	\N	487	3067	LM 5.25.16		t	4	1
2016-05-25 18:15:15.079902+00	\N	488	2967	Jeannie Blanko - submitted app		t	4	1
2016-05-25 18:25:20.810743+00	\N	489	2384	Edwards Tel #		t	4	1
2016-05-25 18:27:33.023035+00	\N	490	721	wrong #		t	4	1
2016-05-25 16:31:23.600549+00	\N	491	3302	Said he would call back. In meeting		t	4	1
2016-08-08 16:33:20.84504+00	\N	492	661	8.8.16 Autopay\r\n		t	4	1
2016-05-25 16:44:48.650711+00	\N	493	3969	Mail box full. Cannot leave message.		t	4	1
2016-05-25 18:24:00.595132+00	\N	494	3105	Dara Shelton going online		t	4	1
2016-05-25 18:31:07.22972+00	\N	495	3281	Wants to finance a new car		t	4	1
2016-07-08 19:15:19.271388+00	\N	496	3254	Calling back to do the app		t	4	1
2016-08-29 21:11:00.718892+00	\N	497	3100	8.9.16 sent to autopay		t	4	1
2016-05-31 16:25:19.351167+00	\N	498	213	LM 5.31.16		t	4	1
2016-05-31 17:46:17.728562+00	\N	499	1787	filling out app when I called back. 5.31.16		t	4	1
2016-05-31 18:30:57.50753+00	\N	500	436	customer hung  up 5.31.16		t	4	1
2016-05-31 19:52:31.09934+00	\N	501	3284	spam		t	4	1
2016-06-01 13:17:46.684785+00	\N	502	1823	LM 6.1.16 Sarah Buckley		t	4	1
2016-08-17 21:02:39.055983+00	\N	503	618	8.10.16 sent to CU\r\n8.17.16 sent to autopay		t	4	1
2016-06-01 19:43:09.147026+00	\N	504	3166	Lois Mills		t	4	1
2016-06-01 21:18:35.288285+00	\N	505	271	Yolanda Jackson. LM 6.1.16		t	4	1
2016-06-01 21:42:42.649646+00	\N	506	1699	Jacob Burris		t	4	1
2016-06-01 17:26:28.25577+00	\N	507	4019	Lynda Maxwell		t	4	1
2016-06-02 21:14:26.423891+00	\N	508	2801	LM 6.2.16\r\n		t	4	1
2016-06-02 13:03:39.180994+00	\N	509	1953	spam		t	4	1
2016-08-12 21:04:19.011176+00	\N	510	2762	CCB Inform they have autos refinance with someone else now RF 8-12-16		t	4	1
2016-08-24 16:31:42.983418+00	\N	511	578	8.24.16 sent to autopay		t	4	1
2016-06-01 17:57:33.235177+00	\N	512	4019	questions on app		t	4	1
2016-06-02 14:23:23.700894+00	\N	513	3166	going online tonight		t	4	1
2017-01-27 21:12:23.813076+00	\N	514	2806	CCB to check status of completing online app. 8-10-16 RF		t	4	1
2016-07-20 15:45:48.07608+00	\N	515	980	client called wanting to get more info on her loan, also she wanted to see if she was approved or not.  She also said Mark left her a voicemail. Contact number: 972-689-5620		t	4	1
2016-06-01 19:16:44.66422+00	\N	516	1269	spam		t	4	1
2016-06-03 14:39:12.638166+00	\N	517	3753	513-235-8208		t	4	1
2016-06-07 13:33:38.927622+00	\N	518	1923	781-724-1889		t	4	1
2016-08-23 17:06:04.46843+00	\N	519	4033	8.23.16 sent to cu		t	4	1
2016-06-13 21:22:51.792868+00	\N	520	2777	ring no answer		t	4	1
2016-06-13 21:23:12.197859+00	\N	521	2777	ring no answer\r\n		t	4	1
2016-06-27 14:39:07.460574+00	\N	522	3609	going online		t	4	1
2016-06-27 14:41:48.350549+00	\N	523	3386	LM 		t	4	1
2016-06-27 14:44:06.105348+00	\N	524	3202	Rude\r\n		t	4	1
2016-06-27 14:51:39.907031+00	\N	525	2026	LM		t	4	1
2016-06-27 14:57:36.975636+00	\N	526	1545	Going to the branch		t	4	1
2016-06-27 15:07:31.241859+00	\N	527	1963	LM		t	4	1
2016-06-27 15:09:37.972031+00	\N	528	917	LM		t	4	1
2016-06-27 18:38:51.050514+00	\N	529	743	614-204-0877 cell		t	4	1
2016-06-27 15:51:18.628067+00	\N	530	2721	LM		t	4	1
2016-06-27 15:59:45.006454+00	\N	531	2495	330-518-2614\r\nco signor for son		t	4	1
2016-06-27 15:01:17.338979+00	\N	532	3740	No answer		t	4	1
2016-06-27 20:41:08.194688+00	\N	533	1969	LM		t	4	1
2016-06-27 18:57:47.254648+00	\N	534	2655	Business number		t	4	1
2016-06-28 17:09:39.210917+00	\N	535	1969	SPOKE TO NANCY AT NEWTOWN FALLS		t	4	1
2016-08-10 16:01:42.651215+00	\N	536	74	Cust. cant take on any more credit obligations. he has just refinance is house and says he just don't want his credit pulled anymore. 8-9-16 RF		t	4	1
2016-08-12 18:14:18.427255+00	\N	537	1899	8.10.16 sent to autopay		t	4	1
2016-06-29 18:41:48.516825+00	\N	538	537	330-360-2062		t	4	1
2016-06-29 15:22:40.008704+00	\N	539	3941	LM 		t	4	1
2016-07-05 16:57:55.682252+00	\N	540	1622	Declined LTV		t	4	1
2016-04-21 21:55:13.252712+00	\N	541	3586	Need to follow!		t	2	2
2016-08-08 18:54:54.128484+00	\N	542	503	Cb no answer LVM		t	4	1
2016-05-25 17:04:30.503361+00	\N	543	2642	Left message - 5.25.16		t	4	1
2016-05-25 17:14:58.354506+00	\N	544	3747	This is an Ashland CU Number		t	4	1
2016-05-25 17:15:20.517931+00	\N	545	3747	This is an Ashland CU Number		t	4	1
2016-05-25 18:16:26.475258+00	\N	546	1538	David McKibbin		t	4	1
2016-05-25 18:28:34.615745+00	\N	547	2331	my #. Testing DID		t	4	1
2016-06-01 16:58:10.936246+00	\N	548	1531	app sent		t	4	1
2016-06-14 11:50:33.243276+00	\N	550	125	Sent App		t	4	1
2016-06-27 15:48:40.693493+00	\N	551	3740	LM		t	4	1
2016-08-25 13:27:22.962121+00	\N	552	3283	8.25.16 sent to CU.		t	4	1
2016-08-17 21:17:25.344041+00	\N	553	1678	8.17.16 sent to cu		t	4	1
2016-08-16 19:31:15.016135+00	\N	554	2709	Call customer and LM		t	4	1
2016-08-11 12:20:49.474101+00	\N	555	2669	8.11.16 sent to autopay		t	4	1
2016-08-22 14:22:04.486094+00	\N	556	1420	8.22.16 CU is calling to set appointment		t	4	1
2016-08-16 19:29:29.725565+00	\N	557	3963	8.16.16 sent to autopay		t	4	1
2016-08-10 16:39:34.241669+00	\N	558	1621	8.10.16 sent to autopay		t	4	1
2017-01-27 21:12:23.812525+00	\N	559	4103	LVM 8-10-16 RF		t	4	1
2016-08-03 21:26:19.649416+00	\N	560	2662	8.3.16 - has not been approved yet,\r\n		t	4	1
2016-08-12 16:33:26.818107+00	\N	561	3028	Customer has already talked to someone in regard to questions		t	4	1
2016-08-16 19:30:47.99018+00	\N	562	538	8.16.16 sent to autopay		t	4	1
2016-08-16 19:31:15.000181+00	\N	563	2709	8.16.16 sent to autopay		t	4	1
2016-08-16 19:31:40.10093+00	\N	564	3597	8.16.16 sent to autopay		t	4	1
2016-08-05 15:39:17.915208+00	\N	565	3108	Says no one called from this number and wishes not to receive anymore calls.		t	4	1
2016-08-11 12:20:27.388218+00	\N	566	1979	8.11.16 sent to cu		t	4	1
2016-08-11 12:21:15.089629+00	\N	567	1306	8.11.16 sent to autopay		t	4	1
2017-11-30 23:54:57.95665+00	2017-11-30 23:54:57.956718+00	568	1168	KIM LEFT MESSAG		t	13	13
2016-08-08 13:56:30.694473+00	\N	569	2214	This customer insisted that no one called from this number and we dialed the wrong number. Not interested 		t	4	1
2017-01-27 21:12:23.813736+00	\N	570	4181	CCB/LVM		t	4	1
2016-08-08 14:02:26.152162+00	\N	571	4106	Customer is going into the branch in Lancaster to submit application		t	4	1
2016-08-09 17:08:20.722559+00	\N	572	2724	8.8.16 Credit Union has been trying to reach him. Will follow-up with CU today.		t	4	1
2016-08-09 17:08:43.530706+00	\N	573	3940	8.9.16 sent to autopay		t	4	1
2017-01-27 21:12:23.812756+00	\N	574	2221	Customer was belligerent and asked if to be taken off do not call list. RF 		t	4	1
2016-08-08 15:50:55.826128+00	\N	575	2221	DO NOT CALL THIS CUSTOMER BACK		t	4	1
2016-08-08 17:01:56.072776+00	\N	576	4	8.8.16		t	4	1
2016-08-08 20:08:04.885225+00	\N	577	1809	8.8.16 sent to cu - declined. sent to autopay 8.8.16		t	4	1
2016-08-08 20:20:25.607566+00	\N	578	2426	 CB customer and he was informed that application was declined.		t	4	1
2016-08-08 20:42:05.261522+00	\N	579	2738	8.8.16 sent to CU.		t	4	1
2016-08-08 22:03:52.029652+00	\N	580	1271	8.8.16 sent to autopay		t	4	1
2016-08-08 22:04:13.130176+00	\N	581	1271	8.8.16 sent to autopaty		t	4	1
2016-08-09 17:08:20.713232+00	\N	582	2724	8.9.16 sent to autopay		t	4	1
2016-08-10 14:57:16.412591+00	\N	583	757	8.10.16 Sent to CU		t	4	1
2016-08-09 21:12:13.886825+00	\N	584	255	8.9.16 Sent to CU		t	4	1
2016-08-17 21:03:06.583869+00	\N	585	2338	8.12.16 sent to cu\r\n8.17.16 sent to autopay		t	4	1
2016-08-10 14:09:28.02701+00	\N	586	3772	Call in regard to a loan app. plans to do application over through website		t	4	1
2016-08-10 15:36:03.143874+00	\N	587	2274	Cust. called in regard to credit card not to refinance auto loan. safe to take her off the DO NOT CALL LIST		t	4	1
2016-08-12 13:19:47.022649+00	\N	588	3161	8.12.16 sent to cu		t	4	1
2016-08-16 19:32:06.19221+00	\N	589	2191	8.12.16 sent to cu\r\n8.16.16 sent to autopay		t	4	1
2016-08-12 16:33:26.804646+00	\N	590	3028	8.12.16 sent to autopay		t	4	1
2016-08-12 19:38:54.438964+00	\N	591	3471	8.12.16 sent to autopay\r\n		t	4	1
2016-08-12 19:38:54.449185+00	\N	592	3471	8.12.16 need vehicle model. LM 		t	4	1
2016-08-12 19:08:45.409165+00	\N	593	1504	terry Riebe Cell number is (406)218-9018.....Wife Donna Riebe Cell (406)550-0738 RF 8-12-16\r\n8.12.16 sent to cu.\r\n		t	4	1
2016-08-25 14:45:19.80611+00	\N	594	4181	8.25.16 sent to CU		t	4	1
2016-08-22 14:22:04.504895+00	\N	595	1420	Called her back - completed		t	4	1
2016-08-22 17:12:49.3494+00	\N	596	2397	Quicken loans. Called LVM about refinancing of home		t	4	1
2016-08-23 12:03:32.115854+00	\N	597	616	8.18.16 sent to CU\r\n8.23.16 sent to autopay		t	4	1
2016-08-15 12:15:41.589285+00	\N	598	3739	8.15.16 sent to autopay		t	4	1
2016-08-15 12:16:04.408341+00	\N	599	1213	8.15.16 sent to autopay		t	4	1
2016-08-15 12:16:27.487224+00	\N	600	1835	8.15.16 sent to autopay		t	4	1
2016-08-15 12:16:27.498902+00	\N	601	1835	CB LVM RF		t	4	1
2017-01-27 21:12:23.812811+00	\N	602	1835	CB and LVM. will Cb 		t	4	1
2017-01-27 21:12:23.813055+00	\N	603	735	A women answers and said no one call and no to offer. 8/09/16  R.F 		t	4	1
2016-08-15 18:08:54.335398+00	\N	604	2786	8.15.16 sent to cu		t	4	1
2017-01-27 21:12:23.81325+00	\N	605	4004	CCB LMV 8-15-16 RF		t	4	1
2016-08-15 18:49:06.218997+00	\N	606	3823	10.15.16 sent to cu		t	4	1
2016-08-15 18:52:16.288072+00	\N	607	3267	10.15.16 sent to cu		t	4	1
2016-08-15 19:19:00.088926+00	\N	608	4067	8.15.16 sent to cu		t	4	1
2016-08-15 20:17:34.41722+00	\N	609	365	called in regard application being sent to his email. RF 8-15-16		t	4	1
2016-08-16 15:33:43.630669+00	\N	610	2081	8.15.16 sent to CU\r\n8.16.16 sent to autopay not eligible at CU		t	4	1
2016-08-16 20:01:05.541323+00	\N	611	365	This guy is the same person. He  kepts changing up his name for some odd reason. He is Jeremiah Soval ; Joseph Remeral and Jamie Sandoval. Not sure what's is problem \r\nBut he was giving every option to a credit app. All of his questions have been answered. 8-16-16 RF		t	4	1
2016-08-23 19:19:02.402776+00	\N	612	3480	8.15.16 sent to cu\r\n8.23.16 sent to autopay		t	4	1
2017-01-27 21:12:23.813257+00	\N	613	897	Customer started speaking English then went to speaking Spanish said I had wrong number. 8-15-16 RF		t	4	1
2016-08-15 21:15:12.486125+00	\N	614	2780	Second contact number (661)309-5008\r\n8.15.16 sent to autopay		t	4	1
2016-08-16 11:05:56.134496+00	\N	615	2828	8.16.16 sent to autopay		t	4	1
2016-08-16 11:10:52.983007+00	\N	616	1363	8.15.16 sent to cu		t	4	1
2016-08-16 19:29:55.405347+00	\N	617	3735	8.16.16 sent to autopay		t	4	1
2016-08-16 19:30:23.622599+00	\N	618	1026	8.16.16 sent to autopay		t	4	1
2016-08-16 19:30:23.647586+00	\N	619	1026	Please do not call this customer back until after 4:00pm he is at work.		t	4	1
2016-08-16 19:32:35.842617+00	\N	620	1119	8.10.16 sent to cu\r\n8.16.16 sent to autopay		t	4	1
2016-08-17 16:03:49.250392+00	\N	621	349	8.17.16 sent to autopay		t	4	1
2016-08-17 17:05:00.37423+00	\N	622	4004	Will call Back and give correct vin number. RF		t	4	1
2016-08-19 18:14:58.703918+00	\N	623	2973	8.19.16 sent to cu		t	4	1
2016-08-19 18:14:58.715164+00	\N	624	2973	Called and left message , says he was calling about offer in the mail		t	4	1
2016-08-22 22:19:14.807143+00	\N	625	1681	8.22.16 sent to autopay		t	4	1
2017-10-11 13:52:19.158166+00	2017-10-11 13:52:19.158208+00	770	2924	 w. merced		t	13	13
2016-08-25 16:47:09.538071+00	\N	626	3257	8.15.16 sent to cu\r\n8.25.16 sent to autopay		t	4	1
2016-08-24 13:58:01.707578+00	\N	627	4026	Talked to this gentleman already he's really not interested. Said he will not even consider doing business with us unless its in the local branch. I gave him the info to a local branch in his area as well as other information. Answer all of his questions. RF		t	4	1
2016-08-26 17:41:45.444232+00	\N	628	390	8.26.16 LM		t	4	1
2016-08-22 21:54:05.186121+00	\N	629	3558	8.22.16 sent to autopay		t	4	1
2016-08-23 11:47:27.216241+00	\N	630	149	8.23.16 sent to autopay		t	4	1
2016-08-23 11:59:23.202261+00	\N	631	390	8.23.16 sent to CU		t	4	1
2016-08-23 14:20:04.256738+00	\N	632	2397	CCB LVM 		t	4	1
2017-01-27 21:12:23.813616+00	\N	633	578	CCB NA		t	4	1
2017-01-27 21:12:23.813623+00	\N	634	192	CCB/LVM RF		t	4	1
2017-01-27 21:12:23.81363+00	\N	635	4061	unknown caller		t	4	1
2016-08-29 12:09:17.77865+00	\N	636	1298	8.29.16 sent to cu		t	4	1
2016-08-29 12:09:36.28067+00	\N	637	1624	8.29.16 sent to autopay		t	4	1
2016-08-24 12:01:24.830913+00	\N	638	777	8.24.16 sent to CU		t	4	1
2016-08-29 12:31:08.461213+00	\N	639	2741	8.29.16 sent to cu		t	4	1
2016-08-29 12:41:22.365045+00	\N	640	3249	8.29.016 sent to cu		t	4	1
2016-08-31 16:57:34.173484+00	\N	641	2874	8.29.16 sent to cu\r\n8.30.16 sent to autopay		t	4	1
2017-01-27 21:12:23.813069+00	\N	642	618	Customer going through website to complete app. If can't complete will cb and do over phone. 8-10-16 RF		t	4	1
2017-12-20 23:43:24.931113+00	2017-12-20 23:43:24.931172+00	643	1673	KIM TALKED TO . MADE AN APPOINTMENT FOR FRIDAY		t	13	13
2017-01-27 21:12:23.81309+00	\N	644	1899	Error this app. Should have been push through Edwards not Emerald 8-10-16 RF		t	4	1
2017-01-27 21:12:23.813114+00	\N	645	365	Wants application and info on his offer sent to email. jeremiah7767@yahoo.com  8/10/16 RF		t	4	1
2016-08-31 14:43:00.567311+00	\N	646	2104	8.30.16 sent to CU		t	4	1
2016-08-30 21:07:17.608603+00	\N	647	1356	She dialed the wrong number		t	4	1
2017-01-27 21:12:23.813721+00	\N	648	366	CCB customer said he is in the market of buying a house. Had applied with us 6mo. ago and no returned call on his status of approval. Will call back in 2days to see if he wants to go forward		t	4	1
2016-08-31 17:02:24.721035+00	\N	649	3338	She called to check status of her app RF 8-19-16. This is her cell number\r\n8.30.16 sent to autopay		t	4	1
2016-08-31 21:49:26.2593+00	\N	650	1470	8.30.16 Taking over the loan on Juan Palma's application.\r\n		t	4	1
2017-01-27 21:12:23.813129+00	\N	651	1899	8.12.16 customer declined offer with autopay		t	4	1
2016-09-02 19:31:36.093337+00	\N	652	2560	9.2.16 sent to autopay		t	4	1
2017-01-27 21:12:23.813136+00	\N	653	1504	Will call back in 45min. to do app. 8-12-16 RF		t	4	1
2017-01-27 21:12:23.813158+00	\N	654	192	CCB LVM 8-12-16 RF		t	4	1
2017-01-27 21:12:23.813165+00	\N	655	4039	CCB LVM 8-12-16 RF		t	4	1
2016-09-06 11:45:58.072097+00	\N	656	307	9.6.16 need info. sent em		t	4	1
2016-09-07 17:37:42.920086+00	\N	657	4124	9.6.16 sent to CU		t	4	1
2016-09-07 18:56:15.403471+00	\N	658	3773	9.7.16 sent to autopay		t	4	1
2016-09-08 11:09:21.525647+00	\N	659	1979	9.8.16 duplicate application.		t	4	1
2016-09-15 20:04:15.584183+00	\N	660	1728	\r\n		t	4	1
2016-09-15 20:04:40.751971+00	\N	661	1728	9.13.16 sent to CU\r\n9.15.16 EM CU for status		t	4	1
2016-09-19 16:43:33.955618+00	\N	662	374	9.19.16 sent to autopay		t	4	1
2017-01-27 21:12:23.812098+00	\N	663	1277	He will go to the local branch if he decides to proceed. Not interested in applying as of yet. 07-26-16 RF		t	4	1
2017-01-27 21:12:23.812132+00	\N	664	1285	CCB LVM RF 8-12-16		t	4	1
2017-01-27 21:12:23.812142+00	\N	665	3912	customer called in with questions before wanting to proceed 7-26-16 RF		t	4	1
2017-01-27 21:12:23.812179+00	\N	666	2307	will go to website to do app. 7-27-16 RF		t	4	1
2017-01-27 21:12:23.812269+00	\N	667	20	Wants to do application over the phone		t	4	1
2017-01-27 21:12:23.812319+00	\N	668	1586	Wants information through email. Email: candiashley443@yahoo.com		t	4	1
2017-01-27 21:12:23.812326+00	\N	669	3666	General questions. he is not interested. RF 		t	4	1
2017-01-27 21:12:23.812355+00	\N	670	1831	Please don't not call this customer during working hours. He is not available until after 7pm Mon-Fr		t	4	1
2016-11-03 15:23:06.265366+00	\N	671	4129	11/2 called customer back. No answer and did not go back to voicemail. Will call again in three hours.		t	4	1
2017-01-27 21:12:23.813186+00	\N	672	2605	CCB LVM RRF 8-12-16\r\n8-12-16 4:23pm CCB in regard to her grandmother and refinancing loan. She wil do app. Online		t	4	1
2016-11-01 22:33:56.490157+00	\N	673	2304	11/1 customer was not successful in moving past step 4 in the application process. Follow up on 11/2 to see if customer was successful		t	4	1
2017-01-27 21:12:23.812461+00	\N	674	3199	called on behalf for dad and also had problems with website and uploading app. 8-02-16 RF		t	4	1
2016-11-02 18:24:36.463002+00	\N	675	1189	11/2: Mr. Diaz completed the application over the phone with Robert. Credit Union is Edwards Credit Union		t	4	1
2017-01-27 21:12:23.812511+00	\N	676	2233	Branch App.		t	4	1
2017-01-27 21:12:23.812568+00	\N	677	3971	Interested in going into the branch to complete ap. RF		t	4	1
2017-01-27 21:12:23.812575+00	\N	678	2546	customer call back for marks fax. number  app. sub. 8-03-16 RF		t	4	1
2017-01-27 21:12:23.812603+00	\N	679	2806	Going to website to complete application		t	4	1
2016-11-30 18:38:28.005225+00	\N	680	2411	11.30.16 sent to CU		t	4	1
2017-01-27 21:12:23.812708+00	\N	681	2709	LM		t	4	1
2017-01-27 21:12:23.812715+00	\N	682	3028	Will go into the local branch to complete app. Wasn't interested in completing one over the phone or through the website		t	4	1
2017-01-27 21:12:23.812722+00	\N	683	2948	Questions and will go to local banker has  a personal banker. 8-8-16 RF		t	4	1
2017-01-27 21:12:23.812729+00	\N	684	3108	General questions Not interested RF 8-16-16		t	4	1
2017-01-27 21:12:23.812743+00	\N	685	2575	661-714-2378 is the alternate number.		t	4	1
2017-01-27 21:12:23.812784+00	\N	686	4106	Cust. CB LVM RF		t	4	1
2016-12-03 16:19:43.795905+00	\N	687	2700	12.3.16\r\n		t	4	1
2017-01-27 21:12:23.812791+00	\N	688	2724	Call back no answer and couldn't understand VM. 8-08-16 		t	4	1
2017-01-27 21:12:23.812797+00	\N	689	667	 CCB LVM. This is a bus. line and they are closed on Mondays 8-8-16\r\nCCB This is a dental office. IDK who called from this number.8-9-16		t	4	1
2017-01-27 21:12:23.812804+00	\N	690	1771	Customer wishes not to have any further contact		t	4	1
2017-01-27 21:12:23.812853+00	\N	691	503	CB no answer LVM 8-8-16 RF\r\nCB LVM 8-09-16 RF		t	4	1
2017-01-27 21:12:23.812861+00	\N	692	1350	CB LVM		t	4	1
2017-01-27 21:12:23.812867+00	\N	693	3145	Mr. Jackson LTV is too high. But has excellent credit. He will try again in 6mos. Not willing to give a try		t	4	1
2017-10-11 13:48:44.661475+00	2017-10-11 13:48:44.661583+00	771	3995	called left message  10-11-17		t	13	13
2017-01-27 21:12:23.812874+00	\N	694	3840	Was giving tool free number. Will call back 8/09/16 with info. to do app		t	4	1
2017-01-27 21:12:23.812888+00	\N	695	3039	Application sub online calling for a update 		t	4	1
2017-01-27 21:12:23.812909+00	\N	696	1835	Cust. has started an online app. 8-9-16 RF		t	4	1
2017-01-27 21:12:23.812916+00	\N	697	70	CCB LMV R.F call dropped		t	4	1
2017-01-27 21:12:23.812923+00	\N	698	503	CCB wants to go through branch.8-08-16 RF		t	4	1
2017-01-27 21:12:23.812958+00	\N	699	3840	CCB. seem to be interested will call back with info. to do app. RF 8-16-16\r\nCCB. This customer disconnected the call twice. From what I did gather from him. He was interested at first but now he is a lil hesitant. 8-09-16 RF		t	4	1
2017-01-27 21:12:23.812986+00	\N	700	4106	Going into branch to complete app. 8-09-16 RF		t	4	1
2017-01-27 21:12:23.813+00	\N	701	3087	Said they don't have any current auto loans. RF 8-09-16		t	4	1
2017-01-27 21:12:23.813014+00	\N	702	4089	Same customer as Lisa Genais		t	4	1
2017-01-27 21:12:23.813229+00	\N	703	1279	CCB LVM 8-12-16 ...Org. Talk to cust. back around 8-1-16. We said he was going to branch to complete app. RF		t	4	1
2017-01-27 21:12:23.813236+00	\N	704	3038	CCB LMV 8-12-16 RF Customer called on 8-12-16 wanting to know how to proceed with applying. 		t	4	1
2017-01-27 21:12:23.813264+00	\N	705	365	8.15.16 calling back to do an app		t	4	1
2017-01-27 21:12:23.813315+00	\N	706	2780	Second contact number (661)309-5008		t	4	1
2017-01-27 21:12:23.813323+00	\N	707	1363	Cust. is going to gather info. and do it from the website. RF 8-15-16		t	4	1
2017-01-27 21:12:23.813351+00	\N	708	2282	called in about the status on loan. He was told to give it a couple more days since it was pushed through auto pay. RF 8-16-16		t	4	1
2017-01-27 21:12:23.813358+00	\N	709	2948	Called in about status of loan. was told it was still in process. Rf 8-17-16		t	4	1
2017-01-27 21:12:23.813379+00	\N	710	3038	Not interested		t	4	1
2017-01-27 21:12:23.8134+00	\N	711	1119	Calling to check status of loan ap. RF		t	4	1
2017-01-27 21:12:23.813407+00	\N	712	4103	CCB LMV RF		t	4	1
2017-01-27 21:12:23.813414+00	\N	713	1504	called in about status of auto loan RF		t	4	1
2017-01-27 21:12:23.813464+00	\N	714	202	CCB LVM RF		t	4	1
2017-01-27 21:12:23.813471+00	\N	715	2738	Returned call for Mark. RF		t	4	1
2017-01-27 21:12:23.813519+00	\N	716	202	She called wanting information with financing on a new car vehicle. that's something we do not offer at this time. 8-19-16 RF 		t	4	1
2017-01-27 21:12:23.81354+00	\N	717	202	CB LVM 		t	4	1
2017-01-27 21:12:23.813547+00	\N	718	50	CCB NA RF		t	4	1
2017-01-27 21:12:23.813554+00	\N	719	153	Spam		t	4	1
2017-01-27 21:12:23.813568+00	\N	720	2646	Called in for mom they have a joint acct. and interested in refinancing car but just in her moms name. RF		t	4	1
2017-01-27 21:12:23.813575+00	\N	721	775	CCB and was hang up on		t	4	1
2017-01-27 21:12:23.813589+00	\N	722	366	CCB/LVM 		t	4	1
2017-01-27 21:12:23.813596+00	\N	723	70	CCB/LVM		t	4	1
2017-01-27 21:12:23.813603+00	\N	724	1634	CCB/NA/LMV		t	4	1
2017-01-27 21:12:23.813609+00	\N	725	1284	CCB/LVM		t	4	1
2017-01-27 21:12:23.813658+00	\N	726	202	Customer stated they are getting a new car. So not interested		t	4	1
2017-01-27 21:12:23.813672+00	\N	727	50	CCB/NA		t	4	1
2017-01-27 21:12:23.813686+00	\N	728	2646	CCB/NA Vm full could not leave message		t	4	1
2017-01-27 21:12:23.813693+00	\N	729	1350	CCB/NA		t	4	1
2017-01-27 21:12:23.8137+00	\N	730	2397	 A Quicken loans company  refinancing of mortgages		t	4	1
2017-01-27 21:12:23.813707+00	\N	731	578	He will call back with VIN # and bank account num. He was in his truck		t	4	1
2017-01-27 21:12:23.813714+00	\N	732	70	CCB/LVM 		t	4	1
2017-01-27 21:12:23.813757+00	\N	733	3456	CCB: A elderly lady answered and said her daughter may have called and she will ask and call back if so. RF		t	4	1
2017-01-27 21:12:23.813771+00	\N	734	3911	She is already refinance through another source.		t	4	1
2017-01-27 21:12:23.813785+00	\N	735	366	CCB he stated he is waiting to go into his bank on mortgage. Once he gets a approval from them will give us a call to refinance his car.		t	4	1
2017-01-27 21:12:23.813799+00	\N	736	778	CCB/LVM 		t	4	1
2017-01-27 21:12:23.813806+00	\N	737	1252	CCB/LVM		t	4	1
2017-01-27 21:12:23.813834+00	\N	738	4124	9.7.16 sent to autopay		t	4	1
2017-01-27 21:12:23.813841+00	\N	739	2578	CB/LVM		t	4	1
2017-01-27 21:12:23.813847+00	\N	740	778	CB/LVM		t	4	1
2017-01-27 21:12:23.813862+00	\N	741	778	CB/NA		t	4	1
2017-01-27 21:12:23.813869+00	\N	742	2948	Update status on loan app. Sub weeks ago\r\nShe is with autopay, and not responding to their calls.		t	4	1
2017-01-27 21:12:23.813911+00	\N	743	2673	Reached out to the original number. Her husband gave contact information for his wife, whom initiated the call. Contact Ms. Pedack at 817-675-4224		t	4	1
2017-01-27 21:12:23.813918+00	\N	744	4129	Spoke with Ms. Torrens. Is busy today, but is receptive to a call back at 11 on Thursday. Called her back on Thursday and customer was no longer interested in the offer.		t	4	1
2017-01-27 21:12:23.813925+00	\N	745	2404	Mr. Diaz's phone number: 861-575-4023. Email address: otto_diaz@yahoo.com		t	4	1
2017-02-10 15:51:19.511724+00	\N	746	599	Sent 2.9.17		t	4	1
2017-03-28 17:52:24.995504+00	2017-03-28 17:52:24.995555+00	747	33	3.28.17 sent to Emerald\r\n		t	4	1
2017-03-29 12:40:08.758557+00	2017-03-29 12:40:08.758614+00	748	3258	3.29.17 sent to ASECU\r\n		t	4	1
2017-03-29 12:40:39.921562+00	2017-03-29 12:40:39.921614+00	749	222	3.29.17 Sent to Autopay		t	4	1
2017-03-29 18:14:41.260722+00	2017-03-29 18:14:41.26077+00	750	2523	LM 3.29.17\r\n\r\n		t	4	1
2017-04-03 19:53:01.558425+00	2017-04-03 19:53:01.55848+00	751	1679	Sent 4.3.17		t	4	1
2017-04-04 21:47:34.288625+00	2017-04-04 21:47:34.28869+00	752	4079	Spam		t	4	1
2017-04-04 21:48:39.055525+00	2017-04-04 21:48:39.055591+00	753	1423	LM 4.4.17		t	4	1
2017-04-04 21:50:32.498428+00	2017-04-04 21:50:32.498498+00	754	2362	LM 4.4.17		t	4	1
2017-04-04 21:46:56.834321+00	2017-04-04 21:46:56.834376+00	755	4079	Spam		t	4	1
2017-04-04 21:52:16.975287+00	2017-04-04 21:52:16.975344+00	756	4079	SPAM		t	4	1
2017-04-07 16:35:27.728165+00	2017-04-07 16:35:27.728232+00	757	2694	4.7.17 called and unable to leave message.		t	4	1
2017-04-12 17:55:26.270627+00	2017-04-12 17:55:26.270697+00	758	3988	Spam		t	4	1
2017-05-04 13:16:43.334655+00	2017-05-04 13:16:43.3347+00	759	1476	LM 5.4.17\r\n		t	4	1
2017-05-22 20:20:50.941234+00	2017-05-22 20:20:50.941555+00	760	2565	spam call		t	4	1
2017-06-08 12:22:55.475004+00	2017-06-08 12:22:55.475091+00	761	762	6.8.17 ring no answer		t	4	1
2017-06-16 16:21:00.208343+00	2017-06-16 16:21:00.208412+00	762	1337	Company - ACT		t	4	1
2017-07-06 13:08:55.256778+00	2017-07-06 13:08:55.256811+00	763	1230	Carlos has this lead		t	13	13
2017-07-06 13:09:53.470747+00	2017-07-06 13:09:53.470775+00	764	1230	Carlos lead		t	13	13
2017-09-27 23:01:03.841474+00	2017-09-27 23:01:03.841556+00	765	4110	KIM CALLED		t	13	13
2017-09-27 23:01:17.347258+00	2017-09-27 23:01:17.347314+00	766	4110	KIM CALLED		t	13	13
2017-09-27 23:01:42.913058+00	2017-09-27 23:01:42.91311+00	767	4110	KIM CALLED HER WILL TOUCH BASE TOMORROW		t	13	13
2017-10-11 13:48:08.237472+00	2017-10-11 13:48:08.237723+00	768	1529	called no answer  10-11-17		t	13	13
2017-10-11 13:51:26.930056+00	2017-10-11 13:51:26.930109+00	769	2924	had appointment with her yesterday did not make it. Rescheduled for today at 4:45		t	13	13
2017-10-11 13:53:04.121592+00	2017-10-11 13:53:04.121647+00	772	3995	W.Merced		t	13	13
2017-10-11 13:54:33.354088+00	2017-10-11 13:54:33.35414+00	773	4025	Called left message 10-11-2017 W.Merced		t	13	13
2017-10-11 14:06:09.033506+00	2017-10-11 14:06:09.033609+00	774	2267	called left message 10-11-17 W.Merced		t	13	13
2017-10-11 14:08:03.283005+00	2017-10-11 14:08:03.283071+00	775	1680	Called but mailbox is full 10-11-2017 W.Merced		t	13	13
2017-10-11 14:09:31.614094+00	2017-10-11 14:09:31.614138+00	776	1758	Called no answer 10-11-2017 W. Merced		t	13	13
2017-10-11 14:15:20.196975+00	2017-10-11 14:15:20.197051+00	777	1654	Called and left her a message 10-11-2017 W.Merced		t	13	13
2017-10-11 14:18:09.692609+00	2017-10-11 14:18:09.692658+00	778	866	Called left message 10-11-2017 W.Merced		t	13	13
2017-10-11 14:20:51.798856+00	2017-10-11 14:20:51.798915+00	779	548	Called left him a message 10-11-2017 W. Merced		t	13	13
2017-10-11 14:26:36.818594+00	2017-10-11 14:26:36.818634+00	780	4118	Called left message 10-11-2017 W.Merced		t	13	13
2017-10-11 14:29:25.398811+00	2017-10-11 14:29:25.398967+00	781	1262	called but can't leave a message 10-11-2017 W.Merced		t	13	13
2017-10-11 14:53:21.490216+00	2017-10-11 14:53:21.490295+00	782	2825	Called left message 10-11-2017 W.Merced		t	13	13
2017-10-11 14:56:51.489624+00	2017-10-11 14:56:51.489676+00	783	2511	Called left message 10-11-2017 W.Merced		t	13	13
2017-10-11 15:22:40.290594+00	2017-10-11 15:22:40.290646+00	784	1256	Called and she said she still needs a car but has no job. Is looking for when will call me when she gats situated		t	13	13
2017-10-11 15:25:29.289659+00	2017-10-11 15:25:29.289713+00	785	3152	Called no service 10-11-2017 W.MERCED		t	13	13
2017-10-23 13:14:24.785459+00	2017-10-23 13:14:24.785514+00	786	3309	had appointment with him sat did not show. Referral from chris lee		t	13	13
2017-10-23 13:44:24.809683+00	2017-10-23 13:44:24.809737+00	787	1019	called no answer 		t	13	13
2017-10-25 14:59:10.77777+00	2017-10-25 14:59:10.777836+00	788	3746	Called left message (wanda)		t	13	13
2017-10-25 15:00:29.562297+00	2017-10-25 15:00:29.56235+00	789	593	called left message \r\nwanda		t	13	13
2017-10-27 20:43:42.178305+00	2017-10-27 20:43:42.17836+00	790	617	called left message		t	13	13
2017-11-03 13:33:05.890811+00	2017-11-03 13:33:05.890881+00	791	550	called and she will call me back in a few wm		t	13	13
2017-11-08 14:42:54.362543+00	2017-11-08 14:42:54.362595+00	792	1784	will be here sat. said he knew people that bought a car here but does not want to use them 		t	13	13
2017-11-14 20:45:37.89459+00	2017-11-14 20:45:37.89464+00	793	1783	Spoke with Amber, appointment on 11/15/2017 at 245		t	13	13
2017-11-14 21:01:34.046819+00	2017-11-14 21:01:34.046875+00	794	3821	Carlos, left message, great news.		t	13	13
2017-11-14 21:17:21.424868+00	2017-11-14 21:17:21.424918+00	795	3899	Spoke with Shanario, will bring me the referral name on friday. appoitment on 11/17/2017		t	13	13
2017-11-14 22:29:02.664907+00	2017-11-14 22:29:02.664974+00	796	1255	This is kim customer.		t	13	13
2017-11-14 23:57:24.329496+00	2017-11-14 23:57:24.329578+00	797	3800	Kim has an appointment with him on 11/15/2017 at noon.		t	13	13
2017-11-15 14:20:41.342247+00	2017-11-15 14:20:41.3423+00	798	1661	KIM CALLED AND LEFT MESSAGE		t	13	13
2017-11-15 19:26:15.572573+00	2017-11-15 19:26:15.572659+00	799	3695	Left him a message, have great news.		t	13	13
2017-11-15 23:00:09.381145+00	2017-11-15 23:00:09.381214+00	800	466	KIM  CALLED AND LEFT MESSAGE		t	13	13
2017-11-16 22:59:07.045267+00	2017-11-16 22:59:07.045348+00	801	2797	Spoke with Wayne, appointment for 11/17/2017 at 215		t	13	13
2017-11-17 13:59:39.124533+00	2017-11-17 13:59:39.124585+00	802	240	Carlos, left a message, have great news call me.		t	13	13
2017-11-17 14:03:56.30124+00	2017-11-17 14:03:56.301292+00	803	4008	Carlos, left message have great news call me.		t	13	13
2017-11-17 14:14:23.520768+00	2017-11-17 14:14:23.520813+00	804	141	Carlos, called but no answer.		t	13	13
2017-11-17 17:21:37.287412+00	2017-11-17 17:21:37.287465+00	805	2207	KIM CALLED IT IS CLIENTS SERVICES.		t	13	13
2017-11-17 18:01:31.160129+00	2017-11-17 18:01:31.160203+00	806	3518	PURCHASED A CASH CAR		t	13	13
2017-11-17 20:25:34.877876+00	2017-11-17 20:25:34.877924+00	807	2228	KIM TALKED TO HER . IS LOOKING FOR CAR INSURANCE		t	13	13
2017-11-18 14:15:35.571531+00	2017-11-18 14:15:35.57162+00	808	1583	KIM LEFT MESSAGE		t	13	13
2017-11-20 14:07:18.219491+00	2017-11-20 14:07:18.219545+00	809	2740	Carlos, Call but no answer.		t	13	13
2017-11-20 20:08:39.603012+00	2017-11-20 20:08:39.603066+00	810	3968	CALLED IN FOR A FRIEND CASSIDY PITTMAN.MADE AN APPOINTMENT FOR WANDA AT 515 TODAY		t	13	13
2017-11-20 20:11:37.688295+00	2017-11-20 20:11:37.688368+00	811	4008	KIM'S CUSTOMER		t	13	13
2017-11-21 14:15:51.157122+00	2017-11-21 14:15:51.157177+00	812	2521	TRYING TO REFINANCE		t	13	13
2017-11-21 14:25:19.425323+00	2017-11-21 14:25:19.42539+00	813	2859	Carlos, looking for a personal loan, not a car loan.		t	13	13
2017-11-21 14:33:14.103906+00	2017-11-21 14:33:14.10397+00	814	2080	called left message 		t	13	13
2017-11-21 14:33:56.623007+00	2017-11-21 14:33:56.623057+00	815	1636	Carlos, left a message, have great news.		t	13	13
2017-11-21 14:36:33.41044+00	2017-11-21 14:36:33.41049+00	816	2355	he will be here wed at 2:15		t	13	13
2017-11-21 14:53:25.903337+00	2017-11-21 14:53:25.903387+00	817	1947	called left message to see when she can make it in . wm		t	13	13
2017-11-17 17:57:25.899292+00	2017-11-17 17:57:25.899351+00	818	3697	A PREVIOUS CUSTOMERS OF WANDA'S .IS GOING TO TRY TO COME IN NEXT WEEK		t	13	13
2017-11-21 15:14:48.208268+00	2017-11-21 15:14:48.208335+00	819	3697	called left her a message 		t	13	13
2017-11-21 17:29:17.316301+00	2017-11-21 17:29:17.316355+00	820	945	KIM LEFT MESSAGE .		t	13	13
2017-11-21 20:14:44.909464+00	2017-11-21 20:14:44.909518+00	821	2619	KIM MAILED BROCHURE CANNOT CONE UNTIL THE 28TH		t	13	13
2017-11-21 21:18:52.172722+00	2017-11-21 21:18:52.17279+00	822	317	KIM SENT A BROCHURE . MADE AN APPOINTMENT FOR Saturday at 1145		t	13	13
2017-11-21 23:58:03.187793+00	2017-11-21 23:58:03.187847+00	823	4171	KIM TALKED TO HER. MADE AN APPOINTMENT FOR FRIDAY AT 415		t	13	13
2017-11-22 14:11:57.032117+00	2017-11-22 14:11:57.032436+00	824	654	Carlos, left her a message. Great news.		t	13	13
2017-11-22 16:16:31.42908+00	2017-11-22 16:16:31.429146+00	825	3153	KIM GAVE THE LEAD TO CARLOS .KIM MADE THE APPT WITH QUINTEZ HUBBARD. FOR 1215 TODAY. REFERRED J MATTOX		t	13	13
2017-11-22 16:20:45.802386+00	2017-11-22 16:20:45.802544+00	826	393	KIM MADE AN APPOINTMENT FOR SATURDAY AT 315		t	13	13
2017-11-22 16:25:24.959718+00	2017-11-22 16:25:24.959771+00	827	656	CALLED CAVENDER AUTO . AND TEMISA ANSWERED		t	13	13
2017-11-22 18:18:18.017052+00	2017-11-22 18:18:18.017126+00	828	654	KIM ACCEPTED CALL. GAVE MAIN NUMBER BECAUSE NEEDED CARLOS		t	13	13
2017-11-22 20:38:30.453343+00	2017-11-22 20:38:30.453417+00	829	881	KIM TALKED TO HER BEFORE SHE WENT ONLINE TO FILL OUT APPLICATION		t	13	13
2017-11-22 21:49:51.80656+00	2017-11-22 21:49:51.806611+00	830	1153	KIM TALKED TO HIM, HE WILL BE IN ON MONDAY AT  145		t	13	13
2017-11-24 14:14:00.287577+00	2017-11-24 14:14:00.287649+00	831	3172	called and she will be here fri next week		t	13	13
2017-11-24 14:57:16.60125+00	2017-11-24 14:57:16.601297+00	832	2593	called left her a message 		t	13	13
2017-11-24 23:16:17.911276+00	2017-11-24 23:16:17.911327+00	833	521	WANDA CALLED		t	13	13
2017-11-25 18:48:45.653999+00	2017-11-25 18:48:45.654055+00	834	3001	KIM TOOK THE CALL AND TURNED IT OVER TO CARLOS . SHE WAS REFERRED BY KEN BRISCOE HIS CUSTOMER		t	13	13
2017-11-25 19:46:11.251591+00	2017-11-25 19:46:11.251673+00	835	4188	KIM LEFT A MESSAGE AND SENT A BROCHURE		t	13	13
2017-11-25 20:52:06.328637+00	2017-11-25 20:52:06.328694+00	836	2299	NEEDED TO MAKE PAYMENT		t	13	13
2017-11-25 20:52:30.261375+00	2017-11-25 20:52:30.26144+00	837	2299	NEEDED TO MAKE PAYMENT		t	13	13
2017-11-25 20:53:54.106529+00	2017-11-25 20:53:54.106593+00	838	3624	KIM TOOK THE CALL. A REFERRAL FROM RHONDA SAMPLES		t	13	13
2017-11-27 14:49:32.098628+00	2017-11-27 14:49:32.098694+00	839	958	Carlos, spoke with customer. She was busy at work, she will call me later.		t	13	13
2017-11-20 20:09:36.753667+00	2017-11-20 20:09:36.753735+00	840	3344	KIM TALKED TO HER, IS UNDECIDED WHEN SHE CAN COME AT THIS TIME		t	13	13
2017-11-27 18:38:53.323904+00	2017-11-27 18:38:53.323971+00	841	3344	CALLED 11/27 PURCHASED A CASH CAR. ASKED ME NOT TO CALL ANYMORE		t	13	13
2017-11-27 19:43:54.625152+00	2017-11-27 19:43:54.625203+00	842	211	KIM LEFT MESSAGE		t	13	13
2017-11-27 20:02:15.447483+00	2017-11-27 20:02:15.447538+00	843	3215	Carlos, left her a message, have great news.		t	13	13
2017-11-27 14:14:14.732451+00	2017-11-27 14:14:14.732507+00	844	691	called left message		t	13	13
2017-11-27 21:02:49.398253+00	2017-11-27 21:02:49.398331+00	845	691	CALLED HIM BACK AND HE SAID HE WAS JUST LOOKING AND WILL BE TRYING TO DO SOMETHING BY TAX TIME 		t	13	13
2017-11-27 21:02:49.643561+00	2017-11-27 21:02:49.643642+00	846	691	CALLED HIM BACK AND HE SAID HE WAS JUST LOOKING AND WILL BE TRYING TO DO SOMETHING BY TAX TIME 		t	13	13
2017-11-28 16:20:20.609821+00	2017-11-28 16:20:20.609876+00	847	467	called no answer 		t	13	13
2017-11-28 16:22:03.239936+00	2017-11-28 16:22:03.240002+00	848	467	rings and rings then goes to busy		t	13	13
2017-11-28 18:17:54.858173+00	2017-11-28 18:17:54.858234+00	849	1857	be here sat 10:45		t	13	13
2017-11-28 17:29:41.067346+00	2017-11-28 17:29:41.067415+00	850	3886	called left message 		t	13	13
2017-11-28 18:20:49.535309+00	2017-11-28 18:20:49.535391+00	851	3886	called left a 2nd message  W.M.		t	13	13
2017-11-28 22:43:04.815381+00	2017-11-28 22:43:04.815432+00	852	2366	KIM TALKED TO HER. CANNOT COME IN UNTIL NEXT WEEK. BROCHURE WAS SENT		t	13	13
2017-11-29 16:30:02.581502+00	2017-11-29 16:30:02.581572+00	853	3502	calling for service department 		t	13	13
2017-11-29 17:00:47.209817+00	2017-11-29 17:00:47.209871+00	854	318	will be here dec 5th 		t	13	13
2017-11-30 15:19:18.277196+00	2017-11-30 15:19:18.27725+00	855	894	KIM TALKED TO HER. WAS REFERRED BY ROBIN BANKS. WILL HERE TOMORROW AT 115		t	13	13
2017-12-01 14:23:14.450405+00	2017-12-01 14:23:14.450458+00	856	3608	referral from Johathan knight , Kim's customer will be here after 12:15		t	13	13
2017-12-01 15:53:39.963779+00	2017-12-01 15:53:39.963848+00	857	1320	Carlos, number is to a fax machine.		t	13	13
2017-12-01 17:18:04.435102+00	2017-12-01 17:18:04.435171+00	858	1167	trying to get a ride 		t	13	13
2017-12-01 18:17:54.853335+00	2017-12-01 18:17:54.853407+00	859	1685	WILL BE HERE TOMORROAW MORNING 		t	13	13
2017-12-01 19:00:32.738704+00	2017-12-01 19:00:32.738757+00	860	134	will be here dec 21 . drive by 		t	13	13
2017-12-01 19:44:41.036781+00	2017-12-01 19:44:41.036833+00	861	357	called left message 		t	13	13
2017-12-02 18:14:39.227464+00	2017-12-02 18:14:39.227516+00	862	1128	TOE TRUCK DRIVER WHO IS BRINGING IN A CAR		t	13	13
2017-12-02 18:16:00.710957+00	2017-12-02 18:16:00.711003+00	863	3501	A CURRENT CUSTOMER PATRICIA GRIFFIN WHO HAD QUESTIONS ABOUT TRADING. WANDA'S CUSTOMER		t	13	13
2017-12-02 18:42:07.813315+00	2017-12-02 18:42:07.813367+00	864	55	A CURRENT CUSTOMER WANTING TO KNOW ABOUT TRADING		t	13	13
2017-12-04 14:20:29.492151+00	2017-12-04 14:20:29.492215+00	865	801	Carlos, spoke with aron. He was at work wants me to call him this afternoon.		t	13	13
2017-12-04 14:24:04.649394+00	2017-12-04 14:24:04.649447+00	866	3179	Carlos, left her a message, great news please call me.		t	13	13
2017-12-06 19:37:53.589255+00	2017-12-06 19:37:53.589307+00	867	642	CALLED ABOUT REFERRAL CHECK		t	13	13
2017-12-06 19:34:53.709365+00	2017-12-06 19:34:53.709421+00	868	372	IN SYSTEM		t	13	13
2017-12-07 19:00:09.412552+00	2017-12-07 19:00:09.412611+00	869	372	IN KIMS SYSTEM		t	13	13
2017-12-09 15:33:23.398682+00	2017-12-09 15:33:23.398735+00	870	2671	will try to be here Monday 		t	13	13
2017-12-09 15:50:22.295906+00	2017-12-09 15:50:22.295938+00	871	2671	will call me back 		t	13	13
2017-12-09 22:21:54.1943+00	2017-12-09 22:21:54.194377+00	872	1044	INSURANCE CALL		t	13	13
2017-12-09 22:23:56.996035+00	2017-12-09 22:23:56.996094+00	873	3958	WILL CALL HIM MONDAY .NEEDS TO FIND RIDE HERE		t	13	13
2017-12-09 22:24:31.219314+00	2017-12-09 22:24:31.219367+00	874	242	LEFT MESSAGE ANS BROCHURE SENT		t	13	13
2017-12-09 22:25:44.622858+00	2017-12-09 22:25:44.622905+00	875	3176	JUST RINGS NO MACHINE COMES ON TO LEAVE A MESSAGE.ADDRESS IS INCOMPLETE CANNOT MAIL BROCHURE		t	13	13
2017-12-09 22:26:07.597129+00	2017-12-09 22:26:07.597163+00	876	1044	INSURANCE CALL		t	13	13
2017-12-11 14:18:18.831965+00	2017-12-11 14:18:18.832022+00	877	3608	will be here today after doc appt		t	13	13
2017-12-11 14:18:51.550043+00	2017-12-11 14:18:51.550098+00	878	126	called no answer 		t	13	13
2017-12-11 14:40:34.957893+00	2017-12-11 14:40:34.957947+00	879	126	called left message 		t	13	13
2017-12-11 15:11:23.430693+00	2017-12-11 15:11:23.430747+00	880	126	Carlos, Left message,		t	13	13
2017-12-11 15:36:53.939723+00	2017-12-11 15:36:53.939779+00	881	3734	WAS FOR SERVICE		t	13	13
2017-12-11 14:20:19.826486+00	2017-12-11 14:20:19.826607+00	882	2843	called no answer 		t	13	13
2017-12-11 16:57:08.323929+00	2017-12-11 16:57:08.324014+00	883	2843	KIM TALKED TO HIM.IN THE SYSTEM		t	13	13
2017-12-11 17:23:54.985508+00	2017-12-11 17:23:54.985574+00	884	2041	WANDAS CUSTOMER I GAVE HER THE INFO		t	13	13
2017-12-11 18:41:00.944571+00	2017-12-11 18:41:00.944624+00	885	3259	KIM LEFT MESSAGE		t	13	13
2017-12-11 20:50:20.974226+00	2017-12-11 20:50:20.974281+00	886	3545	Carlos, this is wandas customer. she has an appointment with her on 12/12/2017 @ 10:45 A.m.		t	13	13
2017-12-11 21:05:07.306231+00	2017-12-11 21:05:07.306284+00	887	3171	Carlos, spoke with Christopher he said was on internet and found us. Will be able to do something the weekend of the 23rd. Will follow up.		t	13	13
2017-12-11 23:17:45.477753+00	2017-12-11 23:17:45.477843+00	888	819	called left message 		t	13	13
2017-12-12 16:02:54.855618+00	2017-12-12 16:02:54.855682+00	889	3903	Carlos, called no answer. phone just keeps ringing.		t	13	13
2017-12-12 16:05:39.099978+00	2017-12-12 16:05:39.100028+00	890	527	Carlos, left a message. Referral from Thomas Kendrick.		t	13	13
2017-12-12 23:26:23.502423+00	2017-12-12 23:26:23.502475+00	891	3545	WILL BE HERE IN THE MORNING 		t	13	13
2017-12-12 23:26:47.848997+00	2017-12-12 23:26:47.849079+00	892	3511	CALLED LEFT MESSAGE 		t	13	13
2017-12-12 23:39:21.960145+00	2017-12-12 23:39:21.960229+00	893	3529	called and spoke to some man . said he was on his way home will give her the message that I called 		t	13	13
2017-12-13 17:25:01.962326+00	2017-12-13 17:25:01.962378+00	894	3903	Carlos, spoke with Robert. He was at the mitsubishi store trying to get approved when he saw our sign and made the app to see if we can help him. appointment for 12/14/2017		t	13	13
2017-12-13 21:16:26.472865+00	2017-12-13 21:16:26.472926+00	895	3056	BROCHURE MAILED . APPT FOR 12/30		t	13	13
2017-12-13 21:17:15.430646+00	2017-12-13 21:17:15.430702+00	896	1101	TALKED TO HIM, ASKED ME TO CALL HIM TOMORROW		t	13	13
2017-12-13 21:18:19.591863+00	2017-12-13 21:18:19.591919+00	897	3545	COMING IN TODAY WANDAS CUSTOMER		t	13	13
2017-12-14 15:07:24.144602+00	2017-12-14 15:07:24.144648+00	898	1542	Carlos, left message. Have great news, please call me.		t	13	13
2017-12-14 15:14:41.47576+00	2017-12-14 15:14:41.475828+00	899	3617	Carlos, left message. Have great news call me.		t	13	13
2017-12-14 15:19:36.583572+00	2017-12-14 15:19:36.583637+00	900	2200	KIM TALKED TO HIM, FOUND US ON FACEBOOK.MADE AN APPOINTMENT FOR SATURDAY		t	13	13
2017-12-14 15:36:22.875426+00	2017-12-14 15:36:22.875499+00	901	1618	Carlos, spoke with customer, previous total loss will be here on 12/15/2017		t	13	13
2017-12-14 19:53:22.421971+00	2017-12-14 19:53:22.422065+00	902	261	CARLOS'S REFERRAL FROM MICHAEL NELMS. . KIM SPOKE TO HEATHER AND MADE AN APPOINTMENT FOR 515 TODAY		t	13	13
2017-12-14 19:56:29.511421+00	2017-12-14 19:56:29.511475+00	903	469	KIM  TALKED TO HIM. CANNOT COME IN UNTIL THE 22ND WHEN HE GETS PAID WAS REFERRED BY ONE OF WANDA'S CUSTOMERS.TONYA ROGERS 		t	13	13
2017-12-14 20:12:01.094924+00	2017-12-14 20:12:01.094965+00	904	3323	KIM TALKED TP HIM. WILL FOLLOW UP WITH HIM TOMORROW		t	13	13
2017-12-15 15:04:14.802273+00	2017-12-15 15:04:14.802399+00	905	2787	Carlos, this number just keeps ringing. no one answers.		t	13	13
2017-12-16 14:03:47.032491+00	2017-12-16 14:03:47.032547+00	906	3259	KIM IS TALKING TO HER .		t	13	13
2017-12-16 17:33:08.93323+00	2017-12-16 17:33:08.933295+00	907	3668	KIM CALLED AND LEFT A MESSAGE AND SENT A BROCHURE		t	13	13
2017-12-18 13:53:52.778835+00	2017-12-18 13:53:52.77889+00	908	3478	CARLOS'S CUSTOMER		t	13	13
2017-12-18 13:55:42.360072+00	2017-12-18 13:55:42.360127+00	909	1248	KIM  LEFT A MESSAGE		t	13	13
2017-12-18 13:58:38.86644+00	2017-12-18 13:58:38.86649+00	910	2562	KIM LEFT MESSAGE		t	13	13
2017-12-18 14:01:08.390962+00	2017-12-18 14:01:08.391017+00	911	3242	KIM  LEFT MESSAGE		t	13	13
2017-12-18 14:03:47.24099+00	2017-12-18 14:03:47.24108+00	912	3849	KIM LEFT MESSAGE		t	13	13
2017-12-18 14:13:36.070678+00	2017-12-18 14:13:36.07073+00	913	2292	KIM TALKED TO HER . CANNOT NOT COME IN UNTIL NEXT WEEKEND		t	13	13
2017-12-18 14:16:43.138787+00	2017-12-18 14:16:43.138839+00	914	83	KIM LEFT MESSAGE 		t	13	13
2017-12-18 14:19:59.01057+00	2017-12-18 14:19:59.010691+00	915	3594	KIM LEFT A MESSAGE		t	13	13
2017-12-18 14:28:01.220086+00	2017-12-18 14:28:01.220139+00	916	166	WANDA'S CUSTOMER		t	13	13
2017-12-18 16:44:25.063838+00	2017-12-18 16:44:25.063893+00	917	3247	called and she will be here tomorrow		t	13	13
2017-12-19 21:09:51.121784+00	2017-12-19 21:09:51.121835+00	918	2577	KIM TALKED TO HIM. MADE AN APPOINTMENT FOR TOMORROW		t	13	13
2017-12-19 21:11:44.23453+00	2017-12-19 21:11:44.234584+00	919	3782	CALLING TO INFO FOR HER 19 YEAR OLD SON. BAILEY GRIFFIN		t	13	13
2017-12-20 18:40:16.974595+00	2017-12-20 18:40:16.974639+00	920	1932	LAW OFFICE DON'T KNOW WHO CALLED HERE		t	13	13
2017-12-20 19:50:51.477073+00	2017-12-20 19:50:51.477124+00	921	2185	CALLED LEFT MESSAGE 		t	13	13
2017-12-20 20:31:43.337102+00	2017-12-20 20:31:43.337157+00	922	3818	GOING TO SEE WHAT DAY HE CAN COME IN . LOOKING FOR A CHARGER 		t	13	13
2017-12-20 22:53:35.595599+00	2017-12-20 22:53:35.59565+00	923	1749	KIM TALKED TO HIM. BROCHURE WAS MAILED		t	13	13
2017-12-18 14:25:13.88822+00	2017-12-18 14:25:13.888274+00	924	3904	KIM LEFT A MESSAGE .		t	13	13
2017-12-20 23:02:48.120929+00	2017-12-20 23:02:48.120983+00	925	3904	WANDA'S HAS CUSTOMER IN THE SYSTEM		t	13	13
2017-12-21 14:17:27.449275+00	2017-12-21 14:17:27.449329+00	926	2918	KIM CALLED MAILBOX IS FULL. CANNOT LEAVE ANY NEW MESSAGES		t	13	13
2017-12-21 14:22:29.397863+00	2017-12-21 14:22:29.397903+00	927	2918	BROCHURE WAS MAILED AND EMAIL SENT		t	13	13
2017-12-21 14:10:39.574294+00	2017-12-21 14:10:39.574331+00	928	2070	KIM CALLED AND WAS HUNG UP ON		t	13	13
2017-12-21 14:22:50.950302+00	2017-12-21 14:22:50.950376+00	929	2070	BROCHURE ANS EMAIL WAS SENT		t	13	13
2017-12-21 14:32:46.723115+00	2017-12-21 14:32:46.723187+00	930	2213	MAILBOX IS FULL. KIM SENT EMAIL AND BROCHURE		t	13	13
2017-12-22 15:06:35.989968+00	2017-12-22 15:06:35.990023+00	931	1473	Carlos, phone just keeps ringing. no one answer.		t	13	13
2017-12-22 17:25:05.509047+00	2017-12-22 17:25:05.509101+00	932	1749	IN THE SYSTEM BROCHURE WAS MAILED		t	13	13
2017-12-22 18:03:31.15312+00	2017-12-22 18:03:31.153175+00	933	2793	JUST RINGS AND RINGS 		t	13	13
2017-12-22 20:19:34.171966+00	2017-12-22 20:19:34.172021+00	934	1587	SPOKE TO HIM AND HE SAID HE LIVED TI SC 		t	13	13
2017-12-22 21:14:03.50364+00	2017-12-22 21:14:03.503701+00	935	3780	IN SYSTEM. MADE APPOINTMENT FOR NEXT FRIDAY		t	13	13
2017-12-23 14:24:41.102509+00	2017-12-23 14:24:41.102564+00	936	3716	Carlos, spoke with Dimarcus, trying to come next week. Referral from curtis brightwell.		t	13	13
2017-12-23 16:01:18.702014+00	2017-12-23 16:01:18.702068+00	937	1440	KIM LEFT MESSAGE TO HAVE HER CALL ME		t	13	13
2017-12-26 16:12:32.174781+00	2017-12-26 16:12:32.174832+00	938	2349	Carlos, Spoke with Michael appountment for 12/30/2017 @ 10:45a.m. Referral from Ervin Edmonds.		t	13	13
2017-12-26 16:56:14.18233+00	2017-12-26 16:56:14.182402+00	939	4151	GAVE MAIN NUMBER TO CALL WANDA		t	13	13
2017-12-26 17:00:54.45969+00	2017-12-26 17:00:54.459742+00	940	4151	will be here fri  wm 		t	13	13
2017-12-27 20:28:42.035353+00	2017-12-27 20:28:42.035411+00	941	589	CALL WAS  FOR WANDA		t	13	13
2017-12-27 20:29:14.933727+00	2017-12-27 20:29:14.933798+00	942	1573	IN SYSTEM		t	13	13
2017-12-27 20:38:14.267536+00	2017-12-27 20:38:14.26759+00	943	706	KIM TALKED TO HER.		t	13	13
2017-12-28 20:03:00.848978+00	2017-12-28 20:03:00.849056+00	944	463	Carlos, spoke with customer. She will be here on Sat. 12/30/2017 at 4:45p.m. referral from india smith.		t	13	13
2017-12-29 15:44:09.606101+00	2017-12-29 15:44:09.606159+00	945	1720	KIM MADE AN APPOINTMENT FOR TOMORROW		t	13	13
2017-12-29 17:45:13.365007+00	2017-12-29 17:45:13.365092+00	946	1367	WILL BE HERE TOMORROW AT 10:15		t	13	13
2017-12-30 16:38:33.23025+00	2017-12-30 16:38:33.230301+00	947	4014	KIM TALKED TO HER		t	13	13
2018-01-01 21:51:59.254032+00	2018-01-01 21:51:59.254085+00	948	1739	Harry left this message		t	4	1
2018-01-03 00:07:37.114275+00	2018-01-03 00:07:37.11432+00	949	1739	This is another note		t	4	1
2018-01-03 00:13:32.426135+00	2018-01-03 00:13:32.426173+00	950	1739	Keep moving forward		t	4	1
2018-01-03 00:16:39.049369+00	2018-01-03 00:16:39.049409+00	951	1739	Adding another		t	4	1
2018-05-29 15:48:13.274024+00	2018-05-29 15:48:13.274056+00	952	\N	heloo		t	4	4
2018-07-25 16:50:16.449134+00	2018-07-25 16:50:16.449156+00	953	3801	Poetry to my ears!!!		t	4	4
2017-01-27 21:12:23.813393+00	\N	954	1350	CCB LVM RF 8-17-16		t	4	1
2016-05-25 16:27:39.345911+00	\N	955	3747	Boyd Massey		t	4	1
2016-05-25 16:36:04.663392+00	\N	956	3747	270k unable to refinance		t	4	1
2016-05-25 16:40:37.271819+00	\N	957	4015	Left Message\r\n		t	4	1
2016-05-25 17:12:41.551243+00	\N	958	1596	Doctors office.		t	4	1
2016-05-25 16:47:38.916867+00	\N	959	1158	Left message 5.25.16		t	4	1
2016-05-25 17:00:15.434514+00	\N	960	4010	Closed 5.25.16		t	4	1
2016-05-25 17:17:29.170322+00	\N	961	4007	Left Messge 5.25.16		t	4	1
2016-05-25 18:21:19.217457+00	\N	962	4078	VM Not set up. unable to leave message		t	4	1
2016-05-25 18:10:53.180617+00	\N	963	3067	LM 5.25.16		t	4	1
2016-05-25 18:15:15.079902+00	\N	964	2967	Jeannie Blanko - submitted app		t	4	1
2016-05-25 18:25:20.810743+00	\N	965	2384	Edwards Tel #		t	4	1
2016-05-25 18:27:33.023035+00	\N	966	721	wrong #		t	4	1
2016-05-25 16:31:23.600549+00	\N	967	3302	Said he would call back. In meeting		t	4	1
2016-08-08 16:33:20.84504+00	\N	968	661	8.8.16 Autopay\r\n		t	4	1
2016-05-25 16:44:48.650711+00	\N	969	3969	Mail box full. Cannot leave message.		t	4	1
2016-05-25 18:24:00.595132+00	\N	970	3105	Dara Shelton going online		t	4	1
2016-05-25 18:31:07.22972+00	\N	971	3281	Wants to finance a new car		t	4	1
2016-07-08 19:15:19.271388+00	\N	972	3254	Calling back to do the app		t	4	1
2016-08-29 21:11:00.718892+00	\N	973	3100	8.9.16 sent to autopay		t	4	1
2016-05-31 16:25:19.351167+00	\N	974	213	LM 5.31.16		t	4	1
2016-05-31 17:46:17.728562+00	\N	975	1787	filling out app when I called back. 5.31.16		t	4	1
2016-05-31 18:30:57.50753+00	\N	976	436	customer hung  up 5.31.16		t	4	1
2016-05-31 19:52:31.09934+00	\N	977	3284	spam		t	4	1
2016-06-01 13:17:46.684785+00	\N	978	1823	LM 6.1.16 Sarah Buckley		t	4	1
2016-08-17 21:02:39.055983+00	\N	979	618	8.10.16 sent to CU\r\n8.17.16 sent to autopay		t	4	1
2016-06-01 19:43:09.147026+00	\N	980	3166	Lois Mills		t	4	1
2016-06-01 21:18:35.288285+00	\N	981	271	Yolanda Jackson. LM 6.1.16		t	4	1
2016-08-22 11:53:21.980551+00	\N	982	3873	8.22.16 sent to autopay		t	4	1
2016-06-01 21:42:42.649646+00	\N	983	1699	Jacob Burris		t	4	1
2016-06-01 17:26:28.25577+00	\N	984	4019	Lynda Maxwell		t	4	1
2016-06-02 21:14:26.423891+00	\N	985	2801	LM 6.2.16\r\n		t	4	1
2016-06-02 13:03:39.180994+00	\N	986	1953	spam		t	4	1
2016-08-12 21:04:19.011176+00	\N	987	2762	CCB Inform they have autos refinance with someone else now RF 8-12-16		t	4	1
2016-08-24 16:31:42.983418+00	\N	988	578	8.24.16 sent to autopay		t	4	1
2016-06-01 17:57:33.235177+00	\N	989	4019	questions on app		t	4	1
2016-06-02 14:23:23.700894+00	\N	990	3166	going online tonight		t	4	1
2017-01-27 21:12:23.813076+00	\N	991	2806	CCB to check status of completing online app. 8-10-16 RF		t	4	1
2016-07-20 15:45:48.07608+00	\N	992	980	client called wanting to get more info on her loan, also she wanted to see if she was approved or not.  She also said Mark left her a voicemail. Contact number: 972-689-5620		t	4	1
2016-06-01 19:16:44.66422+00	\N	993	1269	spam		t	4	1
2016-06-03 14:39:12.638166+00	\N	994	3753	513-235-8208		t	4	1
2016-06-07 13:33:38.927622+00	\N	995	1923	781-724-1889		t	4	1
2016-08-23 17:06:04.46843+00	\N	996	4033	8.23.16 sent to cu		t	4	1
2016-06-13 21:22:51.792868+00	\N	997	2777	ring no answer		t	4	1
2016-06-13 21:23:12.197859+00	\N	998	2777	ring no answer\r\n		t	4	1
2016-06-27 14:39:07.460574+00	\N	999	3609	going online		t	4	1
2016-06-27 14:41:48.350549+00	\N	1000	3386	LM 		t	4	1
2016-06-27 14:44:06.105348+00	\N	1001	3202	Rude\r\n		t	4	1
2016-06-27 14:51:39.907031+00	\N	1002	2026	LM		t	4	1
2016-06-27 14:57:36.975636+00	\N	1003	1545	Going to the branch		t	4	1
2016-06-27 15:07:31.241859+00	\N	1004	1963	LM		t	4	1
2016-06-27 15:09:37.972031+00	\N	1005	917	LM		t	4	1
2016-06-27 18:38:51.050514+00	\N	1006	743	614-204-0877 cell		t	4	1
2016-06-27 15:51:18.628067+00	\N	1007	2721	LM		t	4	1
2016-06-27 15:59:45.006454+00	\N	1008	2495	330-518-2614\r\nco signor for son		t	4	1
2016-06-27 15:01:17.338979+00	\N	1009	3740	No answer		t	4	1
2016-06-27 20:41:08.194688+00	\N	1010	1969	LM		t	4	1
2016-06-27 18:57:47.254648+00	\N	1011	2655	Business number		t	4	1
2016-06-28 17:09:39.210917+00	\N	1012	1969	SPOKE TO NANCY AT NEWTOWN FALLS		t	4	1
2016-08-10 16:01:42.651215+00	\N	1013	74	Cust. cant take on any more credit obligations. he has just refinance is house and says he just don't want his credit pulled anymore. 8-9-16 RF		t	4	1
2016-08-12 18:14:18.427255+00	\N	1014	1899	8.10.16 sent to autopay		t	4	1
2016-06-29 18:41:48.516825+00	\N	1015	537	330-360-2062		t	4	1
2016-06-29 15:22:40.008704+00	\N	1016	3941	LM 		t	4	1
2016-07-05 16:57:55.682252+00	\N	1017	1622	Declined LTV		t	4	1
2016-04-21 21:55:13.252712+00	\N	1018	3586	Need to follow!		t	2	2
2016-08-08 18:54:54.128484+00	\N	1019	503	Cb no answer LVM		t	4	1
2016-05-25 17:04:30.503361+00	\N	1020	2642	Left message - 5.25.16		t	4	1
2016-05-25 17:14:58.354506+00	\N	1021	3747	This is an Ashland CU Number		t	4	1
2016-05-25 17:15:20.517931+00	\N	1022	3747	This is an Ashland CU Number		t	4	1
2016-05-25 18:16:26.475258+00	\N	1023	1538	David McKibbin		t	4	1
2016-05-25 18:28:34.615745+00	\N	1024	2331	my #. Testing DID		t	4	1
2016-06-01 16:58:10.936246+00	\N	1025	1531	app sent		t	4	1
2016-06-14 11:50:15.706705+00	\N	1026	3508	Sent App		t	4	1
2016-06-14 11:50:33.243276+00	\N	1027	125	Sent App		t	4	1
2016-06-27 15:48:40.693493+00	\N	1028	3740	LM		t	4	1
2016-08-25 13:27:22.962121+00	\N	1029	3283	8.25.16 sent to CU.		t	4	1
2016-08-17 21:17:25.344041+00	\N	1030	1678	8.17.16 sent to cu		t	4	1
2016-08-16 19:31:15.016135+00	\N	1031	2709	Call customer and LM		t	4	1
2016-08-11 12:20:49.474101+00	\N	1032	2669	8.11.16 sent to autopay		t	4	1
2016-08-22 14:22:04.486094+00	\N	1033	1420	8.22.16 CU is calling to set appointment		t	4	1
2016-08-16 19:29:29.725565+00	\N	1034	3963	8.16.16 sent to autopay		t	4	1
2016-08-10 16:39:34.241669+00	\N	1035	1621	8.10.16 sent to autopay		t	4	1
2017-01-27 21:12:23.812525+00	\N	1036	4103	LVM 8-10-16 RF		t	4	1
2016-08-03 21:26:19.649416+00	\N	1037	2662	8.3.16 - has not been approved yet,\r\n		t	4	1
2016-08-12 16:33:26.818107+00	\N	1038	3028	Customer has already talked to someone in regard to questions		t	4	1
2016-08-16 19:30:47.99018+00	\N	1039	538	8.16.16 sent to autopay		t	4	1
2016-08-16 19:31:15.000181+00	\N	1040	2709	8.16.16 sent to autopay		t	4	1
2016-08-16 19:31:40.10093+00	\N	1041	3597	8.16.16 sent to autopay		t	4	1
2016-08-05 15:39:17.915208+00	\N	1042	3108	Says no one called from this number and wishes not to receive anymore calls.		t	4	1
2016-08-11 12:20:27.388218+00	\N	1043	1979	8.11.16 sent to cu		t	4	1
2016-08-11 12:21:15.089629+00	\N	1044	1306	8.11.16 sent to autopay		t	4	1
2017-11-30 23:54:57.95665+00	2017-11-30 23:54:57.956718+00	1045	1168	KIM LEFT MESSAG		t	13	13
2016-08-08 13:56:30.694473+00	\N	1046	2214	This customer insisted that no one called from this number and we dialed the wrong number. Not interested 		t	4	1
2017-01-27 21:12:23.813736+00	\N	1047	4181	CCB/LVM		t	4	1
2016-08-08 14:02:26.152162+00	\N	1048	4106	Customer is going into the branch in Lancaster to submit application		t	4	1
2016-08-09 17:08:20.722559+00	\N	1049	2724	8.8.16 Credit Union has been trying to reach him. Will follow-up with CU today.		t	4	1
2016-08-09 17:08:43.530706+00	\N	1050	3940	8.9.16 sent to autopay		t	4	1
2017-01-27 21:12:23.812756+00	\N	1051	2221	Customer was belligerent and asked if to be taken off do not call list. RF 		t	4	1
2016-08-08 15:50:55.826128+00	\N	1052	2221	DO NOT CALL THIS CUSTOMER BACK		t	4	1
2016-08-08 17:01:56.072776+00	\N	1053	4	8.8.16		t	4	1
2016-08-08 20:08:04.885225+00	\N	1054	1809	8.8.16 sent to cu - declined. sent to autopay 8.8.16		t	4	1
2016-08-08 20:20:25.607566+00	\N	1055	2426	 CB customer and he was informed that application was declined.		t	4	1
2016-08-08 20:42:05.261522+00	\N	1056	2738	8.8.16 sent to CU.		t	4	1
2016-08-08 22:03:52.029652+00	\N	1057	1271	8.8.16 sent to autopay		t	4	1
2016-08-08 22:04:13.130176+00	\N	1058	1271	8.8.16 sent to autopaty		t	4	1
2016-08-09 17:08:20.713232+00	\N	1059	2724	8.9.16 sent to autopay		t	4	1
2016-08-10 14:57:16.412591+00	\N	1060	757	8.10.16 Sent to CU		t	4	1
2016-08-09 21:12:13.886825+00	\N	1061	255	8.9.16 Sent to CU		t	4	1
2016-08-17 21:03:06.583869+00	\N	1062	2338	8.12.16 sent to cu\r\n8.17.16 sent to autopay		t	4	1
2016-08-10 14:09:28.02701+00	\N	1063	3772	Call in regard to a loan app. plans to do application over through website		t	4	1
2016-08-17 16:03:49.250392+00	\N	1064	349	8.17.16 sent to autopay		t	4	1
2016-08-10 15:36:03.143874+00	\N	1065	2274	Cust. called in regard to credit card not to refinance auto loan. safe to take her off the DO NOT CALL LIST		t	4	1
2016-08-12 13:19:47.022649+00	\N	1066	3161	8.12.16 sent to cu		t	4	1
2016-08-16 19:32:06.19221+00	\N	1067	2191	8.12.16 sent to cu\r\n8.16.16 sent to autopay		t	4	1
2016-08-12 16:33:26.804646+00	\N	1068	3028	8.12.16 sent to autopay		t	4	1
2016-08-12 19:38:54.438964+00	\N	1069	3471	8.12.16 sent to autopay\r\n		t	4	1
2016-08-12 19:38:54.449185+00	\N	1070	3471	8.12.16 need vehicle model. LM 		t	4	1
2016-08-12 19:08:45.409165+00	\N	1071	1504	terry Riebe Cell number is (406)218-9018.....Wife Donna Riebe Cell (406)550-0738 RF 8-12-16\r\n8.12.16 sent to cu.\r\n		t	4	1
2016-08-25 14:45:19.80611+00	\N	1072	4181	8.25.16 sent to CU		t	4	1
2016-08-22 14:22:04.504895+00	\N	1073	1420	Called her back - completed		t	4	1
2016-08-22 17:12:49.3494+00	\N	1074	2397	Quicken loans. Called LVM about refinancing of home		t	4	1
2016-08-23 12:03:32.115854+00	\N	1075	616	8.18.16 sent to CU\r\n8.23.16 sent to autopay		t	4	1
2016-08-15 12:15:41.589285+00	\N	1076	3739	8.15.16 sent to autopay		t	4	1
2016-08-15 12:16:04.408341+00	\N	1077	1213	8.15.16 sent to autopay		t	4	1
2016-08-15 12:16:27.487224+00	\N	1078	1835	8.15.16 sent to autopay		t	4	1
2016-08-15 12:16:27.498902+00	\N	1079	1835	CB LVM RF		t	4	1
2017-01-27 21:12:23.812811+00	\N	1080	1835	CB and LVM. will Cb 		t	4	1
2017-01-27 21:12:23.813055+00	\N	1081	735	A women answers and said no one call and no to offer. 8/09/16  R.F 		t	4	1
2016-08-15 18:08:54.335398+00	\N	1082	2786	8.15.16 sent to cu		t	4	1
2017-01-27 21:12:23.81325+00	\N	1083	4004	CCB LMV 8-15-16 RF		t	4	1
2016-08-15 18:49:06.218997+00	\N	1084	3823	10.15.16 sent to cu		t	4	1
2016-08-15 18:52:16.288072+00	\N	1085	3267	10.15.16 sent to cu		t	4	1
2016-08-15 19:19:00.088926+00	\N	1086	4067	8.15.16 sent to cu		t	4	1
2016-08-15 20:17:34.41722+00	\N	1087	365	called in regard application being sent to his email. RF 8-15-16		t	4	1
2016-08-16 15:33:43.630669+00	\N	1088	2081	8.15.16 sent to CU\r\n8.16.16 sent to autopay not eligible at CU		t	4	1
2016-08-16 20:01:05.541323+00	\N	1089	365	This guy is the same person. He  kepts changing up his name for some odd reason. He is Jeremiah Soval ; Joseph Remeral and Jamie Sandoval. Not sure what's is problem \r\nBut he was giving every option to a credit app. All of his questions have been answered. 8-16-16 RF		t	4	1
2016-08-23 19:19:02.402776+00	\N	1090	3480	8.15.16 sent to cu\r\n8.23.16 sent to autopay		t	4	1
2017-01-27 21:12:23.813257+00	\N	1091	897	Customer started speaking English then went to speaking Spanish said I had wrong number. 8-15-16 RF		t	4	1
2016-08-15 21:15:12.486125+00	\N	1092	2780	Second contact number (661)309-5008\r\n8.15.16 sent to autopay		t	4	1
2016-08-16 11:05:56.134496+00	\N	1093	2828	8.16.16 sent to autopay		t	4	1
2016-08-16 11:10:52.983007+00	\N	1094	1363	8.15.16 sent to cu		t	4	1
2016-08-16 19:29:55.405347+00	\N	1095	3735	8.16.16 sent to autopay		t	4	1
2016-08-16 19:30:23.622599+00	\N	1096	1026	8.16.16 sent to autopay		t	4	1
2016-08-16 19:30:23.647586+00	\N	1097	1026	Please do not call this customer back until after 4:00pm he is at work.		t	4	1
2016-08-16 19:32:35.842617+00	\N	1098	1119	8.10.16 sent to cu\r\n8.16.16 sent to autopay		t	4	1
2016-08-17 17:05:00.37423+00	\N	1099	4004	Will call Back and give correct vin number. RF		t	4	1
2016-08-19 18:14:58.703918+00	\N	1100	2973	8.19.16 sent to cu		t	4	1
2016-08-19 18:14:58.715164+00	\N	1101	2973	Called and left message , says he was calling about offer in the mail		t	4	1
2016-08-22 22:19:14.807143+00	\N	1102	1681	8.22.16 sent to autopay		t	4	1
2016-08-25 16:47:09.538071+00	\N	1103	3257	8.15.16 sent to cu\r\n8.25.16 sent to autopay		t	4	1
2016-08-24 13:58:01.707578+00	\N	1104	4026	Talked to this gentleman already he's really not interested. Said he will not even consider doing business with us unless its in the local branch. I gave him the info to a local branch in his area as well as other information. Answer all of his questions. RF		t	4	1
2016-08-26 17:41:45.444232+00	\N	1105	390	8.26.16 LM		t	4	1
2016-08-22 21:54:05.186121+00	\N	1106	3558	8.22.16 sent to autopay		t	4	1
2016-08-23 11:47:27.216241+00	\N	1107	149	8.23.16 sent to autopay		t	4	1
2016-08-23 11:59:23.202261+00	\N	1108	390	8.23.16 sent to CU		t	4	1
2016-08-23 14:20:04.256738+00	\N	1109	2397	CCB LVM 		t	4	1
2017-01-27 21:12:23.813616+00	\N	1110	578	CCB NA		t	4	1
2017-01-27 21:12:23.813623+00	\N	1111	192	CCB/LVM RF		t	4	1
2017-01-27 21:12:23.81363+00	\N	1112	4061	unknown caller		t	4	1
2016-08-29 12:09:17.77865+00	\N	1113	1298	8.29.16 sent to cu		t	4	1
2016-08-29 12:09:36.28067+00	\N	1114	1624	8.29.16 sent to autopay		t	4	1
2016-08-24 12:01:24.830913+00	\N	1115	777	8.24.16 sent to CU		t	4	1
2016-08-29 12:31:08.461213+00	\N	1116	2741	8.29.16 sent to cu		t	4	1
2016-08-29 12:41:22.365045+00	\N	1117	3249	8.29.016 sent to cu		t	4	1
2016-08-31 16:57:34.173484+00	\N	1118	2874	8.29.16 sent to cu\r\n8.30.16 sent to autopay		t	4	1
2017-01-27 21:12:23.813069+00	\N	1119	618	Customer going through website to complete app. If can't complete will cb and do over phone. 8-10-16 RF		t	4	1
2017-12-20 23:43:24.931113+00	2017-12-20 23:43:24.931172+00	1120	1673	KIM TALKED TO . MADE AN APPOINTMENT FOR FRIDAY		t	13	13
2017-01-27 21:12:23.81309+00	\N	1121	1899	Error this app. Should have been push through Edwards not Emerald 8-10-16 RF		t	4	1
2017-01-27 21:12:23.813114+00	\N	1122	365	Wants application and info on his offer sent to email. jeremiah7767@yahoo.com  8/10/16 RF		t	4	1
2016-08-31 14:43:00.567311+00	\N	1123	2104	8.30.16 sent to CU		t	4	1
2016-08-30 21:07:17.608603+00	\N	1124	1356	She dialed the wrong number		t	4	1
2017-01-27 21:12:23.813721+00	\N	1125	366	CCB customer said he is in the market of buying a house. Had applied with us 6mo. ago and no returned call on his status of approval. Will call back in 2days to see if he wants to go forward		t	4	1
2016-08-31 17:02:24.721035+00	\N	1126	3338	She called to check status of her app RF 8-19-16. This is her cell number\r\n8.30.16 sent to autopay		t	4	1
2016-08-31 21:49:26.2593+00	\N	1127	1470	8.30.16 Taking over the loan on Juan Palma's application.\r\n		t	4	1
2017-01-27 21:12:23.813129+00	\N	1128	1899	8.12.16 customer declined offer with autopay		t	4	1
2016-09-02 19:31:36.093337+00	\N	1129	2560	9.2.16 sent to autopay		t	4	1
2017-01-27 21:12:23.813136+00	\N	1130	1504	Will call back in 45min. to do app. 8-12-16 RF		t	4	1
2017-01-27 21:12:23.813158+00	\N	1131	192	CCB LVM 8-12-16 RF		t	4	1
2017-01-27 21:12:23.813165+00	\N	1132	4039	CCB LVM 8-12-16 RF		t	4	1
2016-09-06 11:45:58.072097+00	\N	1133	307	9.6.16 need info. sent em		t	4	1
2016-09-07 17:37:42.920086+00	\N	1134	4124	9.6.16 sent to CU		t	4	1
2016-09-07 18:56:15.403471+00	\N	1135	3773	9.7.16 sent to autopay		t	4	1
2016-09-08 11:09:21.525647+00	\N	1136	1979	9.8.16 duplicate application.		t	4	1
2016-09-15 20:04:15.584183+00	\N	1137	1728	\r\n		t	4	1
2016-09-15 20:04:40.751971+00	\N	1138	1728	9.13.16 sent to CU\r\n9.15.16 EM CU for status		t	4	1
2016-09-19 16:43:33.955618+00	\N	1139	374	9.19.16 sent to autopay		t	4	1
2017-01-27 21:12:23.812098+00	\N	1140	1277	He will go to the local branch if he decides to proceed. Not interested in applying as of yet. 07-26-16 RF		t	4	1
2017-01-27 21:12:23.812132+00	\N	1141	1285	CCB LVM RF 8-12-16		t	4	1
2017-01-27 21:12:23.812142+00	\N	1142	3912	customer called in with questions before wanting to proceed 7-26-16 RF		t	4	1
2017-01-27 21:12:23.812179+00	\N	1143	2307	will go to website to do app. 7-27-16 RF		t	4	1
2017-01-27 21:12:23.812269+00	\N	1144	20	Wants to do application over the phone		t	4	1
2017-01-27 21:12:23.812319+00	\N	1145	1586	Wants information through email. Email: candiashley443@yahoo.com		t	4	1
2017-01-27 21:12:23.812326+00	\N	1146	3666	General questions. he is not interested. RF 		t	4	1
2017-01-27 21:12:23.812355+00	\N	1147	1831	Please don't not call this customer during working hours. He is not available until after 7pm Mon-Fr		t	4	1
2016-11-03 15:23:06.265366+00	\N	1148	4129	11/2 called customer back. No answer and did not go back to voicemail. Will call again in three hours.		t	4	1
2017-01-27 21:12:23.813186+00	\N	1149	2605	CCB LVM RRF 8-12-16\r\n8-12-16 4:23pm CCB in regard to her grandmother and refinancing loan. She wil do app. Online		t	4	1
2016-11-01 22:33:56.490157+00	\N	1150	2304	11/1 customer was not successful in moving past step 4 in the application process. Follow up on 11/2 to see if customer was successful		t	4	1
2017-01-27 21:12:23.812461+00	\N	1151	3199	called on behalf for dad and also had problems with website and uploading app. 8-02-16 RF		t	4	1
2016-11-02 18:24:36.463002+00	\N	1152	1189	11/2: Mr. Diaz completed the application over the phone with Robert. Credit Union is Edwards Credit Union		t	4	1
2017-01-27 21:12:23.812511+00	\N	1153	2233	Branch App.		t	4	1
2017-01-27 21:12:23.812568+00	\N	1154	3971	Interested in going into the branch to complete ap. RF		t	4	1
2017-01-27 21:12:23.812575+00	\N	1155	2546	customer call back for marks fax. number  app. sub. 8-03-16 RF		t	4	1
2017-01-27 21:12:23.812603+00	\N	1156	2806	Going to website to complete application		t	4	1
2016-11-30 18:38:28.005225+00	\N	1157	2411	11.30.16 sent to CU		t	4	1
2017-01-27 21:12:23.812708+00	\N	1158	2709	LM		t	4	1
2017-01-27 21:12:23.812715+00	\N	1159	3028	Will go into the local branch to complete app. Wasn't interested in completing one over the phone or through the website		t	4	1
2017-01-27 21:12:23.812722+00	\N	1160	2948	Questions and will go to local banker has  a personal banker. 8-8-16 RF		t	4	1
2017-01-27 21:12:23.812729+00	\N	1161	3108	General questions Not interested RF 8-16-16		t	4	1
2017-01-27 21:12:23.812743+00	\N	1162	2575	661-714-2378 is the alternate number.		t	4	1
2017-01-27 21:12:23.812784+00	\N	1163	4106	Cust. CB LVM RF		t	4	1
2016-12-03 16:19:43.795905+00	\N	1164	2700	12.3.16\r\n		t	4	1
2017-01-27 21:12:23.812791+00	\N	1165	2724	Call back no answer and couldn't understand VM. 8-08-16 		t	4	1
2017-01-27 21:12:23.812797+00	\N	1166	667	 CCB LVM. This is a bus. line and they are closed on Mondays 8-8-16\r\nCCB This is a dental office. IDK who called from this number.8-9-16		t	4	1
2017-01-27 21:12:23.812804+00	\N	1167	1771	Customer wishes not to have any further contact		t	4	1
2017-01-27 21:12:23.812853+00	\N	1168	503	CB no answer LVM 8-8-16 RF\r\nCB LVM 8-09-16 RF		t	4	1
2017-01-27 21:12:23.812861+00	\N	1169	1350	CB LVM		t	4	1
2017-01-27 21:12:23.812867+00	\N	1170	3145	Mr. Jackson LTV is too high. But has excellent credit. He will try again in 6mos. Not willing to give a try		t	4	1
2017-01-27 21:12:23.812874+00	\N	1171	3840	Was giving tool free number. Will call back 8/09/16 with info. to do app		t	4	1
2017-01-27 21:12:23.812888+00	\N	1172	3039	Application sub online calling for a update 		t	4	1
2017-01-27 21:12:23.812909+00	\N	1173	1835	Cust. has started an online app. 8-9-16 RF		t	4	1
2017-01-27 21:12:23.812916+00	\N	1174	70	CCB LMV R.F call dropped		t	4	1
2017-01-27 21:12:23.812923+00	\N	1175	503	CCB wants to go through branch.8-08-16 RF		t	4	1
2017-01-27 21:12:23.812958+00	\N	1176	3840	CCB. seem to be interested will call back with info. to do app. RF 8-16-16\r\nCCB. This customer disconnected the call twice. From what I did gather from him. He was interested at first but now he is a lil hesitant. 8-09-16 RF		t	4	1
2017-01-27 21:12:23.812986+00	\N	1177	4106	Going into branch to complete app. 8-09-16 RF		t	4	1
2017-01-27 21:12:23.813+00	\N	1178	3087	Said they don't have any current auto loans. RF 8-09-16		t	4	1
2017-01-27 21:12:23.813014+00	\N	1179	4089	Same customer as Lisa Genais		t	4	1
2017-01-27 21:12:23.813229+00	\N	1180	1279	CCB LVM 8-12-16 ...Org. Talk to cust. back around 8-1-16. We said he was going to branch to complete app. RF		t	4	1
2017-01-27 21:12:23.813236+00	\N	1181	3038	CCB LMV 8-12-16 RF Customer called on 8-12-16 wanting to know how to proceed with applying. 		t	4	1
2017-01-27 21:12:23.813264+00	\N	1182	365	8.15.16 calling back to do an app		t	4	1
2017-01-27 21:12:23.813315+00	\N	1183	2780	Second contact number (661)309-5008		t	4	1
2017-01-27 21:12:23.813323+00	\N	1184	1363	Cust. is going to gather info. and do it from the website. RF 8-15-16		t	4	1
2017-01-27 21:12:23.813351+00	\N	1185	2282	called in about the status on loan. He was told to give it a couple more days since it was pushed through auto pay. RF 8-16-16		t	4	1
2017-01-27 21:12:23.813358+00	\N	1186	2948	Called in about status of loan. was told it was still in process. Rf 8-17-16		t	4	1
2017-01-27 21:12:23.813379+00	\N	1187	3038	Not interested		t	4	1
2017-01-27 21:12:23.8134+00	\N	1188	1119	Calling to check status of loan ap. RF		t	4	1
2017-01-27 21:12:23.813407+00	\N	1189	4103	CCB LMV RF		t	4	1
2017-01-27 21:12:23.813414+00	\N	1190	1504	called in about status of auto loan RF		t	4	1
2017-01-27 21:12:23.813464+00	\N	1191	202	CCB LVM RF		t	4	1
2017-01-27 21:12:23.813471+00	\N	1192	2738	Returned call for Mark. RF		t	4	1
2017-01-27 21:12:23.813519+00	\N	1193	202	She called wanting information with financing on a new car vehicle. that's something we do not offer at this time. 8-19-16 RF 		t	4	1
2017-01-27 21:12:23.81354+00	\N	1194	202	CB LVM 		t	4	1
2017-01-27 21:12:23.813547+00	\N	1195	50	CCB NA RF		t	4	1
2017-01-27 21:12:23.813554+00	\N	1196	153	Spam		t	4	1
2017-01-27 21:12:23.813568+00	\N	1197	2646	Called in for mom they have a joint acct. and interested in refinancing car but just in her moms name. RF		t	4	1
2017-01-27 21:12:23.813575+00	\N	1198	775	CCB and was hang up on		t	4	1
2017-01-27 21:12:23.813589+00	\N	1199	366	CCB/LVM 		t	4	1
2017-01-27 21:12:23.813596+00	\N	1200	70	CCB/LVM		t	4	1
2017-01-27 21:12:23.813603+00	\N	1201	1634	CCB/NA/LMV		t	4	1
2017-01-27 21:12:23.813609+00	\N	1202	1284	CCB/LVM		t	4	1
2017-01-27 21:12:23.813658+00	\N	1203	202	Customer stated they are getting a new car. So not interested		t	4	1
2017-01-27 21:12:23.813672+00	\N	1204	50	CCB/NA		t	4	1
2017-01-27 21:12:23.813686+00	\N	1205	2646	CCB/NA Vm full could not leave message		t	4	1
2017-01-27 21:12:23.813693+00	\N	1206	1350	CCB/NA		t	4	1
2017-01-27 21:12:23.8137+00	\N	1207	2397	 A Quicken loans company  refinancing of mortgages		t	4	1
2017-01-27 21:12:23.813707+00	\N	1208	578	He will call back with VIN # and bank account num. He was in his truck		t	4	1
2017-01-27 21:12:23.813714+00	\N	1209	70	CCB/LVM 		t	4	1
2017-01-27 21:12:23.813757+00	\N	1210	3456	CCB: A elderly lady answered and said her daughter may have called and she will ask and call back if so. RF		t	4	1
2017-01-27 21:12:23.813771+00	\N	1211	3911	She is already refinance through another source.		t	4	1
2017-01-27 21:12:23.813785+00	\N	1212	366	CCB he stated he is waiting to go into his bank on mortgage. Once he gets a approval from them will give us a call to refinance his car.		t	4	1
2017-01-27 21:12:23.813799+00	\N	1213	778	CCB/LVM 		t	4	1
2017-01-27 21:12:23.813806+00	\N	1214	1252	CCB/LVM		t	4	1
2017-01-27 21:12:23.813834+00	\N	1215	4124	9.7.16 sent to autopay		t	4	1
2017-01-27 21:12:23.813841+00	\N	1216	2578	CB/LVM		t	4	1
2017-01-27 21:12:23.813847+00	\N	1217	778	CB/LVM		t	4	1
2017-01-27 21:12:23.813862+00	\N	1218	778	CB/NA		t	4	1
2017-01-27 21:12:23.813869+00	\N	1219	2948	Update status on loan app. Sub weeks ago\r\nShe is with autopay, and not responding to their calls.		t	4	1
2017-01-27 21:12:23.813911+00	\N	1220	2673	Reached out to the original number. Her husband gave contact information for his wife, whom initiated the call. Contact Ms. Pedack at 817-675-4224		t	4	1
2017-01-27 21:12:23.813918+00	\N	1221	4129	Spoke with Ms. Torrens. Is busy today, but is receptive to a call back at 11 on Thursday. Called her back on Thursday and customer was no longer interested in the offer.		t	4	1
2017-01-27 21:12:23.813925+00	\N	1222	2404	Mr. Diaz's phone number: 861-575-4023. Email address: otto_diaz@yahoo.com		t	4	1
2017-02-10 15:51:19.511724+00	\N	1223	599	Sent 2.9.17		t	4	1
2017-03-28 17:52:24.995504+00	2017-03-28 17:52:24.995555+00	1224	33	3.28.17 sent to Emerald\r\n		t	4	1
2017-03-29 12:40:08.758557+00	2017-03-29 12:40:08.758614+00	1225	3258	3.29.17 sent to ASECU\r\n		t	4	1
2017-03-29 12:40:39.921562+00	2017-03-29 12:40:39.921614+00	1226	222	3.29.17 Sent to Autopay		t	4	1
2017-03-29 18:14:41.260722+00	2017-03-29 18:14:41.26077+00	1227	2523	LM 3.29.17\r\n\r\n		t	4	1
2017-04-03 19:53:01.558425+00	2017-04-03 19:53:01.55848+00	1228	1679	Sent 4.3.17		t	4	1
2017-04-04 21:47:34.288625+00	2017-04-04 21:47:34.28869+00	1229	4079	Spam		t	4	1
2017-04-04 21:48:39.055525+00	2017-04-04 21:48:39.055591+00	1230	1423	LM 4.4.17		t	4	1
2017-04-04 21:50:32.498428+00	2017-04-04 21:50:32.498498+00	1231	2362	LM 4.4.17		t	4	1
2017-04-04 21:46:56.834321+00	2017-04-04 21:46:56.834376+00	1232	4079	Spam		t	4	1
2017-04-04 21:52:16.975287+00	2017-04-04 21:52:16.975344+00	1233	4079	SPAM		t	4	1
2017-04-07 16:35:27.728165+00	2017-04-07 16:35:27.728232+00	1234	2694	4.7.17 called and unable to leave message.		t	4	1
2017-04-12 17:55:26.270627+00	2017-04-12 17:55:26.270697+00	1235	3988	Spam		t	4	1
2017-05-04 13:16:43.334655+00	2017-05-04 13:16:43.3347+00	1236	1476	LM 5.4.17\r\n		t	4	1
2017-05-22 20:20:50.941234+00	2017-05-22 20:20:50.941555+00	1237	2565	spam call		t	4	1
2017-06-08 12:22:55.475004+00	2017-06-08 12:22:55.475091+00	1238	762	6.8.17 ring no answer		t	4	1
2017-06-16 16:21:00.208343+00	2017-06-16 16:21:00.208412+00	1239	1337	Company - ACT		t	4	1
2017-07-06 13:08:55.256778+00	2017-07-06 13:08:55.256811+00	1240	1230	Carlos has this lead		t	13	13
2017-07-06 13:09:53.470747+00	2017-07-06 13:09:53.470775+00	1241	1230	Carlos lead		t	13	13
2017-09-27 23:01:03.841474+00	2017-09-27 23:01:03.841556+00	1242	4110	KIM CALLED		t	13	13
2017-09-27 23:01:17.347258+00	2017-09-27 23:01:17.347314+00	1243	4110	KIM CALLED		t	13	13
2017-09-27 23:01:42.913058+00	2017-09-27 23:01:42.91311+00	1244	4110	KIM CALLED HER WILL TOUCH BASE TOMORROW		t	13	13
2017-10-11 13:48:08.237472+00	2017-10-11 13:48:08.237723+00	1245	1529	called no answer  10-11-17		t	13	13
2017-10-11 13:51:26.930056+00	2017-10-11 13:51:26.930109+00	1246	2924	had appointment with her yesterday did not make it. Rescheduled for today at 4:45		t	13	13
2017-10-11 13:52:19.158166+00	2017-10-11 13:52:19.158208+00	1247	2924	 w. merced		t	13	13
2017-10-11 13:48:44.661475+00	2017-10-11 13:48:44.661583+00	1248	3995	called left message  10-11-17		t	13	13
2017-10-11 13:53:04.121592+00	2017-10-11 13:53:04.121647+00	1249	3995	W.Merced		t	13	13
2017-10-11 13:54:33.354088+00	2017-10-11 13:54:33.35414+00	1250	4025	Called left message 10-11-2017 W.Merced		t	13	13
2017-10-11 14:06:09.033506+00	2017-10-11 14:06:09.033609+00	1251	2267	called left message 10-11-17 W.Merced		t	13	13
2017-10-11 14:08:03.283005+00	2017-10-11 14:08:03.283071+00	1252	1680	Called but mailbox is full 10-11-2017 W.Merced		t	13	13
2017-10-11 14:09:31.614094+00	2017-10-11 14:09:31.614138+00	1253	1758	Called no answer 10-11-2017 W. Merced		t	13	13
2017-10-11 14:15:20.196975+00	2017-10-11 14:15:20.197051+00	1254	1654	Called and left her a message 10-11-2017 W.Merced		t	13	13
2017-10-11 14:18:09.692609+00	2017-10-11 14:18:09.692658+00	1255	866	Called left message 10-11-2017 W.Merced		t	13	13
2017-10-11 14:20:51.798856+00	2017-10-11 14:20:51.798915+00	1256	548	Called left him a message 10-11-2017 W. Merced		t	13	13
2017-10-11 14:26:36.818594+00	2017-10-11 14:26:36.818634+00	1257	4118	Called left message 10-11-2017 W.Merced		t	13	13
2017-10-11 14:29:25.398811+00	2017-10-11 14:29:25.398967+00	1258	1262	called but can't leave a message 10-11-2017 W.Merced		t	13	13
2017-10-11 14:53:21.490216+00	2017-10-11 14:53:21.490295+00	1259	2825	Called left message 10-11-2017 W.Merced		t	13	13
2017-10-11 14:56:51.489624+00	2017-10-11 14:56:51.489676+00	1260	2511	Called left message 10-11-2017 W.Merced		t	13	13
2017-10-11 15:22:40.290594+00	2017-10-11 15:22:40.290646+00	1261	1256	Called and she said she still needs a car but has no job. Is looking for when will call me when she gats situated		t	13	13
2017-10-11 15:25:29.289659+00	2017-10-11 15:25:29.289713+00	1262	3152	Called no service 10-11-2017 W.MERCED		t	13	13
2017-10-23 13:14:24.785459+00	2017-10-23 13:14:24.785514+00	1263	3309	had appointment with him sat did not show. Referral from chris lee		t	13	13
2017-10-23 13:44:24.809683+00	2017-10-23 13:44:24.809737+00	1264	1019	called no answer 		t	13	13
2017-10-25 14:59:10.77777+00	2017-10-25 14:59:10.777836+00	1265	3746	Called left message (wanda)		t	13	13
2017-10-25 15:00:29.562297+00	2017-10-25 15:00:29.56235+00	1266	593	called left message \r\nwanda		t	13	13
2017-10-27 20:43:42.178305+00	2017-10-27 20:43:42.17836+00	1267	617	called left message		t	13	13
2017-11-03 13:33:05.890811+00	2017-11-03 13:33:05.890881+00	1268	550	called and she will call me back in a few wm		t	13	13
2017-11-08 14:42:54.362543+00	2017-11-08 14:42:54.362595+00	1269	1784	will be here sat. said he knew people that bought a car here but does not want to use them 		t	13	13
2017-11-14 20:45:37.89459+00	2017-11-14 20:45:37.89464+00	1270	1783	Spoke with Amber, appointment on 11/15/2017 at 245		t	13	13
2017-11-14 21:01:34.046819+00	2017-11-14 21:01:34.046875+00	1271	3821	Carlos, left message, great news.		t	13	13
2017-11-14 21:17:21.424868+00	2017-11-14 21:17:21.424918+00	1272	3899	Spoke with Shanario, will bring me the referral name on friday. appoitment on 11/17/2017		t	13	13
2017-11-14 22:29:02.664907+00	2017-11-14 22:29:02.664974+00	1273	1255	This is kim customer.		t	13	13
2017-11-14 23:57:24.329496+00	2017-11-14 23:57:24.329578+00	1274	3800	Kim has an appointment with him on 11/15/2017 at noon.		t	13	13
2017-11-15 14:20:41.342247+00	2017-11-15 14:20:41.3423+00	1275	1661	KIM CALLED AND LEFT MESSAGE		t	13	13
2017-11-15 19:26:15.572573+00	2017-11-15 19:26:15.572659+00	1276	3695	Left him a message, have great news.		t	13	13
2017-11-15 23:00:09.381145+00	2017-11-15 23:00:09.381214+00	1277	466	KIM  CALLED AND LEFT MESSAGE		t	13	13
2017-11-16 22:59:07.045267+00	2017-11-16 22:59:07.045348+00	1278	2797	Spoke with Wayne, appointment for 11/17/2017 at 215		t	13	13
2017-11-17 13:59:39.124533+00	2017-11-17 13:59:39.124585+00	1279	240	Carlos, left a message, have great news call me.		t	13	13
2017-11-17 14:03:56.30124+00	2017-11-17 14:03:56.301292+00	1280	4008	Carlos, left message have great news call me.		t	13	13
2017-11-17 14:14:23.520768+00	2017-11-17 14:14:23.520813+00	1281	141	Carlos, called but no answer.		t	13	13
2017-11-17 17:21:37.287412+00	2017-11-17 17:21:37.287465+00	1282	2207	KIM CALLED IT IS CLIENTS SERVICES.		t	13	13
2017-11-17 18:01:31.160129+00	2017-11-17 18:01:31.160203+00	1283	3518	PURCHASED A CASH CAR		t	13	13
2017-11-17 20:25:34.877876+00	2017-11-17 20:25:34.877924+00	1284	2228	KIM TALKED TO HER . IS LOOKING FOR CAR INSURANCE		t	13	13
2017-11-18 14:15:35.571531+00	2017-11-18 14:15:35.57162+00	1285	1583	KIM LEFT MESSAGE		t	13	13
2017-11-20 14:07:18.219491+00	2017-11-20 14:07:18.219545+00	1286	2740	Carlos, Call but no answer.		t	13	13
2017-11-20 20:08:39.603012+00	2017-11-20 20:08:39.603066+00	1287	3968	CALLED IN FOR A FRIEND CASSIDY PITTMAN.MADE AN APPOINTMENT FOR WANDA AT 515 TODAY		t	13	13
2017-11-20 20:11:37.688295+00	2017-11-20 20:11:37.688368+00	1288	4008	KIM'S CUSTOMER		t	13	13
2017-11-21 14:15:51.157122+00	2017-11-21 14:15:51.157177+00	1289	2521	TRYING TO REFINANCE		t	13	13
2017-11-21 14:25:19.425323+00	2017-11-21 14:25:19.42539+00	1290	2859	Carlos, looking for a personal loan, not a car loan.		t	13	13
2017-11-21 14:33:14.103906+00	2017-11-21 14:33:14.10397+00	1291	2080	called left message 		t	13	13
2017-11-21 14:33:56.623007+00	2017-11-21 14:33:56.623057+00	1292	1636	Carlos, left a message, have great news.		t	13	13
2017-11-21 14:36:33.41044+00	2017-11-21 14:36:33.41049+00	1293	2355	he will be here wed at 2:15		t	13	13
2017-11-21 14:53:25.903337+00	2017-11-21 14:53:25.903387+00	1294	1947	called left message to see when she can make it in . wm		t	13	13
2017-11-17 17:57:25.899292+00	2017-11-17 17:57:25.899351+00	1295	3697	A PREVIOUS CUSTOMERS OF WANDA'S .IS GOING TO TRY TO COME IN NEXT WEEK		t	13	13
2017-11-21 15:14:48.208268+00	2017-11-21 15:14:48.208335+00	1296	3697	called left her a message 		t	13	13
2017-11-21 17:29:17.316301+00	2017-11-21 17:29:17.316355+00	1297	945	KIM LEFT MESSAGE .		t	13	13
2017-11-21 20:14:44.909464+00	2017-11-21 20:14:44.909518+00	1298	2619	KIM MAILED BROCHURE CANNOT CONE UNTIL THE 28TH		t	13	13
2017-11-21 21:18:52.172722+00	2017-11-21 21:18:52.17279+00	1299	317	KIM SENT A BROCHURE . MADE AN APPOINTMENT FOR Saturday at 1145		t	13	13
2017-11-21 23:58:03.187793+00	2017-11-21 23:58:03.187847+00	1300	4171	KIM TALKED TO HER. MADE AN APPOINTMENT FOR FRIDAY AT 415		t	13	13
2017-11-22 14:11:57.032117+00	2017-11-22 14:11:57.032436+00	1301	654	Carlos, left her a message. Great news.		t	13	13
2017-11-22 16:16:31.42908+00	2017-11-22 16:16:31.429146+00	1302	3153	KIM GAVE THE LEAD TO CARLOS .KIM MADE THE APPT WITH QUINTEZ HUBBARD. FOR 1215 TODAY. REFERRED J MATTOX		t	13	13
2017-11-22 16:20:45.802386+00	2017-11-22 16:20:45.802544+00	1303	393	KIM MADE AN APPOINTMENT FOR SATURDAY AT 315		t	13	13
2017-11-22 16:25:24.959718+00	2017-11-22 16:25:24.959771+00	1304	656	CALLED CAVENDER AUTO . AND TEMISA ANSWERED		t	13	13
2017-11-22 18:18:18.017052+00	2017-11-22 18:18:18.017126+00	1305	654	KIM ACCEPTED CALL. GAVE MAIN NUMBER BECAUSE NEEDED CARLOS		t	13	13
2017-11-22 20:38:30.453343+00	2017-11-22 20:38:30.453417+00	1306	881	KIM TALKED TO HER BEFORE SHE WENT ONLINE TO FILL OUT APPLICATION		t	13	13
2017-11-22 21:49:51.80656+00	2017-11-22 21:49:51.806611+00	1307	1153	KIM TALKED TO HIM, HE WILL BE IN ON MONDAY AT  145		t	13	13
2017-11-24 14:14:00.287577+00	2017-11-24 14:14:00.287649+00	1308	3172	called and she will be here fri next week		t	13	13
2017-11-24 14:57:16.60125+00	2017-11-24 14:57:16.601297+00	1309	2593	called left her a message 		t	13	13
2017-11-24 23:16:17.911276+00	2017-11-24 23:16:17.911327+00	1310	521	WANDA CALLED		t	13	13
2017-11-25 18:48:45.653999+00	2017-11-25 18:48:45.654055+00	1311	3001	KIM TOOK THE CALL AND TURNED IT OVER TO CARLOS . SHE WAS REFERRED BY KEN BRISCOE HIS CUSTOMER		t	13	13
2017-11-25 19:46:11.251591+00	2017-11-25 19:46:11.251673+00	1312	4188	KIM LEFT A MESSAGE AND SENT A BROCHURE		t	13	13
2017-11-25 20:52:06.328637+00	2017-11-25 20:52:06.328694+00	1313	2299	NEEDED TO MAKE PAYMENT		t	13	13
2017-11-25 20:52:30.261375+00	2017-11-25 20:52:30.26144+00	1314	2299	NEEDED TO MAKE PAYMENT		t	13	13
2017-11-25 20:53:54.106529+00	2017-11-25 20:53:54.106593+00	1315	3624	KIM TOOK THE CALL. A REFERRAL FROM RHONDA SAMPLES		t	13	13
2017-11-27 14:49:32.098628+00	2017-11-27 14:49:32.098694+00	1316	958	Carlos, spoke with customer. She was busy at work, she will call me later.		t	13	13
2017-11-20 20:09:36.753667+00	2017-11-20 20:09:36.753735+00	1317	3344	KIM TALKED TO HER, IS UNDECIDED WHEN SHE CAN COME AT THIS TIME		t	13	13
2017-11-27 18:38:53.323904+00	2017-11-27 18:38:53.323971+00	1318	3344	CALLED 11/27 PURCHASED A CASH CAR. ASKED ME NOT TO CALL ANYMORE		t	13	13
2017-11-27 19:43:54.625152+00	2017-11-27 19:43:54.625203+00	1319	211	KIM LEFT MESSAGE		t	13	13
2017-11-27 20:02:15.447483+00	2017-11-27 20:02:15.447538+00	1320	3215	Carlos, left her a message, have great news.		t	13	13
2017-11-27 14:14:14.732451+00	2017-11-27 14:14:14.732507+00	1321	691	called left message		t	13	13
2017-11-27 21:02:49.398253+00	2017-11-27 21:02:49.398331+00	1322	691	CALLED HIM BACK AND HE SAID HE WAS JUST LOOKING AND WILL BE TRYING TO DO SOMETHING BY TAX TIME 		t	13	13
2017-11-27 21:02:49.643561+00	2017-11-27 21:02:49.643642+00	1323	691	CALLED HIM BACK AND HE SAID HE WAS JUST LOOKING AND WILL BE TRYING TO DO SOMETHING BY TAX TIME 		t	13	13
2017-11-28 16:20:20.609821+00	2017-11-28 16:20:20.609876+00	1324	467	called no answer 		t	13	13
2017-11-28 16:22:03.239936+00	2017-11-28 16:22:03.240002+00	1325	467	rings and rings then goes to busy		t	13	13
2017-11-28 18:17:54.858173+00	2017-11-28 18:17:54.858234+00	1326	1857	be here sat 10:45		t	13	13
2017-11-28 17:29:41.067346+00	2017-11-28 17:29:41.067415+00	1327	3886	called left message 		t	13	13
2017-11-28 18:20:49.535309+00	2017-11-28 18:20:49.535391+00	1328	3886	called left a 2nd message  W.M.		t	13	13
2017-11-28 22:43:04.815381+00	2017-11-28 22:43:04.815432+00	1329	2366	KIM TALKED TO HER. CANNOT COME IN UNTIL NEXT WEEK. BROCHURE WAS SENT		t	13	13
2017-11-29 16:30:02.581502+00	2017-11-29 16:30:02.581572+00	1330	3502	calling for service department 		t	13	13
2017-11-29 17:00:47.209817+00	2017-11-29 17:00:47.209871+00	1331	318	will be here dec 5th 		t	13	13
2017-11-30 15:19:18.277196+00	2017-11-30 15:19:18.27725+00	1332	894	KIM TALKED TO HER. WAS REFERRED BY ROBIN BANKS. WILL HERE TOMORROW AT 115		t	13	13
2017-12-01 14:23:14.450405+00	2017-12-01 14:23:14.450458+00	1333	3608	referral from Johathan knight , Kim's customer will be here after 12:15		t	13	13
2017-12-01 15:53:39.963779+00	2017-12-01 15:53:39.963848+00	1334	1320	Carlos, number is to a fax machine.		t	13	13
2017-12-01 17:18:04.435102+00	2017-12-01 17:18:04.435171+00	1335	1167	trying to get a ride 		t	13	13
2017-12-01 18:17:54.853335+00	2017-12-01 18:17:54.853407+00	1336	1685	WILL BE HERE TOMORROAW MORNING 		t	13	13
2017-12-01 19:00:32.738704+00	2017-12-01 19:00:32.738757+00	1337	134	will be here dec 21 . drive by 		t	13	13
2017-12-01 19:44:41.036781+00	2017-12-01 19:44:41.036833+00	1338	357	called left message 		t	13	13
2017-12-02 18:14:39.227464+00	2017-12-02 18:14:39.227516+00	1339	1128	TOE TRUCK DRIVER WHO IS BRINGING IN A CAR		t	13	13
2017-12-02 18:16:00.710957+00	2017-12-02 18:16:00.711003+00	1340	3501	A CURRENT CUSTOMER PATRICIA GRIFFIN WHO HAD QUESTIONS ABOUT TRADING. WANDA'S CUSTOMER		t	13	13
2017-12-02 18:42:07.813315+00	2017-12-02 18:42:07.813367+00	1341	55	A CURRENT CUSTOMER WANTING TO KNOW ABOUT TRADING		t	13	13
2017-12-04 14:20:29.492151+00	2017-12-04 14:20:29.492215+00	1342	801	Carlos, spoke with aron. He was at work wants me to call him this afternoon.		t	13	13
2017-12-04 14:24:04.649394+00	2017-12-04 14:24:04.649447+00	1343	3179	Carlos, left her a message, great news please call me.		t	13	13
2017-12-06 19:37:53.589255+00	2017-12-06 19:37:53.589307+00	1344	642	CALLED ABOUT REFERRAL CHECK		t	13	13
2017-12-06 19:34:53.709365+00	2017-12-06 19:34:53.709421+00	1345	372	IN SYSTEM		t	13	13
2017-12-07 19:00:09.412552+00	2017-12-07 19:00:09.412611+00	1346	372	IN KIMS SYSTEM		t	13	13
2017-12-09 15:33:23.398682+00	2017-12-09 15:33:23.398735+00	1347	2671	will try to be here Monday 		t	13	13
2017-12-09 15:50:22.295906+00	2017-12-09 15:50:22.295938+00	1348	2671	will call me back 		t	13	13
2017-12-09 22:21:54.1943+00	2017-12-09 22:21:54.194377+00	1349	1044	INSURANCE CALL		t	13	13
2017-12-09 22:23:56.996035+00	2017-12-09 22:23:56.996094+00	1350	3958	WILL CALL HIM MONDAY .NEEDS TO FIND RIDE HERE		t	13	13
2017-12-09 22:24:31.219314+00	2017-12-09 22:24:31.219367+00	1351	242	LEFT MESSAGE ANS BROCHURE SENT		t	13	13
2017-12-09 22:25:44.622858+00	2017-12-09 22:25:44.622905+00	1352	3176	JUST RINGS NO MACHINE COMES ON TO LEAVE A MESSAGE.ADDRESS IS INCOMPLETE CANNOT MAIL BROCHURE		t	13	13
2017-12-09 22:26:07.597129+00	2017-12-09 22:26:07.597163+00	1353	1044	INSURANCE CALL		t	13	13
2017-12-11 14:18:18.831965+00	2017-12-11 14:18:18.832022+00	1354	3608	will be here today after doc appt		t	13	13
2017-12-11 14:18:51.550043+00	2017-12-11 14:18:51.550098+00	1355	126	called no answer 		t	13	13
2017-12-11 14:40:34.957893+00	2017-12-11 14:40:34.957947+00	1356	126	called left message 		t	13	13
2017-12-11 15:11:23.430693+00	2017-12-11 15:11:23.430747+00	1357	126	Carlos, Left message,		t	13	13
2017-12-11 15:36:53.939723+00	2017-12-11 15:36:53.939779+00	1358	3734	WAS FOR SERVICE		t	13	13
2017-12-11 14:20:19.826486+00	2017-12-11 14:20:19.826607+00	1359	2843	called no answer 		t	13	13
2017-12-11 16:57:08.323929+00	2017-12-11 16:57:08.324014+00	1360	2843	KIM TALKED TO HIM.IN THE SYSTEM		t	13	13
2017-12-11 17:23:54.985508+00	2017-12-11 17:23:54.985574+00	1361	2041	WANDAS CUSTOMER I GAVE HER THE INFO		t	13	13
2017-12-11 18:41:00.944571+00	2017-12-11 18:41:00.944624+00	1362	3259	KIM LEFT MESSAGE		t	13	13
2017-12-11 20:50:20.974226+00	2017-12-11 20:50:20.974281+00	1363	3545	Carlos, this is wandas customer. she has an appointment with her on 12/12/2017 @ 10:45 A.m.		t	13	13
2017-12-11 21:05:07.306231+00	2017-12-11 21:05:07.306284+00	1364	3171	Carlos, spoke with Christopher he said was on internet and found us. Will be able to do something the weekend of the 23rd. Will follow up.		t	13	13
2017-12-11 23:17:45.477753+00	2017-12-11 23:17:45.477843+00	1365	819	called left message 		t	13	13
2017-12-12 16:02:54.855618+00	2017-12-12 16:02:54.855682+00	1366	3903	Carlos, called no answer. phone just keeps ringing.		t	13	13
2017-12-12 16:05:39.099978+00	2017-12-12 16:05:39.100028+00	1367	527	Carlos, left a message. Referral from Thomas Kendrick.		t	13	13
2017-12-12 23:26:23.502423+00	2017-12-12 23:26:23.502475+00	1368	3545	WILL BE HERE IN THE MORNING 		t	13	13
2017-12-12 23:26:47.848997+00	2017-12-12 23:26:47.849079+00	1369	3511	CALLED LEFT MESSAGE 		t	13	13
2017-12-12 23:39:21.960145+00	2017-12-12 23:39:21.960229+00	1370	3529	called and spoke to some man . said he was on his way home will give her the message that I called 		t	13	13
2017-12-13 17:25:01.962326+00	2017-12-13 17:25:01.962378+00	1371	3903	Carlos, spoke with Robert. He was at the mitsubishi store trying to get approved when he saw our sign and made the app to see if we can help him. appointment for 12/14/2017		t	13	13
2017-12-13 21:16:26.472865+00	2017-12-13 21:16:26.472926+00	1372	3056	BROCHURE MAILED . APPT FOR 12/30		t	13	13
2017-12-13 21:17:15.430646+00	2017-12-13 21:17:15.430702+00	1373	1101	TALKED TO HIM, ASKED ME TO CALL HIM TOMORROW		t	13	13
2017-12-13 21:18:19.591863+00	2017-12-13 21:18:19.591919+00	1374	3545	COMING IN TODAY WANDAS CUSTOMER		t	13	13
2017-12-14 15:07:24.144602+00	2017-12-14 15:07:24.144648+00	1375	1542	Carlos, left message. Have great news, please call me.		t	13	13
2017-12-14 15:14:41.47576+00	2017-12-14 15:14:41.475828+00	1376	3617	Carlos, left message. Have great news call me.		t	13	13
2017-12-14 15:19:36.583572+00	2017-12-14 15:19:36.583637+00	1377	2200	KIM TALKED TO HIM, FOUND US ON FACEBOOK.MADE AN APPOINTMENT FOR SATURDAY		t	13	13
2017-12-14 15:36:22.875426+00	2017-12-14 15:36:22.875499+00	1378	1618	Carlos, spoke with customer, previous total loss will be here on 12/15/2017		t	13	13
2017-12-14 19:53:22.421971+00	2017-12-14 19:53:22.422065+00	1379	261	CARLOS'S REFERRAL FROM MICHAEL NELMS. . KIM SPOKE TO HEATHER AND MADE AN APPOINTMENT FOR 515 TODAY		t	13	13
2017-12-14 19:56:29.511421+00	2017-12-14 19:56:29.511475+00	1380	469	KIM  TALKED TO HIM. CANNOT COME IN UNTIL THE 22ND WHEN HE GETS PAID WAS REFERRED BY ONE OF WANDA'S CUSTOMERS.TONYA ROGERS 		t	13	13
2017-12-14 20:12:01.094924+00	2017-12-14 20:12:01.094965+00	1381	3323	KIM TALKED TP HIM. WILL FOLLOW UP WITH HIM TOMORROW		t	13	13
2017-12-15 15:04:14.802273+00	2017-12-15 15:04:14.802399+00	1382	2787	Carlos, this number just keeps ringing. no one answers.		t	13	13
2017-12-16 14:03:47.032491+00	2017-12-16 14:03:47.032547+00	1383	3259	KIM IS TALKING TO HER .		t	13	13
2017-12-16 17:33:08.93323+00	2017-12-16 17:33:08.933295+00	1384	3668	KIM CALLED AND LEFT A MESSAGE AND SENT A BROCHURE		t	13	13
2017-12-18 13:53:52.778835+00	2017-12-18 13:53:52.77889+00	1385	3478	CARLOS'S CUSTOMER		t	13	13
2017-12-18 13:55:42.360072+00	2017-12-18 13:55:42.360127+00	1386	1248	KIM  LEFT A MESSAGE		t	13	13
2017-12-18 13:58:38.86644+00	2017-12-18 13:58:38.86649+00	1387	2562	KIM LEFT MESSAGE		t	13	13
2017-12-18 14:01:08.390962+00	2017-12-18 14:01:08.391017+00	1388	3242	KIM  LEFT MESSAGE		t	13	13
2017-12-18 14:03:47.24099+00	2017-12-18 14:03:47.24108+00	1389	3849	KIM LEFT MESSAGE		t	13	13
2017-12-18 14:13:36.070678+00	2017-12-18 14:13:36.07073+00	1390	2292	KIM TALKED TO HER . CANNOT NOT COME IN UNTIL NEXT WEEKEND		t	13	13
2017-12-18 14:16:43.138787+00	2017-12-18 14:16:43.138839+00	1391	83	KIM LEFT MESSAGE 		t	13	13
2017-12-18 14:19:59.01057+00	2017-12-18 14:19:59.010691+00	1392	3594	KIM LEFT A MESSAGE		t	13	13
2017-12-18 14:28:01.220086+00	2017-12-18 14:28:01.220139+00	1393	166	WANDA'S CUSTOMER		t	13	13
2017-12-18 16:44:25.063838+00	2017-12-18 16:44:25.063893+00	1394	3247	called and she will be here tomorrow		t	13	13
2017-12-19 21:09:51.121784+00	2017-12-19 21:09:51.121835+00	1395	2577	KIM TALKED TO HIM. MADE AN APPOINTMENT FOR TOMORROW		t	13	13
2017-12-19 21:11:44.23453+00	2017-12-19 21:11:44.234584+00	1396	3782	CALLING TO INFO FOR HER 19 YEAR OLD SON. BAILEY GRIFFIN		t	13	13
2017-12-20 18:40:16.974595+00	2017-12-20 18:40:16.974639+00	1397	1932	LAW OFFICE DON'T KNOW WHO CALLED HERE		t	13	13
2017-12-20 19:50:51.477073+00	2017-12-20 19:50:51.477124+00	1398	2185	CALLED LEFT MESSAGE 		t	13	13
2017-12-20 20:31:43.337102+00	2017-12-20 20:31:43.337157+00	1399	3818	GOING TO SEE WHAT DAY HE CAN COME IN . LOOKING FOR A CHARGER 		t	13	13
2017-12-20 22:53:35.595599+00	2017-12-20 22:53:35.59565+00	1400	1749	KIM TALKED TO HIM. BROCHURE WAS MAILED		t	13	13
2017-12-18 14:25:13.88822+00	2017-12-18 14:25:13.888274+00	1401	3904	KIM LEFT A MESSAGE .		t	13	13
2017-12-20 23:02:48.120929+00	2017-12-20 23:02:48.120983+00	1402	3904	WANDA'S HAS CUSTOMER IN THE SYSTEM		t	13	13
2017-12-21 14:17:27.449275+00	2017-12-21 14:17:27.449329+00	1403	2918	KIM CALLED MAILBOX IS FULL. CANNOT LEAVE ANY NEW MESSAGES		t	13	13
2017-12-21 14:22:29.397863+00	2017-12-21 14:22:29.397903+00	1404	2918	BROCHURE WAS MAILED AND EMAIL SENT		t	13	13
2017-12-21 14:10:39.574294+00	2017-12-21 14:10:39.574331+00	1405	2070	KIM CALLED AND WAS HUNG UP ON		t	13	13
2017-12-21 14:22:50.950302+00	2017-12-21 14:22:50.950376+00	1406	2070	BROCHURE ANS EMAIL WAS SENT		t	13	13
2017-12-21 14:32:46.723115+00	2017-12-21 14:32:46.723187+00	1407	2213	MAILBOX IS FULL. KIM SENT EMAIL AND BROCHURE		t	13	13
2017-12-22 15:06:35.989968+00	2017-12-22 15:06:35.990023+00	1408	1473	Carlos, phone just keeps ringing. no one answer.		t	13	13
2017-12-22 17:25:05.509047+00	2017-12-22 17:25:05.509101+00	1409	1749	IN THE SYSTEM BROCHURE WAS MAILED		t	13	13
2017-12-22 18:03:31.15312+00	2017-12-22 18:03:31.153175+00	1410	2793	JUST RINGS AND RINGS 		t	13	13
2017-12-22 20:19:34.171966+00	2017-12-22 20:19:34.172021+00	1411	1587	SPOKE TO HIM AND HE SAID HE LIVED TI SC 		t	13	13
2017-12-22 21:14:03.50364+00	2017-12-22 21:14:03.503701+00	1412	3780	IN SYSTEM. MADE APPOINTMENT FOR NEXT FRIDAY		t	13	13
2017-12-23 14:24:41.102509+00	2017-12-23 14:24:41.102564+00	1413	3716	Carlos, spoke with Dimarcus, trying to come next week. Referral from curtis brightwell.		t	13	13
2017-12-23 16:01:18.702014+00	2017-12-23 16:01:18.702068+00	1414	1440	KIM LEFT MESSAGE TO HAVE HER CALL ME		t	13	13
2017-12-26 16:12:32.174781+00	2017-12-26 16:12:32.174832+00	1415	2349	Carlos, Spoke with Michael appountment for 12/30/2017 @ 10:45a.m. Referral from Ervin Edmonds.		t	13	13
2017-12-26 16:56:14.18233+00	2017-12-26 16:56:14.182402+00	1416	4151	GAVE MAIN NUMBER TO CALL WANDA		t	13	13
2017-12-26 17:00:54.45969+00	2017-12-26 17:00:54.459742+00	1417	4151	will be here fri  wm 		t	13	13
2017-12-27 20:28:42.035353+00	2017-12-27 20:28:42.035411+00	1418	589	CALL WAS  FOR WANDA		t	13	13
2017-12-27 20:29:14.933727+00	2017-12-27 20:29:14.933798+00	1419	1573	IN SYSTEM		t	13	13
2017-12-27 20:38:14.267536+00	2017-12-27 20:38:14.26759+00	1420	706	KIM TALKED TO HER.		t	13	13
2017-12-28 20:03:00.848978+00	2017-12-28 20:03:00.849056+00	1421	463	Carlos, spoke with customer. She will be here on Sat. 12/30/2017 at 4:45p.m. referral from india smith.		t	13	13
2017-12-29 15:44:09.606101+00	2017-12-29 15:44:09.606159+00	1422	1720	KIM MADE AN APPOINTMENT FOR TOMORROW		t	13	13
2017-12-29 17:45:13.365007+00	2017-12-29 17:45:13.365092+00	1423	1367	WILL BE HERE TOMORROW AT 10:15		t	13	13
2017-12-30 16:38:33.23025+00	2017-12-30 16:38:33.230301+00	1424	4014	KIM TALKED TO HER		t	13	13
2018-01-01 21:51:59.254032+00	2018-01-01 21:51:59.254085+00	1425	1739	Harry left this message		t	4	1
2018-01-03 00:07:37.114275+00	2018-01-03 00:07:37.11432+00	1426	1739	This is another note		t	4	1
2018-01-03 00:13:32.426135+00	2018-01-03 00:13:32.426173+00	1427	1739	Keep moving forward		t	4	1
2018-01-03 00:16:39.049369+00	2018-01-03 00:16:39.049409+00	1428	1739	Adding another		t	4	1
2018-05-29 15:48:13.274024+00	2018-05-29 15:48:13.274056+00	1429	\N	heloo		t	4	4
2018-07-25 16:52:19.976579+00	2018-07-25 16:52:19.976613+00	1430	3801	Is this the true BOB?		t	4	4
2019-03-02 00:54:52.425312+00	2019-03-02 00:54:52.425335+00	1431	4194	This is a note on Mike's stuff		t	21	4
\.


--
-- Name: contact_notes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('contact_notes_id_seq', 1431, true);


--
-- Data for Name: contacts; Type: TABLE DATA; Schema: public; Owner: -
--

COPY contacts (created_on, updated_on, id, firstname, lastname, phonenumber_1, phonenumber_2, address_1, address_2, city, state, zip, ip, partnership_account_id, is_do_not_call, is_unsubscribe, email, caller_id, status, agent_assigned, country) FROM stdin;
2016-11-03 20:04:59.157377+00	2016-11-03 20:04:59.193812+00	6	HENGYU	XIANG	+19723523923								1	f	f	xianghy3000@hotmail.com		new lead	\N	
2016-11-12 18:38:33.588432+00	2016-12-10 01:01:00.200606+00	7			+16195926498								3	f	f			new lead	\N	
2016-08-16 13:38:08.599207+00	2017-11-29 18:31:10.262328+00	8	Mark	Reiter	+15137675602								1	f	f	markreiter71@gmail.com		application submitted - credit union	\N	
2017-12-13 19:05:50.580957+00	2017-12-13 19:06:00.977076+00	9			+13019073817								14	f	f			new lead	\N	
2017-12-07 15:23:53.757972+00	2017-12-07 15:27:24.088163+00	10	Tiara	Davis	+17062472635								13	f	f	Tiaradavis246@yahoo.com		new lead	\N	
2017-12-20 15:07:42.426166+00	2017-12-20 15:08:14.541267+00	11			+19473339316								13	f	f		southfield  mi	new lead	\N	
2017-11-15 19:10:29.743016+00	2017-11-15 19:13:25.578374+00	12			+14695402046								12	f	f		cell phone   tx	new lead	\N	
2017-12-12 12:41:36.217978+00	2017-12-12 12:42:56.699075+00	13	Bachir	Loukidi	+16829360074								15	f	f	Loukidi_bachir@hotmail.com		new lead	\N	
2017-08-22 22:19:33.334089+00	2017-08-22 22:23:09.565117+00	14			+16788513955								13	f	f			new lead	\N	
2017-03-27 15:19:32.548259+00	2017-11-29 18:38:53.212951+00	15			+12106838180								9	f	f		montano shirley	new lead	\N	
2016-06-17 17:29:37.112283+00	2016-12-09 17:06:53.905708+00	16	Unknown		+16097906126								3	f	f			new lead	\N	
2017-04-12 18:05:20.435871+00	2017-11-29 18:38:49.804599+00	17			+13176889605								9	f	f			new lead	\N	
2017-05-25 17:43:18.111892+00	2017-11-29 18:38:49.813445+00	18			+18173994056								9	f	f		manheim	new lead	\N	
2017-05-04 16:33:49.361573+00	2017-11-29 18:38:49.809628+00	19			+13187925199								9	f	f		becker chase   	new lead	\N	
2016-07-28 18:13:22.93587+00	2017-11-29 18:31:10.261743+00	20	Latonia	Whitaker	+15132009759								1	f	f	twhitt72@gmail.com		application submitted - autopay	\N	
2017-09-02 12:38:28.610861+00	2017-11-29 18:31:01.155621+00	21			+14198743179								1	f	f			new lead	\N	
2016-11-08 14:00:23.089968+00	2016-11-08 14:40:12.695187+00	22			+14705782190								1	f	f			new lead	\N	
2017-04-01 22:06:28.79347+00	2017-05-17 15:41:07.224262+00	23			+18174898097								12	f	f		jones cindy	new lead	\N	
2017-05-10 15:42:37.356515+00	2017-05-17 15:41:07.224444+00	24			+18025050490								12	f	f		paige kevin m	new lead	\N	
2016-12-07 21:19:45.003365+00	2016-12-07 21:33:58.973471+00	25			+14042810816								1	f	f			new lead	\N	
2017-11-24 19:34:37.461696+00	2017-11-24 19:35:31.792497+00	26			+18172462366								12	f	f		gernhauser john	new lead	\N	
2016-12-06 17:14:52.526342+00	2017-01-27 21:12:23.813988+00	27			+18442763272								1	f	f			new lead	\N	
2017-11-25 16:18:44.002229+00	2017-11-25 16:18:44.630287+00	28			+14042133394								13	f	f			new lead	\N	
2016-10-26 18:18:37.356766+00	2016-12-10 01:03:35.620618+00	29			+12012458134								3	f	f			new lead	\N	
2016-05-23 20:52:03.399632+00	2017-11-29 18:31:10.260347+00	30	Unknown		+15133143786								1	f	f			new lead	\N	
2017-05-06 18:38:53.209359+00	2017-11-29 18:38:49.810195+00	31			+19724671769								9	f	f		holsan john	new lead	\N	
2017-09-28 20:57:33.941433+00	2017-09-28 20:58:51.006934+00	32			+15022530459								13	f	f			new lead	\N	
2017-03-28 17:12:11.616381+00	2017-11-29 18:31:33.77563+00	33	Frank	Cusumano	+12167028588								1	f	f	fjc1198@cox.net		application submitted - credit union	\N	
2017-04-01 14:23:53.406846+00	2017-11-29 18:38:53.21322+00	34			+19726793334								9	f	f		sewell advisory	new lead	\N	
2017-05-22 19:13:09.486457+00	2017-11-29 18:38:49.812657+00	35			+12146413188								9	f	f		leyva jose	new lead	\N	
2017-12-05 20:59:06.818498+00	2017-12-05 21:00:56.705349+00	36	Theresa	Kraus	+17706300641								13	f	f	theresa.kraus1981@yahoo.com		new lead	\N	
2017-12-07 14:15:31.605319+00	2017-12-07 14:30:09.401336+00	37			+13215059185								15	f	f			new lead	\N	
2016-11-08 14:43:54.08296+00	2016-11-08 14:43:54.10698+00	38	Tod	Watson	+19728809780								1	f	f	toddoe66@sbcglobal.net		new lead	\N	
2016-09-07 17:29:23.048716+00	2016-12-10 01:04:42.413671+00	39			+19093844400								3	f	f			new lead	\N	
2017-04-15 17:23:48.281565+00	2017-11-29 18:38:53.214029+00	40			+12149090754								9	f	f		grant kim	new lead	\N	
2017-07-14 00:40:08.265318+00	2017-07-14 00:40:08.3243+00	41	Brandon	Barrett	+17706246942								13	f	f	brandonbarrett839@gmail.com		new lead	\N	
2017-06-20 20:22:26.599747+00	2017-06-20 20:23:47.078453+00	42	Danielle 	treadwell 	+17062865522								13	f	f	danielletreadwell4@gmail.com		new lead	\N	
2017-12-20 12:13:56.757715+00	2017-12-20 12:13:56.823275+00	43	RONTASHA	MOON	+17063724980								13	f	f	rontasha.moon1982@gmail.com		new lead	\N	
2017-04-13 16:10:56.002233+00	2017-04-13 16:17:10.116787+00	44			+18174804705								12	f	f			new lead	\N	
2016-08-09 15:05:07.808915+00	2016-12-10 00:55:45.165205+00	45			+14845352232								3	f	f			new lead	\N	
2017-10-11 18:40:26.212684+00	2017-10-11 18:42:04.090144+00	46	Randy	Nelms	+17068097211								13	f	f	Messicaparks@gmail.com		new lead	\N	
2017-05-18 14:39:11.483784+00	2017-11-29 18:29:57.477733+00	47			+17035439036								1	f	f			new lead	\N	
2016-10-05 16:03:02.572247+00	2016-12-10 01:01:00.200236+00	48			+16193034050								3	f	f			new lead	\N	
2017-12-21 21:02:52.502171+00	2017-12-21 21:06:32.124679+00	49			+18179660600								12	f	f		cell phone   tx	new lead	\N	
2016-08-24 13:58:53.241858+00	2017-11-29 18:31:37.368975+00	50			+16612730336								1	f	f			select status	\N	
2016-11-30 19:44:47.842988+00	2016-11-30 19:46:31.703522+00	51			+17138703803								1	f	f			new lead	\N	
2017-04-19 19:41:12.560142+00	2017-11-29 18:38:53.214269+00	52			+16016705009								9	f	f		bay springs  ms	new lead	\N	
2016-07-20 14:52:29.827459+00	2016-12-10 01:05:18.400708+00	53			+16106364818								3	f	f			new lead	\N	
2016-08-09 18:43:02.652403+00	2017-01-27 21:12:23.812972+00	54			+15123463000								1	f	f			new lead	\N	
2017-12-02 18:38:16.598787+00	2017-12-02 18:42:07.804375+00	55			+16782837236								13	f	f		dickerson thoma	select status	\N	
2016-08-25 00:57:45.739629+00	2016-12-10 01:00:18.568308+00	56			+15593624714								3	f	f			new lead	\N	
2017-12-06 01:25:14.492504+00	2017-12-06 01:54:14.826432+00	57			+19704176715								15	f	f			new lead	\N	
2017-07-13 13:49:56.160777+00	2017-07-13 13:51:12.608653+00	58			+14703377258								13	f	f			new lead	\N	
2017-08-28 22:26:46.318389+00	2017-08-28 22:27:39.159715+00	59	Tae	Woods	+14042274993								13	f	f	Taewoods2@gmail.com		new lead	\N	
2017-04-25 19:24:28.583859+00	2017-11-29 18:38:49.80666+00	60			+12142573928								9	f	f		brazil tonya	new lead	\N	
2017-12-05 15:42:50.314629+00	2017-12-05 15:58:19.689398+00	61			+13055955900								15	f	f			new lead	\N	
2017-05-30 17:12:43.25206+00	2017-11-29 18:38:49.814032+00	62			+18647601910								9	f	f		spartanburg  sc	new lead	\N	
2016-06-02 21:51:16.745476+00	2016-12-09 17:06:50.45218+00	63	Unknown		+19143814762								3	f	f			new lead	\N	
2017-03-23 16:07:30.124888+00	2017-08-17 14:35:21.044894+00	64			+16823605357								12	f	f		princess	new lead	\N	
2017-04-20 20:38:25.007635+00	2017-08-17 14:35:21.045002+00	65			+18175807646								12	f	f		dallas  tx	new lead	\N	
2017-04-04 17:09:24.798241+00	2017-05-17 15:41:07.224276+00	66			+16822219638								12	f	f		rodger charles	new lead	\N	
2017-04-18 01:51:30.303566+00	2017-11-29 18:47:25.068094+00	67			+12175083629								8	f	f		cell phone   il	new lead	\N	
2017-06-29 14:03:51.553854+00	2017-06-29 14:09:57.97036+00	68	Malisia	Russell	+14706998121								13	f	f	Bryanrussell73@yahoo.com		new lead	\N	
2017-08-17 21:06:49.911289+00	2017-08-17 21:11:54.739791+00	69	Johnathan	Norris	+17063720007								13	f	f	JohnathanNorris84@Gmail.com		new lead	\N	
2016-08-24 17:06:00.322509+00	2017-11-29 18:31:37.368932+00	70			+16618103419								1	f	f			general interest	\N	
2017-12-06 16:41:16.361378+00	2017-12-06 16:53:05.05261+00	142			+17402252457								15	f	f			new lead	\N	
2017-04-28 19:24:21.848334+00	2017-11-29 18:38:53.212545+00	71			+12142075406								9	f	f		mcnabb ann     	new lead	\N	
2016-11-13 04:15:17.831002+00	2016-11-13 04:15:17.855496+00	72	Pian	Zhang	+19792094243								1	f	f	pianzhang@aol.com		new lead	\N	
2016-08-25 19:23:01.501396+00	2016-12-10 00:55:45.165434+00	73			+16109338382								3	f	f			new lead	\N	
2016-08-10 15:58:59.866446+00	2017-11-29 18:31:14.616482+00	74			+12622781486								1	f	f			do not contact	\N	
2017-12-04 13:18:36.644461+00	2017-12-04 13:19:36.305358+00	75	Dan	Perruquet	+18156410939								15	f	f	perkypet@sbcglobal.net		new lead	\N	
2017-12-05 14:01:16.059022+00	2017-12-05 14:01:42.153765+00	76	Brittany	Jones	+17062661172								14	f	f	Brittany.mchenry@aol.com		new lead	\N	
2016-09-10 19:52:23.706058+00	2016-12-10 01:01:51.440933+00	77			+12248292717								3	f	f			new lead	\N	
2016-09-07 21:09:48.027315+00	2016-12-10 01:00:18.568399+00	78			+18583615623								3	f	f			new lead	\N	
2016-09-21 18:22:15.744919+00	2016-12-10 01:04:42.413811+00	79			+19092130926								3	f	f			new lead	\N	
2017-04-29 17:31:11.443479+00	2017-11-29 18:38:49.807425+00	80			+18177234083								9	f	f		jacobs paula	new lead	\N	
2017-12-12 00:54:30.462957+00	2017-12-12 00:59:22.060437+00	81			+17133493018								15	f	f			new lead	\N	
2017-10-12 16:30:59.825131+00	2017-10-12 16:31:48.85134+00	82			+13473536880								12	f	f		freeman troy	new lead	\N	
2017-12-18 13:21:43.813123+00	2017-12-18 14:16:43.123454+00	83	Shane	Buckley	+16193635710								13	f	f	buckleyss2003@gmail.com		select status	\N	
2017-12-05 20:57:21.601578+00	2017-12-05 20:57:44.441877+00	84	Keila	Goncalves	+15615727666								15	f	f	keilaelon@yahoo.com		new lead	\N	
2017-05-25 15:30:35.045778+00	2017-11-29 18:38:49.813359+00	85			+12146063107								9	f	f		johnson terranc	new lead	\N	
2016-10-05 18:35:39.561735+00	2016-12-10 01:01:00.200274+00	86			+16192282800								3	f	f			new lead	\N	
2016-07-11 20:34:52.886151+00	2016-12-10 01:05:18.400679+00	87			+16104097895								3	f	f			new lead	\N	
2017-04-12 21:34:46.370196+00	2017-11-29 18:38:49.804693+00	88			+14699161700								9	f	f		one technologies	new lead	\N	
2017-05-09 21:18:41.559936+00	2017-11-29 18:38:49.810739+00	89			+12148610921								9	f	f		kennedy joshua	new lead	\N	
2016-09-24 18:11:19.303276+00	2016-12-09 17:10:25.285037+00	90			+19129968058								3	f	f			new lead	\N	
2017-05-04 15:39:40.887505+00	2017-11-29 18:38:53.215092+00	91			+14055123439								9	f	f		steward josh	new lead	\N	
2017-12-10 22:19:04.342589+00	2017-12-10 22:19:35.00673+00	92			+17203823315								15	f	f			new lead	\N	
2017-05-26 19:28:21.631343+00	2017-08-17 14:35:21.045363+00	93			+18175848245								12	f	f		sinquefield arl	new lead	\N	
2016-06-03 13:29:37.338085+00	2017-11-29 18:31:05.368874+00	94	Unknown		+15855077716								1	f	f			new lead	\N	
2016-11-05 22:32:53.554747+00	2016-11-05 22:35:16.282593+00	95			+16238452608								1	f	f			new lead	\N	
2017-06-30 15:54:34.676252+00	2017-06-30 15:57:20.862412+00	96			+15207095455								1	f	f			new lead	\N	
2017-05-24 16:07:52.722477+00	2017-11-29 18:38:49.813034+00	97			+13863382929								9	f	f		mckaig lissa   	new lead	\N	
2017-09-22 16:42:22.719353+00	2017-09-22 16:43:21.007116+00	98			+18173303505								12	f	f		a a pickup   va	new lead	\N	
2017-10-06 21:41:49.118748+00	2017-10-06 21:43:34.958416+00	99			+16787916069								13	f	f			new lead	\N	
2017-10-07 14:13:53.256678+00	2017-10-07 14:19:40.122937+00	100	Brandon 	Johnson 	+16787782040								13	f	f	Juju03222017@icloud.com		new lead	\N	
2017-07-11 15:45:30.245053+00	2017-07-11 15:52:11.710459+00	101			+17063722909								13	f	f			new lead	\N	
2017-12-27 14:31:41.155493+00	2017-12-27 14:35:04.72148+00	102			+16822053433								12	f	f		dempsey  glenda	new lead	\N	
2017-07-13 19:30:27.042092+00	2017-07-13 19:31:20.243657+00	103	Renee	Robinson	+16784125735								13	f	f	boggschris35@gmail.com		new lead	\N	
2017-02-08 19:11:51.833994+00	2017-02-08 19:11:51.834077+00	104	Rina A Patel		+15743190275								1	f	f	admin@reargelt.com		new lead	\N	
2016-06-26 14:44:50.314802+00	2016-06-27 12:25:23.65837+00	105	WILLIAM	BRINDLE	+13302073406								1	f	f	WBRINDLE228@GMAIL.COM		new lead	\N	
2016-10-02 12:50:43.876633+00	2016-12-10 01:05:11.337132+00	106			+17184201472								3	f	f			new lead	\N	
2017-05-16 16:33:14.13967+00	2017-11-29 18:38:49.81176+00	107			+13128361121								9	f	f		lasalle warrant	new lead	\N	
2017-05-08 21:29:05.296775+00	2017-11-29 18:38:49.810484+00	108			+14807510319								9	f	f		wireless caller	new lead	\N	
2017-12-04 17:24:29.611263+00	2017-12-04 17:30:42.630541+00	109			+17083551005								15	f	f			new lead	\N	
2017-11-28 18:14:57.192715+00	2017-11-28 18:15:59.64828+00	110	Jennifer	Rogers	+16783348297								13	f	f	rogersjennifer823@gmail.com		new lead	\N	
2016-11-03 22:46:18.490546+00	2016-11-03 22:53:24.165097+00	111			+19364437944								1	f	f			new lead	\N	
2016-08-01 18:25:28.723943+00	2016-12-10 00:55:45.164976+00	112			+12157600152								3	f	f			new lead	\N	
2016-11-10 16:37:42.029941+00	2016-11-10 16:52:03.660254+00	113			+17709749512								1	f	f			new lead	\N	
2016-05-23 22:54:41.60732+00	2016-05-25 17:19:16.897235+00	114	Austin	Jones	+13305245122								1	f	f	Spumanni@sbcglobal.net		new lead	\N	
2017-12-07 18:42:24.906205+00	2017-12-07 18:43:42.160049+00	115			+15756237305								15	f	f			new lead	\N	
2017-05-04 18:06:08.407614+00	2017-11-29 18:38:49.809657+00	116			+19083917090								9	f	f		jamie marchand 	new lead	\N	
2017-06-26 18:18:00.118015+00	2017-06-26 18:22:50.981672+00	117			+14707745864								13	f	f			new lead	\N	
2017-04-28 17:16:36.399035+00	2017-11-29 18:38:53.214752+00	118			+12103508936								9	f	f		mustang gt     	new lead	\N	
2017-09-17 13:36:06.142485+00	2017-09-17 13:42:51.773648+00	119			+14704456723								13	f	f			new lead	\N	
2017-08-21 13:09:34.338406+00	2017-08-21 13:12:55.614226+00	120			+16788637510								13	f	f			new lead	\N	
2016-06-27 15:12:24.555213+00	2017-11-29 18:32:13.820512+00	121	Carl	Foreman	+13303076539								1	f	f			new lead	\N	
2016-11-03 19:50:21.673431+00	2016-11-03 20:25:07.234583+00	122			+17134857112								1	f	f			new lead	\N	
2017-08-29 14:34:54.30163+00	2017-08-29 14:37:24.666163+00	123			+12299422439								13	f	f			new lead	\N	
2017-05-17 15:06:58.24906+00	2017-08-17 14:35:21.045241+00	124			+14698796997								12	f	f		hassell michael	new lead	\N	
2016-06-16 16:42:10.991419+00	2017-11-29 18:31:33.775577+00	125	Unknown	Gallavan	+13308421431								1	f	f	rgallavan@live.com		new lead	\N	
2017-12-11 15:08:58.427085+00	2017-12-11 15:23:02.040787+00	126	Mildred	Davis	+14042072912								13	f	f	mildreddavis587@yahoo.com		application started	\N	
2017-11-30 15:04:52.498463+00	2017-11-30 15:26:50.17571+00	127			+12144159920								12	f	f		ramos ricardo h	new lead	\N	
2016-11-14 16:59:42.72173+00	2016-11-14 17:29:00.027727+00	128			+18587350468								1	f	f			new lead	\N	
2016-07-06 17:28:30.626767+00	2017-11-29 18:31:41.490326+00	129	David	Salvado	+17402154664								1	f	f			application started	\N	
2016-11-13 15:49:28.162838+00	2016-11-13 15:49:52.917781+00	130			+13146146760								1	f	f			new lead	\N	
2017-05-06 19:58:37.337917+00	2017-11-29 18:47:25.068397+00	131			+12145571886								8	f	f		barnes tiffany	new lead	\N	
2017-08-18 03:18:48.445624+00	2017-08-18 03:18:48.518106+00	132	Quinndaren	Odister	+17069639526								13	f	f	quinndaren68@gmail.com		new lead	\N	
2017-03-20 18:56:11.372772+00	2017-11-29 18:38:53.212664+00	133			+17082388843								9	f	f			new lead	\N	
2017-11-29 03:19:20.80212+00	2017-12-01 19:00:32.722218+00	134	Trellis	Norman	+16784386998								13	f	f	trellisanorman@gmail.com		select status	\N	
2017-05-03 16:07:32.084813+00	2017-11-29 18:38:53.214951+00	135			+12147211248								9	f	f		dean foods	new lead	\N	
2017-09-16 14:48:10.590443+00	2017-09-16 14:50:58.782967+00	136			+19032035455								12	f	f		farmers bra  tx	new lead	\N	
2017-04-22 19:55:18.316378+00	2017-11-29 18:38:49.806391+00	137			+18173018988								9	f	f		cell phone   tx	new lead	\N	
2016-09-08 22:22:50.118644+00	2016-12-10 01:00:18.56842+00	138			+16198850687								3	f	f			new lead	\N	
2017-10-24 22:16:54.441318+00	2017-10-24 22:20:54.105442+00	139	Marvin 	Randolph	+17066373916								13	f	f	Randolphmarvin3@gmail.com		new lead	\N	
2017-03-27 21:08:28.935006+00	2017-11-29 18:38:53.213076+00	140			+13187754637								9	f	f		king morgan	new lead	\N	
2017-11-17 14:08:29.298023+00	2017-11-17 14:14:23.516376+00	141	Jasmine	Ware	+14046239458								13	f	f	Jasmineware12.jw@gmail.com		select status	\N	
2017-03-21 15:46:42.721408+00	2017-11-29 18:38:53.212714+00	143			+12147663716								9	f	f			new lead	\N	
2017-01-03 22:26:58.092911+00	2017-01-03 22:42:16.699364+00	144			+18322452055								1	f	f			new lead	\N	
2016-10-27 13:59:36.70423+00	2016-12-09 17:06:53.906049+00	145			+12157508429								3	f	f			new lead	\N	
2018-06-13 18:31:35.133501+00	2018-06-13 18:31:35.45873+00	146	TeamV	Test	+15555555		13825 Sunrise Valley Dr			VA	20171		4	f	f	cson@teamvelocitymarketing.com				
2016-12-09 21:29:59.883101+00	2016-12-10 01:01:00.20065+00	147			+16193179135								3	f	f			new lead	\N	
2017-05-08 16:00:21.606379+00	2017-11-29 18:38:49.810266+00	148			+14696000099								9	f	f		quiroga jose   	new lead	\N	
2016-08-23 14:17:07.901515+00	2017-01-27 21:12:23.813582+00	149	Kyle	Collett	+15134001693								1	f	f	kylec431@hotmail.com		application submitted - autopay	\N	
2016-12-01 21:09:05.157175+00	2016-12-01 21:11:47.230972+00	150			+12817969814								1	f	f			new lead	\N	
2017-10-02 17:30:11.351513+00	2017-11-29 18:31:56.600486+00	151			+15708221869								1	f	f			new lead	\N	
2017-08-23 15:04:05.427051+00	2017-08-23 15:05:19.347503+00	152			+17705341406								13	f	f			new lead	\N	
2016-08-22 20:31:48.327197+00	2017-11-29 18:31:37.369046+00	153			+16614354957								1	f	f			do not contact	\N	
2016-05-21 04:43:20.16262+00	2016-05-25 16:20:05.244388+00	154	Shamina	Lagrone	+16617335122								1	f	f	lagrone1220@gmail.com		new lead	\N	
2016-08-29 17:14:58.961099+00	2016-12-10 01:05:18.400637+00	155			+14046483584								3	f	f			new lead	\N	
2016-11-02 01:05:20.429184+00	2016-11-02 01:05:20.464288+00	156	Chris	Habbershaw	+19195646843								1	f	f	chabber@me.com		new lead	\N	
2017-03-24 18:09:05.603517+00	2017-11-29 18:47:25.067912+00	157			+17188261876								8	f	f		elivered inc di	new lead	\N	
2017-05-16 15:01:43.065455+00	2017-11-29 18:38:49.811685+00	158			+18646544653								9	f	f		golds gym of cl	new lead	\N	
2016-09-01 21:29:49.702891+00	2016-12-09 17:07:45.331602+00	159			+16103063223								3	f	f			new lead	\N	
2017-12-28 16:45:57.931818+00	2017-12-28 16:49:35.835572+00	160			+14109619980								13	f	f		harvey tina	new lead	\N	
2016-10-11 15:02:54.794551+00	2016-12-09 17:10:17.413606+00	161			+16102523053								3	f	f			new lead	\N	
2017-12-29 14:48:35.326247+00	2017-12-29 14:48:46.720112+00	162			+17622301419								13	f	f		cell phone   ga	new lead	\N	
2017-11-17 13:08:36.5672+00	2017-11-17 13:08:37.097799+00	163			+17702033342								13	f	f			new lead	\N	
2017-04-29 16:56:34.881138+00	2017-11-29 18:38:53.214816+00	164			+14694816796								9	f	f		birk michael   	new lead	\N	
2016-08-11 22:30:32.889086+00	2016-11-09 15:43:21.094473+00	165			+13477896471								3	f	f			new lead	\N	
2017-12-16 20:51:22.599862+00	2017-12-18 14:28:01.202676+00	166	Dylon	Singleton	+14042662996								13	f	f	Dylons131@gmail.com		select status	\N	
2017-08-19 23:05:41.972764+00	2017-08-19 23:05:42.02128+00	167	Stamey	Moore	+14702720429								13	f	f	Theonlysylient@outlook.com		new lead	\N	
2017-12-27 20:58:56.599536+00	2017-12-27 21:02:39.67271+00	168	Kevin	Crawford	+17064918061								13	f	f	kaylabowen.cr@gmail.com	miller mike	new lead	\N	
2016-07-15 21:18:36.821313+00	2016-07-18 12:34:32.268431+00	169	Meredith	Shields	+16148051298								1	f	f	Meredith_shields@hotmail.com		new lead	\N	
2017-10-03 19:36:20.736215+00	2017-10-03 19:37:35.715971+00	170			+17064985048								13	f	f			new lead	\N	
2017-12-07 15:19:26.875788+00	2017-12-07 15:22:23.652684+00	171	craig	stumbles	+19702013511								15	f	f	craigstumbles@hotmail.com		new lead	\N	
2017-09-19 06:23:53.022716+00	2017-09-19 06:23:53.084441+00	172	Lauren	Henderson	+16786969732								13	f	f	lkbrady2014@gmail.com		new lead	\N	
2016-10-08 18:10:35.126268+00	2016-12-10 01:01:51.44075+00	173			+16199850241								3	f	f			new lead	\N	
2017-06-06 22:43:45.632721+00	2017-11-29 18:47:25.06853+00	174			+19404406333								8	f	f		cross  tricia	new lead	\N	
2017-08-24 15:26:41.218494+00	2017-08-24 15:31:02.853104+00	175	Michael	Phelps	+17705498552								13	f	f	mikephelps70@yahoo.com		new lead	\N	
2017-12-17 00:19:16.513209+00	2017-12-17 00:40:05.443167+00	176			+18176144095								12	f	f		martinez rodrig	new lead	\N	
2017-05-12 15:13:43.100728+00	2017-11-29 18:38:53.212247+00	177			+17135965808								9	f	f		houston  tx	new lead	\N	
2017-04-17 20:12:40.083189+00	2017-11-29 18:38:49.80529+00	178			+14696610694								9	f	f		dallas  tx	new lead	\N	
2017-12-29 21:18:52.782322+00	2017-12-29 21:21:30.282286+00	179	Trevor	Johnson	+17063723652								13	f	f	Rodicia.glenn@yahoo.com	muratore b	new lead	\N	
2017-10-13 09:25:15.037199+00	2017-10-13 09:25:15.089108+00	180	Angel	Dove	+17069611230								13	f	f	angelnicoledove@gmail.com		new lead	\N	
2017-09-21 20:45:18.661799+00	2017-09-21 20:51:14.331405+00	181			+17068098287								13	f	f			new lead	\N	
2017-04-12 20:43:30.32068+00	2017-11-29 18:38:49.804657+00	182			+16023772963								9	f	f		osterkorn s    	new lead	\N	
2016-10-07 23:36:33.46328+00	2016-12-10 01:01:51.441079+00	183			+16192671590								3	f	f			new lead	\N	
2017-05-01 16:53:53.38402+00	2017-11-29 18:38:49.807992+00	184			+12145348632								9	f	f		cell phone   tx	new lead	\N	
2016-10-05 23:45:38.197229+00	2016-12-10 01:01:51.441051+00	185			+17605543073								3	f	f			new lead	\N	
2017-10-17 21:34:29.600458+00	2017-10-17 21:35:28.894511+00	186			+18174446973								12	f	f		johnson jim	new lead	\N	
2017-12-14 21:31:28.962571+00	2017-12-14 21:31:59.853166+00	187			+16787773915								14	f	f			new lead	\N	
2017-10-23 20:53:51.684802+00	2017-10-23 20:55:32.139518+00	188	Paula	Cantrell	+16786969170								13	f	f	cantrellpaula1215@yahoo.com		new lead	\N	
2016-07-13 17:34:55.333702+00	2016-12-10 00:55:45.1649+00	189			+16109486899								3	f	f			new lead	\N	
2017-12-02 15:34:50.895797+00	2017-12-02 15:55:38.456576+00	190			+13043822752								15	f	f			new lead	\N	
2017-12-05 16:10:04.972426+00	2017-12-05 16:15:17.780734+00	191	Dante	Hall	+15869254342								15	f	f	kingdante8787@gmail.com		new lead	\N	
2016-08-23 19:03:23.632325+00	2017-11-29 18:31:37.368896+00	192			+16614920298								1	f	f			general interest	\N	
2017-12-04 20:07:13.888286+00	2017-12-04 20:07:53.709907+00	193			+14802757171								13	f	f		secureclose  ll	new lead	\N	
2016-09-01 21:47:26.925206+00	2016-12-10 01:01:51.440758+00	194			+16192789399								3	f	f			new lead	\N	
2016-10-31 21:07:35.801374+00	2016-10-31 21:07:35.838826+00	195	James	Lefler	+17042248941								1	f	f	jml211952@aol.com		new lead	\N	
2017-05-18 19:40:10.957998+00	2017-11-29 18:38:49.812217+00	196			+18005785000								9	f	f		bmw financial services	new lead	\N	
2017-04-14 17:11:34.589008+00	2017-11-29 18:38:53.213915+00	197			+14057145102								9	f	f		cell phone   ok	new lead	\N	
2016-10-29 21:09:25.701834+00	2016-10-29 21:20:25.684801+00	198			+14693583247								1	f	f			new lead	\N	
2017-05-22 15:22:53.478762+00	2017-11-29 18:38:49.812522+00	199			+16784109202								9	f	f		dba myles truck	new lead	\N	
2016-11-03 17:48:14.258876+00	2016-11-03 17:51:15.350207+00	200			+17035941713								1	f	f			new lead	\N	
2017-05-29 08:52:35.927531+00	2017-05-29 08:53:03.217139+00	201			+17195026027								12	f	f		ackerman wiland	new lead	\N	
2016-08-23 22:00:04.341836+00	2017-11-29 18:32:13.821858+00	202			+14404223142								1	f	f			do not contact	\N	
2016-10-24 21:13:31.289213+00	2016-12-10 01:02:27.218788+00	203			+15408452257								3	f	f			new lead	\N	
2017-05-30 20:21:04.527948+00	2017-11-29 18:38:49.814118+00	204			+14696206126								9	f	f		mariscal r	new lead	\N	
2016-07-05 20:54:21.006437+00	2017-11-29 18:32:13.821339+00	205	Unknown		+13308984612								1	f	f			new lead	\N	
2017-03-16 19:33:18.661974+00	2017-11-29 18:38:53.212474+00	206			+12146045741								9	f	f			new lead	\N	
2016-11-02 20:47:13.257406+00	2016-11-02 20:47:13.289851+00	207	David	Manning	+19193790825								1	f	f	dave@themannings.net		new lead	\N	
2017-12-11 17:17:03.14931+00	2017-12-11 17:20:26.032138+00	208	Tyler	Parr	+17063622354								13	f	f	Typarr11@gmail.com		new lead	\N	
2017-08-25 18:46:15.375782+00	2017-08-25 18:49:59.896084+00	209			+17064248212								13	f	f			new lead	\N	
2017-05-26 18:07:13.879545+00	2017-11-29 18:38:49.813664+00	210			+19723422979								9	f	f		cell phone   tx	new lead	\N	
2017-11-27 19:42:28.477835+00	2017-11-27 19:43:54.610667+00	211	Brian	Woodbury	+16788789737								13	f	f	Woodburybrian17@gmail.com		select status	\N	
2016-05-31 15:18:19.906388+00	2016-05-31 15:35:21.30566+00	212	mark	JAMROZ	+16619173929								1	f	f	marksupertech@aol.com		new lead	\N	
2016-05-31 16:24:37.90436+00	2017-11-29 18:31:37.368204+00	213	Unknown		+12084631050								1	f	f			new lead	\N	
2016-11-11 03:20:02.364828+00	2016-11-11 03:20:16.385724+00	214			+19727416109								1	f	f			new lead	\N	
2017-05-10 20:31:27.89432+00	2017-08-17 14:35:21.045162+00	215			+18174023994								12	f	f		dallas  tx	new lead	\N	
2017-04-15 14:04:48.661087+00	2017-11-29 18:38:53.213993+00	216			+12147276248								9	f	f		valdes glenn   	new lead	\N	
2017-04-25 14:58:12.483583+00	2017-11-29 18:38:53.214525+00	217			+17245870262								9	f	f		brownlee trucki	new lead	\N	
2017-08-08 15:07:48.642958+00	2017-08-08 15:09:34.321764+00	218	Justin	Robinson	+17706082633								13	f	f	quackster1620@gmail.com		new lead	\N	
2017-04-02 18:36:46.095328+00	2017-11-29 18:38:53.213263+00	219			+12818441089								9	f	f		s s food servic	new lead	\N	
2017-09-25 13:44:53.35268+00	2017-09-25 13:48:21.246021+00	220			+14049332915								13	f	f			new lead	\N	
2016-11-02 16:14:40.018625+00	2016-11-02 16:17:43.801892+00	221			+18176828563								1	f	f			new lead	\N	
2017-03-28 22:03:24.478501+00	2017-03-29 12:40:39.91611+00	222	Arnold	Edmondson	+13304427257								1	f	f	fcognf@gmail.com		application submitted - autopay	\N	
2017-05-10 16:09:50.435666+00	2017-11-29 18:38:53.215562+00	223			+16823338808								9	f	f		minez g	new lead	\N	
2016-08-06 01:14:23.009543+00	2016-08-08 12:49:11.598348+00	224	Christopher	Rodriguez	+16614339511								1	f	f	ca.rodriguez6@gmail.com		application submitted - credit union	\N	
2017-05-25 14:11:19.509546+00	2017-11-29 18:38:49.813344+00	225			+12152458100								9	f	f		eddington  pa	new lead	\N	
2016-09-06 22:30:09.698521+00	2016-12-10 01:01:51.440793+00	226			+16194376811								3	f	f			new lead	\N	
2016-10-06 13:18:44.996513+00	2016-12-10 01:05:18.401075+00	227			+16103266815								3	f	f			new lead	\N	
2017-10-25 21:09:38.072977+00	2017-10-25 21:15:36.706604+00	228	Crayton	Hollis	+17062044765								13	f	f	Officialcranehollis@yahoo.com		new lead	\N	
2017-04-24 20:16:38.456551+00	2017-11-29 18:38:49.806476+00	229			+19037380829								9	f	f		cell phone   tx	new lead	\N	
2016-11-04 18:45:57.139112+00	2016-11-04 18:45:57.168084+00	230	Derek	Stay	+17706176598								1	f	f	derektylerstay@gmail.com		new lead	\N	
2016-09-29 16:18:16.452937+00	2017-02-11 20:02:07.779507+00	231			+16466783620								3	f	f			new lead	\N	
2016-11-09 21:16:07.441692+00	2016-11-09 21:16:07.478952+00	232	richard	tedford	+18324162670								1	f	f	rcted@gmail.com		new lead	\N	
2017-05-09 21:44:36.951751+00	2017-11-29 18:38:53.21552+00	233			+13476501876								9	f	f		money on deck	new lead	\N	
2017-11-10 20:14:53.791813+00	2017-11-10 20:16:05.657785+00	234			+12146010212								12	f	f		hawkinson k    	new lead	\N	
2017-07-06 23:13:34.5783+00	2017-07-06 23:19:51.846346+00	235			+18173470424								12	f	f		taylor neshia	new lead	\N	
2017-11-01 13:05:48.769951+00	2017-11-01 13:10:42.250157+00	236	Corey	Burden	+12294493853								13	f	f	Ceburden@hotmail.com		new lead	\N	
2016-06-07 20:12:56.199936+00	2017-11-29 18:31:05.368837+00	237	Unknown	Seitz	+15136587330								1	f	f	seitzn@gmail.com		new lead	\N	
2016-06-06 15:21:02.908187+00	2017-11-29 18:31:56.600104+00	238	Unknown		+12168624697								1	f	f			new lead	\N	
2017-03-20 18:48:22.8849+00	2017-11-29 18:38:53.212657+00	239			+12146002874								9	f	f			new lead	\N	
2017-11-17 13:58:13.608645+00	2017-11-17 13:59:39.120193+00	240	Anthony 	Penland 	+17705403017								13	f	f	Penlandterrell19@gmail.com		select status	\N	
2017-04-14 15:29:33.233621+00	2017-11-29 18:38:53.213901+00	241			+19729980478								9	f	f		jennifer mckee	new lead	\N	
2017-12-09 18:01:09.916172+00	2017-12-09 22:24:31.116094+00	242	Alexander	dunn	+17063515069								13	f	f	dunn.alexander93@gmail.com		select status	\N	
2017-03-08 22:43:10.757751+00	2017-11-29 18:38:53.211925+00	243			+13148520290								9	f	f		end            	new lead	\N	
2016-10-31 21:43:13.770061+00	2016-10-31 22:28:05.59421+00	244			+17703693197								1	f	f			new lead	\N	
2016-10-03 21:14:20.063855+00	2016-12-10 01:01:51.440981+00	245			+18589224160								3	f	f			new lead	\N	
2017-04-11 21:52:19.926246+00	2017-05-17 15:41:07.224335+00	246			+12149629317								12	f	f		lewis nicole	new lead	\N	
2017-12-20 14:04:29.769275+00	2017-12-20 14:07:06.653873+00	247	Bryan	Bay	+18167260738								15	f	f	bryan.a.bay@gmail.com		new lead	\N	
2017-12-04 16:14:32.865295+00	2017-12-04 16:16:09.127793+00	248			+16789936069								14	f	f			new lead	\N	
2016-06-28 19:05:17.95237+00	2017-11-29 18:31:41.490227+00	249	David	Nash	+16144196663								1	f	f	na@noemail.com		new lead	\N	
2017-12-06 01:33:29.085766+00	2017-12-06 01:34:08.967827+00	250			+17862390471								15	f	f			new lead	\N	
2017-05-24 18:28:59.942332+00	2017-11-29 18:38:49.813118+00	251			+16032856516								9	f	f		delta managemen	new lead	\N	
2017-12-18 18:07:47.467136+00	2017-12-18 18:08:09.353741+00	252			+14045736782								14	f	f			new lead	\N	
2017-08-12 14:30:26.934126+00	2017-08-12 14:34:30.025259+00	253	Derrick 	Jones 	+17065406666								13	f	f	Jonesd30601@yahoo.com		new lead	\N	
2016-11-01 15:46:49.200132+00	2016-11-01 15:46:49.234891+00	254	Kiri	Norman	+14692718396								1	f	f	Pink_angel3792@yahoo.com		new lead	\N	
2016-08-09 20:20:27.13344+00	2016-08-09 21:12:13.886825+00	255	Daniel	Summerfield	+14065314404								1	f	f	z.dtrain@yahoo.com		application submitted - credit union	\N	
2017-12-20 18:03:51.720434+00	2017-12-20 18:04:02.421602+00	256			+16784572797								14	f	f			new lead	\N	
2017-12-18 15:56:31.785577+00	2017-12-18 15:59:29.820655+00	257			+18177893702								12	f	f		johnson adrienn	new lead	\N	
2017-07-08 16:35:42.817312+00	2017-07-08 16:42:05.891503+00	258			+17063386442								13	f	f			new lead	\N	
2016-09-07 17:07:16.540383+00	2016-12-10 01:04:42.413625+00	259			+15625057588								3	f	f			new lead	\N	
2017-03-13 19:50:58.070372+00	2017-11-29 18:47:25.067728+00	260			+14693872963								8	f	f		amd dealership 	new lead	\N	
2017-12-14 21:25:10.754524+00	2017-12-14 21:26:15.404752+00	261			+17067137708								13	f	f		moore jeffery	select status	\N	
2017-05-04 21:01:38.965212+00	2017-11-29 18:38:53.215114+00	262			+19723318384								9	f	f		plasma group	new lead	\N	
2017-12-06 19:24:35.370477+00	2017-12-06 19:41:32.953313+00	263	James	Voorhies	+15129830387								15	f	f	faithgolf@hotmail.com		new lead	\N	
2017-03-22 15:53:32.478714+00	2017-11-29 18:38:53.212756+00	264			+19056935355								9	f	f		milton  on	new lead	\N	
2017-01-12 20:52:47.301993+00	2017-02-08 14:11:31.322271+00	265	andrew	gilinger	+17169570907								1	f	f	gilinger37@gmail.com		application submitted - autopay	\N	
2016-11-17 14:26:45.924325+00	2016-11-17 14:26:45.946818+00	266	Cesar	Sagasta	+16023095183								1	f	f	sagasta2001@yahoo.com		new lead	\N	
2017-02-08 20:45:58.14639+00	2017-02-08 21:20:38.00269+00	267			+16363596841								1	f	f			new lead	\N	
2017-04-22 15:38:54.321142+00	2017-11-29 18:38:53.214412+00	268			+19725507259								9	f	f		amerilife      	new lead	\N	
2017-06-01 20:14:34.137699+00	2017-11-29 18:38:49.814417+00	269			+16145603597								9	f	f		cell phone   oh	new lead	\N	
2016-07-06 19:35:59.946957+00	2017-11-29 18:31:41.490332+00	270			+16142820124								1	f	f			new lead	\N	
2016-06-22 20:22:41.08615+00	2017-11-29 18:31:14.616454+00	271	Yolanda	Jackson	+13123303326								1	f	f	landee68@yahoo.com		new lead	\N	
2017-11-30 23:44:39.84002+00	2017-11-30 23:49:06.661559+00	272			+14705387747								13	f	f		norcross  ga	new lead	\N	
2017-05-09 22:41:29.979514+00	2017-11-29 18:38:53.215534+00	273			+14802081487								9	f	f		blue horizons  	new lead	\N	
2017-07-07 19:26:52.307883+00	2017-07-07 19:28:19.920897+00	274			+17708829976								13	f	f			new lead	\N	
2016-09-03 18:27:10.790446+00	2016-12-10 01:00:18.568378+00	275			+16194260964								3	f	f			new lead	\N	
2017-04-19 15:15:45.424176+00	2017-11-29 18:38:49.805696+00	276			+19528339456								9	f	f		van wagenen fin	new lead	\N	
2016-06-29 15:06:16.907772+00	2017-11-29 18:32:13.820907+00	277	Unknown		+13303721593								1	f	f			new lead	\N	
2017-05-25 17:18:49.684977+00	2017-11-29 18:38:49.81343+00	278			+12147073018								9	f	f		griffin rodric	new lead	\N	
2016-11-03 22:31:08.885747+00	2016-11-03 23:07:08.193892+00	279			+12149344121								1	f	f			new lead	\N	
2016-11-01 17:25:37.510819+00	2016-11-01 17:34:04.513633+00	280			+19194184533								1	f	f			new lead	\N	
2016-06-10 13:38:27.087889+00	2016-12-09 17:06:53.90568+00	281	Unknown		+14055640825								3	f	f			new lead	\N	
2017-05-13 19:22:05.803515+00	2017-11-29 18:38:49.811473+00	282			+19494008887								9	f	f		hass steven    	new lead	\N	
2017-04-18 20:15:09.870016+00	2017-11-29 18:38:53.214212+00	283			+13108738022								9	f	f		ramirez adriana	new lead	\N	
2017-06-20 21:17:37.316557+00	2017-06-24 13:45:04.894025+00	284	Marc	Meadows	+17708753670								13	f	f	Marcus.meadows@gmail.com		new lead	\N	
2016-08-23 15:00:04.598552+00	2016-12-10 01:00:15.39967+00	285			+16042778353								3	f	f			new lead	\N	
2017-04-09 21:28:23.052012+00	2017-11-29 18:38:53.213638+00	286			+15594326868								9	f	f		hartwig lloyd	new lead	\N	
2017-12-24 01:18:46.413267+00	2017-12-24 01:19:17.964509+00	287			+13052137473								1	f	f		barberousse lio	new lead	\N	
2017-12-08 14:12:34.667169+00	2017-12-08 14:15:09.659723+00	288			+17633178640								15	f	f			new lead	\N	
2017-04-14 14:19:35.570765+00	2017-11-29 18:31:56.600359+00	289			+15703423916								1	f	f			do not contact	\N	
2017-04-28 20:31:33.846827+00	2017-11-29 18:38:53.214788+00	290			+14692302067								9	f	f		wireless caller	new lead	\N	
2017-12-04 23:20:37.971536+00	2017-12-04 23:36:46.404106+00	291			+15136614007								15	f	f			new lead	\N	
2016-12-03 17:25:32.744194+00	2017-11-29 18:31:14.616566+00	292			+17155797610								1	f	f			new lead	\N	
2017-05-08 16:41:46.784796+00	2017-11-29 18:38:49.810308+00	293			+14699544231								9	f	f		nature reflecti	new lead	\N	
2017-04-03 20:02:28.470923+00	2017-05-17 15:41:07.224269+00	294			+19727465896								12	f	f		will tylor	new lead	\N	
2017-08-03 19:09:15.606437+00	2017-08-17 14:35:21.045717+00	295			+15805048829								12	f	f		sullivan steven	new lead	\N	
2016-08-03 22:04:47.267119+00	2017-11-29 18:31:37.368596+00	296	PAMELA	BOREN-BAPTISTE	+16612363907								1	f	f	pamela_borne@yahoo.com		autopay declined	\N	
2017-12-08 02:22:38.478272+00	2017-12-08 02:43:41.511537+00	297	DALE	CALL	+14692583470								15	f	f	dalecall@ymail.com		new lead	\N	
2017-10-02 14:30:28.390913+00	2017-10-02 14:33:26.133135+00	298	Vernell	Fleming	+17062025489								13	f	f	vernellw@charter.net		new lead	\N	
2017-04-12 22:18:34.067213+00	2017-04-12 22:20:33.119649+00	299			+18173508528								12	f	f		neeley jamie	new lead	\N	
2017-05-02 20:09:11.46277+00	2017-11-29 18:38:49.808802+00	300			+12147739339								9	f	f		kelly sparks	new lead	\N	
2016-10-04 18:06:47.251475+00	2016-12-09 17:06:53.905977+00	301			+12153214729								3	f	f			new lead	\N	
2017-08-02 22:40:41.996102+00	2017-08-02 22:41:31.132323+00	302			+14785082988								13	f	f			new lead	\N	
2017-07-22 16:44:56.186303+00	2017-07-22 16:51:36.219721+00	303	Lawayne	Banks	+17063527688								13	f	f	Lawayneboy@gmail.com		new lead	\N	
2017-08-09 14:16:45.600999+00	2017-08-09 14:16:45.601199+00	304	kim		+14049147800								1	f	f	cavenderr@csvenderautosales.com		new lead	\N	
2017-04-18 21:17:56.099299+00	2017-11-29 18:38:49.805609+00	305			+16822511867								9	f	f		marketing selec	new lead	\N	
2017-05-22 15:55:32.258528+00	2017-08-17 14:35:21.045291+00	306			+19728225757								12	f	f		tuygun	new lead	\N	
2016-09-03 18:42:08.332279+00	2016-09-06 11:45:58.072097+00	307	Nancy	Goldman	+16614343454								1	f	f	mnancy60@hotmail.com		application started	\N	
2017-07-21 14:59:29.574656+00	2017-07-21 15:22:05.436463+00	308			+19795953344								12	f	f		cell phone   tx	new lead	\N	
2016-07-08 15:05:14.773513+00	2016-07-08 15:06:28.499534+00	309	Lisa	Sapp	+19726895620								1	f	f	Steels4life@yahoo.com		new lead	\N	
2016-11-22 21:27:28.824075+00	2016-12-09 17:06:53.906133+00	310			+12154320731								3	f	f			new lead	\N	
2017-08-14 23:16:25.115024+00	2017-08-17 14:35:21.045845+00	311			+18177249712								12	f	f		jester jade	new lead	\N	
2017-10-24 16:29:54.887626+00	2017-10-24 16:31:29.041453+00	312	Mark	Holland	+17702984107								13	f	f	Ledzepp1212@gmail.com		new lead	\N	
2017-08-26 20:58:32.288248+00	2017-08-26 21:02:30.620663+00	313			+16822480668								12	f	f		iles destinee	new lead	\N	
2016-11-02 15:29:06.447499+00	2016-11-02 15:44:11.823741+00	314			+17049993531								1	f	f			new lead	\N	
2017-10-27 14:11:11.729039+00	2017-10-27 14:12:49.103331+00	315			+17066146833								13	f	f			new lead	\N	
2016-09-14 18:21:08.767557+00	2016-12-10 01:01:00.200065+00	316			+16192804141								3	f	f			new lead	\N	
2017-11-21 21:04:53.723632+00	2017-11-21 21:18:52.144873+00	317	Donyal	Smith	+17065344590								13	f	f	donyal_smith@yahoo.com		select status	\N	
2017-11-29 16:55:41.190874+00	2017-11-29 17:00:47.186782+00	318			+16784208877								13	f	f		bryant david	select status	\N	
2017-03-25 22:08:04.976455+00	2017-11-29 18:47:25.067926+00	319			+18706021808								8	f	f		cell phone   ar	new lead	\N	
2017-03-14 00:23:56.976543+00	2017-11-29 18:38:53.212169+00	320			+19727500525								9	f	f		thomas devona	new lead	\N	
2017-12-21 22:34:29.742734+00	2017-12-21 22:49:44.536826+00	321			+16144991312								15	f	f			new lead	\N	
2017-12-28 21:17:55.500944+00	2017-12-28 21:21:35.543879+00	322			+12142999856								15	f	f			new lead	\N	
2016-10-17 23:17:18.95408+00	2016-12-10 01:01:00.200468+00	323			+15595158631								3	f	f			new lead	\N	
2016-11-03 11:22:49.405049+00	2016-11-03 11:22:49.425904+00	324	Seung	Lee	+19728789010								1	f	f	seleeusa@yahoo.com		new lead	\N	
2016-11-01 21:35:39.551833+00	2016-11-01 21:35:39.588825+00	325	gerald	nyaayo	+18176961678								1	f	f	jerryokz@yahoo.com		new lead	\N	
2016-11-02 23:18:49.949636+00	2016-11-02 23:53:06.886043+00	326			+16785388855								1	f	f			new lead	\N	
2016-07-22 20:01:59.538773+00	2017-11-29 18:32:13.821565+00	327	Kevin 	Brown	+13306920643								1	f	f			select status	\N	
2017-03-06 18:24:22.76807+00	2017-11-29 18:47:25.067623+00	328			+12148810486								8	f	f		wireless caller	new lead	\N	
2017-05-06 17:01:27.900264+00	2017-11-29 18:38:49.810174+00	329			+18302759693								9	f	f		haines courtney	new lead	\N	
2017-04-24 16:28:12.589606+00	2017-11-29 18:38:49.806419+00	330			+16783625685								9	f	f		macmaster kenne	new lead	\N	
2016-11-01 19:36:28.090035+00	2016-12-10 01:01:00.200556+00	331			+16192071849								3	f	f			new lead	\N	
2016-08-03 03:55:35.269952+00	2016-08-03 13:10:04.431578+00	332	carlos	fajardo	+16612029313								1	f	f	carlosfajard@msn.com		application submitted - autopay	\N	
2017-10-13 19:37:03.209805+00	2017-10-13 19:47:03.117282+00	333			+16783614919								13	f	f			new lead	\N	
2017-11-10 19:30:11.600903+00	2017-11-10 19:32:48.886614+00	334			+19402299191								12	f	f		morales ricardo	new lead	\N	
2017-12-01 19:03:26.895025+00	2017-12-01 19:27:44.663918+00	335			+16148638971								15	f	f			new lead	\N	
2017-09-25 16:59:42.580795+00	2017-09-25 17:01:03.752756+00	336			+18173747861								12	f	f		cook misty	new lead	\N	
2016-11-13 20:31:46.169776+00	2016-11-13 20:31:46.202853+00	337	Nicole	Brooks	+14042863981								1	f	f	nicole.tenn@gmail.com		new lead	\N	
2017-05-25 21:32:07.542785+00	2017-11-29 18:38:49.813557+00	338			+14092566143								9	f	f		arser marian   	new lead	\N	
2017-12-11 19:21:26.406136+00	2017-12-11 19:51:09.759757+00	339			+18508030206								15	f	f			new lead	\N	
2017-03-14 15:46:24.846718+00	2017-11-29 18:38:53.212197+00	340			+12106016907								9	f	f		biglari shawn  	new lead	\N	
2017-04-22 18:40:17.060601+00	2017-11-29 18:38:53.214433+00	341			+19493819777								9	f	f		dao nghia      	new lead	\N	
2017-10-07 16:10:37.273178+00	2017-10-07 16:12:11.691087+00	342			+16822035391								12	f	f		hair siena	new lead	\N	
2017-04-11 15:29:01.531793+00	2017-11-29 18:38:53.213759+00	343			+19188083905								9	f	f		okyere charles	new lead	\N	
2016-09-02 15:45:16.011876+00	2016-12-10 01:00:18.568364+00	344			+16195562472								3	f	f			new lead	\N	
2017-10-27 17:59:53.307363+00	2017-10-27 17:59:53.34184+00	345	bernice	morisak	+12813243434								1	f	f	bmorisak123@gmail.com		new lead	\N	
2017-08-23 21:05:02.38474+00	2017-08-23 21:09:24.615666+00	346	Daniel	Pickens	+18643675156								13	f	f	daniel.pickens21@gmail.com		new lead	\N	
2016-05-27 13:11:48.744007+00	2016-12-09 17:06:53.90565+00	347	Unknown		+19174556852								3	f	f			new lead	\N	
2017-12-03 20:13:20.647598+00	2017-12-03 20:14:40.716099+00	348	Beverly	Dyson	+18152753289								15	f	f	bevgarydyson@hotmail.com		new lead	\N	
2016-08-17 15:50:48.909652+00	2017-11-29 18:31:41.490695+00	349	Clayton 	Evans	+16143530944								1	f	f	cee7784@yahoo.com		application submitted - autopay	\N	
2016-11-01 13:07:54.088519+00	2016-11-01 13:33:11.426211+00	350			+17044215884								1	f	f			new lead	\N	
2017-03-27 20:11:03.261109+00	2017-05-17 15:41:07.224232+00	351			+18176963105								12	f	f		martinez m	new lead	\N	
2017-12-01 01:33:15.159709+00	2017-12-01 01:48:39.394537+00	352	Amy	Tho,mpson	+18154849199								15	f	f	nami102@aol.com		new lead	\N	
2017-05-01 18:34:31.007862+00	2017-11-29 18:38:49.808133+00	353			+12543505342								9	f	f		mendez jonathan	new lead	\N	
2016-10-12 15:51:56.299441+00	2016-12-10 01:01:51.441107+00	354			+16199627172								3	f	f			new lead	\N	
2016-05-25 17:14:18.441148+00	2017-11-29 18:32:01.93548+00	355	Unknown		+18556311513								1	f	f			new lead	\N	
2017-05-11 20:44:39.530428+00	2017-11-29 18:38:49.811176+00	356			+19726795448								9	f	f		yanke karyn    	new lead	\N	
2017-12-01 20:02:06.572068+00	2017-12-01 20:08:28.569351+00	357	emily	cuthbertson	+14048218281								13	f	f	emmy0720@gmail.com	e cuthbertson	select status	\N	
2016-10-22 19:48:38.208852+00	2017-11-29 18:31:24.09295+00	358			+16032190190								1	f	f			new lead	\N	
2017-11-30 16:42:38.056314+00	2017-11-30 16:47:54.932093+00	359			+17068257530								13	f	f		well done trucking co-op	new lead	\N	
2016-10-27 03:56:03.104008+00	2016-12-10 01:05:11.337153+00	360			+17187272740								3	f	f			new lead	\N	
2017-05-12 22:20:14.776188+00	2017-11-29 18:38:49.811416+00	361			+18179097577								9	f	f		hart chris     	new lead	\N	
2016-11-01 20:12:18.95749+00	2016-12-09 17:08:31.908858+00	362			+16093699865								3	f	f			new lead	\N	
2016-06-05 18:32:09.385159+00	2016-06-06 12:06:42.052493+00	363	Mary	Mendoza	+16612562135								1	f	f	Scoot28@sbcglobal.net		new lead	\N	
2017-09-24 10:34:22.062022+00	2017-09-24 10:34:22.124496+00	364	William	Rohn	+17063625171								13	f	f	Walexrohn69@gmail.com		new lead	\N	
2016-08-23 19:30:38.609173+00	2017-11-29 18:31:37.369075+00	365	Jeremiah	Soval	+16614448507								1	f	f			general interest	\N	
2016-09-19 18:39:36.937518+00	2017-11-29 18:31:37.369061+00	366	Curtis	Johnson	+16614497598								1	f	f			general interest	\N	
2017-04-18 16:47:40.060345+00	2017-11-29 18:38:49.805456+00	367			+14169003303								9	f	f		toronto  on	new lead	\N	
2017-07-24 18:10:15.636412+00	2017-08-17 14:35:21.045651+00	368			+18177273899								12	f	f		drones charolet	new lead	\N	
2017-09-08 16:49:18.812502+00	2017-09-08 16:51:16.436377+00	369	david 	rivera	+17063463924								13	f	f	drivera9281ga@gmail.com		new lead	\N	
2017-09-15 18:26:58.187074+00	2017-09-15 18:29:59.732136+00	370			+17135576264								12	f	f		price ruth	new lead	\N	
2017-05-03 14:14:00.442961+00	2017-11-29 18:38:53.21493+00	371			+18323953135								9	f	f		city of houston	new lead	\N	
2017-12-06 19:25:16.007076+00	2017-12-06 19:34:53.693776+00	372	Demetrius 	Jewett	+17793559426								13	f	f	Demetrius.jewett25@gmail.com		select status	\N	
2017-12-05 23:09:56.953394+00	2017-12-05 23:09:56.988087+00	373	Gary	Whisenhunt	+14324888347								15	f	f	Brandie.whisenhunt@yahoo.com		new lead	\N	
2016-09-21 16:14:55.465871+00	2016-09-21 16:14:55.465923+00	374	Tara	Brunette	+19208192298								1	f	f	taralbrunette@gmail.com		application submitted - autopay	\N	
2017-01-16 20:24:04.615067+00	2017-11-29 18:31:41.490842+00	375			+17134689002								1	f	f			new lead	\N	
2017-10-24 13:40:55.22189+00	2017-10-24 14:04:05.097583+00	376			+14695528209								12	f	f		farmers bra  tx	new lead	\N	
2017-04-14 17:13:41.53667+00	2017-11-29 18:38:49.804952+00	377			+14692314617								9	f	f		patel narendra	new lead	\N	
2017-11-03 21:31:49.244757+00	2017-11-03 21:33:04.928851+00	378			+16787606006								13	f	f			new lead	\N	
2017-12-19 14:39:53.447421+00	2017-12-19 14:55:01.879959+00	379	Brandy	Franklin	+13059280754								13	f	f	ladybirdempire@gmail.com	miramar  fl	new lead	\N	
2017-09-07 21:43:14.327163+00	2017-09-07 21:44:50.700578+00	380			+18179688196								12	f	f		boyz wheeler	new lead	\N	
2017-07-17 18:01:25.067898+00	2017-07-17 18:07:47.378341+00	381			+17862001960								13	f	f			new lead	\N	
2016-08-13 16:31:16.866109+00	2017-11-29 18:31:37.368911+00	382			+16612733562								1	f	f			new lead	\N	
2017-12-05 14:54:56.125307+00	2017-12-05 15:00:02.511539+00	383			+19546449641								15	f	f			new lead	\N	
2017-04-22 23:14:52.518032+00	2017-11-29 18:38:49.806405+00	384			+14698880140								9	f	f		yetez rafael	new lead	\N	
2017-05-16 16:21:35.263268+00	2017-11-29 18:38:49.811753+00	385			+13615483307								9	f	f		davila julian	new lead	\N	
2017-07-26 19:05:43.188558+00	2017-07-26 19:11:56.128379+00	386			+16787259748								13	f	f			new lead	\N	
2017-09-05 13:51:09.938472+00	2017-09-05 13:57:18.018061+00	387	John	Collier	+14705771459								13	f	f	colliecol51@gmail.com		new lead	\N	
2017-05-04 14:48:01.408138+00	2017-11-29 18:38:49.809599+00	388			+14045788940								9	f	f		liang will     	new lead	\N	
2016-09-07 18:26:41.904367+00	2016-12-10 01:01:00.199949+00	389			+16199168464								3	f	f			new lead	\N	
2016-08-26 17:40:16.124099+00	2017-11-29 18:31:29.180656+00	390	Nora	Stadler	+13306084463								1	f	f	irishalum78@yahoo.com		application submitted - credit union	\N	
2017-03-09 22:53:52.674984+00	2017-11-29 18:38:53.212011+00	391			+19725712765								9	f	f		runge matthew  	new lead	\N	
2017-12-13 01:27:49.531697+00	2017-12-13 01:28:27.830727+00	392	Demeshia	Thomas	+18173128462								15	f	f	demeshia.thomas@alumni.twu.edu		new lead	\N	
2017-11-22 15:52:09.878522+00	2017-11-22 16:20:45.784414+00	393	Heather	Wilkie	+16783293965								13	f	f	sunshine72286@yahoo.com		select status	\N	
2017-12-20 21:58:38.0939+00	2017-12-20 22:02:44.805206+00	394			+14408400630								15	f	f			new lead	\N	
2017-12-06 19:09:09.433558+00	2017-12-06 19:11:59.07871+00	395	CARL	Douglas	+14044544482								14	f	f	cdouglas.ps@gmail.com		new lead	\N	
2017-03-29 14:57:10.360001+00	2017-11-29 18:31:33.775637+00	396			+14407815516								1	f	f			general interest	\N	
2016-12-24 18:17:47.940885+00	2016-12-24 18:17:47.96609+00	397	Lawrence	Davis Jr	+14047720729								1	f	f	ldavisjr69@gmail.com		new lead	\N	
2017-04-24 15:22:17.611834+00	2017-11-29 18:38:49.806412+00	398			+12488023657								9	f	f		dan cackowski	new lead	\N	
2016-06-29 15:49:42.800006+00	2016-06-29 15:51:02.249482+00	399	Shawn	Razo	+13307741453								1	f	f	Rrazo26@yahoo.com		new lead	\N	
2016-09-16 17:36:11.298437+00	2016-12-09 17:06:53.905921+00	400			+12157083126								3	f	f			new lead	\N	
2016-08-25 15:58:04.818422+00	2016-12-10 01:05:18.400833+00	401			+16107801308								3	f	f			new lead	\N	
2017-10-12 00:32:11.294371+00	2017-10-12 00:32:11.365263+00	402	Vernon	Collins	+17064272135								13	f	f	Collinsvernon34@gmail.com		new lead	\N	
2016-11-05 12:39:39.553894+00	2016-12-10 01:02:30.610675+00	403			+12035006331								3	f	f			new lead	\N	
2017-08-03 19:36:10.668317+00	2017-08-17 14:35:21.045724+00	404			+15742590634								12	f	f		vandeventer r  	new lead	\N	
2016-10-17 23:16:10.832419+00	2016-12-10 01:01:00.20044+00	405			+15595158077								3	f	f			new lead	\N	
2017-12-15 16:15:52.906168+00	2017-12-15 16:20:24.575182+00	406			+1+266696687								13	f	f		restricted	new lead	\N	
2016-07-27 03:49:23.976506+00	2016-07-27 13:03:37.821421+00	407	Linda	Bright	+15137974599								1	f	f	Rdlake@fuse.net		new lead	\N	
2016-11-06 18:05:36.062833+00	2016-11-06 18:05:36.099708+00	408	Rene	Tatum	+12819044123								1	f	f	rene.a.tatum@hotmail.com		new lead	\N	
2017-03-15 18:45:16.984336+00	2017-11-29 18:38:53.212374+00	409			+18167199675								9	f	f		wireless caller	new lead	\N	
2016-09-15 11:31:02.41346+00	2016-11-09 15:48:01.686107+00	410			+16106894331								3	f	f			new lead	\N	
2016-11-14 16:04:46.579181+00	2016-11-14 16:45:21.47761+00	411			+19198895708								1	f	f			new lead	\N	
2017-04-25 13:49:07.985392+00	2017-11-29 18:38:49.806532+00	412			+12629601640								9	f	f		marshall theo  	new lead	\N	
2016-10-04 22:57:39.310248+00	2016-12-09 17:06:53.90602+00	413			+12159424522								3	f	f			new lead	\N	
2016-11-02 00:18:30.002868+00	2016-11-02 00:18:30.028082+00	414	christine	williams	+18327548304								1	f	f	tinya63@yahoo.com		new lead	\N	
2017-05-20 17:22:41.519681+00	2017-08-17 14:35:21.045277+00	415			+18178626118								12	f	f		modester s	new lead	\N	
2017-05-03 17:05:56.755389+00	2017-11-29 18:38:49.809303+00	416			+17193091454								9	f	f		colorado sp  co	new lead	\N	
2017-09-21 18:42:30.993466+00	2017-09-21 18:43:12.26636+00	417	Tereska	Mayweather	+16783946369								13	f	f	Mayweather38@gmail.com		new lead	\N	
2016-11-04 19:28:26.997208+00	2016-12-09 17:07:45.331756+00	418			+13022290773								3	f	f			new lead	\N	
2017-08-31 01:13:19.768563+00	2017-08-31 01:13:19.828493+00	419	Rodney	Scott	+17063518521								13	f	f	Scottrodney706@yahoo.com		new lead	\N	
2016-11-05 20:18:42.728757+00	2016-11-05 20:18:42.756605+00	420	Phillip	King	+16159754874								1	f	f	phsballa@sbcglobal.net		new lead	\N	
2016-09-07 17:30:18.071232+00	2016-12-10 01:04:42.413728+00	421			+19093053663								3	f	f			new lead	\N	
2017-04-27 19:27:57.827591+00	2017-11-29 18:38:49.807073+00	422			+19722520084								9	f	f		big t branding 	new lead	\N	
2017-06-01 17:47:06.167038+00	2017-11-29 18:38:49.814388+00	423			+13035252339								9	f	f		cell phone   co	new lead	\N	
2017-07-20 16:54:00.119046+00	2017-07-20 16:57:27.174562+00	424			+16785998550								13	f	f			new lead	\N	
2016-08-07 17:26:33.405029+00	2016-12-10 00:58:29.813611+00	425			+15108609900								3	f	f			new lead	\N	
2017-09-19 20:59:37.741499+00	2017-09-19 21:01:56.209167+00	426	Valerie	Buffington	+16787481130								13	f	f	Buffinton.valerie23@gmail.com		new lead	\N	
2017-11-09 19:44:44.874768+00	2017-11-29 18:31:56.6005+00	427			+15708234349								1	f	f			new lead	\N	
2017-04-20 21:35:20.386504+00	2017-11-29 18:38:49.806103+00	428			+14807484835								9	f	f		mb scottsdale	new lead	\N	
2016-11-17 16:31:38.112032+00	2016-11-17 17:05:59.299211+00	429			+17139241600								1	f	f			new lead	\N	
2017-04-19 22:07:04.88693+00	2017-11-29 18:38:53.214283+00	430			+18184064696								9	f	f		barseghian e	new lead	\N	
2016-12-05 20:23:16.947806+00	2017-11-29 18:31:37.369332+00	431			+19514545721								1	f	f			new lead	\N	
2017-06-06 00:37:08.486632+00	2017-06-06 00:37:41.2676+00	432			+18172109757								12	f	f		melendez a	new lead	\N	
2017-06-30 18:05:22.444784+00	2017-06-30 18:11:54.940809+00	433	Tommy	Holland	+16789897119								13	f	f	crystalann24@att.net		new lead	\N	
2017-05-31 20:32:18.470514+00	2017-11-29 18:38:49.814288+00	434			+19726397710								9	f	f		luna renaida   	new lead	\N	
2016-11-14 18:43:41.044497+00	2016-11-14 18:59:55.948847+00	435			+18167969143								1	f	f			new lead	\N	
2016-05-31 18:29:48.896724+00	2017-11-29 18:31:37.368212+00	436	Unknown		+16178460728								1	f	f			new lead	\N	
2017-12-29 02:38:24.364231+00	2017-12-29 02:38:24.436292+00	437	Brandon 	Baker 	+17065219132								13	f	f	bakerashley26@gmail.com		new lead	\N	
2017-08-06 00:48:27.632629+00	2017-08-17 14:35:21.045745+00	438			+18178415189								12	f	f		dallas  tx	new lead	\N	
2017-03-22 14:59:52.639351+00	2017-11-29 18:38:53.212749+00	439			+19562520911								9	f	f		lozano sergio	new lead	\N	
2016-12-01 20:40:49.30537+00	2016-12-10 01:01:00.200635+00	440			+15035103007								3	f	f			new lead	\N	
2017-06-27 15:42:18.367567+00	2017-06-27 15:46:21.023427+00	441			+17064108604								13	f	f			new lead	\N	
2016-12-01 18:00:54.371508+00	2016-12-09 17:06:53.90614+00	442			+12675207201								3	f	f			new lead	\N	
2017-05-02 21:29:04.357081+00	2017-11-29 18:47:25.068369+00	443			+12545637737								8	f	f		wireless caller	new lead	\N	
2016-09-08 18:08:56.388405+00	2016-12-09 17:10:17.413434+00	444			+19084758114								3	f	f			new lead	\N	
2016-05-21 16:31:33.130908+00	2016-05-25 18:18:59.441741+00	445	Roland	Stokes	+16615241531								1	f	f	roland.stokes@yahoo.com		new lead	\N	
2017-12-05 22:09:04.795605+00	2017-12-05 22:28:18.661484+00	446			+19155393269								15	f	f			new lead	\N	
2017-11-30 18:12:30.209734+00	2017-11-30 18:18:14.291515+00	447	Randy.	Stevens.	+17064017523								13	f	f	randystevens54@gmail.com		new lead	\N	
2017-10-31 15:07:48.197287+00	2017-10-31 15:09:37.627706+00	448			+17705132402								13	f	f			new lead	\N	
2016-10-06 13:15:25.207992+00	2016-12-09 17:10:17.41357+00	449			+16103300954								3	f	f			new lead	\N	
2017-12-13 20:39:02.308223+00	2017-12-13 20:46:36.573566+00	450			+17863705308								15	f	f			new lead	\N	
2017-07-10 21:33:39.595926+00	2017-07-10 21:35:40.292111+00	451			+18172944564								12	f	f		styles by roy	new lead	\N	
2016-07-18 13:36:10.477384+00	2016-12-10 00:55:45.164925+00	452			+16103823200								3	f	f			new lead	\N	
2017-04-10 20:34:16.724142+00	2017-11-29 18:38:53.213659+00	453			+13378922369								9	f	f		sth louisiana c	new lead	\N	
2016-10-05 14:36:56.050548+00	2016-12-10 01:03:26.835849+00	454			+12012888984								3	f	f			new lead	\N	
2016-10-06 19:36:02.332177+00	2016-12-10 00:57:48.461797+00	455			+18052907318								3	f	f			new lead	\N	
2017-04-21 17:55:36.455747+00	2017-11-29 18:38:53.214384+00	456			+16306264394								9	f	f		chicago  il	new lead	\N	
2018-02-08 23:01:38.69792+00	2018-02-08 23:01:53.868763+00	457			+17739699892								25	f	f		HONDA K MI NCHI	new lead	\N	
2017-07-10 14:11:06.876815+00	2017-07-10 14:14:49.868233+00	458	Termeria	Early	+16789005999								13	f	f	Termeriaearly95@gmail.com		new lead	\N	
2017-12-11 15:13:37.747379+00	2017-12-11 15:15:02.512407+00	459	JOSE	ROSA	+12817016521								15	f	f	robertorosa1791@gmail.com		new lead	\N	
2016-08-05 18:37:38.554699+00	2016-08-05 19:07:18.956249+00	460	Chelsea	Metzger	+17148221708								1	f	f	cmetzgerca@gmail.com		application submitted - autopay	\N	
2017-12-22 16:04:57.933196+00	2017-12-22 16:18:26.056942+00	461	Jason	Cremer	+15132650599								15	f	f	Cremer42@aol.com		new lead	\N	
2017-05-25 14:44:01.382348+00	2017-05-25 15:06:18.901833+00	462			+16822402863								12	f	f		heavy duty hand	new lead	\N	
2017-12-29 15:07:38.754587+00	2017-12-29 15:09:12.49318+00	463	Joneka	Smith	+17063804865								13	f	f	Blackbarbiejjs@yahoo.com	joneka smith	select status	\N	
2017-05-28 03:21:00.221833+00	2017-05-28 03:21:51.005455+00	464			+16823312252								12	f	f		torres cerenil 	new lead	\N	
2017-12-01 22:29:32.949595+00	2017-12-01 22:29:32.992059+00	465	Steven	Vantil	+16162185140								15	f	f	stevenvantil@yahoo.com		new lead	\N	
2017-11-15 22:58:23.345066+00	2017-11-15 23:00:49.086064+00	466	Stormie	Williams	+16788378420								13	f	f	stormiewilliams75@gmail.com		select status	\N	
2017-11-28 16:22:35.879069+00	2017-11-28 16:26:00.782031+00	467	reginald	reed	+17062063015								13	f	f	asreed34@gmail.com		select status	\N	
2016-06-29 11:49:10.548135+00	2016-06-29 15:56:37.664389+00	468	Sun	Mcguinness	+13303890760								1	f	f	ssm513@aol.com		new lead	\N	
2017-12-14 16:16:04.638359+00	2017-12-14 19:56:29.503157+00	469	Kalip	Sherman	+14048395885								13	f	f	Kalip300@gmail.com	norcross  ga	select status	\N	
2016-11-08 01:18:18.858934+00	2016-11-08 01:38:45.898937+00	470			+17048607956								1	f	f			new lead	\N	
2017-12-11 19:03:08.759707+00	2017-12-11 19:03:24.79577+00	471			+14044385169								13	f	f		hayward britten	new lead	\N	
2017-04-13 16:18:12.092882+00	2017-11-29 18:38:53.213844+00	472			+14356743200								9	f	f		ken garff enter	new lead	\N	
2017-12-04 22:52:43.956361+00	2017-12-04 23:16:16.07298+00	473			+19418968540								15	f	f			new lead	\N	
2017-11-28 22:17:41.016795+00	2017-11-28 22:20:01.060002+00	474			+19407455743								12	f	f		mccoy michele	new lead	\N	
2017-12-08 20:13:40.052051+00	2017-12-08 20:23:30.592718+00	475			+17734744255								15	f	f			new lead	\N	
2017-05-30 16:29:54.407056+00	2017-11-29 18:38:49.814018+00	476			+14699698616								9	f	f		barrett dustin 	new lead	\N	
2016-11-03 15:50:07.475965+00	2016-11-03 15:52:32.190701+00	477			+19034510125								1	f	f			new lead	\N	
2017-12-09 14:21:14.192174+00	2017-12-09 14:23:37.674057+00	478			+14704457948								13	f	f		roper christy	new lead	\N	
2016-08-24 18:55:20.166076+00	2016-12-09 17:10:17.413347+00	479			+16104190506								3	f	f			new lead	\N	
2017-05-11 14:23:29.040672+00	2017-11-29 18:38:49.811088+00	480			+12672351459								9	f	f		turner haley   	new lead	\N	
2016-10-31 18:10:12.718095+00	2016-10-31 18:10:12.745204+00	481	Charles	Carr	+12142158215								1	f	f	Taranayy.tg@gmail.com		new lead	\N	
2017-12-06 21:22:49.123434+00	2017-12-06 21:37:59.668605+00	482			+17138085495								15	f	f			new lead	\N	
2017-11-10 19:25:36.345839+00	2017-11-10 19:27:36.658378+00	483	Clara	Anderson 	+14048456443								13	f	f	Clarapray247@att.net		new lead	\N	
2016-11-02 23:53:39.254716+00	2016-11-02 23:53:39.296038+00	484	Roland	Singleton 	+12818988556								1	f	f	rolandn.singleton@live.com		new lead	\N	
2017-09-04 16:51:51.766925+00	2017-09-04 16:54:21.954564+00	485			+14695636284								12	f	f		farmers bra  tx	new lead	\N	
2016-09-12 22:53:42.025418+00	2016-12-10 01:04:42.41379+00	486			+19519247494								3	f	f			new lead	\N	
2016-08-25 17:19:15.345264+00	2016-12-10 00:55:45.16542+00	487			+12155143078								3	f	f			new lead	\N	
2017-08-13 19:06:15.694923+00	2017-08-13 19:06:15.74338+00	488	Kayundrae	Jefferson	+17063804266								13	f	f	kenyarsmith@yahoo.com		new lead	\N	
2017-04-12 22:49:41.414703+00	2017-11-29 18:38:53.21383+00	489			+19728768941								9	f	f			new lead	\N	
2017-05-11 15:40:07.562587+00	2017-05-17 15:41:07.224466+00	490			+12544667397								12	f	f		roseli trejo	new lead	\N	
2017-05-03 16:51:13.616442+00	2017-05-03 16:52:29.808801+00	491			+12145306477								12	f	f		danielle tate	new lead	\N	
2017-08-12 12:47:27.738143+00	2017-08-12 12:47:57.867385+00	492			+16786147719								13	f	f			new lead	\N	
2016-09-28 15:42:56.160717+00	2016-12-09 17:10:17.413499+00	493			+16093063649								3	f	f			new lead	\N	
2017-05-02 23:34:48.139215+00	2017-11-29 18:38:49.80896+00	494			+18176156089								9	f	f		clark vivian	new lead	\N	
2016-11-12 12:43:59.945966+00	2016-12-09 17:08:31.908894+00	495			+16094300845								3	f	f			new lead	\N	
2017-03-21 18:43:56.057085+00	2017-11-29 18:38:53.212728+00	496			+19035132595								9	f	f			new lead	\N	
2016-11-10 18:45:26.003025+00	2016-12-10 00:57:48.461921+00	497			+18057303000								3	f	f			new lead	\N	
2017-05-01 16:24:47.203293+00	2017-08-17 14:35:21.045067+00	498			+18177156481								12	f	f		jackson kim	new lead	\N	
2017-11-11 03:42:50.745431+00	2017-11-11 03:42:50.8123+00	499	CHelse	Carter	+16786874446								13	f	f	gingercunningham8@gmail.com		new lead	\N	
2016-11-10 21:20:14.569645+00	2016-11-10 21:20:14.595026+00	500	Javier	De La Garza	+17139261800								1	f	f	javierdelagarza@msn.com		new lead	\N	
2017-11-04 18:23:22.193323+00	2017-11-04 18:30:23.006195+00	501	Gentry	Mosley	+14045521878								13	f	f	Gentrytmosley@gmail.com		new lead	\N	
2017-12-19 19:04:13.78292+00	2017-12-19 19:06:12.990639+00	502			+17709411200								13	f	f		autonation inc	new lead	\N	
2016-08-09 14:04:09.701453+00	2017-11-29 18:31:37.368317+00	503		Miller	+15136164811								1	f	f			general interest	\N	
2017-07-27 20:39:08.190421+00	2017-07-27 20:44:52.650204+00	504			+16788657040								13	f	f			new lead	\N	
2017-10-10 20:49:23.330657+00	2017-10-10 20:51:20.556798+00	505			+18178569069								12	f	f		sanders kerry	new lead	\N	
2017-12-21 20:52:12.430144+00	2017-12-21 20:54:03.141736+00	506			+12317452761								15	f	f			new lead	\N	
2016-08-02 18:50:53.034532+00	2017-11-29 18:31:37.368425+00	507			+16614348470								1	f	f			new lead	\N	
2017-04-14 21:51:08.424402+00	2017-11-29 18:38:53.213972+00	508			+18325744171								9	f	f		laurent latour	new lead	\N	
2017-08-21 01:52:52.019733+00	2017-08-21 01:52:52.071639+00	509	joseph	johnson	+17064362154								13	f	f	jj70315@gmail.com		new lead	\N	
2017-04-28 20:44:15.938478+00	2017-04-28 20:45:28.063862+00	510			+12145164648								12	f	f		cell phone   tx	new lead	\N	
2017-11-04 17:52:50.232893+00	2017-11-04 17:56:50.759964+00	511			+17704021572								13	f	f			new lead	\N	
2017-12-11 22:05:57.470774+00	2017-12-11 22:36:46.800216+00	512			+12693131926								15	f	f			new lead	\N	
2017-08-04 15:42:53.43844+00	2017-08-04 15:45:14.229949+00	513			+17702874449								13	f	f			new lead	\N	
2016-10-13 19:45:01.205663+00	2016-12-10 00:57:48.461845+00	514			+18053207827								3	f	f			new lead	\N	
2016-11-05 02:22:28.786355+00	2016-11-05 02:22:28.820159+00	515	Joseph	Muniz	+14808431777								1	f	f	Josephmuniz7@gmail.com		new lead	\N	
2017-05-10 19:15:55.205182+00	2017-11-29 18:38:53.215597+00	516			+19567772117								9	f	f		villa baldemar	new lead	\N	
2017-09-17 15:40:19.753181+00	2017-11-29 18:31:14.616574+00	517			+15619940927								1	f	f			new lead	\N	
2017-10-19 19:19:01.472337+00	2017-11-29 18:31:56.600493+00	518			+15708245757								1	f	f			new lead	\N	
2017-06-15 22:11:22.258285+00	2017-08-17 14:35:21.045464+00	519			+18067522795								12	f	f		wireless caller	new lead	\N	
2017-11-06 19:40:13.372402+00	2017-11-06 19:46:05.641279+00	520			+16787072380								13	f	f			new lead	\N	
2017-11-24 03:10:03.667032+00	2017-11-24 23:16:17.905878+00	521	Melissa	Ayers	+16786085817								13	f	f	zafraia@yahoo.com		select status	\N	
2016-11-04 20:03:06.747657+00	2016-11-04 20:15:59.119266+00	522			+13019911300								1	f	f			new lead	\N	
2016-11-18 15:46:58.88416+00	2016-11-18 16:15:16.738918+00	523			+16367245988								1	f	f			new lead	\N	
2017-12-19 00:47:16.852275+00	2017-12-19 00:47:16.911426+00	524	Sharon	Barnett	+14044777683								13	f	f	Mrs.barnettalways2016@gmail.con		new lead	\N	
2017-11-06 18:39:45.087623+00	2017-11-06 18:43:28.936405+00	525			+17068650110								13	f	f			new lead	\N	
2016-10-31 20:05:11.786388+00	2016-10-31 20:05:11.815626+00	526	James	Nash	+17705438499								1	f	f	nikkinash08@yahoo.com		new lead	\N	
2017-12-15 22:49:22.268835+00	2017-12-15 22:51:06.29457+00	527	wanda	martin	+16785495816								13	f	f	wandamartin123@yahoo.com	martin jeffery	select status	\N	
2017-04-11 14:16:08.934488+00	2017-11-29 18:38:53.213709+00	528			+14044220000								9	f	f		norcross  ga	new lead	\N	
2017-05-22 15:24:27.153166+00	2017-11-29 18:38:49.812529+00	529			+17702373280								9	f	f		myles trucking	new lead	\N	
2017-12-12 19:56:37.208517+00	2017-12-12 20:09:53.383627+00	530			+17862177147								15	f	f			new lead	\N	
2017-10-28 07:38:23.799061+00	2017-10-28 07:38:23.85212+00	531	Jessica	Gibeault	+17063517812								13	f	f	jessababy832008@gmail.com		new lead	\N	
2016-11-08 22:36:49.085687+00	2016-11-08 22:53:40.026448+00	532			+17138519047								1	f	f			new lead	\N	
2017-10-07 16:03:15.333338+00	2017-10-07 16:05:32.066975+00	533			+16828080696								12	f	f		hilburn joseph	new lead	\N	
2017-11-25 18:35:33.31975+00	2017-11-25 18:37:06.046059+00	534			+18179025488								12	f	f		ward amelnde	new lead	\N	
2017-12-18 23:21:58.925256+00	2017-12-18 23:22:30.47769+00	535			+16824593306								12	f	f		euless  tx	new lead	\N	
2017-12-08 23:16:20.163855+00	2017-12-08 23:17:44.000277+00	536	Alvin	Yoder	+12693860343								15	f	f	al_wiener@yahoo.com		new lead	\N	
2016-06-29 18:07:47.821809+00	2017-11-29 18:32:13.820971+00	537	Unknown	Roff	+13303994614								1	f	f			new lead	\N	
2016-08-05 15:26:53.322056+00	2016-08-16 19:30:47.99018+00	538	Matthew	Cruz-Gonzalez	+16619021086								1	f	f	mattcruz400@gmail.com		application submitted - autopay	\N	
2017-12-12 14:54:58.899781+00	2017-12-12 14:56:27.047513+00	539			+17062016238								13	f	f		tate ella	new lead	\N	
2017-07-01 19:35:58.788126+00	2017-07-01 19:37:20.158342+00	540			+17709124919								13	f	f			new lead	\N	
2017-04-25 19:47:41.899446+00	2017-11-29 18:47:25.068305+00	541			+14692744727								8	f	f		zhan yanping	new lead	\N	
2016-08-02 17:21:55.495667+00	2016-12-10 01:05:18.400743+00	542			+16107185769								3	f	f			new lead	\N	
2017-01-09 22:03:10.534405+00	2017-01-09 22:19:08.785951+00	543			+16827859919								1	f	f			new lead	\N	
2017-12-08 15:33:53.499782+00	2017-12-08 15:48:48.817313+00	544			+18082188118								15	f	f			new lead	\N	
2017-05-19 21:58:30.90272+00	2017-11-29 18:38:53.215611+00	545			+15015637566								9	f	f		akins beryl    	new lead	\N	
2017-06-06 21:43:46.253678+00	2017-08-17 14:35:21.045435+00	546			+18179138885								12	f	f		cell phone   tx	new lead	\N	
2017-04-19 18:53:39.902099+00	2017-11-29 18:38:53.214262+00	547			+12145872260								9	f	f		lumbatis alison	new lead	\N	
2017-10-05 10:38:00.678815+00	2017-10-11 14:20:51.781141+00	548	Jewell 	Rostick 	+14704889582								13	f	f	Jewellrostick99@gmail.com		select status	\N	
2017-05-01 21:37:09.77915+00	2017-11-29 18:38:49.808449+00	549			+17134171808								9	f	f		gold coast inve	new lead	\N	
2017-11-03 12:34:11.845394+00	2017-11-03 13:33:05.868967+00	550	KeYana	Hunt	+17063513948								13	f	f	Khunt021414@gmail.com		select status	\N	
2017-08-19 13:44:36.050944+00	2017-08-19 13:45:51.227912+00	551	Sharon	Long	+13345497043								13	f	f	homesbysharonlong@gmail.com		new lead	\N	
2017-09-28 14:17:09.87048+00	2017-09-28 14:20:21.160648+00	552			+17063005077								13	f	f			new lead	\N	
2017-06-27 14:44:54.435996+00	2017-06-27 14:45:21.473458+00	553			+18063168889								1	f	f			new lead	\N	
2016-10-05 17:20:18.443783+00	2016-12-10 00:57:48.461783+00	554			+18052331575								3	f	f			new lead	\N	
2017-04-30 20:16:11.056665+00	2017-04-30 20:16:32.635973+00	555			+13478747200								12	f	f		manhattan  ny	new lead	\N	
2017-05-05 23:31:21.312416+00	2017-11-29 18:38:49.810159+00	556			+19493552436								9	f	f		stupay geoffrey	new lead	\N	
2017-07-20 18:58:37.07275+00	2017-07-20 19:21:11.14676+00	557			+18174562374								12	f	f		cell phone   tx	new lead	\N	
2017-12-18 17:08:27.310245+00	2017-12-18 17:25:31.476086+00	558			+12693132589								15	f	f			new lead	\N	
2016-10-05 13:55:10.192947+00	2016-12-09 17:06:53.906028+00	559			+17323474845								3	f	f			new lead	\N	
2017-04-11 21:05:23.879082+00	2017-11-29 18:38:53.21378+00	560			+12132472083								9	f	f		cell phone   ca	new lead	\N	
2017-12-28 16:02:49.318311+00	2017-12-28 16:03:44.428347+00	561	Joanna	Crawford	+12138613204								14	f	f	Jmariecrawford@gmail.com		new lead	\N	
2016-11-11 20:13:31.803762+00	2016-11-11 20:13:31.840903+00	562	CHRISTOPHER	KRAMER	+18177781237								1	f	f	CKRAMER@GAYLORDHOTELS.COM		new lead	\N	
2017-08-28 16:30:06.630741+00	2017-08-28 16:49:05.997777+00	563			+17705391776								13	f	f			new lead	\N	
2016-12-13 15:14:28.178223+00	2016-12-13 15:16:45.631771+00	564			+18178460206								1	f	f			new lead	\N	
2017-12-05 00:41:35.396039+00	2017-12-05 00:45:29.581621+00	565			+16173129032								15	f	f			new lead	\N	
2017-05-30 21:41:47.222482+00	2017-11-29 18:38:49.814139+00	566			+19728003374								9	f	f		jallah ivor    	new lead	\N	
2016-11-12 16:02:27.419905+00	2016-11-12 16:02:27.44728+00	567	Danielle	Varner	+19724001196								1	f	f	tdmvarner@gmail.com		new lead	\N	
2017-09-13 12:32:55.937083+00	2017-09-13 12:32:56.002308+00	568	Brittany	Freeman	+17063728772								13	f	f	btfreeman27@gmail.com		new lead	\N	
2017-04-29 16:38:49.087306+00	2017-11-29 18:38:53.214809+00	569			+12514584452								9	f	f		somme arne	new lead	\N	
2016-07-26 18:09:21.171141+00	2017-11-29 18:31:14.616468+00	570			+19206344037								1	f	f			new lead	\N	
2017-05-04 14:40:27.650788+00	2017-11-29 18:38:53.215085+00	571			+15802767339								9	f	f		mathews kent   	new lead	\N	
2016-12-09 15:24:34.577099+00	2016-12-10 01:03:35.620655+00	572			+19179035533								3	f	f			new lead	\N	
2016-12-03 00:57:35.602945+00	2016-12-10 01:01:00.200642+00	573			+19092104312								3	f	f			new lead	\N	
2017-05-10 17:26:14.802858+00	2017-11-29 18:38:49.810797+00	574			+12148760147								9	f	f		ben e keith bev	new lead	\N	
2017-10-17 16:03:29.408534+00	2017-10-17 16:06:13.197331+00	575	Ceira	Wilson 	+17708960267								13	f	f	Ceirawilson@gmail.com		new lead	\N	
2016-07-12 19:10:30.612929+00	2017-11-29 18:31:41.490423+00	576	George	Bertison	+16145378354								1	f	f	gbertison@gmail.com		new lead	\N	
2017-10-04 16:32:39.075736+00	2017-10-04 16:33:54.598281+00	577	Lindq	Bell	+17069496742								13	f	f	Wickedness1257@gmail.com		new lead	\N	
2016-08-24 16:05:00.249369+00	2017-11-29 18:31:14.616538+00	578	Richard	Beno	+19208836494								1	f	f	benorick2014@gmail.com		application submitted - autopay	\N	
2017-04-13 17:27:17.709593+00	2017-11-29 18:38:53.213851+00	579			+17702928098								9	f	f		cell phone   ga	new lead	\N	
2016-11-10 14:16:25.661404+00	2016-12-09 17:08:31.908887+00	580			+15082533596								3	f	f			new lead	\N	
2017-03-02 18:55:50.182719+00	2017-11-29 18:47:25.067552+00	581			+18172341234								8	f	f		auto leasing	new lead	\N	
2017-11-07 22:37:02.786923+00	2017-11-07 22:43:28.214079+00	582			+17069737123								13	f	f			new lead	\N	
2017-04-09 16:39:38.47531+00	2017-11-29 18:38:53.213623+00	583			+12145778155								9	f	f		marrero michael	new lead	\N	
2016-11-29 19:56:24.527458+00	2016-11-29 20:23:41.94057+00	584			+18168683181								1	f	f			new lead	\N	
2017-08-01 13:13:39.087962+00	2017-08-01 13:20:13.867249+00	585			+16784583647								13	f	f			new lead	\N	
2017-09-09 21:06:03.1025+00	2017-09-09 21:08:24.80354+00	586			+18177147649								12	f	f		robles theresa	new lead	\N	
2017-12-05 22:26:53.473518+00	2017-12-05 22:50:46.182228+00	587			+18159224799								15	f	f			new lead	\N	
2017-04-24 19:13:10.895734+00	2017-11-29 18:38:53.214511+00	588			+13363993015								9	f	f		deal jason     	new lead	\N	
2017-12-27 20:27:32.282782+00	2017-12-27 20:28:42.0208+00	589			+16787325770								13	f	f		whelchel ricky	select status	\N	
2016-08-24 20:16:48.088272+00	2016-12-10 01:01:00.199756+00	590			+16197944535								3	f	f			new lead	\N	
2016-07-05 17:03:16.672556+00	2016-07-05 17:04:39.426205+00	591	Scott	Gates	+13302408417								1	f	f	gates1896@gmail.com		new lead	\N	
2017-11-02 19:30:02.556671+00	2017-11-02 19:31:43.44508+00	592			+18173612479								12	f	f		rackstraw kamer	new lead	\N	
2017-10-25 05:28:47.903364+00	2017-10-25 15:00:29.547008+00	593	Tony	Hill	+16784676657								13	f	f	tonyhill2901@gmail.com		select status	\N	
2017-01-28 14:45:10.708664+00	2017-02-08 14:10:27.824326+00	594	Lance	Smith	+12148938946								1	f	f	lance@hjamventures.com		application submitted - autopay	\N	
2017-10-13 20:36:31.953977+00	2017-10-13 20:38:37.881328+00	595			+16827177242								12	f	f		cell phone   tx	new lead	\N	
2017-12-04 14:15:16.357605+00	2017-12-04 14:17:04.347149+00	596	David	Ocampo	+16785426220								14	f	f	Davidocampo120@gmail.com		new lead	\N	
2017-03-04 14:05:16.185355+00	2017-03-04 14:05:16.229672+00	597	Annette	Lagomarsino	+17706168441								1	f	f	Annettelago@hotmail.com		new lead	\N	
2017-04-17 17:54:59.829122+00	2017-11-29 18:38:53.214085+00	598			+15125525464								9	f	f		star vip	new lead	\N	
2017-02-10 15:06:20.698143+00	2017-11-29 18:31:10.262645+00	599	Scott	Jones	+15132319341								1	f	f	lahjones@fuse.net		application submitted - credit union	\N	
2017-07-21 16:43:32.396104+00	2017-07-21 16:45:45.044643+00	600			+16823179719								12	f	f		dallas  tx	new lead	\N	
2017-12-14 20:38:13.840213+00	2017-12-14 20:38:45.631358+00	601			+19042264075								15	f	f			new lead	\N	
2017-05-05 16:46:26.377989+00	2017-11-29 18:38:49.809967+00	602			+16075902105								9	f	f		binghamton  ny	new lead	\N	
2017-12-08 00:16:06.880723+00	2017-12-08 00:38:27.720727+00	603			+16827748641								12	f	f		gallaread breun	new lead	\N	
2017-05-03 22:08:20.670541+00	2017-11-29 18:38:49.809514+00	604			+18319174193								9	f	f		williamson alys	new lead	\N	
2017-09-15 12:23:47.628673+00	2017-09-15 12:23:48.10195+00	605			+17063519992								13	f	f			new lead	\N	
2016-11-02 00:13:07.874145+00	2016-11-02 00:13:07.900211+00	606	Larry	Harrison	+18172171232								1	f	f	larryh01@verizon.net		new lead	\N	
2016-11-04 17:58:35.022053+00	2016-11-04 18:02:49.530244+00	607			+19404640852								1	f	f			new lead	\N	
2017-05-17 15:48:23.022164+00	2017-11-29 18:38:49.811983+00	608			+12104210566								9	f	f		rodriguez gary	new lead	\N	
2016-08-06 18:52:21.153459+00	2016-08-08 12:48:56.335605+00	609	Victoria	Bibby	+16612123154								1	f	f	vickibibby@msn.com		application submitted - autopay	\N	
2017-05-04 17:17:29.4037+00	2017-11-29 18:38:53.2151+00	610			+16022788866								9	f	f		naturalite neon	new lead	\N	
2016-09-07 18:24:15.201119+00	2016-12-10 01:04:42.413755+00	611			+19097719676								3	f	f			new lead	\N	
2017-12-01 23:39:35.522199+00	2017-12-01 23:52:36.796295+00	612	Jonathan	Rocha	+15593028869								15	f	f	rocha_jonathan94@yahoo.com		new lead	\N	
2017-04-14 21:01:27.569711+00	2017-11-29 18:38:53.213965+00	613			+18063638220								9	f	f		1st financial b	new lead	\N	
2018-01-01 11:09:55.458754+00	2018-01-01 11:09:55.515816+00	614	Joann	Bohannon	+16787256424								13	f	f	jdbohannon16@gmail.com		new lead	\N	
2016-06-22 19:03:25.067584+00	2016-06-22 19:03:37.616833+00	615	FIVE9		+17732729137								1	f	f			new lead	\N	
2016-08-18 20:17:12.550603+00	2016-08-23 12:03:32.115854+00	616	Jessica	Bran	+16619023652								1	f	f	jbran01@yahoo.com		application submitted - autopay	\N	
2017-10-27 20:41:43.968957+00	2017-10-27 20:43:42.162462+00	617	Susan	Brock	+17066120314								13	f	f	Sbrock30@gmail.com		select status	\N	
2016-08-10 17:07:41.110522+00	2017-11-29 18:31:10.262154+00	618	chenda	korm	+16143574144								1	f	f	chendakorm@yahoo.com		application submitted - autopay	\N	
2017-12-15 19:15:25.133644+00	2017-12-15 19:19:47.635837+00	619			+15127433358								12	f	f		ward chris	new lead	\N	
2016-09-14 21:09:57.820918+00	2016-12-10 00:57:48.461747+00	620			+17603512454								3	f	f			new lead	\N	
2016-11-01 13:40:41.21757+00	2016-11-01 14:04:17.920257+00	621			+16784293464								1	f	f			new lead	\N	
2017-04-26 22:49:54.176538+00	2017-11-29 18:47:25.068341+00	622			+19494689092								8	f	f		cell phone   ca	new lead	\N	
2017-05-01 14:17:39.265599+00	2017-11-29 18:38:49.807649+00	623			+16623139586								9	f	f		wireless caller	new lead	\N	
2018-04-26 20:14:38.916903+00	2018-04-26 20:14:39.243559+00	624	test	sdasd	+1sdfsdfsdf		sdfsdfsd			sdfsdfsd	sdsfsdfsd		4	f	f	asdasda@sdfds.copm				
2017-07-25 22:17:56.078372+00	2017-07-25 22:19:18.037693+00	625			+12817331358								12	f	f		allen darren	new lead	\N	
2016-12-06 15:13:26.008088+00	2016-12-06 15:13:26.051465+00	626	Marilyn	Wilson	+12169712616								1	f	f	marilyngwilson@gmail.com		new lead	\N	
2017-11-05 18:50:38.661468+00	2017-11-05 18:50:48.190452+00	627			+14696188498								12	f	f		dubale tadele	new lead	\N	
2017-05-09 18:40:07.145299+00	2017-11-29 18:38:49.810655+00	628			+16466923535								9	f	f		manhattan  ny	new lead	\N	
2017-12-09 14:07:36.952973+00	2017-12-09 14:29:20.783862+00	629			+18179032446								12	f	f		sistrunk joyce	new lead	\N	
2017-09-04 16:02:02.619275+00	2017-09-04 16:04:54.61831+00	630			+19039411640								12	f	f		cell phone   tx	new lead	\N	
2017-05-23 14:49:53.64725+00	2017-11-29 18:38:49.812756+00	631			+14698544955								9	f	f		dallas  tx	new lead	\N	
2017-08-11 20:54:24.855797+00	2017-08-11 20:59:24.016552+00	632	Briyanna	Ituen	+14044528083								13	f	f	briyannaituen@gmail.com		new lead	\N	
2016-10-13 17:00:08.258395+00	2016-12-09 17:10:17.413628+00	633			+19089145248								3	f	f			new lead	\N	
2016-09-13 16:56:23.870133+00	2016-12-10 01:01:51.44096+00	634			+16192084481								3	f	f			new lead	\N	
2017-10-30 18:47:06.531818+00	2017-10-30 18:53:20.507407+00	635			+17707665324								13	f	f			new lead	\N	
2016-10-05 21:42:35.052435+00	2016-12-10 01:01:00.200311+00	636			+16193097533								3	f	f			new lead	\N	
2017-04-22 21:28:13.913096+00	2017-11-29 18:38:53.214461+00	637			+19564351907								9	f	f		campos abelardo	new lead	\N	
2017-04-14 15:17:28.617116+00	2017-11-29 18:38:53.213894+00	638			+15122120091								9	f	f			new lead	\N	
2017-08-22 14:21:28.783042+00	2017-08-22 14:23:22.037725+00	639			+18176157395								12	f	f		allen brown	new lead	\N	
2017-06-26 20:32:04.363706+00	2017-06-26 20:34:40.143582+00	640			+17067259321								13	f	f			new lead	\N	
2017-02-25 13:00:32.041456+00	2017-11-29 18:31:56.600274+00	641			+15702883037								1	f	f			new lead	\N	
2017-12-06 14:14:06.814581+00	2017-12-06 19:37:53.573642+00	642			+14042590391								13	f	f		c ashley	select status	\N	
2017-12-06 16:59:41.38736+00	2017-12-06 17:15:59.378167+00	643			+18169167808								15	f	f			new lead	\N	
2017-05-19 14:24:37.914555+00	2017-11-29 18:38:49.812252+00	644			+16462330000								9	f	f		no name	new lead	\N	
2017-04-08 22:07:20.39892+00	2017-11-29 18:38:53.213598+00	645			+12405063335								9	f	f		ding sihan     	new lead	\N	
2017-12-04 21:51:11.252901+00	2017-12-04 22:18:18.151178+00	646			+15134044175								15	f	f			new lead	\N	
2017-05-10 20:46:26.906254+00	2017-11-29 18:38:49.811005+00	647			+19088584123								9	f	f		kerri redon	new lead	\N	
2017-08-22 18:52:46.628985+00	2017-08-22 18:56:23.502701+00	648	Lawayne	Banka	+17063518244								13	f	f	Lawayneboy@gmail.com		new lead	\N	
2016-07-10 18:36:30.467624+00	2017-11-29 18:32:13.821451+00	649	Mark	Beacom Sr.	+13305593842								1	f	f	mbeacomsr@aol.com		new lead	\N	
2017-10-26 19:34:09.194767+00	2017-10-26 19:37:48.378085+00	650	Brandy	Tiller	+17065887662								13	f	f	Dawj27@gmail.com		new lead	\N	
2017-11-28 01:48:32.46398+00	2017-11-28 01:48:32.52319+00	651	Ginger	Sabater 	+17064293431								13	f	f	gingersab@hotmail.com		new lead	\N	
2016-08-03 22:09:37.953986+00	2016-08-04 13:18:25.800003+00	652	Sureyya	Tugrul	+15136461353								1	f	f	sstugrul@gmail.com		application submitted - autopay	\N	
2017-09-30 11:56:58.967551+00	2017-11-29 18:31:56.600479+00	653			+15703334318								1	f	f			new lead	\N	
2017-11-22 18:16:12.910176+00	2017-11-22 18:17:04.449989+00	654	Sabrina	Menefield	+17063528629								13	f	f	Smenefield4079@gmail.com		select status	\N	
2017-02-13 20:02:43.396059+00	2017-02-13 20:03:56.884054+00	655	GREENFIELD	STEV	+16785769972								1	f	f			new lead	\N	
2017-11-25 18:28:00.631377+00	2017-11-25 18:28:00.846127+00	656			+17702978700								13	f	f			select status	\N	
2017-04-18 17:00:10.97111+00	2017-11-29 18:38:53.21417+00	657			+17866813832								9	f	f		bendjouia danie	new lead	\N	
2016-12-02 21:50:55.069593+00	2016-12-02 22:22:05.346931+00	658			+18176574645								1	f	f			new lead	\N	
2017-09-25 17:01:09.991985+00	2017-09-25 17:02:21.988104+00	659			+12144156973								12	f	f		michael john	new lead	\N	
2016-07-11 19:01:09.979351+00	2017-11-29 18:31:41.490402+00	660	Trisha	Podvin	+16144569738								1	f	f	Trishpodvin@gmail.com		new lead	\N	
2016-08-04 20:04:30.933675+00	2016-08-08 16:33:20.84504+00	661	Yolanda	Clark	+19375726010								1	f	f	clayolan@aol.com		application submitted - autopay	\N	
2017-04-13 22:46:52.116826+00	2017-11-29 18:38:49.804895+00	662			+12145866897								9	f	f			new lead	\N	
2016-08-15 19:22:29.151524+00	2016-12-10 01:05:18.400763+00	663			+16109173132								3	f	f			new lead	\N	
2016-06-08 15:19:08.311184+00	2016-06-08 15:20:48.025177+00	664	john	finn	+13305090777								1	f	f	freebird718@aol.com		new lead	\N	
2017-12-20 19:36:04.373174+00	2017-12-20 19:38:01.731967+00	665			+19546827008								15	f	f			new lead	\N	
2017-12-08 15:38:09.986704+00	2017-12-08 15:38:34.344945+00	666			+16786636961								14	f	f			new lead	\N	
2016-08-10 21:33:08.404553+00	2017-11-29 18:31:37.368811+00	667			+16612562500								1	f	f			general interest	\N	
2017-05-06 20:23:23.242927+00	2017-11-29 18:38:49.810209+00	668			+19727532004								9	f	f		villas at beave	new lead	\N	
2017-07-07 17:27:28.045356+00	2017-07-07 17:27:50.57622+00	669			+17062447653								13	f	f			new lead	\N	
2016-11-02 13:09:12.387904+00	2016-11-02 13:40:00.094132+00	670			+17048576443								1	f	f			new lead	\N	
2017-05-06 16:26:06.309813+00	2017-08-17 14:35:21.045133+00	671			+16826675257								12	f	f		taylor eric	new lead	\N	
2017-05-18 18:52:28.551011+00	2017-11-29 18:38:49.812196+00	672			+12143963769								9	f	f		praetorian	new lead	\N	
2017-09-10 15:42:38.21198+00	2017-09-10 15:50:55.169871+00	673	Bobby	Smith	+16789437106								13	f	f	smuthshane52271@gmail.com		new lead	\N	
2017-08-11 17:49:24.292042+00	2017-08-17 14:35:21.045795+00	674			+18177301488								12	f	f		maldonado m	new lead	\N	
2017-04-23 13:50:11.031804+00	2017-11-29 18:47:25.068249+00	675			+16016131924								8	f	f		lloyd arlean   	new lead	\N	
2016-09-14 13:05:41.639779+00	2016-12-09 17:06:53.905914+00	676			+14842386214								3	f	f			new lead	\N	
2016-09-21 13:03:09.464915+00	2016-12-10 01:05:18.401034+00	677			+16105840532								3	f	f			new lead	\N	
2017-10-08 17:38:15.343877+00	2017-10-08 17:38:53.438349+00	678			+18176295664								12	f	f		fort worth  tx	new lead	\N	
2017-11-21 19:10:46.215882+00	2017-11-21 19:16:55.991066+00	679	Rebecca	Hancock	+16782439873								13	f	f	mrmemployment@aol.com		new lead	\N	
2016-09-22 17:50:04.93128+00	2016-12-09 17:07:47.979231+00	680			+14848895552								3	f	f			new lead	\N	
2017-12-04 19:58:30.906475+00	2017-12-04 20:26:53.758071+00	681			+19366818344								15	f	f			new lead	\N	
2017-12-08 20:25:48.943761+00	2017-12-08 20:52:05.593843+00	682			+14076942200								15	f	f			new lead	\N	
2016-06-01 16:54:38.733437+00	2016-06-01 16:56:04.244064+00	683	Kimberly	Chandler	+16619164523								1	f	f	caliberbass@yahoo.com		new lead	\N	
2016-08-24 18:51:52.370558+00	2016-12-09 17:10:17.413318+00	684			+14842415954								3	f	f			new lead	\N	
2017-12-02 10:48:24.661862+00	2017-12-02 10:49:45.475044+00	685	Corlin	Cosby	+19185347430								15	f	f	corlinbruce@gmail.com		new lead	\N	
2017-07-07 17:46:46.998135+00	2017-07-07 17:49:23.582378+00	686			+14322080141								12	f	f		cell phone   tx	new lead	\N	
2017-04-25 20:00:38.875695+00	2017-11-29 18:38:53.214539+00	687			+19037860098								9	f	f		4 feather alarm	new lead	\N	
2016-09-16 19:39:47.041573+00	2016-12-10 01:01:00.200102+00	688			+16199558157								3	f	f			new lead	\N	
2016-10-05 15:25:35.776634+00	2016-11-09 15:46:28.725004+00	689			+13019397722								3	f	f			new lead	\N	
2016-11-01 16:26:28.400218+00	2016-12-09 17:08:31.908836+00	690			+18667809456								3	f	f			new lead	\N	
2017-11-27 14:12:56.380186+00	2017-11-27 14:15:07.065305+00	691	Joshua	Caudle	+16788828211								13	f	f	Nitenite758@gmail.com		select status	\N	
2017-05-31 14:28:45.598154+00	2017-08-17 14:35:21.045391+00	692			+13253078626								12	f	f		hearn sheryl   	new lead	\N	
2017-12-30 16:59:03.392282+00	2017-12-30 17:00:02.266249+00	693	Xena	Cooper	+17196888498								14	f	f	Xenacooper21@yahoo.com		new lead	\N	
2017-05-03 16:47:43.942352+00	2017-11-29 18:38:53.214958+00	694			+19727460146								9	f	f		anderson judy  	new lead	\N	
2017-11-11 18:00:29.430965+00	2017-11-11 18:01:29.626617+00	695			+18177031615								12	f	f		horn rebecca	new lead	\N	
2017-04-27 19:29:12.258672+00	2017-11-29 18:38:49.807088+00	696			+19722520082								9	f	f		big t branding 	new lead	\N	
2017-05-26 00:11:50.532567+00	2017-11-29 18:38:49.813571+00	697			+14695866944								9	f	f		harris myrtle  	new lead	\N	
2017-05-03 16:32:41.053412+00	2017-11-29 18:38:49.809252+00	698			+19173374264								9	f	f		queens  ny	new lead	\N	
2017-05-25 19:57:19.357275+00	2017-11-29 18:38:49.813508+00	699			+12126874674								9	f	f		avinari ariel	new lead	\N	
2017-03-27 18:59:57.633238+00	2017-11-29 18:31:10.26266+00	700			+16143741536								1	f	f			new lead	\N	
2017-04-22 13:29:50.566221+00	2017-11-29 18:38:53.214405+00	701			+19549139898								9	f	f		wireless caller	new lead	\N	
2017-12-07 01:27:02.00511+00	2017-12-07 01:31:22.284396+00	702			+13035527339								15	f	f			new lead	\N	
2016-10-04 12:39:30.13233+00	2016-12-09 17:06:53.90597+00	703			+12158678441								3	f	f			new lead	\N	
2016-10-17 23:18:05.27541+00	2016-12-10 01:01:00.200482+00	704			+16613804912								3	f	f			new lead	\N	
2017-03-19 06:24:27.177008+00	2017-11-29 18:47:25.067863+00	705			+19035561947								8	f	f		howard nancy c	new lead	\N	
2017-12-27 20:32:47.920553+00	2017-12-27 20:38:14.262333+00	706	Katie	Moore	+14702587628								13	f	f	kearwood@gmail.com		select status	\N	
2017-05-10 17:57:45.756772+00	2017-11-29 18:38:49.810846+00	707			+18172981903								9	f	f		klein calvin	new lead	\N	
2017-12-04 14:36:57.477703+00	2017-12-04 14:54:08.165723+00	708			+17737917749								15	f	f			new lead	\N	
2016-12-05 14:41:21.152918+00	2016-12-09 17:10:17.413735+00	709			+16107593183								3	f	f			new lead	\N	
2016-08-04 14:02:20.998386+00	2016-12-10 00:57:54.467657+00	710			+17066719194								3	f	f			new lead	\N	
2017-08-31 18:44:59.605561+00	2017-08-31 18:46:33.169194+00	711			+14049344325								13	f	f			new lead	\N	
2016-11-02 17:15:08.889013+00	2016-11-02 17:18:16.455782+00	712			+17137946817								1	f	f			new lead	\N	
2016-11-04 21:52:35.022686+00	2016-11-04 21:55:52.680005+00	713			+18177935244								1	f	f			new lead	\N	
2017-12-05 00:30:40.483063+00	2017-12-05 00:33:37.345979+00	714	Simon	Leal	+12819488834								15	f	f	Simonleal@yahoo.com		new lead	\N	
2017-12-18 14:38:43.971753+00	2017-12-18 14:38:46.894089+00	715			+17635757398								15	f	f			new lead	\N	
2017-06-01 13:29:50.327348+00	2017-11-29 18:38:49.81433+00	716			+14693995918								9	f	f		dallas  tx	new lead	\N	
2017-06-17 18:12:33.909982+00	2017-06-24 13:45:04.893916+00	717	Charlene	Glaze	+17623388570								13	f	f	charlenecleveland@72gmail.com		new lead	\N	
2017-09-14 21:27:12.736188+00	2017-09-14 21:29:50.468806+00	718	Samantha	Robinson	+16787778414								13	f	f	samrobinson227@gmail.com		new lead	\N	
2017-12-08 21:29:31.905573+00	2017-12-08 21:35:13.797816+00	719			+17707661533								13	f	f		atlanta  ga	new lead	\N	
2016-11-15 20:34:09.55814+00	2016-12-09 17:06:53.906119+00	720			+12159453589								3	f	f			new lead	\N	
2016-05-25 18:27:00.760892+00	2017-11-29 18:31:37.368183+00	721	Unknown		+16369473022								1	f	f			new lead	\N	
2017-03-27 20:00:06.433224+00	2017-11-29 18:38:53.213008+00	722			+18172693770								9	f	f		gooden errol   	new lead	\N	
2016-11-04 17:35:15.738509+00	2016-11-04 17:35:15.772135+00	723	Cynthia 	Denson	+18328771985								1	f	f	dcdenson@gmail.com		new lead	\N	
2017-03-23 23:46:00.910575+00	2017-11-29 18:38:53.212895+00	724			+13059345552								9	f	f		wittus jared   	new lead	\N	
2016-11-01 18:49:38.21391+00	2016-11-01 19:07:55.801853+00	725			+14694101216								1	f	f			new lead	\N	
2017-03-14 17:18:23.487501+00	2017-11-29 18:38:53.212218+00	726			+12142452003								9	f	f		guillory d	new lead	\N	
2016-11-02 22:29:56.610229+00	2016-11-02 22:29:56.645217+00	727	Paul	Horgen	+16233268695								1	f	f	paulhorgen@cox.net		new lead	\N	
2016-11-01 20:26:53.161761+00	2016-11-01 20:44:21.210487+00	728			+18325600887								1	f	f			new lead	\N	
2017-05-06 23:44:43.189853+00	2017-11-29 18:38:53.215214+00	729			+12143178253								9	f	f		julian pierce	new lead	\N	
2016-09-09 18:37:55.598401+00	2016-12-10 01:04:42.413783+00	730			+19092335356								3	f	f			new lead	\N	
2017-03-14 16:44:57.212989+00	2017-11-29 18:38:53.212204+00	731			+12706399469								9	f	f		dixon  ky	new lead	\N	
2017-04-26 18:34:45.171164+00	2017-11-29 18:38:49.806787+00	732			+17732507217								9	f	f		chicago  il	new lead	\N	
2016-06-02 20:57:57.449698+00	2017-11-29 18:31:10.260903+00	733	Unknown	Parker	+19372718870								1	f	f	grgparker4@gmail.com		new lead	\N	
2016-12-14 20:22:57.858109+00	2017-11-29 18:32:10.406506+00	734			+13612295143								1	f	f			new lead	\N	
2016-08-10 16:11:07.814991+00	2017-11-29 18:32:13.821656+00	735			+16128402278								1	f	f			do not contact	\N	
2016-10-12 12:53:40.996632+00	2017-02-11 20:02:07.779634+00	736			+12016834020								3	f	f			new lead	\N	
2017-03-18 17:50:55.306458+00	2017-11-29 18:38:53.212601+00	737			+12149273424								9	f	f			new lead	\N	
2016-10-03 16:40:17.72653+00	2016-12-10 01:00:18.568448+00	738			+16193390499								3	f	f			new lead	\N	
2017-03-22 18:15:54.798814+00	2017-11-29 18:38:53.212791+00	739			+18173752700								9	f	f		patterson kia	new lead	\N	
2017-05-26 16:54:11.169948+00	2017-11-29 18:38:49.81365+00	740			+14692747829								9	f	f		boss the	new lead	\N	
2017-12-31 11:02:34.214581+00	2017-12-31 11:02:34.269801+00	741	Aletre	Stevens	+17062026494								13	f	f	griffithaletre@gmail.com		new lead	\N	
2017-02-03 20:32:07.945045+00	2017-02-08 14:09:59.032402+00	742	Melanie	Wittenauer	+16185801515								1	f	f	melanie_wittenauer@yahoo.com		application submitted - autopay	\N	
2016-06-27 18:35:37.305369+00	2017-11-29 18:31:41.490122+00	743	Unknown	Wilkins	+16143177111								1	f	f			new lead	\N	
2017-12-18 20:49:29.125008+00	2017-12-18 20:52:35.157478+00	744			+16788308239								13	f	f		norcross  ga	new lead	\N	
2016-10-28 17:29:49.084888+00	2017-11-29 18:31:56.600218+00	745			+14848091955								1	f	f			new lead	\N	
2016-09-23 16:37:09.811205+00	2016-12-09 17:10:17.413485+00	746			+15733564411								3	f	f			new lead	\N	
2017-11-29 20:16:34.493619+00	2017-11-29 20:20:07.423547+00	747			+19033055034								12	f	f		cell phone   tx	new lead	\N	
2017-05-11 14:04:15.752723+00	2017-08-17 14:35:21.045169+00	748			+16822499192								12	f	f		terry weeks	new lead	\N	
2016-07-25 21:18:45.110885+00	2017-11-29 18:31:10.261496+00	749	Sean	Anderson	+19375098797								1	f	f	sean.anderson@datavirtue.com		new lead	\N	
2017-08-09 22:03:19.334962+00	2017-08-17 14:35:21.045774+00	750			+12143369671								12	f	f		shambrica king	new lead	\N	
2016-07-13 02:04:14.454383+00	2016-12-10 01:05:11.336985+00	751			+13478252125								3	f	f			new lead	\N	
2016-11-14 21:37:46.071308+00	2016-11-14 21:52:58.723754+00	752			+17709009582								1	f	f			new lead	\N	
2016-10-07 20:19:39.715619+00	2016-12-10 01:05:18.40113+00	753			+16109482982								3	f	f			new lead	\N	
2017-06-01 15:03:22.021814+00	2017-11-29 18:38:49.814338+00	754			+18177707586								9	f	f		terrill	new lead	\N	
2016-10-10 12:04:03.245259+00	2016-12-09 17:10:17.413599+00	755			+16105597271								3	f	f			new lead	\N	
2017-04-03 22:23:01.647078+00	2017-11-29 18:47:25.067982+00	756			+13252011631								8	f	f		cell phone   tx	new lead	\N	
2016-08-15 19:39:22.729321+00	2017-11-29 18:31:10.262201+00	757	Louisa	DICKERSON	+15135604019								1	f	f	DANIDICKERSON@HOTMAIL.COM		application submitted - credit union	\N	
2017-10-06 13:40:12.196884+00	2017-10-06 13:44:44.541509+00	758	Melissa	Randolph	+17063519743								13	f	f	melissarandolph31@yahoo.com		new lead	\N	
2016-11-01 18:27:03.862148+00	2016-11-01 18:43:26.266377+00	759			+17049314658								1	f	f			new lead	\N	
2017-04-22 16:27:43.314479+00	2017-11-29 18:38:49.806363+00	760			+12818572215								9	f	f		houston  tx	new lead	\N	
2017-12-05 19:56:29.984321+00	2017-12-05 20:21:09.889351+00	761			+13615649555								15	f	f			new lead	\N	
2017-06-08 12:21:06.270291+00	2017-11-29 18:31:56.600422+00	762			+15094866640								1	f	f			select status	\N	
2017-08-25 12:28:15.03737+00	2017-08-25 12:28:15.555653+00	763			+17069498687								13	f	f			new lead	\N	
2017-04-21 15:03:32.313888+00	2017-11-29 18:38:49.806131+00	764			+12149574456								9	f	f		rushing stan   	new lead	\N	
2017-09-28 15:38:01.603831+00	2017-09-28 15:39:37.104975+00	765			+18008413000								13	f	f			new lead	\N	
2016-08-02 15:19:36.10063+00	2016-12-10 00:55:45.16499+00	766			+14849385198								3	f	f			new lead	\N	
2017-09-11 17:36:14.42299+00	2017-09-11 17:37:35.432941+00	767			+18173507955								12	f	f		hurst detosha	new lead	\N	
2017-10-24 22:10:20.118294+00	2017-10-24 22:11:45.652463+00	768			+14695738444								12	f	f		young mary	new lead	\N	
2017-12-04 16:18:53.335627+00	2017-12-04 16:22:32.910791+00	769	Marco	Robinson	+14049519017								14	f	f	iversonrobinson42@gmail.com		new lead	\N	
2017-05-09 18:27:02.192336+00	2017-11-29 18:38:49.810633+00	770			+13378526507								9	f	f		wireless caller	new lead	\N	
2017-05-16 20:33:20.326135+00	2017-08-17 14:35:21.04522+00	771			+16827728792								12	f	f		schmidt zechari	new lead	\N	
2017-05-05 19:52:39.4713+00	2017-11-29 18:38:49.810095+00	772			+13237466115								9	f	f		dealercenter   	new lead	\N	
2017-12-01 17:21:12.326804+00	2017-12-01 17:34:47.355717+00	773			+18156032948								15	f	f			new lead	\N	
2017-05-20 16:53:44.117871+00	2017-11-29 18:38:49.812391+00	774			+19723702345								9	f	f		land rover frisco	new lead	\N	
2016-08-23 14:15:03.579666+00	2017-11-29 18:31:56.600154+00	775			+15702356004								1	f	f			do not contact	\N	
2017-08-01 14:53:29.510415+00	2017-08-01 14:58:27.221756+00	776	Jeffery	Maddox	+14708928200								13	f	f	Jeffmaddox1234@gmail.com		new lead	\N	
2016-08-24 01:29:43.25367+00	2016-08-24 12:01:24.830913+00	777	Angela	Hartsel	+14196062205								1	f	f	malibu_girl_21@yahoo.com		application submitted - credit union	\N	
2016-09-03 23:17:57.211609+00	2017-11-29 18:32:13.821921+00	778			+13302330217								1	f	f			general interest	\N	
2017-08-18 13:10:04.535224+00	2017-08-18 13:13:59.013123+00	779	Lportia	Haynes	+16789974566								13	f	f	haynes.portia06@gmail.com		new lead	\N	
2017-09-29 18:15:58.085642+00	2017-09-29 18:18:46.313672+00	780			+16787692874								13	f	f			new lead	\N	
2017-10-11 16:00:20.981065+00	2017-10-11 16:06:36.367673+00	781	Dana	Jones	+17062481951								13	f	f	Jonesdana392@gmail.com		new lead	\N	
2017-11-09 02:12:42.773194+00	2017-11-09 02:35:23.620862+00	782			+14696719979								12	f	f		dallas  tx	new lead	\N	
2017-05-11 14:45:05.3936+00	2017-11-29 18:47:25.06846+00	783			+14695868435								8	f	f		wireless caller	new lead	\N	
2016-06-30 18:35:47.780095+00	2017-11-29 18:32:13.821112+00	784	Unknown	Rizzo	+13307873646								1	f	f			new lead	\N	
2017-01-13 21:15:20.125799+00	2017-11-29 18:31:37.369344+00	785			+16614296355								1	f	f			new lead	\N	
2016-12-02 16:02:53.397413+00	2017-11-29 18:31:37.369318+00	786			+16108782800								1	f	f			new lead	\N	
2017-07-10 15:04:45.68145+00	2017-07-10 15:07:22.983797+00	787			+16826221621								12	f	f		crystal leon	new lead	\N	
2017-12-15 22:47:25.19751+00	2017-12-15 22:59:32.680024+00	788	Ashley	Brady	+16789938597								13	f	f	Ashthewalkingtornado76@gmail.com		new lead	\N	
2017-05-13 21:07:09.930455+00	2017-05-17 15:41:07.224488+00	789			+16822407886								12	f	f		dallas  tx	new lead	\N	
2017-11-30 14:19:31.014773+00	2017-11-30 14:23:16.134876+00	790	Isabella 	Henderson 	+14784612869								13	f	f	macabre27@gmail.com		new lead	\N	
2017-09-22 21:08:28.120335+00	2017-09-22 21:12:22.316116+00	791	Marecka	Harrison	+16786304076								13	f	f	shakelaharrison@gmail.com		new lead	\N	
2017-11-06 14:25:52.877036+00	2017-11-06 14:26:55.765945+00	792	Quintessa	Fleming	+17069639009								13	f	f	qfleming11@gmail.com		new lead	\N	
2016-09-07 19:39:19.74159+00	2016-12-09 17:06:53.9059+00	793			+12674087273								3	f	f			new lead	\N	
2017-02-12 19:26:18.562848+00	2017-02-20 02:31:36.101346+00	794			+17735469660								1	f	f			new lead	\N	
2017-10-29 15:03:37.652383+00	2017-10-29 15:09:43.31816+00	795	Yailma	Genez	+14706295746								13	f	f	ygenez@hotmail.com		new lead	\N	
2016-06-24 14:20:14.421147+00	2016-06-24 14:24:47.242973+00	796	Susan	Westfall	+12164078099								1	f	f	suebee0770@yahoo.com		new lead	\N	
2016-06-28 13:10:39.396607+00	2017-11-29 18:31:41.490178+00	797	Unknown	Garwood	+16148932992								1	f	f	beau06wood@yahoo.com		new lead	\N	
2017-04-26 18:45:16.136876+00	2017-11-29 18:38:53.214603+00	798			+17607923214								9	f	f		larry shaver	new lead	\N	
2016-11-06 00:07:31.24398+00	2016-11-06 00:08:05.393553+00	799			+19197231207								1	f	f			new lead	\N	
2016-10-23 19:16:45.503148+00	2016-12-10 00:57:48.46188+00	800			+18035243289								3	f	f			new lead	\N	
2017-12-04 14:18:12.461556+00	2017-12-04 14:20:29.485471+00	801	Aron	Griffin	+17708950254								13	f	f	real100griffin975@gmail.com		select status	\N	
2017-04-24 17:42:23.567844+00	2017-11-29 18:38:53.214447+00	802			+19724398973								9	f	f		stone chase h  	new lead	\N	
2016-07-28 14:37:31.684564+00	2017-11-29 18:32:13.821605+00	803	Rodney	Holzapfel	+17243010151								1	f	f	rod.holzapfel@yahoo.com		general interest	\N	
2017-12-29 18:35:14.535819+00	2017-12-29 18:36:10.735177+00	804			+14046210085								14	f	f			new lead	\N	
2017-08-24 01:54:54.883577+00	2017-08-24 01:54:54.939253+00	805	Mitchell 	Teasley	+17064919408								13	f	f	teasley_mitchell@yshoo.com		new lead	\N	
2017-08-16 20:33:42.69315+00	2017-08-16 20:36:41.199148+00	806			+14044285658								13	f	f			new lead	\N	
2016-10-24 19:16:09.637231+00	2016-12-10 01:00:18.568531+00	807			+16199476798								3	f	f			new lead	\N	
2016-11-27 23:46:33.582077+00	2016-11-27 23:47:03.576053+00	808			+16785920818								1	f	f			new lead	\N	
2017-02-08 14:31:17.565859+00	2017-11-29 18:32:10.406527+00	809			+12146824946								1	f	f			new lead	\N	
2017-04-08 14:28:20.892799+00	2017-11-29 18:38:53.213468+00	810			+18178915296								9	f	f		aljabri	new lead	\N	
2017-08-28 21:19:06.436555+00	2017-08-28 21:22:29.315579+00	811			+16825522756								12	f	f		haynes matthew	new lead	\N	
2016-05-31 04:58:37.994483+00	2016-05-31 12:49:20.180209+00	812	Adrian	Clemandot 	+16617542703								1	f	f	adrianclemandot@yahoo.com		new lead	\N	
2017-12-07 01:14:44.741491+00	2017-12-07 01:16:51.125286+00	813	Caroline	Campbell	+18502634495								15	f	f	Caroline0311@yahoo.com		new lead	\N	
2017-04-10 21:54:29.077372+00	2017-11-29 18:38:53.213695+00	814			+19725229856								9	f	f		GENNESIS AUTOMO	new lead	\N	
2017-12-12 13:46:31.707234+00	2017-12-12 13:46:56.441828+00	815			+14044578704								14	f	f			new lead	\N	
2016-06-12 17:55:00.170108+00	2017-11-29 18:31:05.368882+00	816	Unknown		+16612655534								1	f	f			new lead	\N	
2017-04-17 16:10:07.601471+00	2017-11-29 18:38:53.214064+00	817			+12146046795								9	f	f		nguyen thanh	new lead	\N	
2017-04-15 16:38:41.22036+00	2017-11-29 18:38:49.805081+00	818			+19728392760								9	f	f		burwell jonatha	new lead	\N	
2017-12-11 23:13:52.040528+00	2017-12-11 23:17:45.456286+00	819	Tammie	Meadows Millsap	+16789898941								13	f	f	temeadows42@gmail.com		select status	\N	
2017-11-10 16:28:44.651382+00	2017-11-10 16:30:46.831468+00	820	Amanda	Seawright	+17064984417								13	f	f	Amandaseawright1@gmail.com		new lead	\N	
2016-07-04 00:09:46.406859+00	2016-07-05 13:20:03.787298+00	821	Allen	Sanders	+16142309750								1	f	f	aesbowen@gmail.com		new lead	\N	
2016-11-10 21:28:33.79663+00	2016-11-10 21:31:45.48469+00	822			+12144772670								1	f	f			new lead	\N	
2017-12-06 19:39:02.524293+00	2017-12-06 20:05:57.965487+00	823			+12392715967								15	f	f			new lead	\N	
2017-06-22 14:52:24.179676+00	2017-06-24 13:44:45.085729+00	824			+16787022320								13	f	f			new lead	\N	
2016-11-26 18:55:41.485056+00	2016-11-26 18:56:23.86435+00	825			+19728164244								1	f	f			new lead	\N	
2017-12-08 13:17:06.163356+00	2017-12-08 13:18:28.260166+00	826			+12317771048								15	f	f			new lead	\N	
2016-11-01 01:51:30.871149+00	2016-11-01 01:51:30.895968+00	827	Corianne	Remeliik	+19196080994								1	f	f	nuttycoconut919@aol.com		new lead	\N	
2017-05-25 16:00:55.373591+00	2017-11-29 18:38:49.81338+00	828			+18009150927								9	f	f		800 service    	new lead	\N	
2016-09-01 15:35:37.433866+00	2016-12-09 17:10:17.413354+00	829			+19087504217								3	f	f			new lead	\N	
2017-06-01 16:54:42.511213+00	2017-11-29 18:38:49.81436+00	830			+19725606223								9	f	f		promontory	new lead	\N	
2017-10-10 04:57:32.343525+00	2017-10-10 04:57:32.391404+00	831	Richard 	Habgood 	+12395957807								13	f	f	southernrock1989@yahoo.com		new lead	\N	
2017-09-16 11:12:14.384087+00	2017-09-16 11:12:14.446796+00	832	Kasey	Roberts	+17069639640								13	f	f	kasey.rosser18@gmail.com		new lead	\N	
2017-11-08 18:56:49.387641+00	2017-11-08 19:03:45.0138+00	833	Jodi	Freeman	+17064360740								13	f	f	Jodi_freeman@ymail.com		new lead	\N	
2017-04-20 18:45:51.157216+00	2017-11-29 18:38:49.80601+00	834			+18178061800								9	f	f		united special	new lead	\N	
2017-12-12 20:54:47.440776+00	2017-12-12 21:02:27.238456+00	835			+18474095349								15	f	f			new lead	\N	
2017-08-28 22:21:29.189299+00	2017-08-28 22:29:12.571941+00	836	Sarah	Reneau	+17707437977								13	f	f	Sarahannreneau@gmail.com		new lead	\N	
2017-07-29 18:48:01.441683+00	2017-07-29 18:48:44.831154+00	837			+16823522567								12	f	f		euless  tx	new lead	\N	
2017-06-02 23:02:10.606967+00	2017-08-17 14:35:21.045428+00	838			+12146252217								12	f	f		anne kail	new lead	\N	
2017-08-30 22:42:09.624743+00	2017-08-30 22:51:52.400158+00	839	Christina	Mancle	+16788267815								13	f	f	Christinamancle@gmail.com		new lead	\N	
2016-10-31 20:14:07.690832+00	2016-10-31 20:42:59.926516+00	840			+19197950912								1	f	f			new lead	\N	
2017-04-12 20:58:08.10168+00	2017-11-29 18:38:53.213816+00	841			+19404533788								9	f	f			new lead	\N	
2017-02-15 15:44:53.495101+00	2017-02-15 16:15:13.746619+00	842			+19802139760								1	f	f			new lead	\N	
2017-05-10 22:55:10.469586+00	2017-11-29 18:38:53.215618+00	843			+15037575877								9	f	f		ramert david   	new lead	\N	
2017-09-27 12:58:02.370523+00	2017-09-27 12:58:02.41895+00	844	Matthew	Palla	+17063800406								13	f	f	Matthewpalla339@gmail.com		new lead	\N	
2016-06-27 20:40:40.9306+00	2017-11-29 18:31:41.490129+00	845	Unknown		+16148373421								1	f	f			new lead	\N	
2017-05-03 19:07:37.322649+00	2017-11-29 18:38:53.214972+00	846			+16786426184								9	f	f		mosley jabari	new lead	\N	
2017-05-18 23:03:08.002005+00	2017-11-29 18:38:49.812231+00	847			+16267771000								9	f	f		h j auto group 	new lead	\N	
2016-10-07 18:12:47.032911+00	2016-12-10 01:05:18.401116+00	848			+1+266696687								3	f	f			new lead	\N	
2017-05-01 15:02:47.289229+00	2017-11-29 18:38:49.807797+00	849			+18104594979								9	f	f		barney andy	new lead	\N	
2017-08-23 13:14:16.946942+00	2017-08-23 13:15:57.633999+00	850	Thomas	Adams	+17709122123								13	f	f	tommyadams81@yahoo.com		new lead	\N	
2017-04-12 19:47:31.565732+00	2017-11-29 18:38:49.804628+00	851			+18666866972								9	f	f		800 service	new lead	\N	
2017-05-03 14:32:55.495097+00	2017-11-29 18:38:49.809065+00	852			+12017701404								9	f	f		new world group	new lead	\N	
2017-03-29 18:44:47.946199+00	2017-11-29 18:38:53.21312+00	853			+14404444441								9	f	f		cell phone   oh	new lead	\N	
2017-05-31 19:52:04.49534+00	2017-11-29 18:38:49.814274+00	854			+12147358615								9	f	f		dallas  tx	new lead	\N	
2016-07-05 16:55:16.924649+00	2017-11-29 18:31:41.490311+00	855	Micky		+16145615880								1	f	f			new lead	\N	
2016-11-23 20:27:55.64159+00	2016-11-23 20:27:55.667979+00	856	Pedro Raciel	Gutierrez	+19137104268								1	f	f	praciel2006@gmail.com		new lead	\N	
2017-05-01 16:40:48.648067+00	2017-11-29 18:38:49.80798+00	857			+12146073988								9	f	f		wireless caller	new lead	\N	
2017-12-02 16:55:26.459583+00	2017-12-02 16:55:26.825473+00	858			+14044924782								13	f	f		johnson wendoli	new lead	\N	
2016-06-03 16:40:36.17282+00	2017-11-29 18:31:10.260968+00	859	Unknown	Carmack	+15132358208								1	f	f			new lead	\N	
2016-07-22 03:04:51.814393+00	2016-12-10 01:05:11.337037+00	860			+17184420905								3	f	f			new lead	\N	
2016-11-02 01:57:30.96154+00	2016-11-02 01:57:30.989499+00	861	James	Ashby	+18025584711								1	f	f	oneofakind196363@yahoo.com		new lead	\N	
2017-07-24 12:47:43.596163+00	2017-07-24 12:47:57.170769+00	862			+12026462066								1	f	f			new lead	\N	
2017-04-13 18:21:48.703105+00	2017-11-29 18:38:49.804837+00	863			+12145489515								9	f	f			new lead	\N	
2016-06-29 21:00:48.677404+00	2017-11-29 18:32:13.821005+00	864	Jerry	Clement	+13305022450								1	f	f			new lead	\N	
2017-11-09 17:35:43.185078+00	2017-11-09 17:37:04.345495+00	865			+18179024349								12	f	f		ellis nikki	new lead	\N	
2017-10-07 11:12:06.926524+00	2017-10-11 14:18:09.679016+00	866	Stephanie	Norris	+17063518478								13	f	f	Sjforever.103105@gmail.com		select status	\N	
2017-11-09 18:21:45.667381+00	2017-11-09 18:25:23.937481+00	867	Michelle	Cook	+16784487103								13	f	f	michellecook1012@gmail.com		new lead	\N	
2016-09-08 22:32:15.80858+00	2016-12-10 01:04:42.413776+00	868			+19094378824								3	f	f			new lead	\N	
2017-12-04 14:28:05.694815+00	2017-12-04 14:33:23.69831+00	869	Mark	Dearborn	+13864169096								15	f	f	markdearborn25@gmail.com		new lead	\N	
2016-11-02 22:02:49.151636+00	2016-11-02 22:02:49.173107+00	870	Chrysanne	Miller	+18173077998								1	f	f	cjmiller1984@hotmail.com		new lead	\N	
2017-10-27 13:21:34.175708+00	2017-10-27 13:21:44.704676+00	871			+17064037733								13	f	f			new lead	\N	
2017-04-28 21:08:10.301399+00	2017-11-29 18:38:49.807364+00	872			+19528339448								9	f	f		minneapolis  mn	new lead	\N	
2016-11-03 19:44:10.557247+00	2016-11-03 19:44:10.584892+00	873	michelle	leblanc	+16022900342								1	f	f	mleblanc0514@gmail.com		new lead	\N	
2017-04-29 21:21:40.231494+00	2017-04-29 21:28:38.907015+00	874			+16786983170								1	f	f			new lead	\N	
2017-11-13 22:30:51.814308+00	2017-11-13 22:38:27.273911+00	875			+18174702829								12	f	f		euless  tx	new lead	\N	
2017-12-06 16:23:35.975104+00	2017-12-06 16:32:02.331045+00	876			+16614181196								15	f	f			new lead	\N	
2017-07-11 16:25:09.686857+00	2017-07-11 16:26:17.801809+00	877			+16786156732								13	f	f			new lead	\N	
2017-05-18 16:36:28.22569+00	2017-11-29 18:38:49.812153+00	878			+19729550440								9	f	f		cell phone   tx	new lead	\N	
2017-12-07 20:59:16.786836+00	2017-12-07 21:18:19.992134+00	879			+18327054709								15	f	f			new lead	\N	
2017-03-08 21:43:33.424609+00	2017-11-29 18:38:53.211911+00	880			+19494363261								9	f	f		hsu angela     	new lead	\N	
2017-11-22 20:21:10.31653+00	2017-11-22 20:38:30.438569+00	881	Tamekia	Riden	+14044925147								13	f	f	Tamekia.riden@yahoo.com		select status	\N	
2017-11-08 23:55:38.677606+00	2017-11-09 00:17:52.754754+00	882			+16822502105								12	f	f		oxford house je	new lead	\N	
2016-11-07 20:06:24.377721+00	2016-11-07 20:14:42.567811+00	883			+19032625352								1	f	f			new lead	\N	
2017-05-03 21:54:29.235827+00	2017-11-29 18:38:49.809493+00	884			+13182001367								9	f	f		singleton ld	new lead	\N	
2017-05-30 19:29:09.902358+00	2017-11-29 18:38:49.814103+00	885			+19039313074								9	f	f		thomas david   	new lead	\N	
2017-12-09 17:13:59.113076+00	2017-12-09 17:15:40.167724+00	886			+18172692586								12	f	f		fritz aleta	new lead	\N	
2017-05-03 20:48:57.582219+00	2017-11-29 18:38:49.809472+00	887			+19164101000								9	f	f		rashed manuel  	new lead	\N	
2017-12-04 20:48:28.762526+00	2017-12-04 21:12:47.897086+00	888			+17275600703								15	f	f			new lead	\N	
2017-04-19 22:56:08.846173+00	2017-11-29 18:38:53.21429+00	889			+19405774540								9	f	f		hillary lindsay	new lead	\N	
2016-07-15 22:06:48.851881+00	2016-12-10 01:05:11.337003+00	890			+17186988800								3	f	f			new lead	\N	
2016-11-01 13:44:51.327149+00	2016-11-01 13:44:51.358913+00	891	Matthew	Borysewicz	+19802533341								1	f	f	matt.borysewicz@gmail.com		new lead	\N	
2017-05-08 19:50:24.668967+00	2017-11-29 18:38:49.810418+00	892			+12146802994								9	f	f		wright donald	new lead	\N	
2016-02-12 21:13:13.618667+00	2016-02-12 21:13:38.652363+00	893	hermiesa@telkomsa.net		+1#**								1	f	f			new lead	\N	
2017-11-30 14:52:50.104211+00	2017-11-30 15:19:18.260655+00	894			+14705353606								13	f	f		mond deanna	select status	\N	
2016-08-04 00:53:17.060591+00	2017-11-29 18:31:37.368603+00	895	Ernesto	Sandoval	+18185541848								1	f	f			application submitted - credit union	\N	
2017-10-09 14:24:46.789257+00	2017-10-09 14:33:43.083698+00	896			+12144549274								12	f	f		bates s	new lead	\N	
2016-08-15 19:24:17.582416+00	2017-11-29 18:31:37.368918+00	897			+16618749105								1	f	f			do not contact	\N	
2018-05-23 15:11:38.155497+00	2018-05-23 15:11:39.826516+00	898	test	TEst	+17036613350		13825 Sunrise Valley Drive, Suite 150			VIRGINIA	20171		4	f	f	shatem@teamvelocitymarketing.com				
2016-10-29 18:22:51.416283+00	2016-10-29 18:22:51.455217+00	899	Courtney	Hanks	+19036033676								1	f	f	courtt.07@gmail.com		new lead	\N	
2016-10-06 23:49:05.9944+00	2016-12-10 01:03:24.074423+00	900			+13198998944								3	f	f			new lead	\N	
2016-07-27 18:09:57.259343+00	2017-11-29 18:31:18.808775+00	901			+14062490309								1	f	f			new lead	\N	
2016-11-08 15:56:06.845646+00	2016-11-08 15:56:06.883311+00	902	Sergio 	Sencion	+19734648036								1	f	f	Sencion.Sergio@gmail.com		new lead	\N	
2017-04-20 21:44:10.79276+00	2017-11-29 18:38:53.214354+00	903			+14074889300								9	f	f		cell phone   fl	new lead	\N	
2017-07-10 19:43:30.85684+00	2017-07-10 19:47:45.328797+00	904			+17064998590								13	f	f			new lead	\N	
2017-04-26 17:04:49.831342+00	2017-11-29 18:38:53.214297+00	905			+18066371800								9	f	f		birdsong peanuts	new lead	\N	
2017-07-28 16:07:59.534169+00	2017-08-17 14:35:21.04568+00	906			+14329348704								12	f	f		ra shawn	new lead	\N	
2016-10-05 15:49:37.147772+00	2016-12-10 01:01:00.200217+00	907			+16197953646								3	f	f			new lead	\N	
2017-10-30 14:08:25.212722+00	2017-10-30 14:09:43.242972+00	908	James	Ward	+17703550422								13	f	f	Cigartv@gmail.com		new lead	\N	
2017-04-01 23:16:41.187373+00	2017-11-29 18:47:25.067975+00	909			+19039100947								8	f	f		cell phone   tx	new lead	\N	
2017-12-07 16:21:58.716772+00	2017-12-07 16:40:48.433571+00	910			+16206170718								15	f	f			new lead	\N	
2017-05-15 17:41:49.934051+00	2017-11-29 18:38:49.811565+00	911			+12146046112								9	f	f		walton cedrick 	new lead	\N	
2016-08-27 22:30:08.298383+00	2016-12-10 01:01:00.199816+00	912			+16194528685								3	f	f			new lead	\N	
2016-11-17 19:07:22.091362+00	2016-11-17 19:38:04.490271+00	913			+12108724358								1	f	f			new lead	\N	
2016-12-09 17:44:35.082532+00	2016-12-09 17:44:35.11128+00	914	JYOTHSNA	DINADAYALANE	+16013161169								1	f	f	ddjoy07@yahoo.com		new lead	\N	
2017-04-21 22:12:11.854862+00	2017-11-29 18:38:49.80628+00	915			+15714906034								9	f	f		altamimi abdula	new lead	\N	
2017-12-22 21:06:49.357989+00	2017-12-22 21:13:53.982608+00	916	Dwayne	Craft	+17062963476								13	f	f	Djcraft420@gmail.com	craft jessica	new lead	\N	
2016-06-27 15:09:02.150449+00	2017-11-29 18:32:13.820498+00	917	Samantha	Mackey	+13303989840								1	f	f			new lead	\N	
2016-08-27 14:47:16.130758+00	2016-12-10 01:05:18.400868+00	918			+12157890528								3	f	f			new lead	\N	
2016-10-10 16:58:22.718284+00	2016-12-10 01:05:18.401137+00	919			+16102403800								3	f	f			new lead	\N	
2017-10-13 16:29:45.831838+00	2017-10-13 16:31:57.952749+00	920			+16786968136								13	f	f			new lead	\N	
2017-04-21 13:20:56.585244+00	2017-11-29 18:38:49.806117+00	921			+19177687106								9	f	f		freedom funding	new lead	\N	
2016-12-22 22:05:54.591353+00	2016-12-22 22:05:54.616915+00	922	MARIKO	MIBAYASHI	+12068541575								1	f	f	MARICHIN33@GMAIL.COM		new lead	\N	
2016-10-28 21:13:24.834154+00	2016-12-10 00:57:48.461887+00	923			+13104573263								3	f	f			new lead	\N	
2016-11-02 23:59:58.158809+00	2016-11-03 00:26:35.399473+00	924			+12818815473								1	f	f			new lead	\N	
2017-10-04 16:07:36.954769+00	2017-10-04 16:12:45.735796+00	925			+17069494805								13	f	f			new lead	\N	
2017-03-13 20:35:43.142464+00	2017-11-29 18:47:25.067736+00	926			+19729225515								8	f	f		mcmenamy jonath	new lead	\N	
2017-05-19 22:05:25.412026+00	2017-08-17 14:35:21.045262+00	927			+18176171659								12	f	f		rodriguez g	new lead	\N	
2016-10-27 16:14:14.661649+00	2016-10-27 16:15:43.558228+00	928			+13035026615								1	f	f			new lead	\N	
2017-03-18 20:08:44.053689+00	2017-11-29 18:47:25.067827+00	929			+12544001914								8	f	f		wireless caller	new lead	\N	
2017-05-01 18:22:56.334276+00	2017-11-29 18:38:53.214866+00	930			+18173433714								9	f	f		curtis carlton 	new lead	\N	
2017-05-03 20:03:53.434115+00	2017-11-29 18:38:49.809422+00	931			+17146052552								9	f	f		lopez michael	new lead	\N	
2017-07-29 16:52:26.509093+00	2017-11-29 18:47:25.068572+00	932			+14695307898								8	f	f		gregory powell	new lead	\N	
2017-03-27 23:21:50.638459+00	2017-05-17 15:41:07.22424+00	933			+14692646152								12	f	f		crecy johnny	new lead	\N	
2017-05-08 16:30:20.319934+00	2017-08-17 14:35:21.04514+00	934			+18176571906								12	f	f		oyegunle john	new lead	\N	
2017-06-23 14:44:21.312588+00	2017-06-24 13:45:04.894069+00	935			+17063514551								13	f	f			new lead	\N	
2017-05-18 23:35:08.834849+00	2017-11-29 18:38:49.812245+00	936			+13142787744								9	f	f		kingsmen servic	new lead	\N	
2017-12-27 13:55:26.324932+00	2017-12-27 13:55:50.792011+00	937			+14045424087								14	f	f			new lead	\N	
2017-04-21 18:21:18.650462+00	2017-11-29 18:38:49.806216+00	938			+18179178291								9	f	f		hoang tony     	new lead	\N	
2016-08-23 13:56:13.316275+00	2017-11-29 18:31:10.262561+00	939			+15138822524								1	f	f			general interest	\N	
2016-11-23 23:48:25.729058+00	2016-12-10 01:01:51.441177+00	940			+17608030377								3	f	f			new lead	\N	
2017-05-04 13:24:14.551853+00	2017-11-29 18:38:49.809578+00	941			+12058790143								9	f	f		empl screening	new lead	\N	
2017-10-10 19:41:00.013118+00	2017-10-10 19:46:15.711769+00	942			+17708964983								13	f	f			new lead	\N	
2017-05-18 16:54:35.293466+00	2017-11-29 18:38:49.812181+00	943			+18179123000								9	f	f		sewell saab gra	new lead	\N	
2016-11-15 21:54:28.600935+00	2016-11-15 21:57:17.77719+00	944			+16022066515								1	f	f			new lead	\N	
2017-11-21 17:27:22.346257+00	2017-11-21 17:29:17.297427+00	945	Mary 	Sheriff 	+16785486624								13	f	f	Msheriff34@gmail.com		select status	\N	
2017-05-02 21:42:59.625948+00	2017-05-17 15:41:07.2244+00	946			+17316767065								12	f	f		wireless caller	new lead	\N	
2017-08-02 18:41:56.008013+00	2017-08-02 18:47:48.878322+00	947			+12144860779								13	f	f			new lead	\N	
2017-04-28 21:05:19.393946+00	2017-11-29 18:38:53.214362+00	948			+19494632223								9	f	f		donaldson corey	new lead	\N	
2017-05-10 17:43:42.68617+00	2017-11-29 18:38:49.810811+00	949			+12149166008								9	f	f		alvarez m	new lead	\N	
2017-09-09 15:09:23.660172+00	2017-09-09 15:09:34.472572+00	950			+14049106377								13	f	f			new lead	\N	
2016-08-03 13:55:44.828978+00	2016-12-10 00:55:45.165059+00	951			+16105853985								3	f	f			new lead	\N	
2017-07-21 13:06:42.091968+00	2017-07-21 13:12:22.188484+00	952			+17707668934								13	f	f			new lead	\N	
2017-07-01 01:59:43.219753+00	2017-07-01 01:59:49.714987+00	953			+13405144008								13	f	f			new lead	\N	
2017-10-13 18:41:19.361526+00	2017-10-13 18:44:49.203082+00	954			+18175383085								12	f	f		bridgestone ame	new lead	\N	
2017-06-26 14:06:25.247079+00	2017-06-26 14:10:06.496172+00	955	Jessica	Pilgrim	+17063723776								13	f	f	jessicapilgrim911@yahoo.com		new lead	\N	
2016-08-10 13:31:59.585575+00	2016-12-09 17:06:53.905773+00	956			+12156967082								3	f	f			new lead	\N	
2017-04-27 22:17:08.160554+00	2017-11-29 18:38:53.214717+00	957			+19174706121								9	f	f		diabene juliet	new lead	\N	
2017-11-27 16:05:36.060054+00	2017-11-27 16:06:17.61796+00	958	Ramona 	Long 	+16789342630								13	f	f	longramona20@gmail.com	harris lyric	select status	\N	
2017-05-03 21:37:43.397694+00	2017-11-29 18:38:53.214987+00	959			+14326184553								9	f	f		reagor dykes au	new lead	\N	
2017-07-18 18:03:38.127763+00	2017-07-18 18:08:34.381516+00	960			+14046376654								13	f	f			new lead	\N	
2017-02-01 06:06:55.466515+00	2017-02-08 14:10:14.614726+00	961	FOWZIA	HAKYM	+17135917723								1	f	f	fhakym@gmail.com		application submitted - autopay	\N	
2017-08-14 21:07:22.262368+00	2017-08-14 21:07:59.601719+00	962			+14702725462								13	f	f			new lead	\N	
2017-10-31 20:57:26.892952+00	2017-10-31 20:59:59.337375+00	963	Jarwaski	Pounds	+17622435672								13	f	f	jarwaskipounds80@gmail.com		new lead	\N	
2017-12-03 04:23:09.991771+00	2017-12-03 04:23:10.487241+00	964	Jamarious	Mattox	+14702170830								13	f	f	mattoxjamarious@yahoo.com	j mattox	new lead	\N	
2017-10-30 22:38:11.267144+00	2017-10-30 22:42:16.169858+00	965			+18174495102								12	f	f		dallas  tx	new lead	\N	
2016-06-27 15:12:29.343621+00	2017-11-29 18:32:13.820575+00	966	Unknown		+14405432613								1	f	f			new lead	\N	
2017-09-12 13:05:50.639702+00	2017-09-12 13:07:15.732579+00	967	Sharon	Sadler	+14705771311								13	f	f	sadlersharon65@gmail.com		new lead	\N	
2017-06-19 17:43:11.61436+00	2017-06-24 13:45:04.893966+00	968	James	Burns	+17063527210								13	f	f	Dawj27@gmail.com		new lead	\N	
2016-11-04 14:58:03.958658+00	2016-11-04 15:24:49.148619+00	969			+16237605297								1	f	f			new lead	\N	
2017-12-03 15:10:00.892567+00	2017-12-03 15:11:22.908534+00	970			+13044754547								15	f	f			new lead	\N	
2017-03-09 17:47:59.685882+00	2017-11-29 18:38:53.211961+00	971			+14699895605								9	f	f		trucking llc a	new lead	\N	
2017-12-14 04:28:31.837672+00	2017-12-14 04:29:53.750209+00	972	David	Ring	+15132310820								15	f	f	dlring98@yahoo.com		new lead	\N	
2017-05-24 18:31:04.502579+00	2017-11-29 18:38:49.813125+00	973			+13253741790								9	f	f		northstar const	new lead	\N	
2017-04-10 22:20:07.283146+00	2017-11-29 18:38:53.213702+00	974			+16307794488								9	f	f		fielding gina  	new lead	\N	
2017-06-27 23:48:52.420474+00	2017-06-27 23:48:52.474263+00	975	elicia 	rivera	+14075086713								13	f	f	eliciarivera83@gmail.com		new lead	\N	
2017-05-16 19:59:08.973226+00	2017-11-29 18:38:49.811847+00	976			+17318868829								9	f	f		simmons bank   	new lead	\N	
2017-10-26 19:08:41.594644+00	2017-10-26 19:16:17.521301+00	977			+18177566757								12	f	f		dallas  tx	new lead	\N	
2016-11-04 15:57:47.473765+00	2016-11-04 15:57:47.506115+00	978	Laura	Quiroz	+17138001754								1	f	f	laurajquiroz@yahoo.com		new lead	\N	
2016-08-05 21:39:54.242721+00	2016-12-10 00:57:42.908363+00	979			+15132276499								3	f	f			new lead	\N	
2016-07-15 17:57:50.504011+00	2017-11-29 18:31:41.490437+00	980	Lisa	Sapp	+17408521396								1	f	f			new lead	\N	
2017-07-12 14:49:23.224992+00	2017-07-12 14:51:19.404547+00	981			+16787070691								13	f	f			new lead	\N	
2016-08-24 18:12:26.204155+00	2016-12-09 17:10:17.413139+00	982			+16103344871								3	f	f			new lead	\N	
2018-05-09 09:18:05.043991+00	2018-05-09 09:18:21.483464+00	983			+1+266696687								4	f	f			new lead	\N	
2016-11-03 22:46:23.090657+00	2016-11-03 22:49:19.592455+00	984			+14698035783								1	f	f			new lead	\N	
2017-05-04 21:16:39.042193+00	2017-05-04 21:17:45.762216+00	985			+12143948832								12	f	f		dallas  tx	new lead	\N	
2016-07-06 14:56:23.017641+00	2016-12-09 17:06:53.905723+00	986			+18472591942								3	f	f			new lead	\N	
2017-12-27 21:09:53.368774+00	2017-12-27 21:15:44.286674+00	987			+17063523307								13	f	f		bennett michael	new lead	\N	
2017-04-13 14:19:58.201196+00	2017-11-29 18:38:49.804714+00	988			+13392936122								9	f	f			new lead	\N	
2016-08-16 15:46:15.251972+00	2016-12-10 01:05:18.400792+00	989			+16103273221								3	f	f			new lead	\N	
2017-03-09 20:24:33.883712+00	2017-11-29 18:38:53.211982+00	990			+18327203711								9	f	f		m victor	new lead	\N	
2017-08-22 17:53:08.445849+00	2017-08-22 17:54:33.611778+00	991			+18173574904								12	f	f		rxinnovation	new lead	\N	
2017-12-16 17:56:45.59901+00	2017-12-16 18:01:35.846857+00	992			+12145970788								12	f	f		dallas  tx	new lead	\N	
2017-07-11 17:05:07.459523+00	2017-07-11 17:06:27.955865+00	993			+12142988524								12	f	f		tabitha mutua	new lead	\N	
2017-07-17 18:47:30.915184+00	2017-07-17 18:55:41.721993+00	994			+17703694181								13	f	f			new lead	\N	
2016-10-07 13:20:17.895018+00	2016-12-09 17:10:17.413592+00	995			+19083398225								3	f	f			new lead	\N	
2016-07-21 13:15:12.009901+00	2017-11-29 18:32:13.821515+00	996	Unknown	Howard	+13138085981								1	f	f	hpgame313@gmail.com		new lead	\N	
2016-09-01 15:53:31.735283+00	2016-12-09 17:10:17.413361+00	997			+19084796750								3	f	f			new lead	\N	
2016-11-03 13:50:12.706169+00	2016-11-03 13:50:12.737095+00	998	Carlos	Antoline	+18176925754								1	f	f	cantoline@hotmail.com		new lead	\N	
2017-12-06 17:09:36.431316+00	2017-12-06 17:30:53.230174+00	999			+15617197525								15	f	f			new lead	\N	
2017-04-18 16:55:30.631592+00	2017-11-29 18:38:49.805464+00	1000			+14234320462								9	f	f		dolberry andre	new lead	\N	
2017-08-31 23:50:43.524353+00	2017-08-31 23:50:54.834028+00	1001			+17707669294								13	f	f			new lead	\N	
2016-11-25 17:23:13.698814+00	2016-11-25 17:23:13.7297+00	1002	Robert	Kincaid	+19728674368								1	f	f	kincaidlaw@yahoo.com		new lead	\N	
2016-08-23 23:20:11.969703+00	2016-12-10 01:01:51.440715+00	1003			+16193468822								3	f	f			new lead	\N	
2017-04-18 17:20:25.592455+00	2017-11-29 18:47:25.068115+00	1004			+12542142703								8	f	f		cell phone   tx	new lead	\N	
2016-11-01 13:23:08.838192+00	2016-11-01 13:23:08.86405+00	1005	Fred	Harroway	+17705722464								1	f	f	fharroway@lycos.com		new lead	\N	
2017-08-16 16:40:48.326602+00	2017-08-16 16:43:19.563176+00	1006			+17066125593								13	f	f			new lead	\N	
2017-10-07 15:51:16.713824+00	2017-10-07 15:53:01.091588+00	1007			+16823333795								12	f	f		baylor t	new lead	\N	
2017-11-14 14:18:50.758977+00	2017-11-14 14:20:30.776807+00	1008	Billy	Lewis	+14708088245								13	f	f	Billylewis1218@gmail.com		new lead	\N	
2017-04-12 20:47:58.216619+00	2017-04-12 20:50:38.442768+00	1009			+12142886452								12	f	f		euless  tx	new lead	\N	
2017-06-23 21:05:16.866097+00	2017-06-24 13:44:45.085805+00	1010			+14044845487								13	f	f			new lead	\N	
2017-12-01 14:07:42.746876+00	2017-12-01 14:18:51.75889+00	1011			+13046283087								15	f	f			new lead	\N	
2017-10-18 18:16:12.865801+00	2017-10-18 18:18:16.772608+00	1012			+16785985826								13	f	f			new lead	\N	
2016-11-14 19:38:57.34998+00	2016-11-14 19:43:06.758301+00	1013			+14804732372								1	f	f			new lead	\N	
2017-05-22 23:56:47.946119+00	2017-05-23 00:05:35.652631+00	1014			+16825974076								12	f	f		achini amabel	new lead	\N	
2017-12-12 17:11:45.78741+00	2017-12-12 17:30:27.274699+00	1015			+19567841393								15	f	f			new lead	\N	
2016-08-04 17:44:54.494024+00	2017-11-29 18:31:37.368625+00	1016	Jennifer	Araujo	+15623945423								1	f	f	jenniferaraujo42@gmail.com		credit union contracted	\N	
2016-07-08 19:16:14.134283+00	2017-11-29 18:31:41.490375+00	1017	Unknown	Thomas	+16145632262								1	f	f			new lead	\N	
2017-04-18 14:27:13.362678+00	2017-11-29 18:47:25.068108+00	1018			+19034402969								8	f	f		cell phone   tx	new lead	\N	
2017-10-22 16:22:32.652123+00	2017-10-23 13:44:24.79462+00	1019	Stephanie	Wilkerson	+16782528210								13	f	f	Connerstephanie04@gmail.com		select status	\N	
2017-11-11 20:07:36.883703+00	2017-11-11 20:11:14.589516+00	1020			+12109013606								12	f	f		calahan jordan	new lead	\N	
2017-11-01 17:35:51.677617+00	2017-11-01 17:41:18.622559+00	1021	Terrence 	Bailey 	+17063184899								13	f	f	Armystronge1.tb@gmail.com		new lead	\N	
2017-11-29 22:15:06.217748+00	2017-11-29 22:16:02.096449+00	1022	Mike		+12248758574								1	f	f			new lead	\N	
2016-10-05 21:24:58.691202+00	2016-11-09 15:46:59.235348+00	1023			+14438665424								3	f	f			new lead	\N	
2017-09-21 17:54:52.552063+00	2017-09-21 17:59:09.870039+00	1024			+14046707692								13	f	f			new lead	\N	
2016-09-19 15:44:59.257658+00	2016-12-09 17:07:45.331662+00	1025			+14846789800								3	f	f			new lead	\N	
2016-08-09 22:50:23.695223+00	2017-11-29 18:31:37.368782+00	1026	Ernesto	Sandoval	+16612334818								1	f	f	e4n@123.com		application submitted - autopay	\N	
2016-09-30 18:24:13.609859+00	2016-11-09 15:46:59.235303+00	1027			+13022871577								3	f	f			new lead	\N	
2017-04-12 17:46:38.683531+00	2017-08-17 14:35:21.044909+00	1028			+16502647554								12	f	f		v12software	new lead	\N	
2017-04-30 18:25:05.805516+00	2017-11-29 18:38:49.807536+00	1029			+16064843071								9	f	f		cell phone  ky	new lead	\N	
2018-05-13 22:49:22.941157+00	2018-05-13 22:50:32.322509+00	1030	Jizi	Bollon	+17732909650e4		4322 N Clarendon ave			IL	60613		4	f	f	hv13@hotmail.com				
2016-08-17 16:20:04.059856+00	2017-11-29 18:31:37.368554+00	1031			+16615330613								1	f	f			new lead	\N	
2017-03-13 23:41:14.716474+00	2017-11-29 18:38:53.212161+00	1032			+12697438077								9	f	f		sweat jimmy d  	new lead	\N	
2017-09-15 00:44:22.388544+00	2017-09-15 01:06:22.806907+00	1033			+17125467280								12	f	f		albrecht david	new lead	\N	
2017-11-13 21:06:12.908589+00	2017-11-13 21:07:49.314182+00	1034			+14125590480								12	f	f		ambler michael 	new lead	\N	
2016-05-16 18:20:52.44442+00	2016-05-16 18:20:52.444444+00	1035	Harry		+1+sdfsdsdfsdf								1	f	f			new lead	\N	
2017-08-22 00:05:10.638117+00	2017-08-22 00:05:10.699317+00	1036	Marissa	Collins	+17062862113								13	f	f	marissacollins7911@gmail.com		new lead	\N	
2017-12-09 15:00:58.850476+00	2017-12-09 15:01:06.181461+00	1037			+16787243497								14	f	f			new lead	\N	
2017-03-12 18:10:41.155793+00	2017-11-29 18:47:25.0677+00	1038			+12146322449								8	f	f		jackson alice	new lead	\N	
2017-12-19 16:21:46.692506+00	2017-12-19 16:23:21.198528+00	1039			+18172016124								12	f	f		thompson bobby	new lead	\N	
2016-10-05 18:28:09.822099+00	2016-12-10 01:00:18.568462+00	1040			+16192632124								3	f	f			new lead	\N	
2017-04-22 16:19:31.167248+00	2017-11-29 18:38:49.806355+00	1041			+12149090355								9	f	f		moghaddam idin	new lead	\N	
2017-05-30 17:36:30.615383+00	2017-11-29 18:38:49.814047+00	1042			+16822382900								9	f	f		hng melinda    	new lead	\N	
2017-09-22 01:32:48.477722+00	2017-09-22 01:33:35.41243+00	1043			+19036584913								12	f	f		cell phone   tx	new lead	\N	
2017-12-12 18:45:53.018776+00	2017-12-12 18:46:10.264741+00	1044			+17707497720								13	f	f		atlanta  ga	select status	\N	
2017-12-06 00:32:08.766765+00	2017-12-06 00:35:03.976644+00	1045	Ismael	Velasquez	+12142065146								15	f	f	Letty6791@gmail.com		new lead	\N	
2017-12-23 18:05:09.015421+00	2017-12-23 18:15:55.966833+00	1046			+13253723764								15	f	f			new lead	\N	
2016-10-31 19:51:04.219698+00	2016-10-31 20:22:37.39167+00	1047			+19725240809								1	f	f			new lead	\N	
2017-05-05 21:37:32.432844+00	2017-11-29 18:38:49.810137+00	1048			+12515896361								9	f	f		mobile  al	new lead	\N	
2017-12-01 20:16:07.161151+00	2017-12-01 20:30:25.204147+00	1049	Carlos	Juarez	+17738183464								15	f	f	cjuarezvcm@gmail.com		new lead	\N	
2017-11-24 14:57:20.746199+00	2017-11-24 14:58:22.637742+00	1050			+18177032428								12	f	f		garcia jessie	new lead	\N	
2016-06-30 18:38:19.194459+00	2017-11-29 18:31:41.490262+00	1051	Unknown	Tyler	+16144416642								1	f	f	na@noemail.com		new lead	\N	
2017-05-09 16:35:28.242818+00	2017-11-29 18:38:49.810569+00	1052			+17864060996								9	f	f		gonzalez guille	new lead	\N	
2016-09-01 19:30:04.229304+00	2016-12-10 01:01:51.440736+00	1053			+16194758865								3	f	f			new lead	\N	
2017-11-17 16:55:07.255244+00	2017-11-17 17:26:16.904314+00	1054			+18178991617								12	f	f		dial renea	new lead	\N	
2016-09-21 17:28:36.331173+00	2016-12-10 01:01:54.351671+00	1055			+16192141325								3	f	f			new lead	\N	
2017-05-12 21:22:59.199682+00	2017-11-29 18:38:49.811402+00	1056			+12817570736								9	f	f		cell phone   tx	new lead	\N	
2017-09-21 19:30:14.512977+00	2017-09-21 19:52:29.446454+00	1057			+16825529421								12	f	f		dallas  tx	new lead	\N	
2017-07-06 22:41:56.961967+00	2017-07-06 22:43:06.819753+00	1058			+13126015501								12	f	f		cars.com	new lead	\N	
2017-09-03 16:08:22.847799+00	2017-09-03 16:09:18.64689+00	1059			+16823654958								12	f	f		castellanos edi	new lead	\N	
2017-08-16 01:27:03.547731+00	2017-08-16 01:27:03.547798+00	1060	Brandon	Leidecker	+14049819076								13	f	f	brandonleidecker111@gmail.com		new lead	\N	
2016-08-19 19:19:30.224569+00	2016-12-10 00:55:45.165384+00	1061			+16109556013								3	f	f			new lead	\N	
2016-12-07 23:45:52.956796+00	2016-12-08 00:12:25.067454+00	1062			+14692629790								1	f	f			new lead	\N	
2017-12-25 17:42:04.394151+00	2017-12-25 17:43:26.643404+00	1063	Jayne	Morgan	+12103232700								15	f	f	jayne.z_morgan@yahoo.com		new lead	\N	
2017-10-09 18:00:51.198508+00	2017-10-09 18:01:35.64476+00	1064	Michael 	Doran 	+16787276402								13	f	f	mike@shintone-usa.com		new lead	\N	
2016-08-01 20:21:21.922365+00	2016-12-09 17:06:53.905751+00	1065			+12676702400								3	f	f			new lead	\N	
2017-09-09 21:27:36.684408+00	2017-09-09 21:32:10.610836+00	1066			+18178977327								12	f	f		hornbake brenda	new lead	\N	
2017-10-30 19:47:11.62817+00	2017-10-30 19:49:46.657802+00	1067			+14076940801								13	f	f			new lead	\N	
2017-05-15 21:53:58.750283+00	2017-11-29 18:38:49.811629+00	1068			+12142635133								9	f	f		wireless caller	new lead	\N	
2017-04-27 19:25:46.683179+00	2017-11-29 18:38:49.807052+00	1069			+19722520083								9	f	f		big t branding 	new lead	\N	
2017-12-26 17:54:35.175474+00	2017-12-26 17:56:02.472813+00	1070	Lee	Cavender	+17706522689								13	f	f	NCL4@aol.com		new lead	\N	
2017-08-02 18:19:34.552441+00	2017-08-02 18:23:10.987365+00	1071			+19402553316								12	f	f		cell phone   tx	new lead	\N	
2017-08-14 23:36:31.957189+00	2017-08-14 23:36:31.957252+00	1072	Andrea	Young	+17063257505								13	f	f	deeneenlrobinson@gmail.com		new lead	\N	
2017-09-12 14:44:46.376988+00	2017-09-12 15:02:00.207326+00	1073			+18172889883								12	f	f		moncrief inst	new lead	\N	
2016-11-04 18:26:00.856943+00	2016-11-04 18:48:46.650432+00	1074			+17137396880								1	f	f			new lead	\N	
2017-04-09 14:07:13.787995+00	2017-11-29 18:38:53.213616+00	1075			+15203909033								9	f	f		cell phone   az	new lead	\N	
2017-12-05 19:55:14.656709+00	2017-12-05 19:56:58.045513+00	1076			+17138362123								12	f	f		shara williams	new lead	\N	
2016-08-02 20:16:22.695403+00	2016-08-02 20:17:34.991959+00	1077			+15133843072								1	f	f			new lead	\N	
2016-10-05 17:42:23.524427+00	2016-12-10 01:01:00.200256+00	1078			+18312274313								3	f	f			new lead	\N	
2017-09-18 21:08:29.696198+00	2017-09-18 21:18:49.97503+00	1079			+12144376279								12	f	f		cell phone   tx	new lead	\N	
2016-10-05 15:05:39.11474+00	2016-12-10 01:01:51.441023+00	1080			+16199179751								3	f	f			new lead	\N	
2017-06-22 12:08:08.565594+00	2017-06-22 12:08:08.618722+00	1081	Cortez	Humphrey	+17708730045								13	f	f	cortezhumphrey34@gmail.com		new lead	\N	
2016-11-02 22:16:02.371805+00	2016-11-02 22:33:36.687247+00	1082			+19724950369								1	f	f			new lead	\N	
2016-10-31 21:55:41.580317+00	2016-10-31 22:02:27.028095+00	1083			+16787404243								1	f	f			new lead	\N	
2017-03-12 17:45:20.943115+00	2017-03-12 17:45:20.94319+00	1084	Niwale Dishman		+15175217731								1	f	f	deeplaidpharmaco@msgsafe.io		new lead	\N	
2017-05-24 19:10:24.028905+00	2017-08-17 14:35:21.045334+00	1085			+12147795399								12	f	f		jimenez arianna	new lead	\N	
2017-06-28 19:52:12.604275+00	2017-08-17 14:35:21.045493+00	1086			+18178706838								12	f	f		dallas  tx	new lead	\N	
2017-04-11 18:35:13.801606+00	2017-11-29 18:38:53.213773+00	1087			+12144481181								9	f	f		dalcan manageme	new lead	\N	
2017-10-27 00:10:31.562329+00	2017-10-27 00:10:39.632739+00	1088			+16789436858								13	f	f			new lead	\N	
2017-10-13 20:28:33.535528+00	2017-10-13 20:34:53.042596+00	1089	ShanTerrius	McGuire	+17063725696								13	f	f	mcguireshanterrius@yahoo.com		new lead	\N	
2017-12-29 19:27:04.796906+00	2017-12-29 19:29:28.512348+00	1090			+16823675618								12	f	f		steve martin	new lead	\N	
2017-12-02 23:52:30.115207+00	2017-12-03 00:14:46.092104+00	1091			+14697654687								15	f	f			new lead	\N	
2017-12-14 21:14:42.258636+00	2017-12-14 21:15:45.151229+00	1092			+17633178643								15	f	f			new lead	\N	
2016-05-25 14:39:20.451055+00	2016-05-25 14:40:14.337819+00	1093	TISHA	COOLEY	+19379442067								1	f	f	tcooley@safehavenhealth.com		new lead	\N	
2017-09-28 22:27:33.418419+00	2017-09-28 22:28:06.917553+00	1094			+15639990080								13	f	f			new lead	\N	
2016-11-01 19:29:42.17735+00	2016-11-01 19:50:12.564329+00	1095			+14694014530								1	f	f			new lead	\N	
2017-07-25 19:20:33.632352+00	2017-07-25 19:26:21.572388+00	1096			+16789926729								13	f	f			new lead	\N	
2017-12-12 22:40:29.998809+00	2017-12-12 22:45:04.438647+00	1097			+18015564278								15	f	f			new lead	\N	
2017-12-06 23:04:46.786885+00	2017-12-06 23:24:12.926529+00	1098			+15054270320								15	f	f			new lead	\N	
2017-05-04 13:52:50.595542+00	2017-08-17 14:35:21.045111+00	1099			+19407355167								12	f	f		williams agnes	new lead	\N	
2016-07-07 15:54:08.756529+00	2016-12-10 01:05:18.400623+00	1100			+16107050295								3	f	f			new lead	\N	
2017-12-13 17:34:35.918445+00	2017-12-13 21:17:15.412922+00	1101	Wayne	Lee	+16782660927								13	f	f	Wayne.lee2029@gmail.com		select status	\N	
2016-11-01 19:17:19.828693+00	2016-11-01 19:40:25.111922+00	1102			+17045884230								1	f	f			new lead	\N	
2017-12-05 23:32:43.654413+00	2017-12-05 23:54:59.950525+00	1103	Michael	Hughes	+13184553864								15	f	f	corona0278@gmail.com		new lead	\N	
2017-06-17 21:57:18.892582+00	2017-06-24 13:45:04.893958+00	1104			+16784997660								13	f	f			new lead	\N	
2017-03-13 17:11:04.260381+00	2017-11-29 18:38:53.212111+00	1105			+14693354888								9	f	f		ochoa maria	new lead	\N	
2017-04-22 17:55:02.117625+00	2017-11-29 18:47:25.068235+00	1106			+14079134537								8	f	f		challa viswa sr	new lead	\N	
2016-09-29 17:07:36.247858+00	2016-12-10 01:03:35.620566+00	1107			+12013640842								3	f	f			new lead	\N	
2016-07-27 16:25:06.822561+00	2016-12-10 01:05:18.400715+00	1108			+16102020009								3	f	f			new lead	\N	
2016-11-03 20:13:23.863058+00	2016-11-03 20:13:23.88477+00	1109	Miranda	McNeal	+19125318077								1	f	f	mirandamcneal08@gmail.com		new lead	\N	
2017-07-22 21:01:44.359876+00	2017-07-22 21:05:32.822009+00	1110			+16825510991								12	f	f		dallas  tx	new lead	\N	
2017-05-06 18:28:40.231801+00	2017-11-29 18:38:53.215185+00	1111			+13864798700								9	f	f		caros jason    	new lead	\N	
2017-05-24 16:23:15.070862+00	2017-11-29 18:38:49.813052+00	1112			+16784730286								9	f	f		1st citizens ba	new lead	\N	
2016-11-03 22:22:23.156044+00	2016-11-03 22:58:32.730067+00	1113			+18163481460								1	f	f			new lead	\N	
2016-07-25 20:36:02.940926+00	2016-07-25 20:38:03.793906+00	1114	Scott	Shaw	+15138249012								1	f	f	sshaw4444@gmail.com		new lead	\N	
2016-09-07 14:26:48.356748+00	2016-12-09 17:07:45.33163+00	1115			+16108644539								3	f	f			new lead	\N	
2017-08-10 12:32:36.9575+00	2017-08-10 12:38:18.812818+00	1116			+17819643599								13	f	f			new lead	\N	
2017-07-24 23:34:58.502238+00	2017-07-24 23:37:50.148934+00	1117			+18177273293								12	f	f		lara cornelio	new lead	\N	
2017-10-19 15:24:05.306568+00	2017-10-19 15:30:05.46845+00	1118	Amanda	Cowart	+17065997696								13	f	f	materhaig@gmail.com		new lead	\N	
2016-08-17 17:30:41.361117+00	2017-11-29 18:31:37.368968+00	1119	Bermadette 	Segura	+16615403899								1	f	f	indianstar138@yahoo.com		application submitted - autopay	\N	
2017-04-17 19:53:58.879287+00	2017-11-29 18:38:49.805268+00	1120			+19167989868								9	f	f		connect us     	new lead	\N	
2017-05-11 19:16:43.078023+00	2017-11-29 18:38:53.214241+00	1121			+15056929611								9	f	f		ryals joe      	new lead	\N	
2017-09-23 14:12:14.357573+00	2017-09-23 14:15:13.067536+00	1122			+17069737574								13	f	f			new lead	\N	
2016-11-02 16:56:08.746908+00	2016-11-02 16:56:08.784441+00	1123	ryan	hemings	+15617220347								1	f	f	rhemings@rangeline.com		new lead	\N	
2017-04-17 17:48:30.10022+00	2017-11-29 18:38:53.214078+00	1124			+18174496725								9	f	f		castillo perez	new lead	\N	
2017-11-11 20:21:30.664428+00	2017-11-11 20:44:40.795704+00	1125			+1+527774905641								12	f	f		restricted	new lead	\N	
2017-04-11 16:28:54.19999+00	2017-05-17 15:41:07.224327+00	1126			+19723414247								12	f	f		la h	new lead	\N	
2016-07-25 22:26:50.808457+00	2016-07-26 12:47:48.826197+00	1127	Julie	Borowitz	+19206763233								1	f	f	artyjewelz@yahoo.com		new lead	\N	
2017-12-02 16:57:25.290451+00	2017-12-02 18:14:39.212724+00	1128			+16785772467								13	f	f		roswell  ga	select status	\N	
2017-12-13 14:39:12.459529+00	2017-12-13 14:39:36.237495+00	1129			+17067661058								14	f	f			new lead	\N	
2016-07-07 16:35:28.619243+00	2016-12-10 00:57:54.467621+00	1130			+19283493105								3	f	f			new lead	\N	
2017-05-02 16:31:50.018522+00	2017-11-29 18:47:25.068355+00	1131			+14698535638								8	f	f		cell phone   tx	new lead	\N	
2016-07-26 14:18:45.624757+00	2017-11-29 18:31:10.261551+00	1132			+15139320907								1	f	f			new lead	\N	
2016-11-02 15:26:37.020176+00	2016-11-02 15:26:37.046024+00	1133	Gale	Farley	+14042183734								1	f	f	gale.farley@vnhs.org		new lead	\N	
2016-11-09 17:02:46.211287+00	2016-11-09 17:09:26.205986+00	1134			+19105750236								1	f	f			new lead	\N	
2017-06-29 21:20:51.919525+00	2017-08-17 14:35:21.045521+00	1135			+18177575511								12	f	f		foster q	new lead	\N	
2016-10-31 17:40:56.820743+00	2016-12-09 17:10:17.413649+00	1136			+16102160263								3	f	f			new lead	\N	
2017-12-23 15:38:04.908819+00	2017-12-23 15:43:36.721088+00	1137	Marquise	King	+14707659985								14	f	f	Quiseking7495@yahoo.com		new lead	\N	
2016-06-02 18:31:12.703099+00	2016-12-09 17:06:53.905673+00	1138	Unknown		+18107654662								3	f	f			new lead	\N	
2017-12-21 21:10:03.537672+00	2017-12-21 21:11:08.005943+00	1139			+14325597721								12	f	f		fry andrew	new lead	\N	
2017-12-15 15:39:14.869488+00	2017-12-15 15:39:18.08739+00	1140			+12674859836								10	f	f			new lead	\N	
2017-05-08 18:55:03.801466+00	2017-11-29 18:38:49.810396+00	1141			+12146806313								9	f	f		wilkins r      	new lead	\N	
2017-08-12 21:03:23.976162+00	2017-08-12 21:05:42.540756+00	1142			+14708489650								13	f	f			new lead	\N	
2016-05-27 18:28:19.02801+00	2017-11-29 18:31:10.26055+00	1143	Unknown		+15133799701								1	f	f			new lead	\N	
2016-11-25 12:37:24.300926+00	2016-12-09 17:10:17.413685+00	1144			+19087300430								3	f	f			new lead	\N	
2016-10-19 01:10:31.624807+00	2016-12-10 01:05:18.401189+00	1145			+16106350598								3	f	f			new lead	\N	
2016-09-07 17:07:16.121672+00	2016-12-10 01:01:51.440807+00	1146			+16198898378								3	f	f			new lead	\N	
2017-10-09 18:19:20.906649+00	2017-10-09 18:22:53.938019+00	1147	Giovonni	Burgess	+17062860455								13	f	f	Giovonni_burgess@yahoo.com		new lead	\N	
2017-11-05 21:49:09.626113+00	2017-11-05 21:55:41.540273+00	1148			+16626713554								13	f	f			new lead	\N	
2016-11-08 02:03:39.975708+00	2016-11-08 02:03:39.997873+00	1149	Michael	Moller	+17046496535								1	f	f	sales@transworldexport.com		new lead	\N	
2016-07-06 13:24:31.804481+00	2016-07-06 13:28:23.799264+00	1150	Kevin	Shingleton	+13305659885								1	f	f	kshingleton0805@yahoo.com		new lead	\N	
2017-11-07 22:38:24.434235+00	2017-11-07 22:39:18.533745+00	1151			+16824041989								12	f	f		kelly lea	new lead	\N	
2016-11-12 00:10:05.837846+00	2016-11-12 00:11:45.186269+00	1152			+12812352052								1	f	f			new lead	\N	
2017-11-22 21:39:24.005951+00	2017-11-22 21:49:51.786806+00	1153	WILLIAM	KING	+14047842522								13	f	f			select status	\N	
2017-05-02 16:24:51.271307+00	2017-11-29 18:38:49.808677+00	1154			+14694585223								9	f	f		unavailable    	new lead	\N	
2016-07-14 19:33:42.379345+00	2016-07-14 20:35:44.681478+00	1155	Jeremy	Bish	+13302836989								1	f	f	4bishs@gmail.com		new lead	\N	
2017-11-06 17:04:48.206857+00	2017-11-06 17:05:46.918428+00	1156			+17069748120								13	f	f			new lead	\N	
2017-05-15 16:30:58.867033+00	2017-11-29 18:38:49.81153+00	1157			+12149145047								9	f	f		cooper ryan    	new lead	\N	
2016-05-25 19:11:39.302794+00	2017-11-29 18:31:29.180633+00	1158	Unknown		+13309299967								1	f	f			new lead	\N	
2017-04-21 15:55:42.441313+00	2017-11-29 18:38:53.214369+00	1159			+18178347480								9	f	f		fort worth  tx	new lead	\N	
2016-09-09 16:17:43.674045+00	2016-12-10 01:01:51.440905+00	1160			+18583358692								3	f	f			new lead	\N	
2017-09-22 00:04:00.958815+00	2017-09-22 00:04:01.030015+00	1161	Chanlar	Baity	+16784148409								13	f	f	chanlarb@yahoo.com		new lead	\N	
2016-05-06 15:05:55.15433+00	2016-05-06 15:06:34.34935+00	1162	Jason		+1773								1	f	f			new lead	\N	
2017-06-01 17:35:54.324402+00	2017-11-29 18:31:29.180664+00	1163			+18609224888								1	f	f			new lead	\N	
2016-09-12 15:53:44.671417+00	2016-12-10 01:05:18.400958+00	1164			+16107755321								3	f	f			new lead	\N	
2017-12-18 23:23:28.666635+00	2017-12-18 23:29:22.439151+00	1165	candy	fisk	+16789067340								13	f	f	candyafisk@gmail.com		new lead	\N	
2016-11-03 21:55:23.822059+00	2016-11-03 21:58:12.42721+00	1166			+16627220733								1	f	f			new lead	\N	
2017-12-02 14:26:26.837817+00	2017-12-02 14:28:00.463206+00	1167			+17062545030								13	f	f		athens  ga	select status	\N	
2017-11-30 23:53:30.854345+00	2017-11-30 23:54:59.332074+00	1168	Danyell	Woodson	+14702273761								13	f	f	deejackson7626@gmail.com		select status	\N	
2016-07-03 23:33:49.711109+00	2016-07-05 12:49:22.084218+00	1169	Darleen	Ellis	+19373693278								1	f	f	dtuckerellis223@gmail.com		new lead	\N	
2017-08-31 02:22:35.667323+00	2017-08-31 02:22:35.714017+00	1170	ERICA	ROBERSON	+16782585341								13	f	f	ericacarter31794@gmail.com		new lead	\N	
2017-04-19 15:37:58.522407+00	2017-11-29 18:38:49.805703+00	1171			+18163487361								9	f	f		adesa ks city  	new lead	\N	
2016-11-04 17:58:28.17995+00	2016-11-04 18:45:25.7498+00	1172			+13617590237								1	f	f			new lead	\N	
2016-11-03 15:55:56.639047+00	2016-11-03 15:55:56.667097+00	1173	John	Fenderso 	+18323686966								1	f	f	fendejohn@gmail.com		new lead	\N	
2017-08-23 15:06:31.930268+00	2017-08-23 15:12:03.515803+00	1174			+17705369921								13	f	f			new lead	\N	
2017-04-04 13:57:59.793585+00	2017-11-29 18:38:53.213316+00	1175			+12143958871								9	f	f		fort worth  tx	new lead	\N	
2017-03-08 18:52:02.005374+00	2017-11-29 18:38:53.211874+00	1176			+13143228611								9	f	f		contractors s	new lead	\N	
2017-05-25 18:36:05.376894+00	2017-08-17 14:35:21.045341+00	1177			+18173683209								12	f	f		wireless caller	new lead	\N	
2016-10-05 19:23:00.929997+00	2016-12-09 17:10:17.413549+00	1178			+19082834071								3	f	f			new lead	\N	
2016-11-05 20:51:04.244892+00	2016-11-05 20:52:43.791478+00	1179	Yoann	Brugiere	+13053014007								1	f	f	yoann.brugiere@gmail.com		new lead	\N	
2017-11-02 13:42:26.461832+00	2017-11-02 13:44:53.262059+00	1180			+16787605962								13	f	f			new lead	\N	
2017-12-08 15:22:40.629719+00	2017-12-08 15:39:21.128266+00	1181			+13047120581								15	f	f			new lead	\N	
2016-11-03 03:05:53.54443+00	2016-11-03 03:05:53.58614+00	1182	ROBERT	HARPER	+12812425420								1	f	f	HRJHARPER@AOL.COM		new lead	\N	
2017-12-08 15:43:25.685861+00	2017-12-08 16:20:18.963975+00	1183			+16164069165								15	f	f			new lead	\N	
2017-09-08 22:10:22.300741+00	2017-09-08 22:16:19.478553+00	1184	Waikeitha	Gibbs	+17062475358								13	f	f	waikeithagibbs@yahoo.com		new lead	\N	
2017-12-13 18:10:19.059372+00	2017-12-13 18:36:13.288538+00	1185			+14352104153								15	f	f			new lead	\N	
2017-12-20 18:04:25.13767+00	2017-12-20 18:05:15.361858+00	1186			+13039313734								15	f	f			new lead	\N	
2017-04-22 20:12:18.960217+00	2017-11-29 18:38:53.21444+00	1187			+19018494102								9	f	f		ben ferguson en	new lead	\N	
2017-05-03 22:48:19.850772+00	2017-08-17 14:35:21.045104+00	1188			+18177565417								12	f	f		dallas  tx	new lead	\N	
2016-11-02 18:20:16.229715+00	2016-11-02 18:24:36.463002+00	1189	Otto	Diaz	+18615754023								1	f	f	otto_diaz@yahoo.com		application submitted - credit union	\N	
2017-11-29 23:54:35.693106+00	2017-11-29 23:56:30.090782+00	1190			+16824122921								12	f	f		griffin fred	new lead	\N	
2017-03-24 21:46:12.802454+00	2017-03-25 21:52:43.37487+00	1191			+15047233943								12	f	f		hammond  la	new lead	\N	
2016-11-06 16:35:33.939222+00	2016-11-06 16:35:33.968669+00	1192	benjamin	werft	+16237073855								1	f	f	benwerft@hotmail.com		new lead	\N	
2016-11-05 21:31:39.389454+00	2016-11-05 21:32:07.99974+00	1193			+14698266757								1	f	f			new lead	\N	
2017-04-27 15:53:49.573449+00	2017-11-29 18:38:49.806908+00	1194			+13126015438								9	f	f		cars.com	new lead	\N	
2017-11-09 04:09:35.390733+00	2017-11-09 04:09:56.875261+00	1195			+16786304080								13	f	f			new lead	\N	
2017-10-31 20:37:20.762028+00	2017-10-31 20:37:35.168644+00	1196			+14702145372								13	f	f			new lead	\N	
2017-08-07 15:41:04.538958+00	2017-08-17 14:35:21.045752+00	1197			+18177578664								12	f	f		burton jamar	new lead	\N	
2017-03-23 16:25:39.389518+00	2017-11-29 18:38:53.212819+00	1198			+12148768011								9	f	f		rnel	new lead	\N	
2016-10-20 20:56:42.216889+00	2016-12-10 01:01:54.351678+00	1199			+15153052145								3	f	f			new lead	\N	
2017-05-10 21:57:57.721001+00	2017-11-29 18:38:49.811034+00	1200			+12148865388								9	f	f		vaughn katie   	new lead	\N	
2017-12-30 21:04:24.134802+00	2017-12-30 21:09:10.212795+00	1201			+12812294469								12	f	f		turbine air sys	new lead	\N	
2016-11-11 02:26:30.420849+00	2016-11-11 02:26:30.449118+00	1202	Pavlo	Polyakov	+19175627599								1	f	f	zeemaan@gmail.com		new lead	\N	
2017-12-06 16:16:28.930026+00	2017-12-06 16:31:00.89746+00	1203			+15806341471								15	f	f			new lead	\N	
2017-05-23 19:31:50.210722+00	2017-11-29 18:38:49.812897+00	1204			+19722514550								9	f	f		j tucker	new lead	\N	
2017-02-23 14:49:32.199994+00	2017-11-29 18:32:10.40655+00	1205			+14694787560								1	f	f			new lead	\N	
2017-12-19 20:01:39.758463+00	2017-12-19 20:23:24.669318+00	1206			+18177563609								12	f	f		dallas  tx	new lead	\N	
2017-04-25 14:51:28.714279+00	2017-11-29 18:38:49.806554+00	1207			+12145320159								9	f	f		valentine peggy	new lead	\N	
2017-03-30 20:37:39.86717+00	2017-11-29 18:38:53.21317+00	1208			+12104169400								9	f	f		little rhein st	new lead	\N	
2017-07-29 19:01:46.963979+00	2017-07-29 19:02:45.513279+00	1209			+12294055697								13	f	f			new lead	\N	
2017-04-18 22:32:12.087656+00	2017-11-29 18:38:49.805631+00	1210			+19725134244								9	f	f		cano raul	new lead	\N	
2016-10-05 19:46:10.933975+00	2016-12-09 17:10:17.413556+00	1211			+19083879731								3	f	f			new lead	\N	
2017-03-23 17:45:09.219435+00	2017-11-29 18:38:53.212826+00	1212			+14693360317								9	f	f		morris cynthia	new lead	\N	
2016-08-13 01:42:36.0017+00	2016-08-15 12:16:04.408341+00	1213	David	Villegas	+16613739408								1	f	f	daviddan@att.net		application submitted - autopay	\N	
2016-10-14 23:21:40.215795+00	2016-12-10 01:00:18.568511+00	1214			+16194239453								3	f	f			new lead	\N	
2017-12-28 16:50:24.620662+00	2017-12-28 16:52:40.043719+00	1215			+15864219847								15	f	f			new lead	\N	
2017-07-27 18:25:16.183432+00	2017-07-27 18:34:26.785726+00	1216	Lakeisha	Fulton	+17065402330								13	f	f	Keysfulton@gmail.com		new lead	\N	
2016-09-30 19:39:10.212103+00	2017-02-11 20:02:07.779559+00	1217			+19086044806								3	f	f			new lead	\N	
2016-10-05 15:58:11.429936+00	2017-02-11 20:02:07.779597+00	1218			+19086657873								3	f	f			new lead	\N	
2017-06-20 17:50:12.431889+00	2017-06-24 13:45:04.894011+00	1220			+16788656217								13	f	f			new lead	\N	
2016-06-03 20:09:21.376877+00	2017-11-29 18:31:37.368247+00	1221	Spam		+15043389833								1	f	f			new lead	\N	
2016-09-07 18:23:15.851307+00	2016-12-09 17:07:45.331647+00	1222			+16103581471								3	f	f			new lead	\N	
2017-12-07 18:51:05.250919+00	2017-12-07 19:04:14.617051+00	1223			+13039793023								15	f	f			new lead	\N	
2017-08-07 15:49:20.46326+00	2017-08-07 15:49:58.681919+00	1224			+17063462844								13	f	f			new lead	\N	
2017-04-15 19:59:58.803596+00	2017-11-29 18:38:49.80514+00	1225			+12147737774								9	f	f		united states l	new lead	\N	
2017-09-28 14:27:37.536398+00	2017-09-28 14:28:57.767159+00	1226	Casity	Whitley	+17063001392								13	f	f	casitywhitley@gmail.com		new lead	\N	
2017-03-21 13:15:51.106112+00	2017-11-29 18:38:53.212707+00	1227			+18126778730								9	f	f			new lead	\N	
2016-11-16 01:43:09.464438+00	2016-11-16 01:43:09.495287+00	1228	Paul	Delury	+18168203950								1	f	f	pauldelury57@gmail.com		new lead	\N	
2018-01-01 02:01:30.884442+00	2018-01-01 02:01:30.970203+00	1229	Jeremiah	Jenkins	+14045739743								13	f	f	Mj19922013@gmail.com		new lead	\N	
2017-07-06 13:03:44.520097+00	2017-07-06 13:11:43.262137+00	1230	Eugene 	Scott 	+16799089238								13	f	f	scott36@gmail.com		select status	\N	
2016-11-01 23:32:30.391839+00	2016-11-01 23:32:30.418557+00	1231	Jean-Christophe	Priser	+18323314450								1	f	f	priserjc@yahoo.fr		new lead	\N	
2017-09-18 20:51:07.503084+00	2017-09-18 20:56:04.161342+00	1232			+17064272216								13	f	f			new lead	\N	
2017-04-18 19:14:17.228148+00	2017-11-29 18:38:49.805485+00	1233			+17866478430								9	f	f		wireless caller	new lead	\N	
2017-08-21 18:36:31.000837+00	2017-08-21 18:37:32.306075+00	1234			+19724627507								12	f	f		moriarty james	new lead	\N	
2017-10-27 17:15:41.586752+00	2017-10-27 17:16:49.054488+00	1235	Catherine		+16789061586								13	f	f	catmiller88@gmail.com		new lead	\N	
2017-11-28 18:36:50.439556+00	2017-11-28 18:37:41.200062+00	1236			+14046414043								13	f	f		yousuf lea	new lead	\N	
2017-04-22 23:31:05.922788+00	2017-11-29 18:38:53.214468+00	1237			+18178885304								9	f	f		robbins nancy  	new lead	\N	
2016-08-15 19:43:10.794557+00	2016-12-10 01:05:18.400771+00	1238			+12158556790								3	f	f			new lead	\N	
2016-10-07 18:09:40.06398+00	2016-12-10 01:05:18.401103+00	1239			+16103480885								3	f	f			new lead	\N	
2016-09-20 13:58:23.922369+00	2016-12-09 17:06:53.905949+00	1240			+12157853227								3	f	f			new lead	\N	
2016-12-01 16:57:52.515857+00	2016-12-10 01:01:00.200621+00	1241			+16318979500								3	f	f			new lead	\N	
2017-12-27 16:19:43.837137+00	2017-12-27 16:20:12.969825+00	1242			+14043302021								14	f	f			new lead	\N	
2017-05-22 17:20:49.83147+00	2017-08-17 14:35:21.045298+00	1243			+16822521831								12	f	f		euless  tx	new lead	\N	
2017-12-26 20:13:00.933574+00	2017-12-26 20:26:00.858154+00	1244			+16186140063								15	f	f			new lead	\N	
2017-08-14 20:37:48.380639+00	2017-08-17 14:35:21.045838+00	1245			+15016503869								12	f	f		trimble anjelic	new lead	\N	
2017-11-13 21:15:10.336551+00	2017-11-13 21:16:01.948836+00	1246			+16822608957								12	f	f		euless  tx	new lead	\N	
2016-09-19 18:26:35.363617+00	2017-11-29 18:31:37.36914+00	1247			+16618780810								1	f	f			new lead	\N	
2017-12-17 10:06:54.587065+00	2017-12-18 13:55:42.343006+00	1248	Gwen	Sutton	+17702036089								13	f	f	gwensutton5@gmail.com		select status	\N	
2017-04-08 21:10:08.145354+00	2017-11-29 18:38:53.213519+00	1249			+18068912530								9	f	f		cell phone   tx	new lead	\N	
2016-11-17 05:33:12.461131+00	2016-11-17 05:33:12.491374+00	1250	Kathryn	Inscoe	+19196097428								1	f	f	kmins0914@gmail.com		new lead	\N	
2017-05-03 19:34:48.140422+00	2017-11-29 18:38:49.809408+00	1251			+17185301541								9	f	f		manhattan  ny	new lead	\N	
2016-08-29 18:16:00.145681+00	2017-11-29 18:31:56.600168+00	1252			+15702870635								1	f	f			general interest	\N	
2017-04-20 22:07:49.327626+00	2017-11-29 18:47:25.068193+00	1253			+12143018573								8	f	f		irving  tx	new lead	\N	
2017-04-13 22:11:36.013261+00	2017-11-29 18:47:25.068024+00	1254			+14694759232								8	f	f		cell phone   tx	new lead	\N	
2017-11-14 22:26:46.530857+00	2017-11-14 22:29:02.659863+00	1255	Cachet	Goodley	+16783688763								13	f	f	Cachetgoodley@ymail.com		select status	\N	
2017-09-30 14:44:16.126776+00	2017-10-11 15:22:40.274807+00	1256	Ashley	Charles	+16786644776								13	f	f	mobleya08@gmail.com		select status	\N	
2017-09-26 18:25:54.789459+00	2017-09-26 18:34:32.183673+00	1257			+15852816635								13	f	f			new lead	\N	
2016-11-04 15:29:57.323819+00	2017-01-27 21:12:23.813967+00	1258			+19725524427								1	f	f			new lead	\N	
2016-11-01 14:17:38.841527+00	2016-11-01 14:53:27.376642+00	1259	james	dillard	+19194183350								1	f	f	ncjbd@yahoo.com		new lead	\N	
2016-11-22 21:55:02.792968+00	2016-11-22 21:59:49.647721+00	1260			+13143583711								1	f	f			new lead	\N	
2017-10-07 15:31:47.688965+00	2017-10-07 15:33:39.957248+00	1261			+14703508179								13	f	f			new lead	\N	
2017-10-03 00:55:27.900332+00	2017-10-11 14:29:25.374191+00	1262	Ebony	Sims	+16786930050								13	f	f	Ebonysims0720@gmail.com		select status	\N	
2017-05-20 18:59:05.731657+00	2017-11-29 18:38:49.812428+00	1263			+17138983164								9	f	f		cell phone   tx	new lead	\N	
2016-11-03 18:10:15.833343+00	2016-11-03 18:32:39.12712+00	1264			+14808140065								1	f	f			new lead	\N	
2016-07-01 16:21:29.49263+00	2017-11-29 18:32:13.821202+00	1265	Unknown	Henderson	+13136876715								1	f	f	mhenderson0105@gmail.com		new lead	\N	
2017-03-24 21:33:53.30989+00	2017-11-29 18:38:53.212909+00	1266			+14095504479								9	f	f		abarca pedro   	new lead	\N	
2017-03-23 19:58:12.042358+00	2017-08-17 14:35:21.044901+00	1267			+18174202563								12	f	f		lara esmeralda	new lead	\N	
2017-07-18 20:06:18.218403+00	2017-07-18 20:07:43.068353+00	1268			+16822398331								12	f	f		lynch ryan	new lead	\N	
2016-06-01 18:59:36.120176+00	2017-11-29 18:32:10.406465+00	1269	Unknown		+18435818006								1	f	f			new lead	\N	
2017-04-07 19:44:01.654788+00	2017-04-07 19:44:01.711828+00	1270	Robert	Williams	+15134130870								1	f	f	rswilliamstrucking7@hotmail.com		new lead	\N	
2016-08-08 21:47:46.739171+00	2016-08-08 22:04:13.130176+00	1271	nathaniel	cora	+19377890213								1	f	f	nat_blanford@yahoo.com		application submitted - autopay	\N	
2017-12-16 15:53:25.587072+00	2017-12-16 15:58:49.177477+00	1272			+12144316256								15	f	f			new lead	\N	
2017-10-27 17:54:32.36881+00	2017-10-27 17:58:11.441962+00	1273			+12818299732								1	f	f			new lead	\N	
2017-04-24 22:19:46.498953+00	2017-11-29 18:38:49.806504+00	1274			+19725674741								9	f	f		brewer ronald  	new lead	\N	
2016-08-10 19:47:39.941004+00	2017-11-29 18:31:18.808825+00	1275			+19709855726								1	f	f			new lead	\N	
2017-05-01 21:06:49.032296+00	2017-05-01 21:08:55.394818+00	1276			+18174752203								12	f	f		smith cornlius	new lead	\N	
2016-07-26 17:16:21.815767+00	2017-11-29 18:31:10.261605+00	1277	Fred	Blankenship	+15133094141								1	f	f			general interest	\N	
2017-10-11 20:48:58.163011+00	2017-10-11 20:50:35.030609+00	1278			+14698108753								12	f	f		templeton marsh	new lead	\N	
2016-08-12 21:45:48.884917+00	2017-11-29 18:31:37.368283+00	1279			+16619174979								1	f	f			general interest	\N	
2016-11-04 17:08:09.203982+00	2016-11-04 17:08:09.230699+00	1280	Sabrina	Vega	+15512219963								1	f	f	sabrinav529@yahoo.com		new lead	\N	
2017-12-19 19:50:42.0147+00	2017-12-19 19:52:07.05636+00	1281			+18154990188								12	f	f		good jeffrey l	new lead	\N	
2017-05-08 22:27:02.703459+00	2017-11-29 18:38:49.810512+00	1282			+18178219335								9	f	f		forbus jared   	new lead	\N	
2017-03-23 22:05:31.910757+00	2017-11-29 18:38:53.212881+00	1283			+18173043640								9	f	f		kovach eugene  	new lead	\N	
2016-08-23 16:24:33.101209+00	2017-11-29 18:31:41.490451+00	1284			+17407431168								1	f	f			general interest	\N	
2016-08-17 22:10:13.172472+00	2017-11-29 18:32:13.821583+00	1285			+17863662681								1	f	f			general interest	\N	
2016-11-18 14:21:08.029616+00	2016-11-18 14:21:08.058004+00	1286	ROBYNE	PATTERSON	+12814330585								1	f	f	rpatt85@gmail.com		new lead	\N	
2017-07-19 17:46:47.040676+00	2017-07-19 17:47:37.423234+00	1287			+17068093497								13	f	f			new lead	\N	
2017-02-07 21:41:30.376206+00	2017-02-07 22:01:45.734399+00	1288			+17136285127								1	f	f			new lead	\N	
2016-11-03 15:27:20.166565+00	2016-11-03 15:34:43.198128+00	1289			+14693636761								1	f	f			new lead	\N	
2016-10-05 01:17:55.751104+00	2016-10-05 01:18:44.835021+00	1290			+16128453179								1	f	f			new lead	\N	
2017-10-24 14:17:58.1324+00	2017-10-24 14:18:52.278022+00	1291	Melinda	Fountain	+17069697372								13	f	f	rabundew5674@gmail.com		new lead	\N	
2017-10-26 08:05:49.772811+00	2017-10-26 08:05:49.825981+00	1292	nettie	canup	+14043042195								13	f	f	nettiecanup@yahoo.com		new lead	\N	
2017-05-20 18:31:17.406617+00	2017-11-29 18:38:53.213731+00	1293			+16823004455								9	f	f		JOHNSON ETTA	new lead	\N	
2017-07-09 17:26:45.657666+00	2017-07-09 17:26:45.712646+00	1294	Swangla 	Butler 	+16789143289								13	f	f	babydream1949@gmail.com		new lead	\N	
2017-05-30 20:43:58.063234+00	2017-11-29 18:38:49.814125+00	1295			+17329264186								9	f	f		unbound 35261	new lead	\N	
2017-05-30 21:55:23.381625+00	2017-11-29 18:38:49.81416+00	1296			+18172331553								9	f	f		bearrie john   	new lead	\N	
2016-10-03 15:36:08.527982+00	2016-12-09 17:10:17.413513+00	1297			+19088595800								3	f	f			new lead	\N	
2016-08-28 18:24:54.964633+00	2016-08-29 12:09:17.77865+00	1298	Steve	Telles	+16615269857								1	f	f	steve_telles2003@yahoo.com		application submitted - credit union	\N	
2016-11-02 00:35:22.863004+00	2016-11-02 00:49:57.469596+00	1299			+18173009088								1	f	f			new lead	\N	
2017-08-25 15:54:09.151271+00	2017-08-25 15:57:15.981067+00	1300			+14045731853								13	f	f			new lead	\N	
2017-03-15 15:59:52.796866+00	2017-11-29 18:38:53.212353+00	1301			+14692009912								9	f	f		mbella faith	new lead	\N	
2017-05-10 13:19:33.816188+00	2017-11-29 18:38:53.215548+00	1302			+12148831775								9	f	f		fernandez katia	new lead	\N	
2016-11-21 12:47:04.263305+00	2016-12-09 17:07:45.331773+00	1303			+15753237032								3	f	f			new lead	\N	
2016-10-06 17:39:04.738733+00	2016-12-10 01:01:00.200367+00	1304			+16194091596								3	f	f			new lead	\N	
2017-04-18 13:40:36.81598+00	2017-04-18 13:42:32.126737+00	1305			+12148618773								12	f	f		ngene christian	new lead	\N	
2016-08-10 21:48:57.322769+00	2016-08-11 12:21:15.089629+00	1306	Miram	Vazquez	+16619926071								1	f	f	mimi19@sbcgobal.net		application submitted - autopay	\N	
2017-03-02 16:24:27.79642+00	2017-11-29 18:47:25.06753+00	1307			+16179492812								8	f	f		boston  ma	new lead	\N	
2017-07-06 17:29:01.310875+00	2017-07-06 17:34:31.873397+00	1308			+16783717934								13	f	f			new lead	\N	
2016-11-03 16:50:50.01489+00	2016-11-03 16:58:29.419112+00	1309			+16095774225								1	f	f			new lead	\N	
2017-07-30 17:16:41.850386+00	2017-07-30 17:16:42.493231+00	1310			+18176069803								12	f	f		sanders dashane	new lead	\N	
2017-09-15 02:25:28.658808+00	2017-09-15 02:25:28.71807+00	1311	Searea	Peppers	+15017777040								13	f	f	searea26@gmail.com		new lead	\N	
2017-11-21 00:40:59.680591+00	2017-11-21 01:02:27.854162+00	1312			+18179953332								12	f	f		euless  tx	new lead	\N	
2016-11-20 20:30:46.147975+00	2016-11-20 20:30:46.175814+00	1313	Erin	Bowman	+17708415039								1	f	f	erinbowman01@gmail.com		new lead	\N	
2017-05-31 15:32:56.232675+00	2017-11-29 18:38:49.814196+00	1314			+15127625659								9	f	f		johnson clarenc	new lead	\N	
2017-04-27 16:32:42.589374+00	2017-11-29 18:38:49.806952+00	1315			+12107635496								9	f	f		rendon david	new lead	\N	
2017-05-19 21:21:54.728503+00	2017-11-29 18:38:49.812324+00	1316			+19158814093								9	f	f		allstate ins	new lead	\N	
2017-04-15 15:26:36.451213+00	2017-11-29 18:38:49.805059+00	1317			+12145348249								9	f	f		konersmann todd	new lead	\N	
2016-10-12 14:48:37.486009+00	2017-11-29 18:31:10.26261+00	1318			+15139811837								1	f	f			new lead	\N	
2017-04-21 16:23:52.532969+00	2017-11-29 18:47:25.068207+00	1319			+14697031379								8	f	f		haynes natasha	new lead	\N	
2017-12-01 15:47:42.562455+00	2017-12-01 15:53:39.948283+00	1320	Justin	Howard	+17806629397								13	f	f	Howardjustin2015@gmail.com		select status	\N	
2017-04-08 18:08:58.00794+00	2017-11-29 18:38:53.21349+00	1321			+19728494397								9	f	f		cell phone   tx	new lead	\N	
2017-07-28 15:15:57.629384+00	2017-07-28 15:20:43.190048+00	1322			+17064997856								13	f	f			new lead	\N	
2016-07-30 16:11:38.762928+00	2016-08-01 12:51:39.596545+00	1323	Ferdinand	Algas	+19204371066								1	f	f	algas05@yahoo.com		application submitted - credit union	\N	
2017-11-27 17:05:32.486948+00	2017-11-27 17:16:22.753953+00	1324			+16203396852								12	f	f		wichita  ks	new lead	\N	
2016-11-10 20:23:12.120871+00	2017-01-27 21:12:23.814044+00	1325			+14805707958								1	f	f			new lead	\N	
2017-05-12 22:16:14.768797+00	2017-05-12 22:24:34.109744+00	1326			+18179057192								12	f	f		cell phone   tx	new lead	\N	
2016-11-04 02:06:10.279278+00	2016-11-04 02:06:10.310747+00	1327	MARIA ESTHER 	MILIAN MARTINEZ	+16024345390								1	f	f	me_milian@hotmail.com		new lead	\N	
2017-12-01 20:35:25.633283+00	2017-12-01 21:11:47.285921+00	1328			+13522234888								15	f	f			new lead	\N	
2017-06-17 19:40:02.495133+00	2017-06-24 13:45:04.893949+00	1329	Brittany	Robertson	+14044370923								13	f	f	Brittnko30@gmail.com		new lead	\N	
2016-10-20 16:35:39.857552+00	2016-12-10 01:05:18.401203+00	1330			+16105390646								3	f	f			new lead	\N	
2017-04-20 15:27:34.809851+00	2017-11-29 18:38:49.805924+00	1331			+12149575259								9	f	f		restricted	new lead	\N	
2017-07-11 16:43:46.331601+00	2017-07-11 16:44:38.058823+00	1332			+17067169545								13	f	f			new lead	\N	
2017-09-14 15:49:48.194558+00	2017-09-14 15:51:22.585709+00	1333			+17703835744								13	f	f			new lead	\N	
2017-04-26 15:33:05.165639+00	2017-11-29 18:47:25.068327+00	1334			+19728396400								8	f	f		pham hoang     	new lead	\N	
2017-05-16 21:13:23.323871+00	2017-11-29 18:38:49.811869+00	1335			+18064435190								9	f	f		garcia flavio  	new lead	\N	
2017-04-08 19:01:37.747642+00	2017-11-29 18:38:53.213497+00	1336			+13162642883								9	f	f		amsco supply	new lead	\N	
2017-06-22 23:49:48.111389+00	2017-11-29 18:31:18.808976+00	1337	Wrong	Number	+14232835000								1	f	f			do not contact	\N	
2017-12-19 17:51:51.122242+00	2017-12-19 18:06:28.445797+00	1338	Anibal	Morales	+18632713819								15	f	f	Amoe7@aol.com		new lead	\N	
2017-09-16 15:31:30.963415+00	2017-09-16 15:33:57.083073+00	1339			+16822224702								12	f	f		serna margie	new lead	\N	
2017-05-07 16:35:27.992101+00	2017-05-07 16:35:27.992151+00	1340	luis alberto murguia		+15623411712								1	f	f	luis@rossnissan1.com		new lead	\N	
2017-10-06 18:43:24.066771+00	2017-10-06 19:05:14.655038+00	1341			+12147095219								12	f	f		cartamundi usa	new lead	\N	
2016-07-22 15:01:42.55152+00	2017-11-29 18:31:10.2614+00	1342			+19372412560								1	f	f			new lead	\N	
2017-04-28 19:50:11.062475+00	2017-11-29 18:38:53.214773+00	1343			+12067397308								9	f	f		cell phone  wa	new lead	\N	
2016-11-04 15:54:18.477283+00	2017-01-27 21:12:23.814023+00	1344			+19292409327								1	f	f			new lead	\N	
2017-05-11 19:49:02.1177+00	2017-11-29 18:47:25.068509+00	1345			+15739530932								8	f	f		wireless caller	new lead	\N	
2017-06-14 18:47:34.652472+00	2017-08-17 14:35:21.045457+00	1346			+18174413251								12	f	f		okenye v	new lead	\N	
2017-11-27 20:47:01.088588+00	2017-11-27 20:52:14.900429+00	1347			+16822222716								12	f	f		hicks dequan	new lead	\N	
2017-12-04 23:50:30.345651+00	2017-12-05 00:04:23.716975+00	1348	Nathaniel	Berkland	+14023806621								15	f	f	Nate.berkland@gmail.com		new lead	\N	
2016-12-05 16:26:40.132789+00	2016-12-05 16:26:40.156069+00	1349	TIMOTHY	PIETRO	+16507935810								1	f	f	tjpietro@gmail.com		new lead	\N	
2016-08-24 14:12:06.374275+00	2017-11-29 18:31:37.368389+00	1350			+17608738596								1	f	f			general interest	\N	
2016-09-07 22:35:41.316083+00	2016-12-10 01:04:42.413769+00	1351			+19092155220								3	f	f			new lead	\N	
2017-08-19 19:53:10.343122+00	2017-08-19 19:54:05.231738+00	1352	Lakeshia	Freeman	+17065108338								13	f	f	Davisgirl012016@gmail.com		new lead	\N	
2017-11-03 18:53:48.632477+00	2017-11-03 18:54:58.708833+00	1353			+14047990348								13	f	f			new lead	\N	
2017-05-01 15:12:48.771436+00	2017-11-29 18:38:49.80783+00	1354			+12147711834								9	f	f		cell phone   tx	new lead	\N	
2017-09-25 19:19:34.702747+00	2017-09-25 19:21:10.363845+00	1355	Angelica	jOHNSON	+17063959568								13	f	f	babygurl223388@gmail.com		new lead	\N	
2017-07-05 16:12:08.283578+00	2017-11-29 18:31:56.600443+00	1356			+15702885115								1	f	f			do not contact	\N	
2017-12-01 18:09:25.113457+00	2017-12-01 18:09:37.063152+00	1357			+18035462731								14	f	f			new lead	\N	
2017-09-29 15:09:39.666163+00	2017-09-29 15:32:45.273698+00	1358			+18173339190								12	f	f		mills tommy	new lead	\N	
2017-09-12 23:04:56.023491+00	2017-09-12 23:05:31.086794+00	1359			+18178494021								12	f	f		richards jermie	new lead	\N	
2016-11-07 12:05:21.128788+00	2016-12-10 00:55:45.165498+00	1360			+16103822700								3	f	f			new lead	\N	
2017-12-16 16:58:58.619548+00	2017-12-16 16:59:51.330197+00	1361			+14708087429								13	f	f		vixamar phoebee	new lead	\N	
2017-04-28 20:55:05.139356+00	2017-11-29 18:38:53.214795+00	1362			+15026398153								9	f	f		louisville  ky	new lead	\N	
2016-08-17 19:34:25.847941+00	2017-11-29 18:31:10.262413+00	1363	Adam	Perry	+15135438445								1	f	f	anperry@cinci.rr.com		application submitted - credit union	\N	
2016-12-06 00:20:13.551778+00	2017-11-29 18:31:10.261003+00	1364	Unknown		+15126860800								1	f	f			new lead	\N	
2016-10-23 20:04:22.032959+00	2016-12-10 01:02:30.610649+00	1365			+12039993233								3	f	f			new lead	\N	
2016-06-27 15:56:45.532302+00	2016-06-27 15:59:37.690156+00	1366			+13305182614								1	f	f			new lead	\N	
2017-12-29 17:40:45.358657+00	2017-12-29 17:45:13.346714+00	1367	Chris	Holtzclaw	+17706161426								13	f	f	Cooperholtz669@gmail.com		select status	\N	
2017-05-30 19:48:09.167029+00	2017-11-29 18:38:49.814111+00	1368			+19728537056								9	f	f		dallas  tx	new lead	\N	
2017-04-17 19:01:34.449065+00	2017-11-29 18:38:49.805254+00	1369			+19728243658								9	f	f		picco matthew  	new lead	\N	
2017-06-01 16:50:59.250456+00	2017-11-29 18:38:49.814353+00	1370			+14167815443								9	f	f		toronto  on	new lead	\N	
2016-09-07 18:11:20.470403+00	2016-12-10 01:01:51.440814+00	1371			+16193133275								3	f	f			new lead	\N	
2017-04-24 22:43:03.693228+00	2017-11-29 18:47:25.068298+00	1372			+18175830062								8	f	f		rosales de cade	new lead	\N	
2017-08-17 18:18:29.445456+00	2017-08-17 18:25:25.721849+00	1373			+14047817218								13	f	f			new lead	\N	
2016-10-05 15:55:15.886834+00	2016-12-09 17:06:53.906035+00	1374			+12157102000								3	f	f			new lead	\N	
2017-07-14 20:45:59.39198+00	2017-07-14 20:50:53.466834+00	1375			+16825184810								12	f	f		manuel kevin	new lead	\N	
2016-08-24 14:30:24.140603+00	2016-12-20 22:16:06.426502+00	1376			+18035462731								3	f	f			new lead	\N	
2017-04-28 21:17:04.843001+00	2017-11-29 18:38:49.807378+00	1377			+17146715700								9	f	f		evangelical christian cu	new lead	\N	
2016-11-02 00:19:23.772335+00	2016-11-02 00:19:23.797933+00	1378	Madel	Gamboa	+15203090275								1	f	f	Jerry3153@outlook.com		new lead	\N	
2016-05-29 01:23:16.178106+00	2017-11-29 18:31:05.368852+00	1379	Unknown		+16159189673								1	f	f			new lead	\N	
2017-12-08 18:07:31.591938+00	2017-12-08 18:09:00.389101+00	1380			+18174138279								12	f	f		thompson mesha	new lead	\N	
2017-08-28 13:29:11.540119+00	2017-08-28 13:37:27.035742+00	1381	shaqunna	mahaffey	+17064918245								13	f	f	qunnasemone@yahoo.com		new lead	\N	
2017-11-08 17:32:55.741279+00	2017-11-08 17:33:59.628193+00	1382	Elaine	Alford	+19125067949								13	f	f	ethanmama615@gmail.com		new lead	\N	
2016-11-29 16:36:50.820076+00	2016-12-09 17:11:00.853716+00	1383			+19086381178								3	f	f			new lead	\N	
2016-05-25 19:51:01.134972+00	2016-05-25 19:53:38.440064+00	1384	john	metcalfe	+16619426185								1	f	f	sandrametcalfe@yahoo.com		new lead	\N	
2016-11-21 18:29:20.438157+00	2016-11-21 19:02:24.265514+00	1385			+18328080797								1	f	f			new lead	\N	
2016-11-21 21:24:43.105222+00	2016-11-21 22:00:48.854274+00	1386			+17702312424								1	f	f			new lead	\N	
2017-08-16 21:20:20.047452+00	2017-08-16 21:26:14.733231+00	1387	Nagera	Johnson	+16788579435								13	f	f	Nagerajohnson@yahoo.com		new lead	\N	
2017-08-06 01:17:58.639446+00	2017-08-06 01:40:38.122352+00	1388			+14696717072								12	f	f		zamora victoria	new lead	\N	
2016-01-31 17:07:59.011948+00	2016-01-31 17:07:59.01197+00	1389	Sally	Jones	+1+7732909650								2	f	f			new lead	\N	
2017-12-09 21:54:55.672454+00	2017-12-09 21:55:50.195918+00	1390			+12104270471								15	f	f			new lead	\N	
2016-06-28 17:11:51.740512+00	2017-11-29 18:32:13.820751+00	1391	Unknown		+13307935571								1	f	f			new lead	\N	
2017-05-15 20:49:04.807486+00	2017-11-29 18:38:49.8116+00	1392			+19727201020								9	f	f		sni companies	new lead	\N	
2016-11-05 15:30:00.79415+00	2016-11-05 15:30:00.82922+00	1393	Michael	McDonald	+19366727433								1	f	f	guitarman32626@yahoo.com		new lead	\N	
2017-05-15 15:07:33.371724+00	2017-11-29 18:38:49.811508+00	1394			+19724458529								9	f	f		n owens	new lead	\N	
2016-07-07 23:28:16.435971+00	2016-12-10 01:05:18.400644+00	1395			+16103271227								3	f	f			new lead	\N	
2017-03-01 19:32:24.882872+00	2017-11-29 18:47:25.067502+00	1396			+15034128722								8	f	f		JUSTICE JIM    	new lead	\N	
2016-09-07 21:39:56.61743+00	2016-12-10 00:57:48.461725+00	1397			+18054985313								3	f	f			new lead	\N	
2017-12-01 16:43:06.999308+00	2017-12-01 17:08:17.282075+00	1398			+17024673356								15	f	f			new lead	\N	
2016-07-24 16:48:56.475109+00	2016-07-25 12:16:10.958055+00	1399	William	Johnson	+15134037919								1	f	f	dawgpound01@gmail.com		new lead	\N	
2016-11-01 16:58:54.60424+00	2016-11-01 17:01:56.624275+00	1400			+16784730276								1	f	f			new lead	\N	
2017-11-02 19:06:20.409808+00	2017-11-02 19:07:54.486405+00	1401			+17069883663								13	f	f			new lead	\N	
2017-05-22 19:43:11.028069+00	2017-11-29 18:38:49.812693+00	1402			+12148192000								9	f	f		dallas cty of  	new lead	\N	
2017-07-05 18:06:42.863462+00	2017-07-05 18:13:27.973958+00	1403			+16784724198								13	f	f			new lead	\N	
2017-09-08 00:08:39.164487+00	2017-09-08 00:30:20.115885+00	1404			+14693455027								12	f	f		robinson keitha	new lead	\N	
2017-02-02 16:21:52.683131+00	2017-02-02 16:22:03.656957+00	1405			+18035200590								6	f	f			new lead	\N	
2017-05-22 19:16:37.520319+00	2017-11-29 18:38:49.812678+00	1406			+19497347896								9	f	f		los angeles  ca	new lead	\N	
2017-05-17 19:10:27.591887+00	2017-11-29 18:38:49.81204+00	1407			+15598853178								9	f	f		cell phone   ca	new lead	\N	
2016-07-07 19:48:54.663524+00	2017-11-29 18:32:13.821425+00	1408	Naveen	Bhagwani	+13059347292								1	f	f	nbhagwani@gmail.com		new lead	\N	
2017-12-23 16:33:31.658727+00	2017-12-23 16:38:04.803222+00	1409			+17062864628								13	f	f		cell phone   ga	new lead	\N	
2017-05-08 16:38:27.425296+00	2017-11-29 18:38:49.810302+00	1410			+14167869396								9	f	f		cell phone   on	new lead	\N	
2017-06-29 15:44:12.321564+00	2017-08-17 14:35:21.045514+00	1411			+18179392754								12	f	f		allante carter	new lead	\N	
2017-03-22 03:38:46.391618+00	2017-03-22 03:39:07.600457+00	1412	Werner	 IL	+17735436541								1	f	f			new lead	\N	
2017-10-24 11:49:20.416372+00	2017-10-24 11:49:20.480431+00	1413	Rakela	Wilkins	+17068801574								13	f	f	Raseanwilkins@ymail.com		new lead	\N	
2016-09-01 15:49:29.506958+00	2016-12-09 17:06:53.905844+00	1414			+12675665051								3	f	f			new lead	\N	
2017-05-24 19:52:27.530159+00	2017-11-29 18:38:49.813308+00	1415			+19724218770								9	f	f		dallas  tx	new lead	\N	
2016-08-02 21:19:19.943656+00	2017-11-29 18:31:10.262062+00	1416	Dorthy	Beasley	+15137937998								1	f	f	NA@noemail.com		application submitted - autopay	\N	
2017-04-20 20:44:02.529946+00	2017-11-29 18:47:25.068179+00	1417			+18174721934								8	f	f		sovereign bank 	new lead	\N	
2016-08-02 00:59:23.706219+00	2016-08-02 13:36:37.022373+00	1418	Robert	Engberg	+16616755657								1	f	f	adinab77@gmail.com		application submitted - autopay	\N	
2017-04-24 22:17:03.013626+00	2017-11-29 18:38:53.214518+00	1419			+12146816685								9	f	f		bumper tim	new lead	\N	
2016-08-22 14:11:35.919058+00	2017-11-29 18:31:41.490786+00	1420	natalie	chime	+16145063377								1	f	f	nchime73@gmail.com		application started	\N	
2016-12-05 20:47:49.193314+00	2016-12-10 00:57:48.461928+00	1421			+18054909544								3	f	f			new lead	\N	
2017-08-18 14:39:37.542788+00	2017-08-18 14:56:22.775326+00	1422			+17069200150								13	f	f			new lead	\N	
2017-04-04 21:48:06.924336+00	2017-11-29 18:31:56.600338+00	1423			+16173312498								1	f	f			general interest	\N	
2017-04-03 21:46:15.673588+00	2017-08-17 14:35:21.044945+00	1424			+12146426144								12	f	f		fort worth  tx	new lead	\N	
2017-09-25 15:18:17.774805+00	2017-09-25 15:19:55.274403+00	1425			+12144036664								12	f	f		mamablast	new lead	\N	
2016-09-06 15:20:18.618036+00	2016-12-10 01:05:18.400923+00	1426			+12157758047								3	f	f			new lead	\N	
2016-11-01 18:23:37.745365+00	2016-11-01 18:25:26.272056+00	1427			+17708347826								1	f	f			new lead	\N	
2017-07-26 18:28:13.778969+00	2017-07-26 18:33:48.45149+00	1428			+16788583446								13	f	f			new lead	\N	
2017-12-01 21:56:24.623634+00	2017-12-01 22:08:58.495453+00	1429	Lee	Canestrari	+19704242292								15	f	f	leecanestrari2@yahoo.com		new lead	\N	
2016-09-01 19:41:31.04055+00	2016-12-10 01:01:00.199854+00	1430			+16199934164								3	f	f			new lead	\N	
2016-10-27 13:14:52.30454+00	2016-12-10 01:05:11.33716+00	1431			+17182943504								3	f	f			new lead	\N	
2017-05-24 15:26:30.816161+00	2017-11-29 18:38:49.812996+00	1432			+14697042738								9	f	f		mullins howard	new lead	\N	
2016-07-24 11:32:34.227019+00	2016-07-25 11:30:03.208555+00	1433	Matthew	Tremper	+15133108592								1	f	f	matthewtremper@live.com		new lead	\N	
2017-05-19 19:28:37.53385+00	2017-05-19 19:30:20.932436+00	1434			+18178963287								12	f	f		chapel linda	new lead	\N	
2017-08-19 22:00:43.952197+00	2017-08-19 22:00:44.005074+00	1435	Ebony	Lumpkin	+17622435642								13	f	f	Ebonynikkay@gmail.com		new lead	\N	
2016-11-01 15:26:33.808903+00	2016-11-01 15:42:09.804808+00	1436			+19804301978								1	f	f			new lead	\N	
2017-04-13 22:17:33.249932+00	2017-05-17 15:41:07.224349+00	1437			+18174200826								12	f	f		myers justice	new lead	\N	
2017-03-12 23:01:34.687648+00	2017-11-29 18:38:53.212068+00	1438			+14696855330								9	f	f		jones marquis	new lead	\N	
2017-12-13 00:59:58.260594+00	2017-12-13 01:01:29.976886+00	1439	Angelica	Nieves	+17739817307								15	f	f	nieves.angelica040@gmail.com		new lead	\N	
2017-12-23 15:54:02.188392+00	2017-12-23 16:01:18.686861+00	1440	Candice 	Allison 	+14702725545								13	f	f	hunter02042017@gmail.con		select status	\N	
2017-03-20 18:14:18.181513+00	2017-11-29 18:38:53.212643+00	1441			+19723101325								9	f	f			new lead	\N	
2016-10-04 17:46:35.640227+00	2016-12-10 01:05:18.401055+00	1442			+16109964274								3	f	f			new lead	\N	
2017-09-05 13:44:48.949245+00	2017-09-05 13:47:17.522829+00	1443	Jen	Walton	+16783576224								13	f	f	jennifernoelwalton@gmail.com		new lead	\N	
2017-08-31 17:34:29.022704+00	2017-08-31 17:35:39.889595+00	1444	JKIESHA	ELDER	+17063553966								13	f	f	Witnessmissy003@aol.com		new lead	\N	
2017-03-27 21:58:54.323166+00	2017-03-27 22:21:52.094416+00	1445			+14699692603								12	f	f		swd systems	new lead	\N	
2016-11-08 16:47:32.493444+00	2016-11-08 17:07:19.23267+00	1446			+14047090467								1	f	f			new lead	\N	
2017-04-12 20:06:35.817816+00	2017-11-29 18:38:53.213809+00	1447			+14698345131								9	f	f			new lead	\N	
2017-10-10 07:28:52.787475+00	2017-10-10 07:28:52.839858+00	1448	Lukesha	Campbell	+17064616927								13	f	f	Campbell_kesha77@yahoo.com		new lead	\N	
2016-08-16 12:56:45.56336+00	2016-11-09 15:43:21.094516+00	1449			+19042211703								3	f	f			new lead	\N	
2016-08-02 15:06:00.524216+00	2016-12-10 00:55:45.164983+00	1450			+14847166224								3	f	f			new lead	\N	
2017-12-02 00:48:47.180456+00	2017-12-02 01:19:20.981149+00	1451	Kelsey	Dowty	+15868991797								15	f	f	kelseydowty@gmail.com		new lead	\N	
2016-12-01 22:59:09.120233+00	2016-12-10 01:00:18.568559+00	1452			+16193791299								3	f	f			new lead	\N	
2016-07-07 18:46:06.844891+00	2017-11-29 18:31:41.490283+00	1453	Unknown	Griffin	+16144028536								1	f	f	garygriffin70.gg@gmail.com		new lead	\N	
2016-12-04 01:22:54.562874+00	2016-12-04 01:23:28.472723+00	1454			+17134279514								1	f	f			new lead	\N	
2016-10-14 16:06:01.976137+00	2016-11-09 15:47:40.535536+00	1455			+17372040263								3	f	f			new lead	\N	
2017-10-18 16:36:27.617064+00	2017-10-18 16:37:12.686367+00	1456	Sheena	Hayman	+17063517123								13	f	f	sheenahay2015@gmail.com		new lead	\N	
2016-12-23 19:23:01.713465+00	2016-12-23 19:30:22.430493+00	1457			+18327266787								1	f	f			new lead	\N	
2017-09-06 15:41:23.039125+00	2017-11-29 18:31:56.600465+00	1458			+15708421887								1	f	f			new lead	\N	
2017-12-05 16:35:27.942267+00	2017-12-05 16:44:11.321617+00	1459			+14322471056								15	f	f			new lead	\N	
2017-03-31 20:35:19.091583+00	2017-03-31 20:57:46.313888+00	1460			+12146099635								12	f	f		skinner cherlyn	new lead	\N	
2017-10-20 16:40:42.412354+00	2017-10-20 16:41:59.298831+00	1461			+18172551000								12	f	f		north hills hospital	new lead	\N	
2016-07-15 19:46:10.057301+00	2016-11-09 15:43:50.981607+00	1462			+17042009872								3	f	f			new lead	\N	
2016-08-03 20:08:36.191218+00	2017-11-29 18:32:13.821664+00	1463	Keith	McCoy	+13303039487								1	f	f	1@1.com		application submitted - credit union	\N	
2017-09-15 21:08:38.137195+00	2017-09-15 21:13:12.154558+00	1464			+18176372325								12	f	f		hailey egan	new lead	\N	
2017-03-14 20:28:20.72411+00	2017-11-29 18:38:53.212254+00	1465			+12144971217								9	f	f		WILLIAMS MATHEW	new lead	\N	
2017-11-17 13:12:00.424002+00	2017-11-17 13:12:01.068821+00	1466			+17702037431								13	f	f			new lead	\N	
2017-04-26 16:46:29.790196+00	2017-08-17 14:35:21.045048+00	1467			+17134921620								12	f	f		campbell dallas	new lead	\N	
2017-12-10 17:56:58.304026+00	2017-12-10 17:58:18.999234+00	1468	Jason	Gingras	+12146004442								15	f	f	Jason.p.gingras@gmail.com		new lead	\N	
2017-08-29 12:37:11.115285+00	2017-08-29 12:37:25.59646+00	1469			+16789393023								13	f	f			new lead	\N	
2016-08-31 20:49:35.270555+00	2016-08-31 21:49:26.2593+00	1470	Juan F.	Palma	+13236678304								1	f	f	isabili@yahoo.com		application submitted - credit union	\N	
2017-10-16 18:17:59.691701+00	2017-10-16 18:19:49.559379+00	1471			+15124707771								12	f	f		austin  tx	new lead	\N	
2017-12-08 17:33:54.785322+00	2017-12-08 17:37:52.244424+00	1472			+17063518804								13	f	f		freeman xavier	new lead	\N	
2017-12-22 15:03:37.560287+00	2017-12-22 15:11:16.298905+00	1473	LAVENTE	HODGE	+16785078896								13	f	f	lhodge1923@gmail.com		select status	\N	
2016-08-18 17:31:36.745062+00	2016-08-18 17:32:17.26298+00	1474			+16144020233								1	f	f			new lead	\N	
2017-12-05 23:23:37.072429+00	2017-12-05 23:28:17.880387+00	1475	arcadio	maldonado	+12107605558								15	f	f	yayo1er@gmail.com		new lead	\N	
2017-05-04 13:15:04.808702+00	2017-11-29 18:31:56.600401+00	1476			+15709029674								1	f	f			select status	\N	
2017-12-06 14:26:07.807834+00	2017-12-06 14:35:32.462827+00	1477			+19546080103								15	f	f			new lead	\N	
2017-03-22 13:55:09.092525+00	2017-11-29 18:38:53.212742+00	1478			+13372473985								9	f	f		cell phone   la	new lead	\N	
2017-09-01 16:05:46.873745+00	2017-11-29 18:31:29.180678+00	1479			+12818501026								1	f	f			new lead	\N	
2017-02-07 23:46:10.384188+00	2017-02-07 23:47:00.788907+00	1480			+16787335430								6	f	f			new lead	\N	
2016-11-07 16:27:55.573775+00	2016-11-07 16:27:55.600752+00	1481	kathy	wood	+18175173657								1	f	f	kathyscorner99@gmail.com		new lead	\N	
2017-04-22 15:11:30.750413+00	2017-11-29 18:38:49.806287+00	1482			+12142051078								9	f	f		texas center of	new lead	\N	
2017-06-01 17:47:25.978873+00	2017-11-29 18:38:53.213418+00	1483			+18322609059								9	f	f		gonzalez adrian	new lead	\N	
2017-07-29 16:14:28.48822+00	2017-11-29 18:47:25.068551+00	1484			+12146820881								8	f	f		jackson ronald	new lead	\N	
2017-12-12 18:32:37.189967+00	2017-12-12 18:34:40.527112+00	1485			+18176593738								12	f	f		cell phone   tx	new lead	\N	
2016-11-04 17:31:15.30872+00	2017-01-27 21:12:23.814016+00	1486			+17046053047								1	f	f			new lead	\N	
2017-12-06 18:27:54.854867+00	2017-12-06 18:40:50.537209+00	1487			+19562079578								15	f	f			new lead	\N	
2017-12-29 13:30:18.300718+00	2017-12-29 13:30:36.15864+00	1488			+17069730872								13	f	f		victoria carter	new lead	\N	
2016-07-01 14:17:15.831298+00	2017-11-29 18:31:41.49029+00	1489	Cary	Beach	+16144805573								1	f	f			new lead	\N	
2017-11-18 18:19:26.152306+00	2017-11-18 18:20:25.46018+00	1490			+12149988423								12	f	f		cervantes marcy	new lead	\N	
2016-10-19 19:10:20.707368+00	2017-02-11 20:02:07.779648+00	1491			+19738853643								3	f	f			new lead	\N	
2017-04-07 19:19:43.975788+00	2017-11-29 18:31:10.262753+00	1492	Floyd	Blumfield	+15136871583								1	f	f			general interest	\N	
2017-03-18 20:23:34.694706+00	2017-11-29 18:47:25.067855+00	1493			+14697678488								8	f	f		adem muhammad	new lead	\N	
2017-09-21 13:11:28.563404+00	2017-09-21 13:25:28.59528+00	1494			+17702688168								13	f	f			new lead	\N	
2017-10-20 13:20:33.846348+00	2017-10-20 13:25:40.683338+00	1495	starr	cannon	+17063913490								13	f	f	sgeezybabii@gmail.com		new lead	\N	
2017-12-27 20:03:27.690719+00	2017-12-27 20:18:39.056998+00	1496			+19546510105								15	f	f			new lead	\N	
2017-12-04 15:47:07.923862+00	2017-12-04 15:48:24.61486+00	1497			+17703697220								13	f	f		bell shay	new lead	\N	
2017-05-23 00:23:11.119218+00	2017-11-29 18:38:49.812749+00	1498			+14054768937								9	f	f		oklahoma ci  ok	new lead	\N	
2017-10-20 15:50:05.630948+00	2017-10-20 15:53:47.756555+00	1499			+17063008019								13	f	f			new lead	\N	
2017-04-25 15:23:21.753264+00	2017-11-29 18:38:53.214532+00	1500			+18177147216								9	f	f		dfw tire wholes	new lead	\N	
2017-09-07 17:00:47.179236+00	2017-09-07 17:05:31.082137+00	1501			+17063722148								13	f	f			new lead	\N	
2017-12-02 15:36:52.016034+00	2017-12-02 15:38:09.136317+00	1502			+19185347062								15	f	f			new lead	\N	
2016-10-04 11:52:22.446149+00	2016-12-09 17:10:17.41352+00	1503			+19087630029								3	f	f			new lead	\N	
2016-08-17 18:32:43.423148+00	2017-11-29 18:31:18.808847+00	1504	Terry	Riebe	+14065468024								1	f	f	terr1299@yahoo.com		application submitted - credit union	\N	
2017-03-22 18:02:28.829387+00	2017-05-17 15:41:07.224151+00	1505			+18177599167								12	f	f		fort worth  tx	new lead	\N	
2017-03-11 20:54:21.906705+00	2017-11-29 18:47:25.067686+00	1506			+19038214970								8	f	f		wireless caller	new lead	\N	
2017-08-14 16:50:28.296703+00	2017-08-14 16:57:40.253968+00	1507			+14705504727								13	f	f			new lead	\N	
2016-05-23 17:50:23.828344+00	2017-11-29 18:31:10.260331+00	1508	Unknown		+15135449841								1	f	f			new lead	\N	
2017-03-03 00:10:19.926893+00	2017-11-29 18:47:25.067566+00	1509			+15125527722								8	f	f		rangel saul	new lead	\N	
2017-05-14 18:30:01.108235+00	2017-05-14 18:30:28.635232+00	1510			+18174058920								12	f	f		cross bobbie	new lead	\N	
2017-07-29 20:32:22.679092+00	2017-07-29 20:35:31.25226+00	1511	Andrea	Rodriguez	+16787549062								13	f	f	rodriguezandreabb1975@gmail.com		new lead	\N	
2018-02-08 23:14:20.533384+00	2018-02-08 23:14:36.310848+00	1512			+17739699892								27	f	f		chicago  il	new lead	\N	
2017-02-08 23:31:39.781426+00	2017-02-08 23:54:10.454822+00	1513			+18322589525								1	f	f			new lead	\N	
2016-06-28 20:25:56.666743+00	2016-06-28 20:28:02.197811+00	1514	Cameron	Bodine	+13304820129								1	f	f	sbodine1223@gmail.com		new lead	\N	
2017-04-29 20:12:57.388062+00	2017-04-29 20:36:38.411388+00	1515			+18172987538								12	f	f		mcbeth b	new lead	\N	
2017-08-07 14:20:55.069246+00	2017-08-07 14:26:51.279708+00	1516	Latoya	Poole	+16785411215								13	f	f	nicolepoole30@yahoo.com		new lead	\N	
2017-12-13 13:46:07.900772+00	2017-12-13 13:46:07.961283+00	1517	Brandon	Gowan	+17067285698								13	f	f	Brandongowan1@gmail.com		new lead	\N	
2017-03-16 16:37:33.890404+00	2017-11-29 18:38:53.212439+00	1518			+12143547430								9	f	f		estes charles	new lead	\N	
2016-11-03 18:54:04.550258+00	2016-11-03 19:10:14.040606+00	1519			+18083876305								1	f	f			new lead	\N	
2016-11-16 16:46:22.264156+00	2016-11-16 16:46:22.291258+00	1520	zoilo	salud	+12816177668								1	f	f	zdsalud@yahoo.com		new lead	\N	
2017-05-02 17:09:26.989823+00	2017-08-17 14:35:21.045089+00	1521			+18172750025								12	f	f		arlington  tx	new lead	\N	
2016-06-30 16:17:26.803943+00	2016-06-30 16:18:43.457759+00	1522			+13303602062								1	f	f			new lead	\N	
2017-03-08 15:06:25.945287+00	2017-11-29 18:47:25.067644+00	1523			+12487193095								8	f	f		kenneth mathis	new lead	\N	
2016-06-28 15:28:12.22208+00	2016-06-28 18:03:04.787152+00	1524	Christopher	Collins	+19313027692								1	f	f	Christopher.Collins3@va.gov		new lead	\N	
2017-04-27 18:38:20.706145+00	2017-11-29 18:38:49.807002+00	1525			+14697134512								9	f	f		fahey justin   	new lead	\N	
2016-08-05 22:42:27.635245+00	2016-08-08 13:06:55.629765+00	1526	Deborah	Gould	+16148372282								1	f	f	dkgld53@aol.com		application submitted - autopay	\N	
2016-04-28 18:24:01.499926+00	2016-04-28 18:25:01.560655+00	1527	Steve	Neu	+18035462731								2	f	f	steveneu@live.com		new lead	\N	
2017-10-21 12:20:43.231407+00	2017-10-21 12:20:43.332628+00	1528	Shirley	Bennett	+17067162343								13	f	f	Jasperboyd630@gmail.com		new lead	\N	
2017-10-09 22:27:04.500855+00	2017-10-11 13:48:08.206397+00	1529	Kassi	Williams	+17064106327								13	f	f	kassi.williams.10@gmail.com		select status	\N	
2017-09-02 20:26:01.824251+00	2017-09-02 20:32:56.024507+00	1530	Thomara	Russell-Lee	+15049198215								13	f	f	tmacfeb@yahoo.com		new lead	\N	
2016-06-01 16:36:15.131164+00	2017-11-29 18:31:56.600097+00	1531	Unknown	Hickey	+16178772250								1	f	f	james@kalmiadesign.com		new lead	\N	
2016-05-25 17:06:28.309044+00	2016-05-25 17:07:33.362981+00	1532	Neil	Conway	+13305482164								1	f	f	wetmoreconway@roadrunner.com		new lead	\N	
2016-06-17 16:59:13.585947+00	2016-12-09 17:06:53.905701+00	1533	Unknown		+16092843885								3	f	f			new lead	\N	
2016-10-26 15:42:02.279474+00	2016-11-09 15:43:50.981637+00	1534			+15712812106								3	f	f			new lead	\N	
2016-11-30 21:45:55.775603+00	2016-11-30 21:56:13.314843+00	1535			+12144575140								1	f	f			new lead	\N	
2017-09-23 14:38:34.777238+00	2017-09-23 14:41:13.006997+00	1536	Andrea	White	+17069942412								13	f	f	Andrea021518@gmail.com		new lead	\N	
2017-07-07 18:27:14.05237+00	2017-07-07 18:29:08.585279+00	1537			+16825512276								12	f	f		mercado veronic	new lead	\N	
2016-05-25 16:17:53.89713+00	2016-05-25 18:16:26.475258+00	1538	david 	mckibbin	+19289160196								1	f	f	dlmckibbin51@gmail.com		new lead	\N	
2017-07-29 18:37:31.367745+00	2017-08-17 14:35:21.045695+00	1539			+16823137058								12	f	f		albarran jose	new lead	\N	
2016-11-15 16:41:33.259857+00	2016-11-15 16:41:33.284458+00	1540	HOMER	COLLINS	+15127691205								1	f	f	CORPDIRECTOR@ICLOUD.COM		new lead	\N	
2017-12-01 22:33:46.423951+00	2017-12-01 22:56:49.604126+00	1541			+16465151862								15	f	f			new lead	\N	
2017-12-14 15:04:21.659607+00	2017-12-14 15:07:24.132156+00	1542	Yemmonte 	Oliver	+17062550421								13	f	f	oliverdiamond95@yahoo.com		select status	\N	
2017-12-19 17:50:40.056767+00	2017-12-19 18:13:40.395051+00	1543	robert	havelin	+16027082545								15	f	f	mckemyave@gmail.com		new lead	\N	
2016-10-31 03:45:18.015097+00	2016-10-31 03:45:18.055736+00	1544	Kelly	Perry	+19032926435								1	f	f	kcperry.kcp@gmail.com		new lead	\N	
2016-06-27 14:54:37.563696+00	2017-11-29 18:32:13.820448+00	1545	Shane	Ferguson	+13307701618								1	f	f			new lead	\N	
2017-04-18 06:59:19.957927+00	2017-11-29 18:38:53.214114+00	1546			+14692360563								9	f	f		MORALES LUIS   	new lead	\N	
2017-10-19 22:56:23.1708+00	2017-10-19 23:18:01.034913+00	1547			+16823004455								12	f	f		johnson etta	new lead	\N	
2016-11-04 21:04:52.930455+00	2016-12-10 01:05:18.401225+00	1548			+14849488554								3	f	f			new lead	\N	
2016-10-20 13:50:42.848834+00	2016-12-10 01:05:18.401196+00	1549			+16109179777								3	f	f			new lead	\N	
2016-07-22 07:56:10.620033+00	2016-07-22 16:51:23.304216+00	1550	Scott	Roberts	+16146157608								1	f	f	scott887@gmail.com		new lead	\N	
2017-10-02 19:55:01.307787+00	2017-10-02 19:57:40.942162+00	1551			+18179855133								12	f	f		nov	new lead	\N	
2016-08-31 18:58:47.774997+00	2016-12-10 00:55:45.165455+00	1552			+16104279075								3	f	f			new lead	\N	
2017-07-28 23:36:01.340177+00	2017-08-17 14:35:21.045688+00	1553			+12148092395								12	f	f		dallas  tx	new lead	\N	
2017-09-07 21:35:13.612989+00	2017-09-07 21:45:20.883117+00	1554	Megan	Madison	+14702977132								13	f	f	msmadison1611@gmail.com		new lead	\N	
2017-06-23 20:03:12.759713+00	2017-06-24 13:45:04.894076+00	1555	Stephanie	Palmer	+13143224487								13	f	f	mizzpal62@gmail.com		new lead	\N	
2016-08-05 21:45:29.43072+00	2017-11-29 18:31:10.2621+00	1556			+14155837683								1	f	f			new lead	\N	
2017-11-22 20:11:08.397614+00	2017-11-22 20:13:33.971625+00	1557	Jessica	Henson	+17063518374								13	f	f	hensonj1986@gmail.com		new lead	\N	
2016-06-02 12:09:37.095798+00	2016-12-09 17:06:53.905666+00	1558	Unknown		+13612937569								3	f	f			new lead	\N	
2016-11-04 17:04:14.510178+00	2016-11-04 17:12:40.543063+00	1559			+14049924660								1	f	f			new lead	\N	
2017-12-23 00:18:23.044275+00	2017-12-23 00:20:14.424249+00	1560			+18172299286								12	f	f		hull karleigh	new lead	\N	
2016-11-04 17:38:22.962567+00	2016-11-04 17:41:26.975657+00	1561			+18174669429								1	f	f			new lead	\N	
2017-05-12 23:25:18.921131+00	2017-11-29 18:38:49.811437+00	1562			+19176041956								9	f	f		foody zachary  	new lead	\N	
2017-11-04 08:52:04.067231+00	2017-11-04 08:52:04.121576+00	1563	steven	turpin	+17622363457								13	f	f	steven_turpin@yahoo.com		new lead	\N	
2016-10-06 21:04:48.84888+00	2016-12-10 01:00:18.568497+00	1564			+18669013212								3	f	f			new lead	\N	
2017-12-08 16:38:33.70778+00	2017-12-08 16:38:42.912546+00	1565			+17814639138								6	f	f			new lead	\N	
2016-10-12 19:15:55.939355+00	2016-12-10 00:57:48.461831+00	1566			+18052166222								3	f	f			new lead	\N	
2016-07-25 19:30:45.545408+00	2016-07-25 19:32:50.266143+00	1567	sue	admans	+19613264524								1	f	f	sueadmn@yahoo.com		new lead	\N	
2016-11-07 20:54:11.020725+00	2016-11-07 21:25:22.821223+00	1568			+18328121923								1	f	f			new lead	\N	
2017-05-10 23:32:57.228165+00	2017-11-29 18:38:53.215625+00	1569			+12148129395								9	f	f		empire exotic m	new lead	\N	
2017-05-24 16:28:20.653749+00	2017-11-29 18:38:49.813082+00	1570			+16784739627								9	f	f		1st citizens ba	new lead	\N	
2017-12-12 00:49:46.14079+00	2017-12-12 01:05:59.671697+00	1571	ruiqi	yang	+12244327726								15	f	f	RICKY.YANG.P@GMAIL.COM		new lead	\N	
2016-09-22 20:27:30.921785+00	2016-12-09 17:10:17.413478+00	1572			+14848098924								3	f	f			new lead	\N	
2017-12-26 17:58:22.968353+00	2017-12-27 20:29:14.918304+00	1573	Amber	Reed	+16787944703								13	f	f	amberleigh2383@yahoo.com		select status	\N	
2017-05-05 16:46:01.807689+00	2017-11-29 18:38:49.809959+00	1574			+18708200576								9	f	f		green michael  	new lead	\N	
2017-12-20 14:35:32.322941+00	2017-12-20 14:37:12.794697+00	1575	Kimberly	Hunt	+19043925431								15	f	f	kimhunt041774@gmail.com		new lead	\N	
2017-04-14 19:18:52.253775+00	2017-11-29 18:38:49.805002+00	1576			+19724312596								9	f	f		j c penney co i	new lead	\N	
2017-12-02 18:40:05.587131+00	2017-12-02 19:05:03.701002+00	1577			+12392295855								15	f	f			new lead	\N	
2017-07-17 14:55:04.542612+00	2017-07-17 14:55:54.738747+00	1578			+16789003257								13	f	f			new lead	\N	
2017-11-08 20:00:09.154624+00	2017-11-08 20:00:57.242153+00	1579	Sarah Katie	Work	+17068898534								13	f	f	Katiework1025@gmail.com		new lead	\N	
2017-11-10 18:55:44.577222+00	2017-11-29 18:31:56.600507+00	1580			+15707351358								1	f	f			new lead	\N	
2017-04-18 13:59:57.800206+00	2017-11-29 18:47:25.068101+00	1581			+19727461046								8	f	f		gannon patrick	new lead	\N	
2017-05-23 14:58:33.99411+00	2017-05-23 15:00:42.32646+00	1582			+14233142428								12	f	f		douse	new lead	\N	
2017-11-18 02:54:50.064568+00	2017-11-18 14:15:35.560117+00	1583			+17067687232								13	f	f			select status	\N	
2016-06-25 18:37:17.938071+00	2016-06-27 12:24:50.730711+00	1584	ron 	rabich	+13305833432								1	f	f	jlabich@aol.com		new lead	\N	
2017-11-03 21:58:44.683121+00	2017-11-03 22:05:35.519903+00	1585			+16824652784								12	f	f		fort worth  tx	new lead	\N	
2016-08-23 00:41:08.285988+00	2017-11-29 18:32:13.8219+00	1586	Candi	Ashley	+13308819655								1	f	f	candiashley143@yahoo.com		new lead	\N	
2017-12-22 20:15:49.22265+00	2017-12-22 20:19:34.155494+00	1587	Javar	Garvin	+18038424601								13	f	f	Javargarvin@gmail.com		select status	\N	
2016-11-05 13:29:45.583948+00	2016-11-05 13:29:45.61089+00	1588	Ricky	Garner	+18322564183								1	f	f	Hvacricky@hotmail.com		new lead	\N	
2016-09-28 14:52:51.426757+00	2016-11-09 15:42:56.351397+00	1589			+19198044400								3	f	f			new lead	\N	
2017-04-27 23:17:48.994684+00	2017-11-29 18:38:49.807222+00	1590			+16822342221								9	f	f		nguyen lehang	new lead	\N	
2017-11-02 21:39:39.964346+00	2017-11-02 21:41:39.728587+00	1591			+18475328561								12	f	f		carrasco brenda	new lead	\N	
2017-05-18 16:53:18.025424+00	2017-11-29 18:38:49.812167+00	1592			+12146729100								9	f	f		ocbf church    	new lead	\N	
2017-10-27 14:59:28.430243+00	2017-10-27 15:21:21.882275+00	1593			+18172889800								12	f	f		moncrief cancer institute	new lead	\N	
2017-09-09 13:50:49.308339+00	2017-09-09 13:57:37.644041+00	1594	Keira	Fletcher 	+17708207797								13	f	f	Kekefletcher07@gmail.com		new lead	\N	
2016-11-01 16:41:23.606689+00	2016-11-01 16:46:15.227584+00	1595			+16316014313								1	f	f			new lead	\N	
2016-05-25 17:11:55.560096+00	2017-11-29 18:31:56.600051+00	1596	Unknown		+17815968858								1	f	f			new lead	\N	
2017-09-28 22:03:51.502885+00	2017-09-28 22:08:41.847553+00	1597	Andrew	Ulmer	+16788584730								13	f	f	Aulmer2002@yahoo.com		new lead	\N	
2016-11-15 02:09:58.165333+00	2016-11-15 02:09:58.193994+00	1598	DAVID	BOONE	+18167266011								1	f	f	boone816@gmail.com		new lead	\N	
2016-11-03 01:41:57.230867+00	2016-11-03 01:42:16.089943+00	1599			+19282423225								1	f	f			new lead	\N	
2016-06-06 19:09:54.350489+00	2016-06-06 19:10:38.530487+00	1600	David	VanNess	+15083203041								1	f	f	davidvcri@gmail.com		new lead	\N	
2017-12-04 22:15:16.948238+00	2017-12-04 22:15:58.038087+00	1601	Shannon 	Hill	+12816509730								15	f	f	Shannonhill2001@yahoo.com		new lead	\N	
2016-08-02 01:34:04.239456+00	2016-08-05 12:50:01.529413+00	1602	Steven	Feister	+16613508726								1	f	f	Jdm91si@gmail.com		application submitted - autopay	\N	
2016-11-22 18:17:26.467756+00	2016-12-10 01:03:35.62064+00	1603			+14438644631								3	f	f			new lead	\N	
2016-11-11 19:25:17.599727+00	2016-11-11 19:51:38.270587+00	1604			+19285309438								1	f	f			new lead	\N	
2017-05-25 19:45:30.892056+00	2017-11-29 18:38:49.813494+00	1605			+12147787934								9	f	f		gm trnsprtn	new lead	\N	
2017-05-31 23:31:25.694641+00	2017-11-29 18:38:53.215632+00	1606			+17739699892								9	f	f		chicago  il	new lead	\N	
2017-10-21 16:12:13.633675+00	2017-10-21 16:13:47.253123+00	1607			+17069744980								13	f	f			new lead	\N	
2017-10-28 16:28:36.720966+00	2017-10-28 16:29:31.372001+00	1608	Jesse	Mauldin	+14049514629								13	f	f	jmauldin2594@gmail.com		new lead	\N	
2017-04-18 20:37:59.446223+00	2017-11-29 18:47:25.068122+00	1609			+18179950208								8	f	f		cell phone  tx	new lead	\N	
2016-07-07 17:34:44.763853+00	2017-11-29 18:32:13.82141+00	1610	Harlan	Guesman	+14408583511								1	f	f	NA@noemail.com		new lead	\N	
2017-12-07 14:46:41.650742+00	2017-12-07 14:58:18.435154+00	1611			+16159453220								15	f	f			new lead	\N	
2017-12-07 17:11:21.729406+00	2017-12-07 17:50:38.491444+00	1612			+13303511120								15	f	f			new lead	\N	
2016-09-22 16:30:23.942542+00	2016-12-10 01:03:20.585924+00	1613			+14437533131								3	f	f			new lead	\N	
2017-12-06 21:29:44.961496+00	2017-12-06 21:35:51.020363+00	1614			+13615106575								15	f	f			new lead	\N	
2017-12-05 15:29:05.714362+00	2017-12-05 15:30:21.452268+00	1615	Diana	Deleon	+16306314833								15	f	f	Deleon0920@aol.com		new lead	\N	
2017-11-21 17:49:27.915027+00	2017-11-21 17:51:11.161959+00	1616	maria	Navarro	+16787252042								13	f	f	mariamnavarro8@gmail.com		new lead	\N	
2017-10-07 17:40:08.410535+00	2017-10-07 17:42:02.139741+00	1617			+14044547041								13	f	f			new lead	\N	
2017-12-14 15:33:31.401836+00	2017-12-14 15:36:22.857084+00	1618	Julie	Bailey	+16789636179								13	f	f	jb950319@yahoo.com		select status	\N	
2017-08-07 16:25:22.957329+00	2017-08-07 16:31:39.881995+00	1619			+16782249096								13	f	f			new lead	\N	
2018-01-07 20:20:43.500191+00	2018-01-07 20:20:54.849702+00	1620	VERMAAK	Vermaak	+17732909650								1	f	f	hv13@hotmail.com	VERMAAK HERMANU	sold customer	0	
2016-08-05 02:08:26.270857+00	2016-08-10 16:39:34.241669+00	1621	Teresa	Sawyers	+15133743923								1	f	f	dstrs95@embarqmail.com		application submitted - autopay	\N	
2016-07-04 13:07:27.938037+00	2017-11-29 18:32:13.821296+00	1622	Unknown	Carter	+13302571113								1	f	f	rrscarter@aol.com		new lead	\N	
2016-11-03 00:44:45.617051+00	2016-12-10 01:05:11.337168+00	1623			+16469323694								3	f	f			new lead	\N	
2016-08-28 18:09:15.133384+00	2017-11-29 18:31:37.369097+00	1624	gerald	holmes	+16618106174								1	f	f	gjh3ps@gmail.com		application submitted - autopay	\N	
2017-12-02 21:37:17.188569+00	2017-12-02 21:41:15.002855+00	1625			+12148156626								12	f	f		morgan robert	new lead	\N	
2017-05-22 22:09:49.442131+00	2017-11-29 18:38:49.812742+00	1626			+18173208917								9	f	f		cell phone   tx	new lead	\N	
2017-10-05 14:04:25.601682+00	2017-10-05 14:07:37.541108+00	1627			+18172109225								12	f	f		wilson ricky	new lead	\N	
2016-11-16 17:54:48.24699+00	2016-11-16 17:54:48.283256+00	1628	Jeremy	Dishongh	+19367884320								1	f	f	johnniedishongh@hotmail.com		new lead	\N	
2017-04-07 17:05:00.120188+00	2017-11-29 18:38:53.21341+00	1629			+15203704562								9	f	f		wireless subscr	new lead	\N	
2017-04-23 13:15:13.393809+00	2017-11-29 18:38:53.214475+00	1630			+1112097321016								9	f	f			new lead	\N	
2016-08-09 14:32:55.894425+00	2017-01-27 21:12:23.81293+00	1631	Michael	Costa	+15132265257								1	f	f	buzz5m@hotmail.com		new lead	\N	
2017-05-05 19:16:28.587227+00	2017-11-29 18:38:53.215142+00	1632			+16367956106								9	f	f		wireless caller	new lead	\N	
2016-12-22 21:28:22.77923+00	2016-12-22 21:29:34.886461+00	1633			+18327302127								1	f	f			new lead	\N	
2016-08-23 15:57:25.949489+00	2017-11-29 18:31:37.36869+00	1634			+16615787920								1	f	f			general interest	\N	
2017-05-02 23:27:31.75961+00	2017-11-29 18:38:53.213787+00	1635			+14693347023								9	f	f		MORALES LUIS	new lead	\N	
2017-11-21 14:31:45.274147+00	2017-11-21 14:33:56.61882+00	1636	Kaitlyn	Chilli	+14702723574								13	f	f	kaitlynchilli@gmail.com		select status	\N	
2017-05-01 21:26:42.985261+00	2017-11-29 18:38:49.808404+00	1637			+18178991309								9	f	f		bra bra	new lead	\N	
2016-07-29 18:11:25.849445+00	2017-11-29 18:31:41.490568+00	1638	Timothy	McNew	+16145953041								1	f	f	tlmcnew@yahoo.com		new lead	\N	
2017-12-18 18:28:13.609723+00	2017-12-18 18:36:17.644595+00	1639			+14702090079								13	f	f		bruce timothy	new lead	\N	
2017-08-31 22:19:27.725397+00	2017-08-31 22:27:37.370513+00	1640			+14045837906								13	f	f			new lead	\N	
2017-04-26 18:31:17.376348+00	2017-11-29 18:38:49.80678+00	1641			+12142135869								9	f	f		padilla wilmar 	new lead	\N	
2017-11-16 16:09:06.429222+00	2017-11-16 16:10:16.583863+00	1642			+15802724400								12	f	f		tarron reed ren	new lead	\N	
2016-06-27 18:53:46.924986+00	2017-11-29 18:31:10.261329+00	1643	Unknown		+15134902016								1	f	f			new lead	\N	
2017-05-09 15:23:35.346607+00	2017-11-29 18:38:53.215463+00	1644			+19738687977								9	f	f		cell phone   nj	new lead	\N	
2017-08-24 19:13:30.390666+00	2017-08-24 19:19:39.139501+00	1645	Krista	Argall	+14046611711								13	f	f	kristalsatt@gmail.com		new lead	\N	
2017-12-01 20:55:53.24928+00	2017-12-01 20:55:53.285582+00	1646	marie	cajuste	+14072220898								15	f	f	joealezi@yahoo.com		new lead	\N	
2016-07-20 16:09:25.669232+00	2016-12-09 17:06:57.83038+00	1647			+12674321769								3	f	f			new lead	\N	
2016-11-18 16:18:53.61695+00	2016-11-18 16:23:19.480108+00	1648			+13143982324								1	f	f			new lead	\N	
2017-07-17 21:58:54.555496+00	2017-07-17 22:21:46.898228+00	1649			+16823093225								12	f	f		euless  tx	new lead	\N	
2017-03-13 18:03:06.976858+00	2017-03-13 18:32:39.142271+00	1650			+14699552307								1	f	f			new lead	\N	
2016-10-19 21:21:12.808892+00	2016-12-09 17:06:57.830409+00	1651			+12673743193								3	f	f			new lead	\N	
2017-03-10 01:27:29.901567+00	2017-11-29 18:38:53.212018+00	1652			+12148081074								9	f	f		hoskins helen  	new lead	\N	
2017-05-05 18:46:58.306937+00	2017-11-29 18:38:49.810044+00	1653			+15125853644								9	f	f		ernest page	new lead	\N	
2017-10-09 00:53:46.595135+00	2017-10-11 14:15:20.182175+00	1654	SHatoria	Clark 	+16784997467								13	f	f	Torriclark28@gmail.com		select status	\N	
2016-06-06 11:50:16.691112+00	2017-11-29 18:31:01.155599+00	1655	Spam		+15804671930								1	f	f			new lead	\N	
2017-05-02 20:11:20.279155+00	2017-11-29 18:38:49.808813+00	1656			+18067019292								9	f	f		jones tanecia	new lead	\N	
2017-12-06 21:09:59.979993+00	2017-12-06 21:33:41.721482+00	1657			+18177709852								12	f	f		don mexico	new lead	\N	
2017-03-20 16:31:15.347186+00	2017-11-29 18:47:25.067877+00	1658			+18178978555								8	f	f		verdeja jay    	new lead	\N	
2017-10-19 00:13:12.878312+00	2017-11-29 18:38:53.213801+00	1659			+14694388337								9	f	f		empire motor ca	new lead	\N	
2016-07-25 15:28:36.91845+00	2016-08-04 13:27:14.402816+00	1660	daniel	clepper	+15138363249								1	f	f	daniel.clepper@afit.edu		application submitted - autopay	\N	
2017-11-15 14:17:26.478974+00	2017-11-15 14:20:41.336793+00	1661	Jessica	Talley	+17706549150								13	f	f	j_talley123@yahoo.com		select status	\N	
2016-11-29 04:20:51.711985+00	2016-11-29 04:20:51.750006+00	1662	Yirui	Liang	+15129224398								1	f	f	liangyirui@live.com		new lead	\N	
2017-09-04 15:29:09.071652+00	2017-09-04 15:35:12.278229+00	1663	Tammy	Burgess	+17063512781								13	f	f	tammyburgess@yahoo.com		new lead	\N	
2016-11-03 02:51:21.449259+00	2016-11-03 02:51:21.488649+00	1664	Nesa Jos Benny	Britto	+15022024475								1	f	f	josbenny@gmail.com		new lead	\N	
2017-12-02 17:19:03.140334+00	2017-12-02 17:19:07.566104+00	1665			+14843811810								10	f	f			new lead	\N	
2016-11-07 15:12:49.932843+00	2016-11-07 15:45:25.121856+00	1666			+18165500771								1	f	f			new lead	\N	
2017-05-16 14:16:23.645732+00	2017-08-17 14:35:21.045205+00	1667			+13187792656								12	f	f		shreveport  la	new lead	\N	
2016-07-25 13:56:51.894363+00	2016-07-25 15:09:10.742109+00	1668	GAIL	MCCLUSKEY	+12075928454								1	f	f	gail_mosher@hotmail.com		new lead	\N	
2017-10-21 13:55:02.111707+00	2017-10-21 13:58:21.038608+00	1669			+18179664962								12	f	f		fisher john	new lead	\N	
2017-07-03 12:35:16.813998+00	2017-07-03 12:35:16.881264+00	1670	Abel	Gbomina	+18166569867								13	f	f	gbomina88@gmail.com		new lead	\N	
2017-07-27 17:00:22.504463+00	2017-07-27 17:01:18.511852+00	1671			+16786771269								13	f	f			new lead	\N	
2017-11-27 16:47:36.77405+00	2017-11-27 16:53:27.202651+00	1672			+17063512164								13	f	f		bridges tevin	new lead	\N	
2017-12-20 23:39:33.792174+00	2017-12-20 23:43:24.925421+00	1673	Brian 	Edwards 	+17063060963								13	f	f	brianmedwards@hotmail.com		select status	\N	
2017-12-09 21:51:17.794897+00	2017-12-09 22:09:10.232267+00	1674			+12543960300								15	f	f			new lead	\N	
2017-03-31 00:14:24.059548+00	2017-05-17 15:41:07.224247+00	1675			+14696436154								12	f	f		shakeia robinso	new lead	\N	
2017-08-07 00:58:00.557182+00	2017-11-29 18:31:56.600458+00	1676			+15707527460								1	f	f			new lead	\N	
2017-12-04 18:25:23.947921+00	2017-12-04 18:26:56.93171+00	1677			+17705721135								14	f	f			new lead	\N	
2016-08-17 21:07:11.60707+00	2017-11-29 18:31:18.808854+00	1678	Melissa	Yarde	+14062613717								1	f	f	missyandashton@yahoo.com		application submitted - credit union	\N	
2017-04-03 19:24:20.692972+00	2017-04-03 19:53:01.54258+00	1679	John	Fantasia	+17813891281								1	f	f	john.fantasia@hotmail.com		application submitted - credit union	\N	
2017-10-09 07:51:41.422575+00	2017-10-11 14:08:03.269498+00	1680	Shelley 	Dean	+14702192605								13	f	f	Shelleytessadean525@gmail.com		select status	\N	
2016-08-19 21:18:11.37526+00	2017-11-29 18:31:37.368996+00	1681	Mina	Leletzopoulos	+16618395010								1	f	f	golelet@verizon.net		application submitted - autopay	\N	
2017-04-25 22:49:19.629767+00	2017-11-29 18:38:53.214553+00	1682			+17078436891								9	f	f		agyekum christi	new lead	\N	
2017-04-25 23:56:43.085293+00	2017-11-29 18:47:25.06832+00	1683			+14694748089								8	f	f		chiffon jackson	new lead	\N	
2017-09-18 22:45:07.551513+00	2017-09-18 22:51:06.412043+00	1684			+16783947856								13	f	f			new lead	\N	
2017-12-01 18:38:09.399448+00	2017-12-01 18:39:11.799782+00	1685	Alexia	Carter	+14702773390								13	f	f	Alexia_carter17@yahoo.com	cell phone   ga	select status	\N	
2017-05-03 22:08:37.589008+00	2017-11-29 18:38:49.809521+00	1686			+12142745003								9	f	f		porras teresa	new lead	\N	
2017-05-24 17:26:52.111733+00	2017-11-29 18:38:53.214149+00	1687			+12144037320								9	f	f		oquinn diana   	new lead	\N	
2017-04-24 21:28:09.417861+00	2017-04-24 21:28:21.844816+00	1688			+18175507740								12	f	f		head merodee   	new lead	\N	
2016-10-16 17:10:14.035957+00	2016-10-17 03:11:25.51454+00	1689			+13146621162								3	f	f			new lead	\N	
2017-11-24 14:11:45.483811+00	2017-11-24 14:15:32.201763+00	1690			+17066317796								13	f	f			new lead	\N	
2017-12-05 21:12:10.506742+00	2017-12-05 21:28:26.710523+00	1691			+15852977466								15	f	f			new lead	\N	
2017-04-09 17:10:39.879761+00	2017-11-29 18:38:53.213631+00	1692			+14699177528								9	f	f		fritz keysha r 	new lead	\N	
2017-05-25 18:46:13.664551+00	2017-11-29 18:47:25.068516+00	1693			+14055171348								8	f	f		ellis larry    	new lead	\N	
2017-05-30 15:11:17.291668+00	2017-11-29 18:38:49.813997+00	1694			+13134328641								9	f	f		southfield  mi	new lead	\N	
2017-07-17 11:02:35.233614+00	2017-11-29 18:31:56.60045+00	1696			+15703448832								1	f	f			new lead	\N	
2016-09-07 14:57:08.300611+00	2016-12-09 17:06:53.905886+00	1697			+12678848696								3	f	f			new lead	\N	
2017-12-08 16:01:13.164733+00	2017-12-08 16:04:30.766746+00	1698	Joel 	Rogers	+14049044293								13	f	f	Joelrogers127@yahoo.com		new lead	\N	
2016-06-10 20:43:53.725903+00	2017-11-29 18:31:10.261238+00	1699	Unknown	BURRIS	+15136154957								1	f	f	JBURRIS531@GMAIL.COM		new lead	\N	
2017-12-11 17:38:57.136734+00	2017-12-11 17:42:43.764877+00	1700	Raphael	Arocho	+14044370063								14	f	f	Gameboyblanb@gmail.com		new lead	\N	
2016-06-17 15:51:06.935975+00	2016-12-09 17:06:53.905687+00	1701	Unknown		+12156628001								3	f	f			new lead	\N	
2017-12-04 19:24:09.740861+00	2017-12-04 19:46:10.761543+00	1702			+14699891508								12	f	f		murray alvin	new lead	\N	
2017-03-27 21:55:04.281219+00	2017-11-29 18:31:10.262667+00	1703			+15138511156								1	f	f			new lead	\N	
2016-10-05 17:31:56.2717+00	2016-12-10 01:05:18.401061+00	1704			+16109487444								3	f	f			new lead	\N	
2016-12-02 22:48:13.737677+00	2016-12-02 22:57:52.179824+00	1705			+18326061836								1	f	f			new lead	\N	
2016-05-31 15:10:56.886509+00	2017-11-29 18:32:10.406418+00	1706	Unknown		+18166005483								1	f	f			new lead	\N	
2017-05-05 20:46:54.647666+00	2017-11-29 18:38:53.215163+00	1707			+14694861969								9	f	f		kipp brian     	new lead	\N	
2017-03-31 22:26:18.238706+00	2017-08-17 14:35:21.044923+00	1708			+16823096915								12	f	f		wireless caller	new lead	\N	
2016-11-14 18:26:37.187725+00	2016-11-14 18:26:37.209457+00	1709	PATRICIA	GUTIERREZ	+16268934404								1	f	f	plgutierrez@msn.com		new lead	\N	
2017-05-25 15:56:31.225395+00	2017-11-29 18:38:49.813373+00	1710			+19497578901								9	f	f		george neece	new lead	\N	
2017-10-06 16:58:26.324893+00	2017-10-06 16:59:41.017967+00	1711	Teresa	Borders	+17703788434								13	f	f	teresaborders22.tb@gmail.com		new lead	\N	
2017-11-01 16:02:30.926901+00	2017-11-01 16:02:30.963506+00	1712	Steve	Steve	+15292348975								1	f	f	steve.webjobs+SamuelGroebner@gmail.com		new lead	\N	
2017-09-12 21:26:43.647458+00	2017-09-12 21:36:57.722247+00	1713			+18178529942								12	f	f		mccorkle walter	new lead	\N	
2016-11-02 20:30:10.836338+00	2016-11-02 20:30:59.09439+00	1714			+17708853805								1	f	f			new lead	\N	
2017-03-11 22:20:24.681697+00	2017-11-29 18:38:53.212046+00	1715			+17276864364								9	f	f		coates larry	new lead	\N	
2016-07-16 13:09:12.449937+00	2016-12-10 00:55:45.164917+00	1716			+16107929852								3	f	f			new lead	\N	
2017-10-03 14:06:48.067807+00	2017-10-03 14:13:04.202397+00	1717			+17707666581								13	f	f			new lead	\N	
2017-12-01 21:56:23.360828+00	2017-12-01 21:58:13.172871+00	1718	William	Bettcher	+15208259596								15	f	f	approvedpainting@msn.com		new lead	\N	
2016-09-07 18:00:25.348523+00	2016-12-10 01:00:18.568392+00	1719			+16197022187								3	f	f			new lead	\N	
2017-12-29 15:38:11.462683+00	2017-12-29 15:44:09.589987+00	1720	Jerry	Ray	+14049576976								13	f	f	rayjerry555@gmail.com		select status	\N	
2016-08-15 21:10:39.048805+00	2016-12-20 22:16:06.426509+00	1721			+12157414200								3	f	f			new lead	\N	
2017-12-07 21:56:01.808664+00	2017-12-07 22:05:10.772578+00	1722			+19408645279								15	f	f			new lead	\N	
2017-12-07 19:48:18.707544+00	2017-12-07 20:09:57.701681+00	1723			+18177569908								12	f	f		aersale inc	new lead	\N	
2017-03-02 21:00:28.49376+00	2017-11-29 18:47:25.067559+00	1724			+19728152845								8	f	f		freeman auto	new lead	\N	
2016-07-04 00:05:39.697244+00	2016-07-05 13:19:51.326304+00	1725	Beverly	Strickland	+16144416067								1	f	f	osutat27@gmail.com		new lead	\N	
2016-11-02 13:10:48.850986+00	2016-11-02 13:13:30.282705+00	1726			+19043105588								1	f	f			new lead	\N	
2017-04-25 16:29:44.577393+00	2017-11-29 18:38:49.806611+00	1727			+19084562900								9	f	f		cell phone   nj	new lead	\N	
2016-09-15 20:39:56.472525+00	2017-11-29 18:31:37.369133+00	1728	Zackary	Brannon	+12197431613								1	f	f	zjpbrannon@comcast.net		application submitted - credit union	\N	
2017-12-18 20:05:25.97321+00	2017-12-18 20:19:57.606327+00	1729			+14407259548								15	f	f			new lead	\N	
2017-12-16 17:53:50.20439+00	2017-12-16 17:59:47.786126+00	1730	Amy	Hester	+17703124796								13	f	f	Amydeltoro1531@yahoo.com		new lead	\N	
2017-11-02 19:05:03.201847+00	2017-11-02 19:05:41.546525+00	1731			+14178391078								1	f	f			new lead	\N	
2017-04-12 18:07:11.14983+00	2017-11-29 18:38:49.804613+00	1732			+18594860837								9	f	f		daugherty gary	new lead	\N	
2017-09-29 20:50:44.207405+00	2017-09-29 21:14:29.470169+00	1733			+18179918865								12	f	f		ashburn jerod	new lead	\N	
2017-06-20 21:05:27.67819+00	2017-06-24 13:45:04.894018+00	1734			+12292202417								13	f	f			new lead	\N	
2017-06-21 15:05:29.287587+00	2017-06-24 13:44:45.085707+00	1735	Rickey	Byers	+15733803566								13	f	f	rickey.byers551961@gmail.com		new lead	\N	
2017-06-02 20:29:33.719891+00	2017-06-02 20:33:41.680879+00	1736			+18329250177								1	f	f			new lead	\N	
2016-08-11 20:40:43.644955+00	2017-11-29 18:31:37.368875+00	1737			+16613095008								1	f	f			new lead	\N	
2017-12-01 22:17:34.595338+00	2017-12-01 22:18:20.901704+00	1738			+16789891928								13	f	f		vicki cook	new lead	\N	
2018-01-30 22:35:07.116261+00	2018-01-30 22:35:31.82133+00	1739	Terry	Tester	+17739699892								1	f	f	steve@mclaren.co	chicago  il	service call	Herman Vermaak	
2016-06-28 13:53:25.378901+00	2017-11-29 18:32:13.820674+00	1740	Norman	Spencer	+13302402698								1	f	f	na@noemail.com		new lead	\N	
2017-03-13 15:00:40.833443+00	2017-11-29 18:38:53.212082+00	1741			+16053800938								9	f	f		wireless caller	new lead	\N	
2016-11-02 19:04:52.266191+00	2017-02-11 20:03:29.469508+00	1742			+19417461335								5	f	f			new lead	\N	
2017-03-13 22:03:22.636744+00	2017-11-29 18:38:53.212154+00	1743			+18175266861								9	f	f		angel hernandez	new lead	\N	
2017-01-02 18:28:44.773602+00	2017-01-02 18:29:00.374577+00	1744			+17135027268								1	f	f			new lead	\N	
2016-08-08 22:45:08.116189+00	2016-08-09 11:39:16.615069+00	1745	Major	Robinson	+14063707968								1	f	f	mr.majorrobinson@gmail.com		application submitted - credit union	\N	
2017-10-10 17:22:51.245526+00	2017-10-10 17:23:21.981343+00	1746			+18038049510								6	f	f			new lead	\N	
2017-12-15 13:28:05.608851+00	2017-12-15 13:28:05.662334+00	1747	Joseph	Ewing	+14702529203								13	f	f	joei.ewing@aol.com		new lead	\N	
2016-07-06 20:27:56.223952+00	2016-12-10 01:05:18.400609+00	1748			+16102873383								3	f	f			new lead	\N	
2017-12-22 17:02:14.559495+00	2017-12-22 17:04:34.240391+00	1749	JAMES 	ANDERSON	+17069737494								13	f	f		cell phone   ga	select status	\N	
2017-12-28 14:31:54.801353+00	2017-12-28 14:34:00.634616+00	1750			+17077991676								12	f	f		green draylon	new lead	\N	
2017-12-26 02:08:26.547114+00	2017-12-26 02:08:26.629241+00	1751	Annette	Nelms	+16787326873								13	f	f	Anelms54@gmail.com		new lead	\N	
2016-07-06 21:03:16.165724+00	2016-12-10 01:05:18.400616+00	1752			+16102693400								3	f	f			new lead	\N	
2017-10-08 21:39:41.347268+00	2017-10-08 21:40:26.098897+00	1753			+18173129563								12	f	f		hightower alice	new lead	\N	
2016-11-21 19:52:41.892743+00	2016-12-10 01:02:27.218822+00	1754			+19314366347								3	f	f			new lead	\N	
2017-08-24 00:41:54.650482+00	2017-08-24 00:42:32.523926+00	1755			+17065219488								13	f	f			new lead	\N	
2016-08-11 19:25:52.292043+00	2016-12-10 01:05:18.40075+00	1756			+16107333043								3	f	f			new lead	\N	
2017-05-16 17:59:19.166582+00	2017-11-29 18:38:49.811796+00	1757			+12147246581								9	f	f		live fast custo	new lead	\N	
2017-10-09 02:18:21.118103+00	2017-10-11 14:09:31.599282+00	1758	Brittany 	Helton 	+17068798079								13	f	f	Brittanyhelton242@gmail.com		select status	\N	
2017-05-18 23:20:19.745226+00	2017-11-29 18:38:49.812238+00	1759			+12145291197								9	f	f		pick your cost llc	new lead	\N	
2016-07-05 20:52:25.018105+00	2017-11-29 18:32:13.821324+00	1760	Rick		+13302072415								1	f	f			new lead	\N	
2016-10-31 15:18:42.714365+00	2016-10-31 15:39:09.601108+00	1761			+12143985815								1	f	f			new lead	\N	
2016-11-10 20:32:51.33814+00	2017-01-27 21:12:23.814072+00	1762			+17036408383								1	f	f			new lead	\N	
2016-11-06 01:00:12.829404+00	2016-11-06 01:00:12.870151+00	1763	Jana	Harkrider	+17209843254								1	f	f	jana.harkrider@gmail.com		new lead	\N	
2017-11-21 12:15:27.35821+00	2017-11-29 18:31:56.600528+00	1764			+15708428634								1	f	f			new lead	\N	
2017-03-23 00:09:15.91268+00	2017-11-29 18:38:53.212805+00	1765			+12673048867								9	f	f		gatson cortney	new lead	\N	
2017-10-12 02:21:33.960072+00	2017-10-12 02:22:22.062807+00	1766			+16824009582								12	f	f		cole gerard	new lead	\N	
2017-05-04 20:48:28.301295+00	2017-11-29 18:38:53.215107+00	1767			+19256988100								9	f	f		cell phone   ca	new lead	\N	
2017-11-18 17:28:10.547278+00	2017-11-18 17:30:53.219884+00	1768	LaFarraih	Barmore	+17623388738								13	f	f	lafarraihbarmore@yahoo.com		new lead	\N	
2017-05-23 19:02:38.858791+00	2017-11-29 18:38:49.812883+00	1769			+12149954906								9	f	f		se sh	new lead	\N	
2016-08-02 01:16:29.539902+00	2016-08-02 13:47:49.595414+00	1770	Kyna	McKimson	+16143026203								1	f	f	ksm6971@yahoo.com		application submitted - credit union	\N	
2016-08-08 14:28:43.152415+00	2017-11-29 18:31:37.368519+00	1771			+16612027257								1	f	f			do not contact	\N	
2017-04-10 20:53:49.112573+00	2017-04-10 20:55:24.241839+00	1772			+12147449439								12	f	f		lara norma	new lead	\N	
2017-12-16 17:53:24.57838+00	2017-12-16 17:56:20.55766+00	1773			+17705347362								13	f	f		mote georgianna	new lead	\N	
2017-10-27 19:26:38.962039+00	2017-10-27 19:28:57.175667+00	1774			+16784144948								13	f	f			new lead	\N	
2017-05-02 23:26:45.79985+00	2017-11-29 18:38:49.808937+00	1775			+14045364747								9	f	f		ju seokmann    	new lead	\N	
2017-05-31 20:34:42.289523+00	2017-11-29 18:38:49.814295+00	1776			+14698184363								9	f	f		smith jimmy    	new lead	\N	
2017-08-31 20:17:48.957327+00	2017-08-31 20:19:36.077522+00	1777	Travis	Whidden	+17709122080								13	f	f	twhidden118@gmail.com		new lead	\N	
2017-11-15 21:04:59.623192+00	2017-11-15 21:08:55.020591+00	1778	Ziomara	Hammonds	+14784202137								13	f	f	ziomarahammonds@gmail.com		new lead	\N	
2017-01-28 01:06:28.120049+00	2017-02-08 14:10:41.264859+00	1779	Francisco	Granillo	+14805403674								1	f	f	asu59@cox.net		application submitted - autopay	\N	
2017-03-12 17:31:36.779673+00	2017-11-29 18:38:53.212061+00	1780			+14694277110								9	f	f		nguyen thu	new lead	\N	
2017-11-04 15:36:14.542927+00	2017-11-04 15:36:15.366364+00	1781			+14702625043								13	f	f			new lead	\N	
2017-05-31 21:15:26.192786+00	2017-11-29 18:38:53.212538+00	1782			+14122453333								9	f	f		cochran automot	new lead	\N	
2017-11-14 20:40:50.384424+00	2017-11-14 20:45:37.88825+00	1783	Amber	carney	+17069830695								13	f	f	aleecarney@gmail.com		select status	\N	
2017-11-08 13:56:54.264141+00	2017-11-08 14:42:54.353866+00	1784	Derrick	Allen	+17064108586								13	f	f	Dsgb0523@gmail.com		select status	\N	
2016-08-06 11:39:38.802384+00	2016-12-10 00:55:45.165187+00	1785			+16104540831								3	f	f			new lead	\N	
2017-05-31 19:47:49.577581+00	2017-11-29 18:38:49.81426+00	1786			+14699123592								9	f	f		caliber homes	new lead	\N	
2016-06-02 13:44:44.178262+00	2017-11-29 18:31:56.600082+00	1787	Unknown	Mondello	+17815848179								1	f	f	mondoplastics@msn.com		new lead	\N	
2017-08-30 21:07:18.612097+00	2017-08-30 21:10:32.326977+00	1788			+16825587529								12	f	f		artiguez maldon	new lead	\N	
2016-11-04 15:35:19.685438+00	2016-11-04 15:35:19.721423+00	1789	John	Redmon	+18164057915								1	f	f	jm_redmon@yahoo.com		new lead	\N	
2016-10-05 22:50:37.817963+00	2016-12-09 17:06:53.906042+00	1790			+12159685992								3	f	f			new lead	\N	
2017-04-22 18:03:27.845672+00	2017-11-29 18:47:25.068242+00	1791			+19728979437								8	f	f		mallery tuck	new lead	\N	
2017-07-17 23:17:13.079942+00	2017-07-17 23:20:30.745947+00	1792			+18179158521								12	f	f		cell phone   tx	new lead	\N	
2017-07-14 16:53:36.280438+00	2017-11-29 18:29:57.477851+00	1793			+19735776378								1	f	f			new lead	\N	
2017-08-15 15:06:47.651514+00	2017-08-15 15:07:31.755632+00	1794			+17705324389								13	f	f			new lead	\N	
2017-08-25 21:25:10.419052+00	2017-08-25 21:26:30.808755+00	1795	Victoria 	Ortiz	+17064645169								13	f	f	victoria3m4@gmail.com		new lead	\N	
2017-04-25 17:51:27.704379+00	2017-11-29 18:38:49.806632+00	1796			+14699540634								9	f	f		luan carolina	new lead	\N	
2017-02-12 19:00:53.845189+00	2017-02-12 19:02:27.35865+00	1797	Name	Unavailabl	+17378742833								1	f	f			new lead	\N	
2017-12-23 15:22:09.199673+00	2017-12-23 15:26:40.057092+00	1798			+15758089040								12	f	f		reagan robert p	new lead	\N	
2017-12-12 15:21:18.321597+00	2017-12-12 15:21:53.880264+00	1799			+14043726629								14	f	f			new lead	\N	
2017-03-09 16:56:04.674313+00	2017-11-29 18:38:53.211953+00	1800			+15014424449								9	f	f		hubbard angelia	new lead	\N	
2016-11-19 01:53:19.89708+00	2016-11-19 01:53:19.922931+00	1801	Alexander	Bostick	+18175785795								1	f	f	alexmbostick@gmail.com		new lead	\N	
2016-08-15 21:55:38.194651+00	2016-12-10 00:55:45.165335+00	1802			+16109482115								3	f	f			new lead	\N	
2016-06-27 16:06:48.321675+00	2017-11-29 18:32:13.820596+00	1803	Unknown	Wildman	+13308313840								1	f	f	twildman@neo.rr.com		new lead	\N	
2017-05-03 15:29:33.057179+00	2017-05-17 15:41:07.224407+00	1804			+16824121971								12	f	f		wireless caller	new lead	\N	
2017-12-11 17:17:00.090329+00	2017-12-11 17:17:08.801933+00	1805			+16785228797								14	f	f			new lead	\N	
2017-05-02 16:17:54.0771+00	2017-11-29 18:38:49.808642+00	1806			+12145056231								9	f	f		bomar brant    	new lead	\N	
2018-06-08 14:40:04.743011+00	2018-06-08 14:40:06.35458+00	1807	TeamV	Test	+15555551		13825 Sunrise Valley Dr			VA	20171		4	f	f	cson@teamvelocitymarketing.com				
2017-12-06 14:08:24.718418+00	2017-12-06 14:12:35.580034+00	1808			+16145071629								15	f	f			new lead	\N	
2016-08-08 18:28:51.505039+00	2017-11-29 18:32:13.821692+00	1809	Mark	Such	+13308810901								1	f	f	1@1.com		application submitted - autopay	\N	
2017-11-09 16:23:15.422213+00	2017-11-09 16:26:57.428321+00	1810	Lashonda	Burks	+17063729769								13	f	f	Burkslashonda@gmail.com		new lead	\N	
2017-07-31 13:09:09.779148+00	2017-07-31 13:09:42.131152+00	1811			+14702667623								13	f	f			new lead	\N	
2017-06-26 16:49:45.220894+00	2017-06-26 16:56:42.515581+00	1812	Angela	Graham	+17702657493								13	f	f	Mayberry9804@gmail.com		new lead	\N	
2017-05-09 22:30:12.812355+00	2017-11-29 18:38:53.215527+00	1813			+18323909428								9	f	f		lladira angulo	new lead	\N	
2017-03-17 21:11:23.732205+00	2017-11-29 18:47:25.06782+00	1814			+12149091364								8	f	f		gaston shaundra	new lead	\N	
2017-10-30 15:31:55.119108+00	2017-10-30 15:34:55.716289+00	1815			+16827010719								12	f	f		dallas  tx	new lead	\N	
2017-05-09 18:27:57.29445+00	2017-11-29 18:38:53.215506+00	1816			+19517894179								9	f	f		may g v a      	new lead	\N	
2017-04-23 22:30:32.799385+00	2017-04-23 22:30:43.335969+00	1817			+12544661054								12	f	f		wireless caller	new lead	\N	
2017-09-14 12:50:45.535123+00	2017-09-14 12:50:46.56535+00	1818	Kayla	Reed	+16789376421								13	f	f	Kaylanr1@gmail.com		new lead	\N	
2017-07-14 14:10:12.04298+00	2017-07-14 14:10:52.253297+00	1819			+14048405104								13	f	f			new lead	\N	
2017-11-29 20:47:14.658284+00	2017-11-29 20:48:11.058971+00	1820	Connor	Kroshus	+17202265551								15	f	f	connor.kroshus@yahoo.com		new lead	\N	
2017-03-11 22:29:18.628602+00	2017-11-29 18:47:25.067694+00	1821			+18176837818								8	f	f		brooks lamedra	new lead	\N	
2017-05-01 19:23:53.276991+00	2017-11-29 18:38:53.214873+00	1822			+12147839984								9	f	f		wireless caller	new lead	\N	
2016-06-06 20:00:12.033844+00	2017-11-29 18:31:10.261186+00	1823	Unknown	Buckley	+15138009798								1	f	f	Lvlyldy711@yahoo.com		new lead	\N	
2016-11-04 19:52:02.34072+00	2016-12-10 01:01:51.441142+00	1824			+16197409721								3	f	f			new lead	\N	
2017-11-14 22:05:09.370012+00	2017-11-14 22:10:38.224932+00	1825			+18178568993								12	f	f		johnson paul	new lead	\N	
2016-09-07 17:29:39.213762+00	2016-12-09 17:07:45.33164+00	1826			+12153852693								3	f	f			new lead	\N	
2016-09-01 23:00:40.435305+00	2016-12-10 01:01:51.440765+00	1827			+16193704953								3	f	f			new lead	\N	
2017-12-27 22:34:17.441504+00	2017-12-27 22:47:22.812933+00	1828			+14073393193								15	f	f			new lead	\N	
2016-11-02 16:03:09.088228+00	2016-11-02 16:03:09.11252+00	1829	Odis	Sessions	+13463005950								1	f	f	paul.sessions67@gmail.com		new lead	\N	
2016-10-05 00:01:00.566103+00	2016-12-10 01:01:51.441002+00	1830			+16197880341								3	f	f			new lead	\N	
2016-08-15 18:44:18.242145+00	2017-11-29 18:32:13.821821+00	1831	robert	ashley	+13305028854								1	f	f	bobcam00@aol.com		application submitted - credit union	\N	
2017-04-06 19:35:55.887533+00	2017-05-17 15:41:07.224298+00	1832			+12142237841								12	f	f		rodkey sylvia	new lead	\N	
2017-12-14 18:20:16.641619+00	2017-12-14 18:27:05.469239+00	1833	Stephanie	Powell	+19365775632								15	f	f	stephdrex@yahoo.com		new lead	\N	
2017-09-29 19:11:26.126249+00	2017-09-29 19:12:31.395105+00	1834	Keonda	Brown	+17708159031								13	f	f	keonda_brown@yahoo.com		new lead	\N	
2016-08-13 01:09:16.89255+00	2017-11-29 18:31:41.490416+00	1835	Mr. Hurarah	HERRERA	+16143892760								1	f	f	smilingjack56@twc.com		application submitted - autopay	\N	
2016-07-29 18:54:21.27263+00	2016-07-29 18:54:48.392914+00	1836	Sonia	Bauer	+15134895613								1	f	f	jackandsonia@msn.com		new lead	\N	
2017-05-11 15:37:04.023916+00	2017-11-29 18:38:49.81111+00	1837			+12148694719								9	f	f		chase general c	new lead	\N	
2016-09-09 22:46:49.28898+00	2016-12-09 17:10:17.413449+00	1838			+18642452222								3	f	f			new lead	\N	
2017-03-28 20:53:58.178016+00	2017-11-29 18:31:56.600309+00	1839			+19783320982								1	f	f			application started	\N	
2016-11-07 18:22:15.242227+00	2016-11-07 18:30:08.842925+00	1840			+18325416609								1	f	f			new lead	\N	
2017-12-05 19:02:26.53176+00	2017-12-05 19:18:20.350783+00	1841	Kenneth	Dorman	+13032103576								15	f	f	kwbullet@comcast.net		new lead	\N	
2017-04-12 16:38:07.363709+00	2017-11-29 18:47:25.068003+00	1842			+19492805308								8	f	f		ESCH SKIP      	new lead	\N	
2017-03-19 00:59:28.804631+00	2017-11-29 18:38:53.212629+00	1843			+18172230317								9	f	f			new lead	\N	
2017-08-22 19:02:33.1198+00	2017-08-22 19:05:53.274867+00	1844	Anthony	Thomas	+17063005402								13	f	f	anthonythomas.ga@gmail.com		new lead	\N	
2017-04-17 13:51:45.72597+00	2017-11-29 18:38:49.805189+00	1845			+15164923380								9	f	f		merchant source	new lead	\N	
2017-07-31 17:16:08.250625+00	2017-07-31 17:22:30.879311+00	1846			+17065315023								13	f	f			new lead	\N	
2017-05-18 14:36:30.655675+00	2017-11-29 18:29:57.477773+00	1847			+17032689704								1	f	f			new lead	\N	
2017-03-27 15:45:47.592691+00	2017-11-29 18:47:25.067933+00	1848			+19038218578								8	f	f		alfaro francisc	new lead	\N	
2017-08-24 18:17:05.018311+00	2017-08-24 18:23:48.862851+00	1849	iesha	borders	+14048394795								13	f	f	ieshaborders@yahoo.com		new lead	\N	
2017-02-09 23:21:03.802979+00	2017-02-09 23:31:48.948234+00	1850	BROWN	ERIC     	+16308626767								1	f	f			new lead	\N	
2017-03-04 19:47:37.709629+00	2017-11-29 18:47:25.067609+00	1851			+14692451714								8	f	f		linda edwards	new lead	\N	
2017-11-20 17:29:55.561467+00	2017-11-20 17:33:48.287249+00	1852			+19087218117								13	f	f			new lead	\N	
2017-12-02 20:01:26.497189+00	2017-12-02 20:02:36.569122+00	1853	DeeAnn	Dennert-Marks	+16165587260								15	f	f	dennertdd23@gmail.com		new lead	\N	
2017-04-22 21:11:25.019598+00	2017-11-29 18:38:49.806398+00	1854			+18322096219								9	f	f		khong myviet	new lead	\N	
2017-04-10 00:19:31.552471+00	2017-11-29 18:38:53.213652+00	1855			+19728784309								9	f	f		dallas  tx	new lead	\N	
2017-05-19 22:38:22.454616+00	2017-11-29 18:38:49.812376+00	1856			+14692353465								9	f	f		wireless caller	new lead	\N	
2017-11-28 18:13:57.850019+00	2017-11-28 18:17:54.838855+00	1857	Markeas	Jones	+18502935426								13	f	f	Carnell706@gmail.com		select status	\N	
2017-12-18 20:51:04.986673+00	2017-12-18 21:07:13.814514+00	1858			+17405349824								15	f	f			new lead	\N	
2016-08-30 21:36:53.945009+00	2016-12-10 01:05:11.33711+00	1859			+14042814239								3	f	f			new lead	\N	
2016-11-02 00:11:00.738265+00	2016-11-02 00:37:00.374269+00	1860			+14693752044								1	f	f			new lead	\N	
2017-03-22 15:59:22.403617+00	2017-11-29 18:38:53.212763+00	1861			+17867920797								9	f	f		cell phone   fl	new lead	\N	
2017-06-19 19:08:48.989148+00	2017-06-24 13:45:04.893973+00	1862			+16183551134								13	f	f			new lead	\N	
2016-05-23 16:33:01.352926+00	2017-11-29 18:31:10.260295+00	1863	Unknown		+19372248646								1	f	f			new lead	\N	
2016-09-16 15:01:47.314889+00	2016-12-10 01:01:51.440974+00	1864			+16193951854								3	f	f			new lead	\N	
2017-04-14 16:44:02.07085+00	2017-11-29 18:38:53.213908+00	1865			+15086159333								9	f	f		shays joann	new lead	\N	
2017-08-03 14:45:53.766235+00	2017-08-17 14:35:21.045709+00	1866			+12143821353								12	f	f		hearn trenton	new lead	\N	
2017-03-09 14:50:26.820603+00	2017-11-29 18:38:53.211939+00	1867			+12144753768								9	f	f		cell phone   tx	new lead	\N	
2017-07-20 14:22:42.900316+00	2017-07-20 14:23:48.929158+00	1868	Shawna	Wright	+12089149143								13	f	f	shawnawright13@gmail.com		new lead	\N	
2017-10-27 15:11:09.835231+00	2017-10-27 15:12:02.694134+00	1869			+16822704446								12	f	f		garza eric	new lead	\N	
2017-04-18 21:14:26.742585+00	2017-11-29 18:38:49.805602+00	1870			+18326232030								9	f	f		wireless caller	new lead	\N	
2016-12-03 15:38:11.536315+00	2016-12-09 17:10:17.413728+00	1871			+19084540804								3	f	f			new lead	\N	
2017-05-27 18:21:09.350413+00	2017-11-29 18:38:49.813905+00	1872			+14693549251								9	f	f		cell phone   tx	new lead	\N	
2016-11-01 17:43:30.32763+00	2016-11-01 17:53:23.352784+00	1873			+17708330041								1	f	f			new lead	\N	
2017-12-07 13:32:02.169778+00	2017-12-07 13:32:21.247332+00	1874			+14706990747								13	f	f		cole quentaurus	new lead	\N	
2017-12-14 00:02:38.414507+00	2017-12-14 00:02:55.518988+00	1875			+18555130980								1	f	f			new lead	\N	
2017-04-19 00:08:02.062306+00	2017-11-29 18:38:49.805681+00	1876			+12142159910								9	f	f		lemak john     	new lead	\N	
2017-07-29 16:13:15.340565+00	2017-11-29 18:47:25.068544+00	1877			+12148452654								8	f	f		dallas  tx	new lead	\N	
2016-06-30 20:45:18.422347+00	2016-06-30 20:46:29.84885+00	1878	Bettie	Morton	+13135848316								1	f	f	NA@noemail.com		new lead	\N	
2017-05-25 17:34:44.880836+00	2017-11-29 18:38:49.813438+00	1879			+19726866200								9	f	f		hancock mazda of mesquite	new lead	\N	
2017-04-18 07:03:02.185414+00	2017-11-29 18:38:53.214128+00	1880			+15122692644								9	f	f		austin  tx	new lead	\N	
2017-04-13 15:13:33.16916+00	2017-08-17 14:35:21.044974+00	1881			+16827748380								12	f	f			new lead	\N	
2016-08-02 17:29:24.474566+00	2017-11-29 18:31:10.261885+00	1882	Gary	Smith	+15136206420								1	f	f	garyasmith1@gmail.com		application submitted - autopay	\N	
2016-07-06 15:49:03.20806+00	2017-11-29 18:32:13.82136+00	1883	Unknown	Bower	+13302051789								1	f	f	NA@noemail.com		new lead	\N	
2017-07-04 19:04:50.190327+00	2017-08-17 14:35:21.045572+00	1884			+13183728028								12	f	f		thompson alan w	new lead	\N	
2017-09-06 22:59:19.751943+00	2017-09-06 22:59:19.814677+00	1885	Deidre	Davis	+17702749728								13	f	f	Didibritton@gmail.com		new lead	\N	
2016-11-15 14:57:00.915977+00	2016-11-15 20:39:51.420021+00	1886	Carlos	Macedo	+18178975612								1	f	f	macedocarlosortiz1975@gmail.com		application submitted - credit union	\N	
2016-11-04 20:31:57.55499+00	2016-11-04 20:47:59.460362+00	1887			+16024105410								1	f	f			new lead	\N	
2017-04-18 14:17:41.58318+00	2017-11-29 18:38:49.805406+00	1888			+18009554408								9	f	f		800 service	new lead	\N	
2017-10-05 20:03:19.987327+00	2017-10-05 20:07:30.727074+00	1889			+12145974286								13	f	f			new lead	\N	
2017-04-15 14:49:24.240767+00	2017-11-29 18:38:53.214007+00	1890			+18173539392								9	f	f		vines germon	new lead	\N	
2017-11-06 15:37:19.035736+00	2017-11-06 15:38:14.906191+00	1891			+17702656391								13	f	f			new lead	\N	
2016-10-03 17:40:19.714914+00	2016-12-10 01:04:28.706385+00	1892			+19519064348								3	f	f			new lead	\N	
2017-12-28 16:11:06.383621+00	2017-12-28 16:18:11.962419+00	1893			+18173230353								12	f	f		philon m	new lead	\N	
2017-10-26 18:43:27.965841+00	2017-10-26 18:47:03.208725+00	1894	Stephanie 	Minyard	+16785585578								13	f	f	Toomuchcash@icloud.com		new lead	\N	
2017-09-06 19:58:25.198039+00	2017-09-06 19:59:44.501458+00	1895			+17705402678								13	f	f			new lead	\N	
2017-09-22 14:39:53.172233+00	2017-09-22 14:41:00.196895+00	1896	Angela	Evans	+17067680647								13	f	f	angelae4583@gmail.com		new lead	\N	
2016-11-01 16:07:08.630136+00	2016-12-09 17:06:53.90607+00	1897			+14849736056								3	f	f			new lead	\N	
2016-08-04 17:03:35.048142+00	2016-08-04 18:15:04.380494+00	1898	TAB	PEELER	+16617130813								1	f	f	maypeeler@yahoo.com		application submitted - autopay	\N	
2016-08-12 18:04:47.081387+00	2017-11-29 18:31:37.368889+00	1899	Alberta	Vawter	+16619487807								1	f	f	1@1.com		application submitted - autopay	\N	
2017-02-05 08:27:29.836367+00	2017-02-05 08:27:29.836394+00	1900	babu khan		+14156637470								1	f	f	luxryhealthcare@gmail.com		new lead	\N	
2017-09-12 12:51:07.740851+00	2017-09-12 12:51:07.791937+00	1901	Briana	Zelinski	+16797550844								13	f	f	Crummy44@gmail.com		new lead	\N	
2016-07-21 15:44:58.509385+00	2016-07-21 15:46:13.712733+00	1902	Lenore	Pettiford	+13303981086								1	f	f	pettifordlm@yahoo.com		new lead	\N	
2016-11-04 23:52:50.33867+00	2016-12-10 01:01:51.441149+00	1903			+18583497885								3	f	f			new lead	\N	
2016-07-25 15:02:34.041663+00	2016-12-10 00:55:45.164947+00	1904			+16085584741								3	f	f			new lead	\N	
2016-11-08 00:40:56.704349+00	2016-12-10 01:00:18.568552+00	1905			+16199207052								3	f	f			new lead	\N	
2017-08-30 13:24:26.699862+00	2017-08-30 13:25:13.159426+00	1906			+17068094449								13	f	f			new lead	\N	
2016-10-05 18:38:31.681311+00	2016-12-09 17:10:17.413542+00	1907			+18624386747								3	f	f			new lead	\N	
2016-11-12 17:06:14.843363+00	2016-11-12 17:06:14.868899+00	1908	Donald	Miller	+17046410434								1	f	f	ritdon2002@aol.com		new lead	\N	
2016-10-08 00:04:01.55317+00	2016-12-10 01:05:11.337139+00	1909			+17182854873								3	f	f			new lead	\N	
2016-09-09 21:13:12.00663+00	2016-12-10 01:04:25.504906+00	1910			+14435282812								3	f	f			new lead	\N	
2017-12-14 19:02:05.706711+00	2017-12-14 19:13:36.728668+00	1911	Marsha	Ashbaugh	+17404158646								15	f	f	mashbaugh@thelwm.org		new lead	\N	
2017-05-03 17:01:16.544046+00	2017-05-03 17:27:24.73982+00	1912			+17039342664								1	f	f		international automotive	new lead	\N	
2017-12-07 01:14:46.107625+00	2017-12-07 01:16:10.877387+00	1913	Carissa	Davy	+14074562150								15	f	f	Dr.carissa.bain@gmail.com		new lead	\N	
2017-03-23 00:30:58.895493+00	2017-11-29 18:38:53.212812+00	1914			+18304466388								9	f	f		schafer gregory	new lead	\N	
2017-07-24 19:01:55.068406+00	2017-07-24 19:23:40.514626+00	1915			+18177563633								12	f	f		dallas  tx	new lead	\N	
2017-05-27 14:54:21.98341+00	2017-11-29 18:38:49.813855+00	1916			+19727430182								9	f	f		barber daryl   	new lead	\N	
2016-11-10 20:10:46.275357+00	2016-11-10 20:10:46.303978+00	1917	Louise	Greene	+17047925502								1	f	f	L.greene15@yahoo.com		new lead	\N	
2016-09-07 15:29:43.501699+00	2016-12-10 01:05:18.40093+00	1918			+16505067000								3	f	f			new lead	\N	
2017-05-01 22:47:26.79908+00	2017-11-29 18:38:53.214909+00	1919			+19366487221								9	f	f		ian dohalick	new lead	\N	
2016-08-01 16:14:24.74746+00	2016-12-10 01:05:18.400729+00	1920			+16104689562								3	f	f			new lead	\N	
2016-10-05 22:32:09.357597+00	2016-12-10 01:01:00.200331+00	1921			+13472372547								3	f	f			new lead	\N	
2017-09-29 15:32:54.539568+00	2017-09-29 15:39:39.185136+00	1922	Millan	Carr	+14702093938								13	f	f	milan_carr@yahoo.com		new lead	\N	
2016-06-16 13:50:41.086606+00	2017-11-29 18:31:56.600118+00	1923	Melvin	Shapiro	+17817065203								1	f	f			new lead	\N	
2016-07-13 11:40:51.76447+00	2016-07-14 20:36:05.080932+00	1924	george	miku	+13302573502								1	f	f	mikugeorge@yahoo.com		new lead	\N	
2016-11-10 15:51:31.176017+00	2016-12-10 01:01:00.200599+00	1925			+17065640734								3	f	f			new lead	\N	
2017-12-05 15:38:25.802167+00	2017-12-05 15:46:24.99235+00	1926			+19283017241								13	f	f		cell phone   az	new lead	\N	
2016-12-05 15:53:57.700754+00	2016-12-09 17:08:31.908908+00	1927			+16099896059								3	f	f			new lead	\N	
2017-03-03 16:55:11.647552+00	2017-11-29 18:31:41.490863+00	1928			+17405697613								1	f	f			new lead	\N	
2017-04-29 20:16:06.302313+00	2017-11-29 18:38:53.214838+00	1929			+12488916595								9	f	f		a markovitz	new lead	\N	
2017-08-17 22:53:47.309759+00	2017-08-17 22:55:11.514073+00	1930			+16822157097								12	f	f		euless  tx	new lead	\N	
2017-12-05 15:12:07.257362+00	2017-12-05 15:15:09.044485+00	1931	Danielle 	Bennett 	+16786177425								13	f	f	d.bennett143@yahoo.com		new lead	\N	
2017-12-20 18:31:05.919714+00	2017-12-20 18:40:16.956932+00	1932			+17707665844								13	f	f		atlanta  ga	select status	\N	
2016-10-31 19:30:16.478617+00	2016-10-31 19:33:14.285901+00	1933			+17138183059								1	f	f			new lead	\N	
2016-11-10 20:41:24.543125+00	2017-01-27 21:12:23.814086+00	1934			+17324064522								1	f	f			new lead	\N	
2017-05-30 14:26:58.691+00	2017-05-30 14:38:04.03873+00	1935			+19568271199								12	f	f		herrera romana 	new lead	\N	
2016-12-28 01:02:42.918589+00	2016-12-28 14:23:58.809829+00	1936	William	Harper	+14063811254								1	f	f	rufreeindeed@aol.com		application submitted - credit union	\N	
2017-05-17 18:29:16.960983+00	2017-05-17 18:30:46.468505+00	1937			+17202764293								12	f	f		wireless caller	new lead	\N	
2016-08-16 13:31:59.923758+00	2016-12-10 00:55:45.165349+00	1938			+14849951295								3	f	f			new lead	\N	
2017-11-11 22:06:36.459063+00	2017-11-11 22:12:36.83998+00	1939	peggy	patton	+14792538819								13	f	f	pag4274@yahoo.com		new lead	\N	
2017-04-07 20:08:26.690706+00	2017-11-29 18:38:53.213432+00	1940			+12142004604								9	f	f		auto insurance	new lead	\N	
2017-12-19 01:03:44.152461+00	2017-12-19 01:26:08.736564+00	1941			+18172319928								12	f	f		moore danny	new lead	\N	
2016-11-03 13:56:08.443769+00	2016-12-09 17:08:31.90888+00	1942			+17329916105								3	f	f			new lead	\N	
2017-05-01 20:06:55.048998+00	2017-11-29 18:38:49.808353+00	1943			+19729347287								9	f	f		tuesday morning	new lead	\N	
2017-03-01 14:53:18.766746+00	2017-03-01 14:53:56.891703+00	1944	Steve		+14018716997								6	f	f			new lead	\N	
2017-07-21 15:01:57.065332+00	2017-07-21 15:03:44.009628+00	1945			+12543962715								12	f	f		euless  tx	new lead	\N	
2017-04-27 16:43:12.499089+00	2017-11-29 18:38:49.806959+00	1946			+15173166356								9	f	f		vrettos dimitri	new lead	\N	
2017-11-16 23:10:18.748626+00	2017-11-21 14:53:25.898888+00	1947	Adrianne	Chatman	+16783087980								13	f	f	bigbabychat@gmail.com		select status	\N	
2017-08-17 21:00:11.903469+00	2017-08-17 21:01:50.406309+00	1948			+17707282470								13	f	f			new lead	\N	
2016-10-17 23:16:55.744104+00	2016-12-10 01:01:00.200455+00	1949			+16613804077								3	f	f			new lead	\N	
2017-03-22 22:38:03.582594+00	2017-05-17 15:41:07.224207+00	1950			+16822224316								12	f	f		texas call	new lead	\N	
2016-08-15 14:07:33.074211+00	2016-12-10 00:55:45.165313+00	1951			+12156946318								3	f	f			new lead	\N	
2016-11-01 13:43:04.381175+00	2016-11-01 13:50:01.976014+00	1952			+14046227600								1	f	f			new lead	\N	
2016-06-01 23:14:07.985867+00	2017-11-29 18:31:05.368867+00	1953	Spam		+16302346074								1	f	f			new lead	\N	
2016-08-03 21:24:24.08796+00	2016-08-03 21:52:08.978955+00	1954	Amanda	Edwards	+14063811767								1	f	f	emtfiregirl79@yahoo.com		application submitted - autopay	\N	
2017-08-08 17:02:55.76268+00	2017-08-17 14:35:21.04576+00	1955			+18179392414								12	f	f		q link wireless	new lead	\N	
2017-05-09 19:55:11.624681+00	2017-05-17 15:41:07.224436+00	1956			+12143255088								12	f	f		olaoye kolade	new lead	\N	
2017-05-30 21:06:05.014724+00	2017-11-29 18:38:49.814132+00	1957			+14694178306								9	f	f		mendoza miguel 	new lead	\N	
2017-08-17 20:41:18.411929+00	2017-08-17 20:45:34.281859+00	1958			+14102593405								13	f	f			new lead	\N	
2016-12-06 18:47:27.820327+00	2016-12-06 18:47:27.844626+00	1959	Richard	Yargus	+17135530605								1	f	f	dyargus@gmail.com		new lead	\N	
2017-07-11 16:32:04.889396+00	2017-08-17 14:35:21.045579+00	1960			+19727652102								12	f	f		armendariz rich	new lead	\N	
2017-08-19 22:38:20.935046+00	2017-08-19 22:38:20.985395+00	1961	Jaymie	Whitlock	+14044482661								13	f	f	jwarlock884@gmail.com		new lead	\N	
2017-04-25 13:49:53.261188+00	2017-11-29 18:38:49.80654+00	1962			+15748422635								9	f	f		jeffrey ellis	new lead	\N	
2016-07-16 15:01:38.025865+00	2017-11-29 18:32:13.821488+00	1963	Lesley	Bradley	+13306877460								1	f	f	blbsis769@aol.com		new lead	\N	
2017-04-20 21:23:08.019825+00	2017-11-29 18:38:53.214347+00	1964			+15416887031								9	f	f		goss glenn	new lead	\N	
2017-05-29 18:38:39.832645+00	2017-11-29 18:38:53.214625+00	1965			+12144460011								9	f	f		dallas       tx	new lead	\N	
2017-11-02 16:09:45.73597+00	2017-11-02 16:15:46.492999+00	1966	Samantha	Cordero	+17068946533								13	f	f	Slde3019@gmail.com		new lead	\N	
2016-10-06 15:21:04.201986+00	2016-12-10 00:57:48.46179+00	1967			+18059880560								3	f	f			new lead	\N	
2016-11-10 22:24:57.490675+00	2016-11-10 22:29:17.2938+00	1968			+19729659790								1	f	f			new lead	\N	
2016-06-28 17:07:31.433205+00	2017-11-29 18:32:13.820707+00	1969	Unknown		+13308899597								1	f	f			new lead	\N	
2016-05-26 20:15:21.30188+00	2017-11-29 18:31:10.260504+00	1970	Unknown	Niemann	+16065613851								1	f	f	bettyboop47@windstream.net		new lead	\N	
2018-03-08 19:47:24.51916+00	2018-03-08 19:47:24.749537+00	1971	test	test	+1set		a			a	a		4	f	f	test@test.com				
2017-12-15 17:41:01.062545+00	2017-12-15 17:42:27.376074+00	1972	Steve	Neu	+18035462731								13	f	f	steveneu@live.com		new lead	\N	
2017-08-15 19:02:06.764092+00	2017-08-15 19:06:49.632908+00	1973			+17702569611								13	f	f			new lead	\N	
2016-06-28 14:43:47.948647+00	2016-12-09 17:06:57.83037+00	1974	Unknown		+12129945096								3	f	f			new lead	\N	
2017-10-17 13:19:41.081132+00	2017-10-17 13:25:30.570128+00	1975			+17702941776								13	f	f			new lead	\N	
2016-12-27 15:33:36.963517+00	2016-12-27 15:34:18.035222+00	1976			+18325663919								1	f	f			new lead	\N	
2017-05-22 19:58:33.900689+00	2017-05-22 19:59:14.568121+00	1977			+16824336035								12	f	f		chapel linda	new lead	\N	
2016-11-16 17:57:28.308716+00	2016-12-10 01:05:18.401231+00	1978			+14136653653								3	f	f			new lead	\N	
2016-09-08 05:22:44.159033+00	2017-11-29 18:31:37.369068+00	1979	Jack	Cole	+16619430342								1	f	f	tanker1948@msn.com		application submitted - credit union	\N	
2017-10-04 23:08:25.687575+00	2017-10-04 23:09:39.075452+00	1980			+18067905941								12	f	f		153 productions	new lead	\N	
2016-11-10 17:58:52.58801+00	2016-11-10 18:24:04.246886+00	1981			+19032686490								1	f	f			new lead	\N	
2016-09-01 20:12:16.453687+00	2016-12-10 01:01:00.199872+00	1982			+16195564820								3	f	f			new lead	\N	
2017-12-19 22:10:58.125874+00	2017-12-19 22:15:51.818669+00	1983	Shermeka	Exum	+12404066678								13	f	f	Shermekaexum4@gmail.com	exum shermeka	new lead	\N	
2017-05-10 23:22:40.441248+00	2017-11-29 18:38:49.811059+00	1984			+16316059294								9	f	f		noskin son st  	new lead	\N	
2017-10-09 14:00:06.000782+00	2017-10-09 14:02:23.370098+00	1985			+16787866926								13	f	f			new lead	\N	
2016-11-03 03:14:12.938297+00	2016-11-03 03:14:12.966561+00	1986	Pedro	Mosqueda	+15056810048								1	f	f	pmosqueda3@gmail.com		new lead	\N	
2017-05-02 21:27:14.436002+00	2017-05-02 21:49:12.336968+00	1987			+18177354222								12	f	f		diana troy alls	new lead	\N	
2017-10-31 19:13:58.259787+00	2017-10-31 19:14:37.760755+00	1988			+12014234129								1	f	f			new lead	\N	
2017-05-16 00:17:17.437387+00	2017-08-17 14:35:21.045198+00	1989			+13308772550								12	f	f		gurak michael  	new lead	\N	
2017-05-10 21:47:03.403511+00	2017-11-29 18:38:49.811027+00	1990			+19158330080								9	f	f		allstate insura	new lead	\N	
2017-08-08 17:16:10.053684+00	2017-08-08 17:21:19.775641+00	1991	Deanne	Stielow 	+17067161294								13	f	f	deanne112568@gmail.com		new lead	\N	
2016-11-01 22:53:15.914538+00	2016-11-01 22:53:15.940188+00	1992	Jonathan	Reeder	+14694712802								1	f	f	j0n8than@gmail.com		new lead	\N	
2017-11-29 16:31:20.156853+00	2017-11-29 16:31:29.406968+00	1993			+17406928106								10	f	f			new lead	\N	
2017-04-25 17:09:08.317337+00	2017-11-29 18:38:49.806618+00	1994			+14698354539								9	f	f		romano anthony	new lead	\N	
2017-05-05 21:36:01.151863+00	2017-05-05 21:36:22.999608+00	1995			+16026960501								1	f	f			new lead	\N	
2016-09-08 13:05:11.448961+00	2016-12-10 01:05:18.400944+00	1996			+16107212061								3	f	f			new lead	\N	
2017-03-08 16:48:15.42475+00	2017-11-29 18:38:53.21186+00	1997			+17135484019								9	f	f		miketinac antho	new lead	\N	
2017-12-05 18:34:03.983314+00	2017-12-05 18:47:17.074631+00	1998			+17722499128								15	f	f			new lead	\N	
2016-11-04 17:06:55.805715+00	2016-11-04 17:29:18.790193+00	1999			+18325923052								1	f	f			new lead	\N	
2017-12-11 15:26:18.640521+00	2017-12-11 15:41:41.365495+00	2000			+12142531101								15	f	f			new lead	\N	
2017-10-12 19:47:49.511929+00	2017-10-12 19:52:06.784832+00	2001	melissa	mcmahon	+12242540443								13	f	f	whymrry1@yahoo.com		new lead	\N	
2017-12-08 22:44:35.773452+00	2017-12-08 22:58:40.027481+00	2002			+17608612985								15	f	f			new lead	\N	
2016-11-03 16:08:49.301314+00	2016-11-03 16:11:34.042823+00	2003			+19542426044								1	f	f			new lead	\N	
2016-09-30 19:32:58.433946+00	2016-12-10 00:57:42.908378+00	2004			+17187947700								3	f	f			new lead	\N	
2017-05-23 20:15:00.155871+00	2017-11-29 18:38:49.812904+00	2005			+16305902000								9	f	f		vauto inc	new lead	\N	
2017-03-28 14:25:33.456126+00	2017-11-29 18:38:53.213091+00	2006			+13165243825								9	f	f		carrier enterpr	new lead	\N	
2017-04-28 19:54:55.666107+00	2017-11-29 18:38:49.807328+00	2007			+14693995890								9	f	f		dallas  tx	new lead	\N	
2017-05-24 14:01:40.771946+00	2017-11-29 18:38:49.812973+00	2008			+14402308404								9	f	f		voip call	new lead	\N	
2016-11-02 13:14:44.066654+00	2016-11-02 13:14:44.090581+00	2009	KASANDRA	BARRIOS	+19156306366								1	f	f	KASANBARRI@YAHOO.COM		new lead	\N	
2017-05-10 14:00:46.809839+00	2017-08-17 14:35:21.045155+00	2010			+16158685700								12	f	f		gd phillips    	new lead	\N	
2016-08-02 03:27:51.587313+00	2016-08-05 12:51:43.387619+00	2011	Milton	Doucette	+16612082623								1	f	f	mdoucette3@outlook.com		application submitted - autopay	\N	
2016-11-21 15:30:42.097239+00	2016-11-21 15:30:42.127151+00	2012	JoAnn	Johnston	+17135406810								1	f	f	Jodytjohnston@yahoo.com		new lead	\N	
2017-05-09 19:17:03.838967+00	2017-11-29 18:38:53.215513+00	2013			+14045688000								9	f	f		east end auto ashland	new lead	\N	
2017-04-27 20:45:20.716228+00	2017-11-29 18:38:49.80713+00	2014			+19496505915								9	f	f		bayside motors 	new lead	\N	
2017-04-28 16:18:56.689581+00	2017-11-29 18:38:53.214738+00	2015			+14694789787								9	f	f		mendez michelle	new lead	\N	
2017-05-08 23:40:10.84825+00	2017-08-17 14:35:21.045147+00	2016			+16824007316								12	f	f		garcia juan	new lead	\N	
2017-12-30 19:19:15.874693+00	2017-12-30 19:19:18.448066+00	2017			+16787567698								14	f	f			new lead	\N	
2016-08-11 21:14:00.723388+00	2017-11-29 18:31:37.368882+00	2018	Santiago	C. Benavente	+16618255333								1	f	f			application started	\N	
2017-11-11 20:15:41.391836+00	2017-11-11 20:25:36.327875+00	2019	Danny	Nix	+17063632074								13	f	f	Dannynix27@gmail.com		new lead	\N	
2017-12-19 17:23:10.638804+00	2017-12-19 17:26:45.16811+00	2020	Steven	Smith	+14043225222								13	f	f	Ssmith101315@gmail.com		new lead	\N	
2016-11-05 16:33:04.360803+00	2016-11-05 16:33:04.38818+00	2021	Jose	Boone	+13012546074								1	f	f	jboone147@hotmail.com		new lead	\N	
2016-11-01 20:35:02.987521+00	2016-12-10 01:05:18.401217+00	2022			+16104095624								3	f	f			new lead	\N	
2016-11-03 22:33:22.55483+00	2016-11-03 23:01:32.376423+00	2023			+18328661354								1	f	f			new lead	\N	
2017-12-07 23:17:55.535842+00	2017-12-07 23:35:38.695169+00	2024			+19132066199								15	f	f			new lead	\N	
2017-08-13 01:12:42.839128+00	2017-08-13 01:12:42.88475+00	2025	Cynthia	Burch	+16789973896								13	f	f	cburch0419@gmail.com		new lead	\N	
2016-06-27 14:47:04.454157+00	2017-11-29 18:32:13.820462+00	2026	Fahim	Muhammad	+17733688303								1	f	f			new lead	\N	
2016-11-01 16:51:28.657539+00	2016-11-01 16:57:47.763174+00	2027			+14042713656								1	f	f			new lead	\N	
2016-09-08 18:34:19.953992+00	2016-12-10 00:57:48.46174+00	2028			+18056129481								3	f	f			new lead	\N	
2017-10-04 18:39:53.232236+00	2017-10-04 18:40:39.757439+00	2029			+18178075383								12	f	f		scott dennett c	new lead	\N	
2017-05-26 18:51:44.750463+00	2017-11-29 18:38:49.813716+00	2030			+12812178739								9	f	f		golden bright l	new lead	\N	
2016-11-09 01:53:59.836073+00	2016-11-09 01:59:04.503819+00	2031			+18323611017								1	f	f			new lead	\N	
2016-08-23 20:39:02.052747+00	2017-01-27 21:12:23.813644+00	2032			+12156580224								1	f	f			new lead	\N	
2017-03-22 18:29:33.186742+00	2017-03-22 18:48:51.889117+00	2033			+18164145316								1	f	f			new lead	\N	
2017-05-30 16:01:41.148095+00	2017-11-29 18:38:49.814011+00	2034			+13126015312								9	f	f		cars.com	new lead	\N	
2017-04-08 22:39:48.850128+00	2017-11-29 18:38:53.213609+00	2035			+14699067764								9	f	f		jimenez ivan	new lead	\N	
2017-11-29 15:50:39.005314+00	2017-11-29 16:14:20.719564+00	2036			+12148819731								12	f	f		acosta kenia	new lead	\N	
2016-08-05 00:28:35.588148+00	2016-08-05 12:22:32.819273+00	2037	patricia	murawski	+12629947864								1	f	f	vincemathias@yahoo.com		application submitted - autopay	\N	
2016-12-14 16:20:07.341317+00	2016-12-14 16:20:07.389815+00	2038	Franklin	Glaspie	+17706396560								1	f	f	frglas@yahoo.com		new lead	\N	
2017-05-09 16:56:14.77503+00	2017-11-29 18:38:49.810583+00	2039			+19096846082								9	f	f		cabrerapena alb	new lead	\N	
2017-11-10 18:52:36.774084+00	2017-11-10 19:05:20.521853+00	2040			+12542213234								12	f	f		cinnamon cinnam	new lead	\N	
2017-12-11 17:19:34.253662+00	2017-12-11 17:23:54.970614+00	2041			+17708736748								13	f	f		delong jeffrey	select status	\N	
2017-05-05 18:59:25.277743+00	2017-11-29 18:38:49.81008+00	2042			+12149803852								9	f	f		threadgill rach	new lead	\N	
2017-05-17 21:02:04.649906+00	2017-11-29 18:38:49.812097+00	2043			+12144869631								9	f	f		montrese bolden	new lead	\N	
2017-12-05 19:56:43.958651+00	2017-12-05 20:09:47.469783+00	2044	Rodney	Jinks	+14693341366								15	f	f	rodneyjinks@gmail.com		new lead	\N	
2016-12-09 01:13:38.932612+00	2016-12-09 01:16:47.466715+00	2045			+12549794413								1	f	f			new lead	\N	
2016-05-25 18:24:48.899475+00	2017-11-29 18:31:37.36819+00	2046	Unknown		+18555472453								1	f	f			new lead	\N	
2016-08-02 19:54:48.446082+00	2017-11-29 18:31:10.261975+00	2047	Gloria 	Singleton	+15138081924								1	f	f	DeseraysPlexus@gmail.com		application submitted - autopay	\N	
2017-08-10 22:04:55.951+00	2017-08-17 14:35:21.045788+00	2048			+13183943688								12	f	f		d kirkwood	new lead	\N	
2017-05-05 17:51:58.689211+00	2017-11-29 18:38:49.809996+00	2049			+18008748822								9	f	f		toyota         	new lead	\N	
2017-10-17 16:00:47.380139+00	2017-10-17 16:07:26.101889+00	2050	rhonda	glover	+15807757341								13	f	f	rkglover71@gmail.com		new lead	\N	
2017-03-23 20:06:10.60368+00	2017-11-29 18:38:53.212867+00	2051			+13183661228								9	f	f		eskew glenn    	new lead	\N	
2016-11-01 16:32:39.743922+00	2016-11-01 16:56:28.711757+00	2052			+19729239877								1	f	f			new lead	\N	
2017-08-13 15:34:49.792767+00	2017-08-13 15:34:49.83817+00	2053	Amber	Reed	+17705409468								13	f	f	amber1007reed@gmail.com		new lead	\N	
2017-03-23 18:07:35.201208+00	2017-05-17 15:41:07.224217+00	2054			+18172108941								12	f	f		ace anthony	new lead	\N	
2017-04-21 20:56:22.354024+00	2017-11-29 18:47:25.068221+00	2055			+19172322535								8	f	f		speechley earl	new lead	\N	
2017-07-09 18:38:31.342817+00	2017-07-09 18:39:20.221749+00	2056			+14328479286								12	f	f		midland  tx	new lead	\N	
2017-10-30 22:22:45.984884+00	2017-10-30 22:28:56.496199+00	2057	Christina	Kelley	+16788979468								13	f	f	christinaekelley26@yahoo.com		new lead	\N	
2017-05-06 19:13:37.27554+00	2017-11-29 18:38:49.810202+00	2058			+19722470800								9	f	f		cotroneo auto group	new lead	\N	
2017-06-22 19:34:37.343572+00	2017-06-24 13:44:45.085766+00	2059			+17708771387								13	f	f			new lead	\N	
2017-05-09 17:35:30.149692+00	2017-11-29 18:38:53.21547+00	2060			+17022103390								9	f	f		big daddy and c	new lead	\N	
2016-07-06 17:20:43.5706+00	2016-12-09 17:06:53.90573+00	2061			+12672693625								3	f	f			new lead	\N	
2017-04-20 16:08:57.2394+00	2017-11-29 18:38:49.805939+00	2062			+19855164586								9	f	f		page linda     	new lead	\N	
2017-05-03 16:56:37.282648+00	2017-11-29 18:38:53.214965+00	2063			+14029721263								9	f	f		a. hoffman	new lead	\N	
2017-10-25 16:26:54.953066+00	2017-10-25 16:28:02.726619+00	2064			+16822027502								12	f	f		dallas  tx	new lead	\N	
2017-04-01 20:53:16.671634+00	2017-11-29 18:47:25.067954+00	2065			+14242179569								8	f	f		rami oudah	new lead	\N	
2016-10-10 21:00:15.397906+00	2016-12-10 01:01:51.4411+00	2066			+17605337510								3	f	f			new lead	\N	
2017-05-01 19:30:52.744475+00	2017-11-29 18:38:49.808271+00	2067			+12146016162								9	f	f		akins sandra g 	new lead	\N	
2017-12-05 17:23:09.542921+00	2017-12-05 17:41:42.463077+00	2068			+17274101042								15	f	f			new lead	\N	
2017-05-01 23:43:50.479978+00	2017-08-17 14:35:21.045082+00	2069			+19402293036								12	f	f		jasmine salgado	new lead	\N	
2017-12-21 14:09:05.590125+00	2017-12-21 14:10:39.569899+00	2070	Brandon	Brown	+17062065312								13	f	f	bbga2351@gmail.com	lewinsky paris	select status	\N	
2016-10-04 23:11:17.528039+00	2016-12-10 01:01:00.20014+00	2071			+13124709921								3	f	f			new lead	\N	
2017-07-06 01:09:35.092704+00	2017-07-06 01:31:24.533218+00	2072			+18177562394								12	f	f		aptela - did	new lead	\N	
2017-12-06 17:08:29.486224+00	2017-12-06 17:18:34.728524+00	2073			+18306378078								15	f	f			new lead	\N	
2016-08-02 00:50:28.625355+00	2016-08-02 13:36:24.136402+00	2074	Keela	Mastrianni	+16619745185								1	f	f	mastriannikeela@yahoo.com		application submitted - credit union	\N	
2017-03-13 18:44:47.228243+00	2017-11-29 18:38:53.21214+00	2075			+18648591676								9	f	f		dean   mc innis orthodontics	new lead	\N	
2017-10-17 15:32:30.46372+00	2017-10-17 15:57:08.64926+00	2076			+1+266696687								12	f	f		restricted	new lead	\N	
2016-06-16 17:34:01.46419+00	2017-11-29 18:31:18.808715+00	2077	Larry	Boye	+14067775860								1	f	f	stevilar@gmail.com		new lead	\N	
2016-11-30 04:07:16.382006+00	2016-11-30 04:07:16.382032+00	2078	Steve	Neu	+18035462731								6	f	f	steveneu@live.com		new lead	\N	
2017-04-20 19:59:14.890779+00	2017-11-29 18:38:53.214319+00	2079			+14403814651								9	f	f		independenc  oh	new lead	\N	
2017-11-21 14:30:11.719753+00	2017-11-21 14:33:14.093713+00	2080	Nancy	Foster	+14702042334								13	f	f	nancyfea74@gmail.com		select status	\N	
2016-08-15 16:54:02.920729+00	2016-08-16 15:33:43.630669+00	2081	Olivia	Feld	+19206192560								1	f	f	feldolivia@gmail.com		application submitted - autopay	\N	
2017-09-09 15:09:36.170124+00	2017-09-09 15:10:44.437005+00	2082	Charles	Snyder	+17063442772								13	f	f	ck136313@gmail.com		new lead	\N	
2017-04-22 16:52:55.16291+00	2017-11-29 18:38:49.806384+00	2083			+12149129572								9	f	f		olsen erica    	new lead	\N	
2017-05-25 23:21:09.36979+00	2017-11-29 18:38:53.21559+00	2084			+18178000436								9	f	f		beavers josh	new lead	\N	
2017-12-04 13:50:06.643249+00	2017-12-04 13:50:39.211125+00	2085			+17633178646								15	f	f			new lead	\N	
2017-05-28 19:58:34.038712+00	2017-11-29 18:38:49.81394+00	2086			+14697268039								9	f	f		benitez jose	new lead	\N	
2016-12-21 04:25:00.725237+00	2016-12-21 04:25:00.753893+00	2087	Young	Sung	+14695567748								1	f	f	usasuny@hotmail.com		new lead	\N	
2017-07-14 18:16:18.370752+00	2017-07-14 18:17:23.944271+00	2088	Christina	Foster	+16783433513								13	f	f	Christi.wills@yahoo.com		new lead	\N	
2016-11-07 17:47:54.411769+00	2016-11-07 17:47:54.461201+00	2089	Connie	Johnston	+12818970148								1	f	f	texaslady_1945@hotmail.com		new lead	\N	
2016-11-10 20:28:40.78793+00	2017-01-27 21:12:23.814058+00	2090			+12143496095								1	f	f			new lead	\N	
2017-12-30 18:18:08.929734+00	2017-12-30 18:19:44.536592+00	2091			+17703099216								13	f	f		cell phone   ga	new lead	\N	
2017-12-06 20:33:10.934368+00	2017-12-06 20:35:03.804228+00	2092			+13046477476								15	f	f			new lead	\N	
2016-10-05 14:17:16.518403+00	2016-12-10 01:03:26.835818+00	2093			+12018033963								3	f	f			new lead	\N	
2017-05-23 21:28:05.171076+00	2017-08-17 14:35:21.045313+00	2094			+18176889781								12	f	f		sanford skylar 	new lead	\N	
2017-12-01 14:55:51.711616+00	2017-12-01 15:10:00.915472+00	2095	Reginald 	Peoples	+12547168069								15	f	f	reginaldp@sbcglobal.net		new lead	\N	
2017-09-21 14:22:46.447015+00	2017-09-21 14:23:10.939001+00	2096			+16789973573								13	f	f			new lead	\N	
2017-12-05 23:00:20.971954+00	2017-12-05 23:14:44.081387+00	2097			+18133891172								15	f	f			new lead	\N	
2017-07-28 22:44:01.800216+00	2017-07-28 22:45:57.892479+00	2098	Jasmine	Youngblood	+16789782054								13	f	f	jassysheron525@gmail.com		new lead	\N	
2016-11-25 14:54:57.599139+00	2017-02-11 20:02:07.779662+00	2099			+12014063529								3	f	f			new lead	\N	
2017-07-03 15:26:17.498158+00	2017-07-03 15:32:32.035815+00	2100			+16784632847								13	f	f			new lead	\N	
2016-11-06 19:38:20.312442+00	2016-11-06 19:38:20.360127+00	2101	Thomas	Campbell	+19402552648								1	f	f	tomcampbell391@yahoo.com		new lead	\N	
2017-10-04 15:02:44.484994+00	2017-10-04 15:09:21.959651+00	2102	Deidre	Davis	+16785247834								13	f	f	deidredavis58@yahoo.com		new lead	\N	
2017-08-01 16:18:23.650091+00	2017-08-01 16:23:08.250797+00	2103	Robert 	Stanford	+16788789743								13	f	f	dennisstanford54@gmail.com		new lead	\N	
2016-08-30 23:41:17.566557+00	2016-08-31 14:43:00.578284+00	2104	John	Peyton	+15137209650								1	f	f	justin.peyton@yahoo.com		application submitted - credit union	\N	
2017-08-15 20:35:31.683215+00	2017-08-15 20:38:43.124218+00	2105	Michael 	Collins 	+14046716772								13	f	f	Michaelbcollins316@gmail.com		new lead	\N	
2016-11-10 20:26:11.503334+00	2017-01-27 21:12:23.814051+00	2106			+12142872553								1	f	f			new lead	\N	
2017-08-25 18:38:32.810874+00	2017-08-25 18:45:35.956659+00	2107			+18565065122								13	f	f			new lead	\N	
2017-07-24 17:04:52.748313+00	2017-07-24 17:05:09.992961+00	2108			+13344514174								13	f	f			new lead	\N	
2017-05-06 20:55:06.448737+00	2017-11-29 18:38:49.810223+00	2109			+12145546979								9	f	f		brad brrad     	new lead	\N	
2017-03-08 21:44:54.177386+00	2017-11-29 18:38:53.211918+00	2110			+19497273188								9	f	f		fei marketing inc	new lead	\N	
2017-03-23 19:57:13.399207+00	2017-11-29 18:38:53.212853+00	2111			+18179896181								9	f	f		dallas  tx	new lead	\N	
2016-10-07 19:16:00.577968+00	2017-02-11 20:02:07.77962+00	2112			+19736760266								3	f	f			new lead	\N	
2017-05-02 21:01:00.846604+00	2017-11-29 18:38:49.808903+00	2113			+14693009669								9	f	f		dallas  tx	new lead	\N	
2017-10-25 15:49:56.538849+00	2017-11-29 18:31:37.369369+00	2114			+14186242424								1	f	f			new lead	\N	
2017-11-10 15:24:08.264635+00	2017-11-10 15:27:19.738047+00	2115	Gracie	Sellers	+16789394676								13	f	f	gracie.sellers16@gmail.com		new lead	\N	
2017-01-03 22:57:52.223576+00	2017-01-03 23:25:31.784948+00	2116			+14694469187								1	f	f			new lead	\N	
2016-08-01 15:14:44.153824+00	2016-12-10 01:05:18.400722+00	2117			+16109138678								3	f	f			new lead	\N	
2016-09-07 22:57:44.943349+00	2016-12-10 01:01:51.440863+00	2118			+16194329060								3	f	f			new lead	\N	
2017-04-15 20:09:18.356837+00	2017-11-29 18:38:53.214043+00	2119			+16052094460								9	f	f		palmer brian   	new lead	\N	
2017-12-09 17:42:33.548193+00	2017-12-09 17:59:39.832096+00	2120			+12104820391								15	f	f			new lead	\N	
2016-08-10 13:02:39.733837+00	2016-12-10 00:55:45.165219+00	2121			+16103262915								3	f	f			new lead	\N	
2017-08-18 20:52:46.822323+00	2017-08-18 20:56:08.204675+00	2122			+17064103414								13	f	f			new lead	\N	
2017-08-31 14:00:51.283094+00	2017-08-31 14:01:45.456832+00	2123	Joseph	Wisham	+14703180452								13	f	f	brittbrat95.bb@gmail.com		new lead	\N	
2017-10-13 20:46:07.458903+00	2017-10-13 20:54:35.603816+00	2124			+12292216518								13	f	f			new lead	\N	
2017-08-25 18:23:27.946187+00	2017-08-25 18:24:10.509415+00	2125	Jasmine	Champion	+17066120043								13	f	f	Championjasmine@yahoo.com		new lead	\N	
2017-09-29 18:36:05.763934+00	2017-09-29 18:44:25.696058+00	2126			+14706999346								13	f	f			new lead	\N	
2017-12-11 13:59:43.328239+00	2017-12-11 14:00:07.83737+00	2127			+14235827979								14	f	f			new lead	\N	
2017-12-01 19:07:04.123332+00	2017-12-01 19:07:57.538085+00	2128			+19407811146								15	f	f			new lead	\N	
2017-01-30 20:20:18.27925+00	2017-01-30 20:55:05.75647+00	2129			+18589995633								1	f	f			new lead	\N	
2017-05-08 15:58:36.750474+00	2017-11-29 18:38:53.215362+00	2130			+13124462844								9	f	f		smith ramon    	new lead	\N	
2016-07-07 14:54:08.262801+00	2016-07-07 14:55:31.38649+00	2131	Ryan	Sano	+19377761554								1	f	f	capnsano3@yahoo.com		new lead	\N	
2017-07-15 20:07:48.27952+00	2017-08-17 14:35:21.0456+00	2132			+18179839700								12	f	f		lady lady	new lead	\N	
2017-03-31 21:17:59.166443+00	2017-11-29 18:38:53.213213+00	2133			+19038155395								9	f	f		simpson julia  	new lead	\N	
2016-10-31 15:06:04.216677+00	2016-10-31 15:28:59.393466+00	2134			+14694427261								1	f	f			new lead	\N	
2017-12-04 16:43:52.067573+00	2017-12-04 17:06:25.366524+00	2135			+13042740922								15	f	f			new lead	\N	
2017-09-16 23:34:29.903673+00	2017-09-16 23:34:30.061675+00	2136	Wesley	Cooper	+17068864311								13	f	f	1981coopdavil@gmail.com		new lead	\N	
2016-07-14 14:19:53.595143+00	2016-07-14 20:35:54.669893+00	2137	Jacalyn	Griffith	+13307193713								1	f	f	mgchamp147@aol.com		new lead	\N	
2017-09-13 19:38:07.164621+00	2017-09-13 19:39:15.112466+00	2138			+17706808248								13	f	f			new lead	\N	
2017-11-30 23:24:53.738369+00	2017-11-30 23:25:29.589741+00	2139	eugene	peoples	+16786000925								13	f	f	lbr33zy22@gmail.com		new lead	\N	
2017-05-10 19:11:13.851837+00	2017-11-29 18:38:49.810875+00	2140			+14407524999								9	f	f		cell phone   oh	new lead	\N	
2017-12-07 17:38:47.425687+00	2017-12-07 18:02:55.357911+00	2141			+16184195380								15	f	f			new lead	\N	
2017-10-12 16:05:51.161425+00	2017-10-12 16:06:26.816904+00	2142	Angelina 	Fletcher 	+17069888686								13	f	f	angelina.charles5916@gmail.com		new lead	\N	
2017-07-17 19:06:32.280854+00	2017-08-17 14:35:21.045608+00	2143			+18134768193								12	f	f		gibson tia	new lead	\N	
2017-05-12 23:22:59.610097+00	2017-11-29 18:38:49.811423+00	2144			+12148691599								9	f	f		sanderson loren	new lead	\N	
2016-06-25 21:19:19.117603+00	2016-06-27 12:47:51.919225+00	2145	Ian	Dalton	+16143324602								1	f	f	Iandalton@att.net		new lead	\N	
2017-03-16 16:11:42.499107+00	2017-11-29 18:38:53.212425+00	2146			+12069096469								9	f	f			new lead	\N	
2017-09-07 13:40:14.825594+00	2017-09-07 13:43:28.144773+00	2147	Crystal	Pressley	+16788035113								13	f	f	Crystalpressley98@gmail.com		new lead	\N	
2016-08-26 15:54:40.833436+00	2016-12-10 01:01:00.199796+00	2148			+18582744804								3	f	f			new lead	\N	
2017-12-04 16:45:55.296952+00	2017-12-04 17:07:05.830709+00	2149	Thomas Peters	Peters	+15053224716								15	f	f	peters0481@att.net		new lead	\N	
2017-10-19 04:54:30.154155+00	2017-10-19 04:54:30.223093+00	2150	Debra	Bennett	+17063806174								13	f	f	debrab931@gmail.com		new lead	\N	
2017-12-04 18:43:14.495881+00	2017-12-04 18:47:53.62593+00	2151	Francheska 	Tyler 	+17065387571								13	f	f	Frankieethridge1994@gmail.com		new lead	\N	
2016-11-14 21:27:00.555164+00	2017-11-29 18:31:10.262617+00	2152	Manish	Soni	+15022946671								1	f	f	moneysh.soni@yahoo.com		application submitted - credit union	\N	
2017-12-16 17:04:18.77959+00	2017-12-16 17:16:36.030405+00	2153			+17134341576								15	f	f			new lead	\N	
2017-12-01 20:46:34.733461+00	2017-12-01 21:29:34.527896+00	2154			+16027224255								15	f	f			new lead	\N	
2016-11-16 20:52:25.184358+00	2016-11-16 20:52:25.211652+00	2155	Justin	Bostian	+19802670937								1	f	f	halocrazy90@hotmail.com		new lead	\N	
2016-06-27 18:20:02.946361+00	2017-11-29 18:31:29.180649+00	2156	Susan	Westfall	+12165733731								1	f	f			new lead	\N	
2017-12-29 14:45:15.785959+00	2017-12-29 14:51:59.61023+00	2157	Michael	Wylie	+17069494342								13	f	f	Michaelwylie@yahoo.con		new lead	\N	
2018-02-08 22:04:34.318089+00	2018-02-08 22:04:46.190202+00	2158			+17739699892								24	f	f		chicago  il	new lead	\N	
2017-06-26 12:30:55.419924+00	2017-06-26 12:30:55.462213+00	2159	Priscilla	Arthur	+14703436801								13	f	f	Cassandrarichie35@gmail.com		new lead	\N	
2016-09-07 17:26:50.864363+00	2016-12-10 01:05:18.400937+00	2160			+16106669205								3	f	f			new lead	\N	
2017-04-13 15:23:35.221467+00	2017-04-13 15:25:36.55214+00	2161			+17133770121								12	f	f		ateya mervat	new lead	\N	
2017-09-02 16:51:00.183744+00	2017-09-02 16:56:59.234024+00	2162	Delicia	Smith	+16783961301								13	f	f	Delicia198726@gmail.com		new lead	\N	
2016-11-18 19:44:14.240313+00	2016-12-10 01:05:18.401239+00	2163			+16103507681								3	f	f			new lead	\N	
2016-09-19 20:44:01.096727+00	2016-12-09 17:10:17.413463+00	2164			+19088593920								3	f	f			new lead	\N	
2017-11-06 18:33:40.241188+00	2017-11-06 18:34:57.515959+00	2165	Loretta	Winborne	+14047590602								13	f	f	Lorettawinborne@outlook.com		new lead	\N	
2017-05-20 00:13:15.99879+00	2017-11-29 18:38:49.812384+00	2166			+19033168369								9	f	f		john g enloe dd	new lead	\N	
2017-05-01 00:35:41.763081+00	2017-11-29 18:38:53.214859+00	2167			+19722018925								9	f	f		williams kevin	new lead	\N	
2016-11-04 22:03:24.363808+00	2016-11-04 22:03:24.390512+00	2168	PRASHANT	TYAGI	+16023736660								1	f	f	prashant.tyagi1@gmail.com		new lead	\N	
2017-06-22 17:05:52.28081+00	2017-06-24 13:44:45.085751+00	2240			+17066123418								13	f	f			new lead	\N	
2017-12-22 16:16:31.161806+00	2017-12-22 16:21:35.574074+00	2169	Jason	Groth	+14046009339								13	f	f	Jpgroth@msn.com		new lead	\N	
2017-03-10 17:27:30.084185+00	2017-11-29 18:31:05.368989+00	2170			+18027341261								1	f	f			new lead	\N	
2016-08-05 20:46:19.082018+00	2016-12-10 00:55:45.165123+00	2171			+16105040508								3	f	f			new lead	\N	
2017-07-13 14:07:26.540647+00	2017-07-13 14:13:10.954256+00	2172			+17707668996								13	f	f			new lead	\N	
2016-11-27 20:07:47.34925+00	2016-11-27 20:07:47.373438+00	2173	Dorothy 	Coaston	+19727627790								1	f	f	blackangeldc@hotmail.com		new lead	\N	
2017-08-25 20:23:21.467063+00	2017-08-25 20:25:01.589346+00	2174			+16789141827								13	f	f			new lead	\N	
2017-12-06 20:30:46.144944+00	2017-12-06 20:32:26.218039+00	2175			+14172918402								15	f	f			new lead	\N	
2017-12-04 20:44:50.973114+00	2017-12-04 20:47:00.37036+00	2176			+18179537882								12	f	f		pls financial	new lead	\N	
2017-08-07 19:46:20.13835+00	2017-08-07 19:53:07.032288+00	2177	Kimberly	Adkins	+17063512849								13	f	f	Kimberlyadkins94@gmail.com		new lead	\N	
2016-11-06 22:56:35.037143+00	2016-11-06 22:56:35.05992+00	2178	LEANDRO	BISLIG	+19729740914								1	f	f	lbislig@yahoo.com		new lead	\N	
2016-11-03 22:34:46.017477+00	2016-11-03 22:34:46.036964+00	2179	Austin	Koepfer	+16232023128								1	f	f	akoepfer0103@gmail.com		new lead	\N	
2017-04-10 15:05:21.40103+00	2017-05-17 15:41:07.224313+00	2180			+19726467013								12	f	f		la familia insu	new lead	\N	
2016-09-28 17:51:18.11806+00	2016-11-09 15:42:56.351473+00	2181			+13027504959								3	f	f			new lead	\N	
2017-04-21 02:23:46.813427+00	2017-04-21 02:24:59.851852+00	2182			+18175850930								12	f	f		keeble david	new lead	\N	
2017-07-27 15:55:38.095694+00	2017-08-17 14:35:21.045673+00	2183			+14697794720								12	f	f		progressive ins	new lead	\N	
2017-05-03 17:12:42.510399+00	2017-11-29 18:38:49.80931+00	2184			+19188526264								9	f	f		asare maxwell	new lead	\N	
2017-12-20 19:53:02.460925+00	2017-12-20 19:54:15.924161+00	2185			+16789397772								13	f	f		potters clinton	select status	\N	
2017-05-26 14:00:32.830646+00	2017-11-29 18:38:49.813585+00	2186			+12032677700								9	f	f		premier financial svc inc	new lead	\N	
2017-07-17 19:07:16.297141+00	2017-07-17 19:09:35.206018+00	2187			+16785587409								13	f	f			new lead	\N	
2017-05-23 15:15:56.030561+00	2017-11-29 18:29:46.631465+00	2188			+19149994687								1	f	f			new lead	\N	
2017-12-02 14:25:42.392603+00	2017-12-02 14:29:13.858958+00	2189			+17705402100								13	f	f		norcross  ga	new lead	\N	
2017-04-07 22:55:27.380941+00	2017-11-29 18:38:53.213446+00	2190			+19184304219								9	f	f		evans max      	new lead	\N	
2016-08-12 08:27:46.321844+00	2017-11-29 18:31:37.368846+00	2191	Carlos 	Hernandez	+16616736641								1	f	f	thernan7@gmail.com		application submitted - autopay	\N	
2017-04-28 21:18:11.316592+00	2017-11-29 18:38:49.807385+00	2192			+1117146715700								9	f	f			new lead	\N	
2017-12-27 18:47:33.946086+00	2017-12-27 18:54:21.714031+00	2193			+12543492081								12	f	f		kimbrell robert	new lead	\N	
2016-10-06 17:45:08.381723+00	2016-11-09 15:44:25.869289+00	2194			+13026234710								3	f	f			new lead	\N	
2016-10-18 16:37:59.301552+00	2016-12-10 01:05:18.401182+00	2195			+14843691756								3	f	f			new lead	\N	
2017-12-13 21:07:16.532883+00	2017-12-13 21:17:10.751044+00	2196			+19043250492								15	f	f			new lead	\N	
2017-04-26 23:20:44.289202+00	2017-05-17 15:41:07.224386+00	2197			+19722411040								12	f	f		office lim     	new lead	\N	
2017-04-14 19:02:00.138494+00	2017-11-29 18:38:49.804988+00	2198			+18174941235								9	f	f		imc	new lead	\N	
2017-04-29 19:39:58.147474+00	2017-11-29 18:38:49.807523+00	2199			+19544755904								9	f	f		afs acceptance	new lead	\N	
2017-12-14 14:00:00.123394+00	2017-12-14 15:19:36.576597+00	2200	John	Autrey	+17064100045								13	f	f	johnautrey72@gmail.com		select status	\N	
2016-10-17 16:12:14.508438+00	2016-12-10 00:57:42.908386+00	2201			+14406391234								3	f	f			new lead	\N	
2017-05-10 19:10:39.613286+00	2017-11-29 18:38:49.810868+00	2202			+17184754969								9	f	f		manhattan  ny	new lead	\N	
2016-07-08 05:22:56.762473+00	2017-11-29 18:32:13.821143+00	2203	Unknown	Morton	+13135848136								1	f	f	arzureemorton@yahoo.com		new lead	\N	
2017-07-13 00:46:23.149873+00	2017-07-13 01:08:56.748084+00	2204			+18179865045								12	f	f		sparks clayton	new lead	\N	
2016-11-16 16:11:54.788576+00	2016-12-09 17:06:53.906126+00	2205			+12154316528								3	f	f			new lead	\N	
2017-12-19 17:26:35.844998+00	2017-12-19 17:35:58.88311+00	2206			+14403561329								15	f	f			new lead	\N	
2017-12-12 19:10:34.746162+00	2017-12-12 19:16:40.290994+00	2207	CLIENT SERVICES		+16787925701								13	f	f		sms	select status	\N	
2016-06-13 21:35:41.95976+00	2016-06-13 21:45:47.813881+00	2208	Christopher	Berardi	+17089273565								1	f	f	cb422cd@cb422cd.us		new lead	\N	
2017-03-27 15:40:58.680131+00	2017-11-29 18:38:53.212972+00	2209			+15025338888								9	f	f		nadar krishna	new lead	\N	
2017-05-26 22:46:05.797191+00	2017-11-29 18:38:49.813811+00	2210			+14695791673								9	f	f		chandrasiri pra	new lead	\N	
2016-05-20 19:14:13.934487+00	2017-11-29 18:31:10.260228+00	2211	Unknown		+15138600822								1	f	f			new lead	\N	
2017-10-16 17:50:08.266833+00	2017-10-16 17:56:35.728707+00	2212			+17063001322								13	f	f			new lead	\N	
2017-12-21 19:39:50.846451+00	2017-12-21 19:42:58.638923+00	2213	Michelle	Vaughn	+17067145352								13	f	f	michelle.vaughn@AMPmv.com	voaughn edith	select status	\N	
2016-08-08 13:53:16.19868+00	2017-11-29 18:31:56.600147+00	2214			+15702821953								1	f	f			do not contact	\N	
2016-06-27 18:40:10.264573+00	2017-11-29 18:32:13.820625+00	2215	Wayne	Harris	+17082504809								1	f	f			new lead	\N	
2016-08-05 13:04:56.557621+00	2016-12-09 17:06:53.905759+00	2216			+12158603019								3	f	f			new lead	\N	
2017-12-09 18:25:49.26201+00	2017-12-09 18:26:21.315752+00	2217			+16186708178								15	f	f			new lead	\N	
2017-10-11 15:02:09.819962+00	2017-10-11 15:04:41.098068+00	2218			+16783430059								13	f	f			new lead	\N	
2016-07-21 13:58:16.034249+00	2016-07-22 16:51:54.980299+00	2219	Richard	Westfall	+12163461946								1	f	f	falcon0370@yahoo.com		new lead	\N	
2016-02-12 21:24:57.718126+00	2016-02-12 21:25:32.05663+00	2220	Hermie		+10834523156								1	f	f			new lead	\N	
2016-08-05 21:15:56.869079+00	2017-11-29 18:31:37.368349+00	2221			+16617544128								1	f	f			do not contact	\N	
2016-08-15 22:55:57.865945+00	2017-11-29 18:32:13.821849+00	2222			+13303143014								1	f	f			new lead	\N	
2017-12-04 19:06:58.2432+00	2017-12-04 19:21:04.584988+00	2223			+18139383550								15	f	f			new lead	\N	
2016-11-02 15:46:44.230896+00	2016-11-02 15:46:44.257742+00	2224	PAUL	SIMMS	+17705923627								1	f	f	paulsimms511@comcast.net		new lead	\N	
2017-04-27 19:53:14.451374+00	2017-11-29 18:38:49.807109+00	2225			+17036759756								9	f	f		sean petro	new lead	\N	
2016-06-29 15:23:43.788836+00	2017-11-29 18:31:41.490234+00	2226	Unknown		+16148049922								1	f	f			new lead	\N	
2017-09-18 13:19:07.830115+00	2017-09-18 13:23:44.840359+00	2227			+16786023770								13	f	f			new lead	\N	
2017-11-17 20:23:09.808784+00	2017-11-17 20:25:34.873952+00	2228	Krystal	Nash	+17064016500								13	f	f	Krystalnash530@yahoo.com		select status	\N	
2017-12-22 20:30:22.185803+00	2017-12-22 20:32:36.59023+00	2229			+17709055172								13	f	f		atlanta  ga	new lead	\N	
2017-08-27 03:11:03.598762+00	2017-08-27 03:11:03.66562+00	2230	Jonathan	Young	+17705611109								13	f	f	Annasdaddy5590.jy@gmail.com		new lead	\N	
2016-10-04 18:08:23.945072+00	2016-11-09 15:43:50.98163+00	2231			+13052903081								3	f	f			new lead	\N	
2016-11-02 01:27:54.449513+00	2016-11-02 01:27:54.478905+00	2232	Bryan	Bolton	+16824657545								1	f	f	brybolton@gmail.com		new lead	\N	
2016-08-02 21:30:46.216052+00	2017-11-29 18:31:14.616489+00	2233			+19209656640								1	f	f			general interest	\N	
2016-10-08 17:01:02.586579+00	2016-12-10 01:01:51.441086+00	2234			+16193622765								3	f	f			new lead	\N	
2016-11-11 16:36:58.870397+00	2016-11-11 16:36:58.908645+00	2235	Thomas	Beasley	+18324655653								1	f	f	ThomasBeasley88@aol.com		new lead	\N	
2017-05-24 00:09:07.153885+00	2017-11-29 18:38:49.812953+00	2236			+12144532500								9	f	f		dallas  tx	new lead	\N	
2016-11-11 20:54:16.584873+00	2016-11-11 21:56:10.555219+00	2237			+17132969744								1	f	f			new lead	\N	
2016-06-02 11:59:43.765482+00	2017-11-29 18:31:37.368233+00	2238	Spam		+13236605918								1	f	f			new lead	\N	
2016-11-05 19:46:12.80334+00	2016-12-10 00:57:48.461914+00	2239			+18057546563								3	f	f			new lead	\N	
2017-04-19 15:19:22.050566+00	2017-11-29 18:47:25.068129+00	2241			+19032745722								8	f	f		fortner john   	new lead	\N	
2017-09-23 23:34:01.996598+00	2017-09-23 23:57:15.657927+00	2242			+16827605836								12	f	f		euless  tx	new lead	\N	
2017-11-29 16:08:19.13966+00	2017-11-29 16:08:25.716005+00	2243			+16692851257								6	f	f			new lead	\N	
2017-10-26 18:10:45.451339+00	2017-10-26 18:12:02.345126+00	2244			+17733104139								12	f	f		logan sharon	new lead	\N	
2017-05-26 16:58:16.619118+00	2017-05-26 16:58:37.053082+00	2245			+18178757674								12	f	f		cruz molinar jr	new lead	\N	
2016-11-11 18:29:03.687793+00	2016-12-10 01:01:54.351685+00	2246			+17206050174								3	f	f			new lead	\N	
2016-11-02 21:46:28.946299+00	2016-12-09 17:08:31.908872+00	2247			+16098881324								3	f	f			new lead	\N	
2017-07-13 19:36:48.747609+00	2017-07-13 19:37:54.997639+00	2248			+16789148339								13	f	f			new lead	\N	
2017-05-15 19:12:13.254407+00	2017-11-29 18:38:49.811572+00	2249			+14698544946								9	f	f		dallas  tx	new lead	\N	
2017-11-06 23:36:34.067757+00	2017-11-06 23:37:07.823429+00	2250			+14698159898								12	f	f		cell phone   tx	new lead	\N	
2017-06-27 22:02:21.665294+00	2017-06-27 22:03:12.148855+00	2251			+16786302028								13	f	f			new lead	\N	
2016-08-15 20:30:59.46993+00	2017-11-29 18:31:37.368946+00	2252			+16612728967								1	f	f			new lead	\N	
2017-05-04 20:16:19.586876+00	2017-05-04 20:17:33.476193+00	2253			+18309929638								12	f	f		jaimes marcelin	new lead	\N	
2017-05-25 17:07:06.777852+00	2017-11-29 18:38:53.214632+00	2254			+18157217535								9	f	f		cell phone   il	new lead	\N	
2016-11-02 19:42:41.02678+00	2016-11-02 19:47:37.839306+00	2255			+17048587120								1	f	f			new lead	\N	
2017-04-24 17:24:05.49956+00	2017-11-29 18:38:49.806434+00	2256			+19736381239								9	f	f		langevin chris	new lead	\N	
2016-11-04 15:44:49.735189+00	2017-01-27 21:12:23.814009+00	2257			+19722498907								1	f	f			new lead	\N	
2017-05-14 23:33:54.290685+00	2017-05-14 23:33:55.752916+00	2258			+15127488237								12	f	f		cadena efren	new lead	\N	
2017-05-13 20:25:54.164351+00	2017-05-17 15:41:07.22448+00	2259			+13252320813								12	f	f		reyesvalverde f	new lead	\N	
2016-07-23 20:19:23.715855+00	2016-07-25 13:02:35.123204+00	2260	Kelly	Thomas	+19375421066								1	f	f	Kthomas@miamisburg.k12.oh.us		new lead	\N	
2016-08-08 15:48:18.026504+00	2016-12-10 00:55:45.165198+00	2261			+16109484257								3	f	f			new lead	\N	
2017-07-18 14:29:54.531315+00	2017-08-17 14:35:21.045615+00	2262			+16822213164								12	f	f		banks johnathan	new lead	\N	
2016-08-24 18:01:28.98292+00	2016-12-10 01:01:51.440722+00	2263			+16192044015								3	f	f			new lead	\N	
2016-05-29 16:52:04.051135+00	2016-12-09 17:06:53.905658+00	2264	Unknown		+13362984103								3	f	f			new lead	\N	
2017-08-15 13:07:51.132039+00	2017-08-15 13:09:24.986703+00	2265	Valerie	parks	+17705197468								13	f	f	amandap91284@gmail.com		new lead	\N	
2017-04-08 16:05:05.13691+00	2017-11-29 18:38:53.213476+00	2266			+19729773900								9	f	f		william will	new lead	\N	
2017-10-09 12:27:57.4959+00	2017-10-11 14:06:09.010205+00	2267	Jessica	Hill	+17066146829								13	f	f	Jacemommy11@gmail.com		select status	\N	
2016-11-17 03:51:44.501214+00	2016-11-17 03:51:44.526435+00	2268	Brian	Baker	+19404524653								1	f	f	brianbaker04@hotmail.com		new lead	\N	
2017-06-01 21:33:02.478895+00	2017-11-29 18:38:49.814446+00	2269			+14807077524								9	f	f		otterson kevin 	new lead	\N	
2017-09-18 19:41:58.467764+00	2017-09-18 19:48:28.492771+00	2270	Melissa	Scales	+14705955480								13	f	f	Sarahhuston37@yahoo.com		new lead	\N	
2017-03-30 17:25:09.595846+00	2017-11-29 18:38:53.213156+00	2271			+19722519703								9	f	f		keil deban	new lead	\N	
2017-04-28 19:50:55.514567+00	2017-04-28 19:51:10.477539+00	2272			+18175035189								12	f	f		rodriguez karla	new lead	\N	
2017-09-01 19:18:00.443788+00	2017-09-01 19:24:29.720783+00	2273			+17706399650								13	f	f			new lead	\N	
2016-08-10 15:30:32.881752+00	2017-11-29 18:31:10.262118+00	2274			+14155681351								1	f	f			do not contact	\N	
2017-05-27 19:00:43.251608+00	2017-11-29 18:38:53.215541+00	2275			+15856109488								9	f	f		marble jeffrey	new lead	\N	
2017-06-19 15:13:30.802278+00	2017-08-17 14:35:21.045471+00	2276			+19253830064								12	f	f		cell phone   ca	new lead	\N	
2017-11-24 16:52:28.374773+00	2017-11-24 16:53:23.645322+00	2277			+17063514310								13	f	f			new lead	\N	
2017-05-05 21:33:37.651206+00	2017-11-29 18:38:53.215156+00	2278			+12144223197								9	f	f		guzman edgar	new lead	\N	
2016-05-21 18:49:55.880087+00	2016-05-25 18:19:43.277761+00	2279	Edward	Babcock	+19495735168								1	f	f	water-sportsman@cox.net		new lead	\N	
2017-12-11 15:24:01.297213+00	2017-12-11 15:30:28.075047+00	2280			+18175851403								12	f	f		fort worth  tx	new lead	\N	
2017-02-23 15:27:57.853789+00	2017-11-29 18:47:25.067357+00	2281			+17735436541								8	f	f			new lead	\N	
2016-08-24 20:34:36.533668+00	2017-11-29 18:31:37.369083+00	2282	Antonio	Chavez	+17606840090								1	f	f	NA@noemail.com		application submitted - autopay	\N	
2017-03-01 22:51:24.603437+00	2017-11-29 18:38:53.211674+00	2283			+12147731756								9	f	f		DESIGN BUILD RE	new lead	\N	
2017-12-11 21:44:17.727323+00	2017-12-11 21:56:55.632336+00	2284			+14195650962								15	f	f			new lead	\N	
2017-12-06 17:35:20.516445+00	2017-12-06 17:36:50.209491+00	2285			+16789274222								14	f	f			new lead	\N	
2016-09-07 19:08:17.177678+00	2016-12-10 01:04:42.413762+00	2286			+19093814444								3	f	f			new lead	\N	
2017-10-19 17:34:42.451189+00	2017-10-19 17:35:12.900061+00	2287			+16823176731								12	f	f		cehand brandon	new lead	\N	
2016-10-11 17:00:16.541776+00	2017-02-11 20:02:07.779627+00	2288			+15703236714								3	f	f			new lead	\N	
2017-05-26 16:30:50.117348+00	2017-11-29 18:38:49.813621+00	2289			+13126376192								9	f	f		yelp inc	new lead	\N	
2017-09-06 17:26:34.664215+00	2017-09-06 17:29:37.874292+00	2290			+17063912362								13	f	f			new lead	\N	
2017-09-29 21:41:32.778928+00	2017-09-29 21:42:43.430094+00	2291			+14707987477								13	f	f			new lead	\N	
2017-12-18 05:48:56.287885+00	2017-12-18 14:13:36.054573+00	2292	Cochitta 	Watson 	+17062470593								13	f	f	Cochittawatson@gmail.com		select status	\N	
2017-04-27 00:04:49.7071+00	2017-11-29 18:38:53.214646+00	2293			+1112103508936								9	f	f			new lead	\N	
2016-08-12 18:09:38.618302+00	2016-12-10 01:05:11.337074+00	2294			+17184482938								3	f	f			new lead	\N	
2016-11-09 13:15:18.939081+00	2016-11-09 13:15:18.983102+00	2295	Allegria	Alexander	+12145632636								1	f	f	alexanderalle@yahoo.com		new lead	\N	
2017-05-17 14:28:45.030329+00	2017-11-29 18:38:49.811911+00	2296			+14698544963								9	f	f		dallas  tx	new lead	\N	
2016-11-04 01:00:55.265097+00	2016-11-04 01:00:55.296237+00	2297	Al	Myers	+13126009595								1	f	f	Doinitdoinitproductions@gmail.com		new lead	\N	
2017-07-10 13:47:40.494813+00	2017-07-10 13:51:03.186585+00	2298	Terrence	Gaither	+14703851424								13	f	f	booskigd@aol.com		new lead	\N	
2017-11-25 20:50:14.725124+00	2017-11-25 20:52:06.314182+00	2299			+17067142152								13	f	f		craft lisa	select status	\N	
2017-12-13 14:50:56.503241+00	2017-12-13 15:18:31.066022+00	2300			+14404098103								15	f	f			new lead	\N	
2017-04-06 23:34:26.118577+00	2017-11-29 18:38:53.213396+00	2301			+19856628469								9	f	f		wireless caller	new lead	\N	
2016-06-01 17:21:15.401504+00	2017-11-29 18:31:37.368226+00	2302	Unknown	Ojeda	+16614446247								1	f	f	crisojeda@att.net		new lead	\N	
2016-11-02 16:18:39.079178+00	2016-12-09 17:06:53.906084+00	2303			+17142513012								3	f	f			new lead	\N	
2016-11-01 22:27:16.311657+00	2017-11-29 18:31:37.369248+00	2304	Thomas	Harrison	+18172711232								1	f	f	larryh01@verizon.net		general interest	\N	
2017-04-04 18:17:25.10256+00	2017-11-29 18:38:53.213331+00	2305			+13475437449								9	f	f		perry young	new lead	\N	
2017-02-09 21:52:40.834163+00	2017-02-09 21:54:40.726102+00	2306			+14125806452								6	f	f			new lead	\N	
2016-07-27 20:45:45.469746+00	2017-11-29 18:31:10.261658+00	2307			+15133177946								1	f	f			general interest	\N	
2017-03-20 15:36:04.207069+00	2017-11-29 18:47:25.06787+00	2308			+13239018629								8	f	f		mc prada b	new lead	\N	
2017-05-11 14:00:19.674459+00	2017-11-29 18:38:49.811074+00	2309			+16016024500								9	f	f		pace auto sales	new lead	\N	
2016-12-01 23:37:04.809861+00	2016-12-10 01:01:51.441191+00	2310			+16197215682								3	f	f			new lead	\N	
2016-11-30 15:58:54.986279+00	2017-11-29 18:31:33.775615+00	2311			+14403959551								1	f	f			new lead	\N	
2017-12-15 15:39:31.500131+00	2017-12-15 15:41:53.41031+00	2312			+14072334561								15	f	f			new lead	\N	
2017-06-26 13:58:44.714572+00	2017-06-26 14:04:45.030688+00	2313	Garry	Howard	+12293955117								13	f	f	ghoward2914@yahoo.com		new lead	\N	
2016-11-01 20:23:55.012468+00	2016-11-01 20:35:47.953636+00	2314			+19199342017								1	f	f			new lead	\N	
2016-10-31 22:18:01.463629+00	2016-10-31 23:06:35.736377+00	2315			+14694638548								1	f	f			new lead	\N	
2017-11-11 18:02:24.263903+00	2017-11-11 18:03:14.393356+00	2316			+12147669824								12	f	f		cell phone   tx	new lead	\N	
2017-08-04 16:05:32.202044+00	2017-08-04 16:11:10.859713+00	2317	kimberly	slaughter	+17069680432								13	f	f	kimberlyslaughter62211@yahoo.com		new lead	\N	
2017-04-25 20:48:54.249592+00	2017-04-25 21:23:08.076337+00	2318			+18179464619								1	f	f			new lead	\N	
2016-11-02 00:13:42.166086+00	2016-11-02 00:13:42.191797+00	2319	Lilia	Martinez 	+18172331606								1	f	f	Yocelyn0589@yahoo.com		new lead	\N	
2017-09-04 15:42:23.602732+00	2017-09-04 15:48:27.273821+00	2320	Ryan	Grayson	+17624489113								13	f	f	Acestoryteller@icloud.com		new lead	\N	
2016-10-31 23:50:46.28588+00	2016-10-31 23:50:46.314206+00	2321	cesar	florez	+17047848911								1	f	f	cphlorex_3708@hotmail.com		new lead	\N	
2017-09-16 23:25:14.540774+00	2017-09-16 23:31:15.776892+00	2322			+18039990451								12	f	f		lekhums micheal	new lead	\N	
2017-10-10 17:17:55.20489+00	2017-10-10 17:22:19.736861+00	2323			+16786300908								13	f	f			new lead	\N	
2016-05-26 01:22:21.33654+00	2016-05-26 12:55:40.529128+00	2324	Doris	Shelton	+18178214386								1	f	f	dshelton26@msn.com		new lead	\N	
2017-10-17 15:12:54.277098+00	2017-10-17 15:14:09.471927+00	2325	Marlon	Hooks	+17707092479								13	f	f	malarjacor03@yahoo.com		new lead	\N	
2017-04-22 22:05:33.49596+00	2017-05-17 15:41:07.224371+00	2326			+14695702407								12	f	f		dallas  tx	new lead	\N	
2017-09-22 14:54:22.461286+00	2017-09-22 14:55:44.277754+00	2327	Kimberley	Butts	+17863002422								13	f	f	Kbutts714@gmail.com		new lead	\N	
2017-05-05 16:39:18.454379+00	2017-11-29 18:38:49.809945+00	2328			+18702268537								9	f	f		warren pub scho	new lead	\N	
2016-06-03 01:45:09.423308+00	2016-06-03 12:14:47.406394+00	2329	wayne	morris	+19782811140								1	f	f	djzmorris@comcast.net		new lead	\N	
2017-04-18 19:41:37.004345+00	2017-11-29 18:38:49.805492+00	2330			+12144356106								9	f	f		ross jason     	new lead	\N	
2016-07-29 15:40:55.213991+00	2016-07-29 15:42:27.764095+00	2331			+18156628205								1	f	f			new lead	\N	
2016-10-11 16:21:07.058418+00	2016-12-10 01:04:28.706421+00	2332			+19517121030								3	f	f			new lead	\N	
2017-04-01 18:53:37.256092+00	2017-11-29 18:47:25.067947+00	2333			+18178776044								8	f	f		van j	new lead	\N	
2017-03-17 23:28:55.518455+00	2017-11-29 18:38:53.21258+00	2334			+18304696825								9	f	f			new lead	\N	
2017-08-05 19:23:47.769847+00	2017-08-05 19:45:39.239976+00	2335			+18177569798								12	f	f		dallas  tx	new lead	\N	
2017-10-18 21:20:19.229427+00	2017-10-18 21:26:13.333561+00	2336	Tamera	Mosley	+14784148506								13	f	f	tamera.mosley@gmail.com		new lead	\N	
2017-09-25 18:42:18.314647+00	2017-09-25 18:44:01.806736+00	2337	Derrick	Zackery	+14042462727								13	f	f	Nicholsderek@yahoo.com		new lead	\N	
2016-08-12 12:39:54.38653+00	2016-08-17 21:03:06.583869+00	2338	CURTIS	LAMBERT	+15137619620								1	f	f	LLAMBERT@GAIG.COM		application submitted - autopay	\N	
2017-04-14 16:49:10.570816+00	2017-11-29 18:38:49.804931+00	2339			+1118012604217								9	f	f			new lead	\N	
2017-10-05 13:40:50.111528+00	2017-11-29 18:32:01.93555+00	2340			+17813448346								1	f	f			new lead	\N	
2017-10-11 14:52:52.73955+00	2017-10-11 14:55:32.796298+00	2341	Jacarra	Smith 	+16786151234								13	f	f	Brandismith2626@gmail.com		new lead	\N	
2016-11-02 01:15:09.841265+00	2016-11-02 01:15:09.869693+00	2342	Victor	Melendez	+16824727172								1	f	f	guinga3089@gmail.com		new lead	\N	
2017-05-06 14:39:06.952434+00	2017-11-29 18:38:49.810166+00	2343			+18177914684								9	f	f		vu le	new lead	\N	
2017-12-07 15:36:08.701336+00	2017-12-07 15:46:05.221493+00	2344			+17543222809								15	f	f			new lead	\N	
2017-08-17 13:31:19.65219+00	2017-08-17 13:37:32.423723+00	2345			+17063915374								13	f	f			new lead	\N	
2017-10-03 17:38:40.33362+00	2017-10-03 17:39:58.30686+00	2346			+16787258317								13	f	f			new lead	\N	
2017-04-21 18:03:14.792201+00	2017-11-29 18:38:49.806195+00	2347			+12143015957								9	f	f		dallas  tx	new lead	\N	
2017-12-01 18:04:17.663629+00	2017-12-01 18:18:47.34708+00	2348			+13308583694								15	f	f			new lead	\N	
2017-12-26 15:44:59.506608+00	2017-12-26 16:12:32.159819+00	2349	Michael	Edmonds	+17062971673								13	f	f	Edmondsmichael1976@gmail.com		select status	\N	
2017-08-16 13:17:54.092906+00	2017-08-16 13:18:50.729661+00	2350	Jacquelyn	Usher	+16783965605								13	f	f	Jackieusher11@gmail.com		new lead	\N	
2017-11-04 14:27:11.496524+00	2017-11-04 14:28:38.207658+00	2351			+18175056272								12	f	f		ashford joshua	new lead	\N	
2017-04-21 18:31:56.906707+00	2017-11-29 18:38:49.80623+00	2352			+18322294802								9	f	f		cell phone   tx	new lead	\N	
2017-04-17 23:28:31.293869+00	2017-11-29 18:38:53.213388+00	2353			+17086456445								9	f	f		amro abrahim	new lead	\N	
2016-10-04 03:09:14.736885+00	2016-12-10 01:04:28.706399+00	2354			+19099362016								3	f	f			new lead	\N	
2017-11-20 18:53:56.834371+00	2017-11-21 14:36:33.405649+00	2355	Johnathan	Sowers	+16783207041								13	f	f	Sowersjohnathan@gmail.com		select status	\N	
2017-12-19 18:56:49.576654+00	2017-12-19 19:08:26.435644+00	2356			+12817828648								15	f	f			new lead	\N	
2017-05-24 17:51:18.223551+00	2017-11-29 18:38:49.813104+00	2357			+12148034150								9	f	f		fry johnny     	new lead	\N	
2016-10-11 17:51:58.433147+00	2016-12-09 17:10:17.413613+00	2358			+15706294053								3	f	f			new lead	\N	
2017-10-21 19:37:24.586313+00	2017-10-21 19:38:14.693446+00	2359			+18179185617								12	f	f		najera mariana	new lead	\N	
2016-09-03 15:13:43.775202+00	2016-12-09 17:10:17.413391+00	2360			+12014525843								3	f	f			new lead	\N	
2017-05-07 18:50:18.36627+00	2017-11-29 18:47:25.068411+00	2361			+19038163561								8	f	f		cell phone   tx	new lead	\N	
2017-04-04 21:49:30.191629+00	2017-11-29 18:31:56.600345+00	2362			+19789790158								1	f	f			general interest	\N	
2016-09-07 18:28:29.19366+00	2016-12-10 00:57:48.461718+00	2363			+18056592344								3	f	f			new lead	\N	
2016-11-01 20:58:14.095157+00	2016-11-01 21:16:11.510475+00	2364			+16784919380								1	f	f			new lead	\N	
2017-12-12 14:25:50.839879+00	2017-12-12 14:25:54.721277+00	2365			+14127015078								6	f	f			new lead	\N	
2017-11-28 22:34:07.194726+00	2017-11-28 22:43:04.810638+00	2366	Jessica	Smith	+19123344418								13	f	f	jesssmith79.ls@gmail.com		select status	\N	
2017-05-17 19:59:21.207148+00	2017-05-17 20:20:44.627789+00	2367			+18177563877								12	f	f		dallas  tx	new lead	\N	
2017-05-15 16:25:40.230439+00	2017-08-17 14:35:21.045191+00	2368			+18173334330								12	f	f		wireless caller	new lead	\N	
2017-10-20 04:46:17.669285+00	2017-10-20 04:46:17.735593+00	2369	Justin	Anderson	+19043250879								13	f	f	Deadmanwonderland1900@gmail.com		new lead	\N	
2017-04-10 21:28:55.131236+00	2017-11-29 18:38:53.213688+00	2370			+15129687341								9	f	f		legend communit	new lead	\N	
2016-07-07 18:06:14.484458+00	2016-12-10 01:05:18.40063+00	2371			+19085008552								3	f	f			new lead	\N	
2016-11-09 23:35:05.217747+00	2016-11-09 23:35:24.092175+00	2372			+16025370000								1	f	f			new lead	\N	
2016-09-10 13:14:57.779636+00	2016-12-09 17:10:17.413456+00	2373			+14849518593								3	f	f			new lead	\N	
2016-09-19 21:46:40.181361+00	2016-12-10 01:04:42.413797+00	2374			+19095209202								3	f	f			new lead	\N	
2017-07-31 02:16:11.104561+00	2017-07-31 02:16:19.194188+00	2375	MIke	Degan	+17033893536								13	f	f	mike@themarketerse.com		new lead	\N	
2016-09-07 16:04:50.022987+00	2016-12-09 17:10:17.413412+00	2376			+15084501877								3	f	f			new lead	\N	
2016-11-10 16:37:48.288578+00	2016-11-10 16:54:25.136695+00	2377			+17133820850								1	f	f			new lead	\N	
2017-04-29 19:22:59.362206+00	2017-11-29 18:38:49.807469+00	2378			+16823656438								9	f	f		latimer candace	new lead	\N	
2017-05-16 15:16:03.538445+00	2017-11-29 18:38:53.214219+00	2379			+14694346967								9	f	f		nova alliance s	new lead	\N	
2017-12-01 15:42:30.182088+00	2017-12-01 15:42:34.326664+00	2380			+19739579741								6	f	f			new lead	\N	
2016-11-21 22:17:18.467472+00	2016-11-21 22:44:39.012286+00	2381			+12024211208								1	f	f			new lead	\N	
2017-06-01 15:33:34.537328+00	2017-11-29 18:38:49.814345+00	2382			+14698996544								9	f	f		bahena edgar   	new lead	\N	
2017-12-07 17:39:10.46365+00	2017-12-07 18:01:43.05752+00	2383			+13166822532								15	f	f			new lead	\N	
2016-05-24 10:42:57.872972+00	2017-11-29 18:31:37.368176+00	2384	Unknown		+17574169416								1	f	f			new lead	\N	
2017-01-12 17:14:55.070467+00	2017-01-12 17:16:26.993907+00	2385			+18102651770								1	f	f			new lead	\N	
2017-08-31 20:37:56.21652+00	2017-08-31 20:59:43.161612+00	2386			+18178511372								12	f	f		shunniking	new lead	\N	
2016-12-29 21:27:39.763672+00	2016-12-29 21:27:39.791008+00	2387	Steven	Rae	+18329225533								1	f	f	steverae1962@hotmail.com		new lead	\N	
2016-11-04 15:47:03.971096+00	2016-11-04 15:48:06.201974+00	2388			+18034902508								1	f	f			new lead	\N	
2017-06-30 22:10:12.273963+00	2017-08-17 14:35:21.045565+00	2389			+18178967517								12	f	f		reyther kimberl	new lead	\N	
2017-06-28 18:17:30.976919+00	2017-06-28 18:24:36.015482+00	2390	MCKENZIE	MITCHELL	+16786772682								13	f	f	mitchell.mckenzie520@gmail.com		new lead	\N	
2016-07-21 19:24:05.576976+00	2017-11-29 18:31:41.49054+00	2391	mika	takenaka	+16144252908								1	f	f	mikadublin1@hotmail.com		new lead	\N	
2017-10-14 20:48:40.383104+00	2017-10-14 20:48:42.624292+00	2392			+14046808686								13	f	f			new lead	\N	
2017-09-16 18:04:06.454755+00	2017-09-16 18:05:45.354651+00	2393	PATRICIA	BURTCH	+17062449578								13	f	f	pnorman73@hotmail.com		new lead	\N	
2016-11-01 20:57:21.802+00	2016-11-01 20:57:21.852934+00	2394	Justin	McLeod	+12142026946								1	f	f	jmcleod@usnet-1.com		new lead	\N	
2017-10-12 16:13:06.342042+00	2017-10-12 16:16:24.785183+00	2395			+18177620285								12	f	f		tellez j	new lead	\N	
2016-09-07 17:23:37.442262+00	2016-12-10 01:04:42.413664+00	2396			+19096476647								3	f	f			new lead	\N	
2016-08-24 14:20:12.161537+00	2017-11-29 18:31:41.490793+00	2397	Allen 	Gucci	+13133738000								1	f	f			select status	\N	
2017-09-06 01:36:45.707586+00	2017-09-06 01:36:45.768878+00	2398	naomi	nunez	+17064103388								13	f	f	Naomi.nunez11713@gmail.com		new lead	\N	
2017-04-24 19:44:24.358665+00	2017-11-29 18:38:49.806455+00	2399			+18177264794								9	f	f		carroll jim	new lead	\N	
2016-12-07 21:50:10.792882+00	2016-12-09 17:07:42.627618+00	2400			+13063522188								3	f	f			new lead	\N	
2017-04-29 20:56:09.488647+00	2017-04-29 21:17:20.894818+00	2401			+18177242051								12	f	f		mcdonald lee	new lead	\N	
2017-11-30 23:35:43.395244+00	2017-11-30 23:38:39.466976+00	2402			+18175245081								12	f	f		deanthony wheat	new lead	\N	
2017-12-05 16:24:31.621811+00	2017-12-05 16:58:38.234103+00	2403			+15617351500								15	f	f			new lead	\N	
2016-11-02 18:09:35.047539+00	2017-11-29 18:31:37.369269+00	2404	Otto	Diaz	+16615754023								1	f	f	otto_diaz@yahoo.com		application submitted - autopay	\N	
2017-09-14 14:20:39.51023+00	2017-09-14 14:43:46.737389+00	2405			+19723176152								12	f	f		eaquinto lenae	new lead	\N	
2016-11-01 14:49:31.876708+00	2016-11-01 15:21:32.65686+00	2406			+14044531413								1	f	f			new lead	\N	
2017-11-17 15:23:50.74233+00	2017-11-17 15:25:10.003768+00	2407			+18178312626								12	f	f		solidiform	new lead	\N	
2017-09-27 23:12:56.793421+00	2017-09-27 23:12:56.848207+00	2408	Angelica	Johnsin	+17065436555								13	f	f	babygurl223388@gmail.com		new lead	\N	
2017-03-31 15:05:07.299729+00	2017-11-29 18:38:53.213191+00	2409			+15139613877								9	f	f		hall larry	new lead	\N	
2017-05-23 17:41:58.551158+00	2017-08-17 14:35:21.045305+00	2410			+18175017342								12	f	f		wireless caller	new lead	\N	
2016-11-30 17:08:41.757522+00	2017-11-29 18:31:33.775607+00	2411	Richard	Stibrick	+12162339620								1	f	f	rstibrick@roadrunner.com		application submitted - credit union	\N	
2017-08-18 21:36:36.689269+00	2017-08-18 21:43:00.209098+00	2412			+18177564529								12	f	f		dallas  tx	new lead	\N	
2017-04-25 19:19:23.00639+00	2017-11-29 18:38:49.806653+00	2413			+19037985148								9	f	f		texarkana  tx	new lead	\N	
2016-09-20 14:56:11.698951+00	2016-12-10 01:05:18.401027+00	2414			+16108644417								3	f	f			new lead	\N	
2016-11-16 21:03:20.510321+00	2016-11-16 21:03:20.541811+00	2415	RONALD	GOODMAN	+17708573716								1	f	f	ulricgoodman@gmail.com		new lead	\N	
2016-06-24 17:42:28.99388+00	2017-11-29 18:31:18.808761+00	2416	Unknown	Cheeseman	+14062417224								1	f	f			new lead	\N	
2016-10-31 18:58:20.71331+00	2016-10-31 19:03:46.936015+00	2417			+17046285195								1	f	f			new lead	\N	
2017-12-02 15:25:45.546351+00	2017-12-02 15:44:41.373748+00	2418			+13862951423								15	f	f			new lead	\N	
2017-04-15 20:10:41.829597+00	2017-11-29 18:38:49.805161+00	2419			+14703289614								9	f	f		boelter donald 	new lead	\N	
2016-05-18 21:22:43.406913+00	2016-05-25 16:32:10.949758+00	2420	Makr	Test	+19995558888								1	f	f	test@yahoo.com		new lead	\N	
2016-09-08 20:32:11.126209+00	2016-12-10 01:01:51.440891+00	2421			+16192274794								3	f	f			new lead	\N	
2017-04-07 22:40:53.237739+00	2017-11-29 18:38:53.213439+00	2422			+18326729500								9	f	f		houston  tx	new lead	\N	
2016-11-03 17:07:57.222661+00	2016-11-03 17:33:22.684244+00	2423			+16234663963								1	f	f			new lead	\N	
2017-11-06 21:01:46.166047+00	2017-11-06 21:03:11.539814+00	2424			+16012874651								12	f	f		willison corey	new lead	\N	
2017-05-01 14:05:45.785696+00	2017-11-29 18:38:49.807632+00	2425			+14044297230								9	f	f		allen chris    	new lead	\N	
2016-08-08 20:17:20.905402+00	2017-11-29 18:31:14.616475+00	2426			+19206068476								1	f	f			credit union declined no autopay	\N	
2017-12-27 01:58:07.540827+00	2017-12-27 01:58:34.081628+00	2427			+17633254561								15	f	f			new lead	\N	
2017-03-06 20:56:50.698342+00	2017-03-06 20:58:04.157716+00	2428	Georgia		+19542056448								1	f	f			new lead	\N	
2017-06-29 19:21:29.839397+00	2017-06-29 19:28:41.105492+00	2429			+17627280727								13	f	f			new lead	\N	
2017-08-25 13:50:33.377636+00	2017-08-25 13:57:13.62922+00	2430			+15619722489								13	f	f			new lead	\N	
2017-12-04 17:19:00.817283+00	2017-12-04 17:19:26.171427+00	2431			+17703347120								14	f	f			new lead	\N	
2016-11-04 22:17:48.94496+00	2016-11-04 22:18:16.808748+00	2432			+14698770845								1	f	f			new lead	\N	
2017-12-22 00:12:39.702142+00	2017-12-22 00:34:53.167355+00	2433			+18175843038								12	f	f		shumake robert	new lead	\N	
2017-03-24 20:01:30.549617+00	2017-11-29 18:31:56.600302+00	2434			+15702089494								1	f	f			new lead	\N	
2016-11-03 17:35:57.159459+00	2016-11-03 17:35:57.20018+00	2435	fanping	zhang	+18176092266								1	f	f	dianezfp@gmail.com		new lead	\N	
2016-07-08 15:15:28.923187+00	2017-11-29 18:31:41.490368+00	2436	Trisha	Podvin	+16145441011								1	f	f			new lead	\N	
2017-09-29 14:22:20.817453+00	2017-09-29 14:27:38.837474+00	2437	Kim	Murphy	+16789275361								13	f	f	milo30558@yahoo.com		new lead	\N	
2017-11-21 23:54:12.151083+00	2017-11-22 00:00:21.699037+00	2438	Kaitlyn	Chilli	+17064506883								13	f	f	kaitlynchilli@gmail.com		new lead	\N	
2017-04-06 19:56:52.712318+00	2017-11-29 18:38:53.213367+00	2439			+14057822567								9	f	f		farmers insuran	new lead	\N	
2016-12-09 17:02:31.323881+00	2016-12-09 17:05:33.979281+00	2440			+16786105111								1	f	f			new lead	\N	
2017-12-13 17:03:43.051243+00	2017-12-13 17:17:35.340571+00	2441			+13866275568								15	f	f			new lead	\N	
2017-05-26 18:26:50.453187+00	2017-11-29 18:38:49.813678+00	2442			+14077214406								9	f	f		estes antonio	new lead	\N	
2017-12-20 02:44:33.697057+00	2017-12-20 02:45:56.192159+00	2443	Charles	stokes	+15708984766								15	f	f	Jstokes717@gmail.com		new lead	\N	
2016-11-10 20:43:26.856111+00	2017-01-27 21:12:23.814093+00	2444			+18326030153								1	f	f			new lead	\N	
2017-06-01 14:28:52.904651+00	2017-11-29 18:38:53.215639+00	2445			+12145284844								9	f	f		eisenlohr john 	new lead	\N	
2017-05-30 20:31:17.355224+00	2017-08-17 14:35:21.045384+00	2446			+12105308294								12	f	f		martinea elsa	new lead	\N	
2017-11-21 00:44:33.293816+00	2017-11-21 01:06:16.57153+00	2447			+18179078802								12	f	f		euless  tx	new lead	\N	
2017-05-31 16:56:36.921147+00	2017-08-17 14:35:21.045398+00	2448			+19189339707								12	f	f		gibbs rexella	new lead	\N	
2017-05-09 18:45:28.424795+00	2017-11-29 18:38:49.810662+00	2449			+14696093930								9	f	f		dallas  tx	new lead	\N	
2016-07-11 17:55:06.335923+00	2016-07-11 19:09:26.221879+00	2450	Chardae	Gray	+17085394609								1	f	f	chardaeg@gmail.com		new lead	\N	
2017-12-06 19:28:43.085363+00	2017-12-06 19:53:21.877301+00	2451			+17085180872								15	f	f			new lead	\N	
2017-07-24 20:43:23.256436+00	2017-07-24 20:45:44.085331+00	2452	TAMMIE	HERRING	+17706548576								13	f	f	tammieherring1@gmail.com		new lead	\N	
2016-10-15 21:36:12.987208+00	2016-12-09 17:06:57.830402+00	2453			+13155072167								3	f	f			new lead	\N	
2017-12-20 01:47:39.433042+00	2017-12-20 01:50:14.952076+00	2454	Donovan	Linton	+19546006031								15	f	f	idondon@gmail.com		new lead	\N	
2017-03-27 15:23:47.485942+00	2017-11-29 18:38:53.212965+00	2455			+19722772380								9	f	f		glazers whlsl  	new lead	\N	
2017-06-23 13:26:43.049349+00	2017-06-24 13:45:04.894062+00	2456			+14702723152								13	f	f			new lead	\N	
2017-04-19 22:35:22.927354+00	2017-11-29 18:38:49.80586+00	2457			+15128091608								9	f	f		castillo arthur	new lead	\N	
2017-07-06 16:29:51.384255+00	2017-07-06 16:36:01.407466+00	2458			+16122265470								13	f	f			new lead	\N	
2017-04-18 20:40:03.886035+00	2017-11-29 18:38:49.805499+00	2459			+19402325428								9	f	f		cell phone   tx	new lead	\N	
2016-08-15 14:02:51.69453+00	2016-12-10 00:55:45.165306+00	2460			+16108277481								3	f	f			new lead	\N	
2017-06-17 21:37:48.174602+00	2017-06-17 21:48:56.266596+00	2461			+14045736863								13	f	f			new lead	\N	
2017-09-14 19:05:13.162075+00	2017-09-14 19:06:52.266157+00	2462	Brenda	Thornton	+17063913773								13	f	f	bthornton031@gmail.com		new lead	\N	
2017-10-30 05:41:53.755356+00	2017-10-30 05:41:53.813257+00	2463	Traci	Darby	+14702147392								13	f	f	swtpeanpunkinsmom@yahoo.com		new lead	\N	
2016-10-06 16:12:48.537214+00	2016-12-10 01:00:18.568483+00	2464			+16194604609								3	f	f			new lead	\N	
2016-07-25 15:01:46.201501+00	2016-07-25 15:45:14.663003+00	2465	Ricky	Gimmestad	+16612067233								1	f	f	Denisegimmestad@sbcglobal.net		new lead	\N	
2017-12-15 13:36:16.012193+00	2017-12-15 13:36:40.553846+00	2466	Darnell	Davis	+14042192398								14	f	f	darnelldelion@gmail.com		new lead	\N	
2017-04-27 16:05:24.358032+00	2017-11-29 18:47:25.068348+00	2467			+16825009079								8	f	f		duncan terrell	new lead	\N	
2016-11-03 17:12:28.712395+00	2016-11-03 17:51:57.34192+00	2468			+13146957756								1	f	f			new lead	\N	
2016-11-16 21:02:50.991891+00	2016-11-16 21:07:06.061805+00	2469			+12149428596								1	f	f			new lead	\N	
2017-04-24 16:13:03.086688+00	2017-11-29 18:47:25.06827+00	2470			+18503214892								8	f	f		nguyen tam     	new lead	\N	
2017-12-24 21:31:29.666524+00	2017-12-24 21:31:29.730031+00	2471	Misty	Jackson	+17067681989								13	f	f	Mwise0902@gmail.com		new lead	\N	
2017-04-13 14:27:33.630131+00	2017-11-29 18:38:49.804728+00	2472			+15165450125								9	f	f		manhattan  ny	new lead	\N	
2017-04-28 14:59:35.888126+00	2017-11-29 18:38:49.807236+00	2473			+18069286415								9	f	f		sanders ryan   	new lead	\N	
2016-12-08 22:50:10.609629+00	2016-12-08 22:50:10.661472+00	2474	Curtis 	Wilson 	+17046007353								1	f	f	Cawilso704@yahoo.com		new lead	\N	
2017-12-05 19:59:15.569412+00	2017-12-05 19:59:15.618166+00	2475	PHILOMENE	YOUMBI	+18327901902								15	f	f	yncyprien@yahoo.fr		new lead	\N	
2016-07-27 21:32:32.26019+00	2017-11-29 18:31:41.490582+00	2476	Shelley	Hinson	+16144069486								1	f	f	shelleyjhinson@yahoo.com		new lead	\N	
2017-04-17 22:41:46.714925+00	2017-11-29 18:38:53.214099+00	2477			+12102739030								9	f	f		baumler shawn  	new lead	\N	
2017-04-07 19:27:58.966092+00	2017-11-29 18:38:53.213425+00	2478			+18176924451								9	f	f		garcia emanuel	new lead	\N	
2016-11-04 15:38:35.47505+00	2017-01-27 21:12:23.814002+00	2479			+17064140844								1	f	f			new lead	\N	
2017-05-29 20:00:28.696166+00	2017-08-17 14:35:21.045377+00	2480			+19728004982								12	f	f		dallas  tx	new lead	\N	
2017-04-03 16:49:12.300525+00	2017-08-17 14:35:21.04493+00	2481			+18175224603								12	f	f		nextiva	new lead	\N	
2016-07-06 20:35:42.253583+00	2017-11-29 18:32:13.821403+00	2482	Unknown	Weimer	+13307929187								1	f	f	bunboytoo@aol.com		new lead	\N	
2017-07-07 18:22:12.253268+00	2017-07-07 18:23:33.791249+00	2483			+15155083477								12	f	f		allied ins grp	new lead	\N	
2016-11-17 20:18:04.114105+00	2016-11-17 20:18:04.153943+00	2484	Joel	Steed	+17135032937								1	f	f	jadsteed@aol.com		new lead	\N	
2017-09-21 01:12:51.832956+00	2017-09-21 01:12:51.899389+00	2485	Mieshia 	Harden 	+16786985356								13	f	f	mieshiaharden256@gmail.com		new lead	\N	
2017-04-20 14:48:50.509681+00	2017-11-29 18:38:49.805889+00	2486			+15758108010								9	f	f		albuquerque  nm	new lead	\N	
2016-05-31 19:40:30.041689+00	2016-12-09 17:06:50.452145+00	2487	Unknown		+12342283055								3	f	f			new lead	\N	
2016-10-22 15:45:31.412448+00	2016-12-10 01:01:00.200513+00	2488			+16193829854								3	f	f			new lead	\N	
2016-10-01 20:21:29.53294+00	2016-12-20 22:16:06.426515+00	2489			+18772510696								3	f	f			new lead	\N	
2017-05-10 17:55:19.732565+00	2017-11-29 18:38:49.810825+00	2490			+19037382879								9	f	f		cell phone   tx	new lead	\N	
2017-12-11 02:47:08.269909+00	2017-12-11 02:48:29.322023+00	2491	Alaina	Grace	+14695256898								15	f	f	Gracewedding101015@gmail.com		new lead	\N	
2017-03-23 18:47:19.350648+00	2017-11-29 18:38:53.21284+00	2492			+12144860186								9	f	f		trigg yolonda	new lead	\N	
2017-11-09 15:29:25.811962+00	2017-11-09 15:35:08.049812+00	2493	Shannon	Brooks	+17069732896								13	f	f	Shannonbrooks97@icloud.com		new lead	\N	
2017-05-23 23:21:43.923861+00	2017-08-17 14:35:21.04532+00	2494			+18175658976								12	f	f		armour charles 	new lead	\N	
2016-06-27 15:34:17.533715+00	2017-11-29 18:32:13.820568+00	2495	Sharon	Bodeen	+13307585092								1	f	f			new lead	\N	
2017-12-06 23:24:58.594319+00	2017-12-06 23:26:58.746631+00	2496			+15128443254								15	f	f			new lead	\N	
2017-09-06 07:19:44.887973+00	2017-09-06 07:19:44.940946+00	2497	Turkessa	Sheats	+17062484214								13	f	f	Teekay100.t@gmail.com		new lead	\N	
2017-05-16 18:56:04.242468+00	2017-11-29 18:38:49.811811+00	2498			+19176875996								9	f	f		alioune ndiaye	new lead	\N	
2016-10-10 23:13:49.234248+00	2016-12-10 01:04:42.413825+00	2499			+19092701469								3	f	f			new lead	\N	
2016-08-08 14:18:49.78304+00	2016-12-09 17:06:53.905766+00	2500			+12157509608								3	f	f			new lead	\N	
2017-04-13 16:55:19.704828+00	2017-11-29 18:38:49.804793+00	2501			+12147658677								9	f	f			new lead	\N	
2017-09-28 19:02:38.441337+00	2017-09-28 19:05:42.741464+00	2502	Michael	LaBarbera	+17062476830								13	f	f	mike.labarbera@gmail.com		new lead	\N	
2017-11-16 15:44:47.097989+00	2017-11-16 15:46:50.990346+00	2503			+16789144731								13	f	f			new lead	\N	
2017-04-15 19:54:03.075227+00	2017-11-29 18:47:25.068052+00	2504			+12149145197								8	f	f		mccullah clint 	new lead	\N	
2017-09-15 01:32:05.352337+00	2017-09-15 01:32:05.400974+00	2505	John	Massey	+17064365599								13	f	f	Gumlog22@gmail.com		new lead	\N	
2016-06-28 19:02:02.164183+00	2017-11-29 18:31:41.490213+00	2506	Unknown	Arthur	+16148752095								1	f	f	no1mamaw72@yahoo.com		new lead	\N	
2017-09-28 18:28:15.688486+00	2017-09-28 18:29:12.791894+00	2507			+17065211960								13	f	f			new lead	\N	
2016-11-03 21:52:43.072433+00	2016-11-03 22:15:00.232384+00	2508			+16023910500								1	f	f			new lead	\N	
2017-05-26 14:21:33.202097+00	2017-08-17 14:35:21.045355+00	2509			+16825835395								12	f	f		malik sadia	new lead	\N	
2017-10-27 21:01:34.812733+00	2017-10-27 21:15:05.78679+00	2510			+16787698452								13	f	f			new lead	\N	
2017-10-01 23:08:59.701556+00	2017-10-11 14:56:51.472942+00	2511	Charles 	Dover	+16784372025								13	f	f	Nickgotem22@gmail.com		select status	\N	
2016-11-10 20:52:40.812726+00	2016-11-10 20:56:51.836113+00	2512			+17139269773								1	f	f			new lead	\N	
2017-12-04 17:20:27.836009+00	2017-12-04 17:43:45.595587+00	2513			+14693329392								12	f	f		cell phone   tx	new lead	\N	
2017-11-08 17:43:51.50021+00	2017-11-08 18:05:27.242667+00	2514			+18174894574								12	f	f		wade geneatte	new lead	\N	
2016-12-09 21:21:23.817775+00	2016-12-09 21:27:24.493248+00	2515			+18329806552								1	f	f			new lead	\N	
2016-10-05 14:47:07.774627+00	2016-12-09 17:10:17.413527+00	2516			+16464545417								3	f	f			new lead	\N	
2016-10-06 15:03:09.124247+00	2016-12-09 17:10:17.413577+00	2517			+16102580580								3	f	f			new lead	\N	
2017-12-05 21:55:44.116883+00	2017-12-05 22:09:57.735021+00	2518			+17735017315								15	f	f			new lead	\N	
2017-11-20 15:54:19.64597+00	2017-11-20 15:56:02.892657+00	2519	Megan	Waddell	+17065104812								13	f	f	MEGBWADDELL2@YAHOO.COM		new lead	\N	
2017-03-29 22:39:17.530379+00	2017-11-29 18:38:53.213141+00	2520			+15129707736								9	f	f		texas discount 	new lead	\N	
2017-11-21 14:14:11.847182+00	2017-11-21 14:15:51.141188+00	2521	Shanee	Diemer	+16788876695								13	f	f	salesi0208@gmail.com		select status	\N	
2017-06-01 17:36:12.883443+00	2017-11-29 18:38:49.814381+00	2522			+18582637031								9	f	f		jakes motorcar	new lead	\N	
2017-03-29 18:13:32.175393+00	2017-11-29 18:32:13.822028+00	2523	Unknown	Kidd	+13304822476								1	f	f			application submitted - autopay	\N	
2017-05-16 21:33:18.745359+00	2017-11-29 18:38:53.214916+00	2524			+19363327848								9	f	f		name unavailable	new lead	\N	
2017-10-14 16:00:19.896134+00	2017-10-14 16:03:23.710956+00	2525			+14702482633								13	f	f			new lead	\N	
2016-10-05 16:26:54.71915+00	2016-12-10 00:57:48.461776+00	2526			+18054881670								3	f	f			new lead	\N	
2017-10-26 18:54:07.263744+00	2017-10-26 18:55:26.492778+00	2527	David	Taylor	+16786681574								13	f	f	chaset165@gmail.com		new lead	\N	
2016-08-30 15:41:44.876364+00	2016-12-10 01:00:18.568322+00	2528			+18589393461								3	f	f			new lead	\N	
2016-11-13 02:01:38.705054+00	2016-11-13 02:01:38.736677+00	2529	Kevin	Briglia	+14808680188								1	f	f	kevinbriglia@hotmail.com		new lead	\N	
2017-07-19 16:12:15.986523+00	2017-08-17 14:35:21.04563+00	2530			+16823524860								12	f	f		euless  tx	new lead	\N	
2016-11-08 23:35:00.503713+00	2016-11-09 00:25:35.866491+00	2531			+19797321676								1	f	f			new lead	\N	
2017-05-16 17:28:17.190501+00	2017-08-17 14:35:21.045212+00	2532			+12142508610								12	f	f		bell jarrett   	new lead	\N	
2016-11-03 16:19:41.633028+00	2016-11-03 16:19:53.894368+00	2533			+12813502048								1	f	f			new lead	\N	
2017-12-14 22:23:48.661893+00	2017-12-14 22:26:24.446842+00	2534			+12819484564								15	f	f			new lead	\N	
2017-05-22 15:16:24.542485+00	2017-11-29 18:38:49.812514+00	2535			+18166992875								9	f	f		rider james    	new lead	\N	
2016-11-04 19:02:13.496177+00	2016-11-04 19:05:00.434292+00	2536			+19784065690								1	f	f			new lead	\N	
2017-04-01 19:21:33.98752+00	2017-11-29 18:38:53.213234+00	2537			+14692796470								9	f	f		jonnas janice	new lead	\N	
2017-04-04 14:18:05.304367+00	2017-11-29 18:38:49.804419+00	2538			+12143155267								9	f	f		alexander ancy	new lead	\N	
2017-04-28 19:59:45.001629+00	2017-11-29 18:38:53.21478+00	2539			+18173689577								9	f	f		rodriguez becer	new lead	\N	
2016-08-26 19:29:33.071933+00	2017-11-29 18:31:14.616545+00	2540			+19204994711								1	f	f			new lead	\N	
2016-11-03 14:29:30.445699+00	2016-11-03 14:38:28.899534+00	2541	michael	sales sr	+17707815599								1	f	f	msalessr@bellsouth.net		new lead	\N	
2016-11-12 18:28:35.315618+00	2016-12-09 17:06:53.906112+00	2542			+12159139905								3	f	f			new lead	\N	
2016-11-02 17:25:39.38775+00	2016-11-02 18:03:12.21525+00	2543			+19032687156								1	f	f			new lead	\N	
2016-11-05 16:33:06.921486+00	2016-12-10 01:01:00.200592+00	2544			+16192781976								3	f	f			new lead	\N	
2017-11-03 15:28:25.142522+00	2017-11-03 15:29:59.228902+00	2545			+17063913695								13	f	f			new lead	\N	
2016-08-11 21:19:13.287713+00	2017-11-29 18:31:41.490681+00	2546			+16147884510								1	f	f			application started	\N	
2017-05-08 19:31:38.284426+00	2017-11-29 18:47:25.068418+00	2547			+18177690045								8	f	f		sandoval alex	new lead	\N	
2017-04-20 19:50:35.392669+00	2017-11-29 18:38:49.806054+00	2548			+17133306556								9	f	f		nguyen david   	new lead	\N	
2017-04-17 20:02:15.967649+00	2017-11-29 18:38:49.805275+00	2549			+12144504498								9	f	f		scott hunter   	new lead	\N	
2017-09-27 21:05:26.209369+00	2017-09-27 21:09:09.836807+00	2550	Jonnathan	Miller	+17067281999								13	f	f	Jonnathanmiller1984@gmail.com		new lead	\N	
2017-04-22 01:29:58.751218+00	2017-11-29 18:47:25.068228+00	2551			+14694497276								8	f	f		sims dorothy	new lead	\N	
2017-04-06 20:20:01.674067+00	2017-11-29 18:38:53.213381+00	2552			+16365303250								9	f	f		wells fargo adv	new lead	\N	
2017-07-15 18:05:03.158531+00	2017-08-17 14:35:21.045593+00	2553			+19708252583								12	f	f		laubin christop	new lead	\N	
2017-05-06 20:49:20.003687+00	2017-11-29 18:38:53.215199+00	2554			+18585411616								9	f	f		porter r	new lead	\N	
2018-03-08 19:21:56.048136+00	2018-03-08 19:21:57.428334+00	2555	test 2	test 2	+1dfasdf		asdf		sdf	asdf	asdf		4	f	f	test@test.com				
2016-05-23 22:23:54.226233+00	2017-11-29 18:32:10.406323+00	2556	Unknown		+18135063161								1	f	f			new lead	\N	
2016-10-12 16:11:03.2294+00	2016-12-10 01:01:00.200406+00	2557			+16198524173								3	f	f			new lead	\N	
2017-04-26 17:15:31.842096+00	2017-11-29 18:38:53.214581+00	2558			+15127731165								9	f	f		nancy lopez	new lead	\N	
2017-12-02 18:12:46.997859+00	2017-12-02 18:27:18.874833+00	2559			+19284464194								15	f	f			new lead	\N	
2016-09-02 19:21:07.758356+00	2016-09-02 19:31:36.093337+00	2560	Dawn	Steinhaus	+15133146785								1	f	f	dsteinhaus84@gmail.com		application submitted - autopay	\N	
2017-10-30 21:19:40.191782+00	2017-10-30 21:25:41.369614+00	2561			+16787608980								13	f	f			new lead	\N	
2017-12-17 14:56:10.611525+00	2017-12-18 13:58:38.851151+00	2562	Natasha	Gregory	+16787691153								13	f	f	Tashasweetd@gmail.com		select status	\N	
2016-11-02 02:36:29.397901+00	2016-11-02 02:36:29.429027+00	2563	Emil	Shumanov	+18324206055								1	f	f	viki_krumova@abv.bg		new lead	\N	
2017-12-22 14:18:23.481493+00	2017-12-22 14:18:28.131215+00	2564			+15738980161								10	f	f			new lead	\N	
2017-05-22 07:01:01.76305+00	2017-11-29 18:31:56.600408+00	2565			+15753237845								1	f	f			do not contact	\N	
2016-10-04 21:48:53.050825+00	2017-11-29 18:31:37.369161+00	2566	Diana	Palencl	+16614291745								1	f	f	Diana.dp05@gmail.com		new lead	\N	
2016-10-26 17:34:21.148083+00	2016-12-10 01:00:18.568538+00	2567			+16199856087								3	f	f			new lead	\N	
2017-05-09 18:09:44.749312+00	2017-11-29 18:38:49.810619+00	2568			+13054437626								9	f	f		orange co inc	new lead	\N	
2017-04-26 17:17:24.414437+00	2017-11-29 18:38:49.806766+00	2569			+16829782099								9	f	f		burns lerone   	new lead	\N	
2016-10-10 15:32:41.946282+00	2016-12-09 17:08:31.908828+00	2570			+15515804345								3	f	f			new lead	\N	
2017-10-10 20:47:36.572592+00	2017-10-10 20:48:18.217681+00	2571	Thelma	Lockman	+17708995286								13	f	f	jessica0887@gmail.com		new lead	\N	
2016-09-01 18:50:36.845354+00	2016-12-10 01:00:18.568343+00	2572			+16197271137								3	f	f			new lead	\N	
2017-07-06 17:05:10.037154+00	2017-07-06 17:15:56.851831+00	2573	Sujuan	Glenn	+16789341498								13	f	f	Donnique23@yahoo.com		new lead	\N	
2017-09-24 00:48:05.310503+00	2017-09-24 00:48:05.393812+00	2574	Alexis	Thomas	+14703011056								13	f	f	lexicapri91@gmail.com		new lead	\N	
2016-08-05 20:27:03.771319+00	2017-11-29 18:31:37.368697+00	2575	Gerald 	Collins	+16615263291								1	f	f			application submitted - credit union	\N	
2016-11-02 17:59:09.882929+00	2016-11-02 18:08:25.320655+00	2576			+16782300052								1	f	f			new lead	\N	
2017-12-19 21:04:09.433628+00	2017-12-19 21:09:51.117205+00	2577	Bailey	Grifffith-Driver	+17063485216								13	f	f	baileydriver98@gmail.com		select status	\N	
2016-09-03 20:18:47.5952+00	2017-11-29 18:31:14.616552+00	2578	Don		+16083506757								1	f	f			select status	\N	
2017-08-19 17:18:43.342242+00	2017-08-19 17:21:41.22424+00	2579			+19729840746								12	f	f		hudson joshua	new lead	\N	
2017-08-07 17:37:58.683622+00	2017-08-07 17:43:30.841934+00	2580			+17707664120								13	f	f			new lead	\N	
2016-10-05 15:36:21.928761+00	2016-12-10 01:03:26.83613+00	2581			+19734708986								3	f	f			new lead	\N	
2017-03-16 17:03:44.703509+00	2017-11-29 18:38:53.212446+00	2582			+14698181462								9	f	f			new lead	\N	
2017-11-15 19:02:43.589442+00	2017-11-29 18:31:56.600514+00	2583			+15708221914								1	f	f			new lead	\N	
2016-10-03 15:34:49.878632+00	2016-12-09 17:10:17.413506+00	2584			+19082830833								3	f	f			new lead	\N	
2017-05-05 19:50:54.196205+00	2017-11-29 18:38:53.215149+00	2585			+13107732962								9	f	f		lakhani ali	new lead	\N	
2016-09-09 14:58:04.796113+00	2016-12-09 17:10:17.413441+00	2586			+19084547662								3	f	f			new lead	\N	
2017-03-20 16:51:21.61186+00	2017-11-29 18:47:25.067884+00	2587			+16015732906								8	f	f		jackson  ms	new lead	\N	
2017-04-19 20:59:53.990118+00	2017-11-29 18:38:49.805775+00	2588			+12142352138								9	f	f		aguilar mariza 	new lead	\N	
2017-09-05 20:21:18.319134+00	2017-09-05 20:22:38.717339+00	2589	Marcus	Harris	+14049641093								13	f	f	mdrharris@gmail.com		new lead	\N	
2017-04-14 01:29:49.325158+00	2017-04-14 01:51:24.639569+00	2590			+18177562694								12	f	f		dallas  tx	new lead	\N	
2017-04-21 20:09:22.091054+00	2017-11-29 18:47:25.068214+00	2591			+17162281471								8	f	f		robert harris	new lead	\N	
2017-04-20 16:53:31.864545+00	2017-11-29 18:38:49.805946+00	2592			+15042871950								9	f	f		money mel	new lead	\N	
2017-11-23 20:31:05.708448+00	2017-11-24 14:57:16.588359+00	2593	Jennifer	Sampedro	+17067683604								13	f	f	Sampedro.jennifer23@gmail.com		select status	\N	
2017-12-01 22:45:54.088261+00	2017-12-01 22:48:05.476556+00	2594	Pernell	Roberts	+17709123770								13	f	f	flameless@aol.com		new lead	\N	
2017-12-09 00:47:40.84305+00	2017-12-09 00:48:00.126316+00	2595			+16024234474								15	f	f			new lead	\N	
2016-07-20 16:19:13.557946+00	2017-11-29 18:32:13.821501+00	2596			+13308020241								1	f	f			new lead	\N	
2016-11-02 15:58:53.02157+00	2016-11-02 16:06:51.301894+00	2597			+16824388073								1	f	f			new lead	\N	
2017-04-25 22:52:53.420321+00	2017-11-29 18:38:49.806703+00	2598			+13252174185								9	f	f		brooks ricky   	new lead	\N	
2016-08-01 18:33:06.98083+00	2017-11-29 18:31:37.368276+00	2599	David	Ekman	+16612752296								1	f	f			general interest	\N	
2017-10-11 17:42:07.820404+00	2017-10-11 17:46:14.815039+00	2600			+17065259446								13	f	f			new lead	\N	
2016-11-01 21:06:25.350565+00	2016-12-09 17:08:31.908865+00	2601			+18146889359								3	f	f			new lead	\N	
2016-10-05 15:39:36.778882+00	2016-12-10 01:01:00.200197+00	2602			+16199408382								3	f	f			new lead	\N	
2016-09-07 12:58:49.282452+00	2016-12-10 00:55:45.16547+00	2603			+16105179008								3	f	f			new lead	\N	
2017-11-09 14:32:18.301777+00	2017-11-09 14:38:02.055473+00	2604			+17864996469								13	f	f			new lead	\N	
2016-08-12 20:35:31.80613+00	2017-11-29 18:31:37.368653+00	2605	Elizabeth	Caldwel	+16612689346								1	f	f			general interest	\N	
2016-10-04 16:02:09.8196+00	2016-12-10 01:01:51.440988+00	2606			+16196721755								3	f	f			new lead	\N	
2017-07-14 17:03:43.189586+00	2017-07-14 17:06:19.926927+00	2607			+16786565503								13	f	f			new lead	\N	
2017-04-26 18:25:52.619002+00	2017-11-29 18:38:53.214596+00	2608			+12102195045								9	f	f		berlanga darlen	new lead	\N	
2016-10-06 18:54:20.209547+00	2016-12-10 01:00:18.56849+00	2609			+16198840788								3	f	f			new lead	\N	
2017-06-23 20:54:41.142328+00	2017-11-29 18:31:56.600429+00	2610			+15747039275								1	f	f			new lead	\N	
2017-06-21 18:10:13.273553+00	2017-08-17 14:35:21.045485+00	2611			+18176660376								12	f	f		turner jacklyn 	new lead	\N	
2016-11-04 22:42:54.230643+00	2016-11-04 22:48:57.784053+00	2612			+12147832667								1	f	f			new lead	\N	
2017-12-01 16:37:17.960702+00	2017-12-01 16:38:07.048351+00	2613			+18176929226								12	f	f		rios leslie	new lead	\N	
2016-11-14 20:28:31.772351+00	2016-11-14 20:28:31.81647+00	2614	Michelle	Haskin	+13462129393								1	f	f	mhaskin.mh@gmail.com		new lead	\N	
2016-10-05 00:11:11.498211+00	2016-12-10 01:04:28.706406+00	2615			+19098217308								3	f	f			new lead	\N	
2017-04-14 18:03:18.069768+00	2017-11-29 18:31:10.262832+00	2616	Steve Robert	Williams	+15134776285								1	f	f			application submitted - autopay	\N	
2017-07-11 16:53:32.494412+00	2017-07-11 16:54:55.721792+00	2617			+16785487310								13	f	f			new lead	\N	
2016-11-06 17:10:48.270601+00	2016-11-06 17:10:48.297736+00	2618	LYNN	STEPHENS	+19366895078								1	f	f	fitlynn@yahoo.com		new lead	\N	
2017-11-21 20:10:38.477907+00	2017-11-21 20:14:44.890844+00	2619	Raydreone 	Howard 	+17065109231								13	f	f	Rayhow12@gmail.com		select status	\N	
2017-05-03 14:38:30.953383+00	2017-11-29 18:38:49.809133+00	2620			+14699097590								9	f	f		siskin sara    	new lead	\N	
2017-05-31 16:08:47.662696+00	2017-11-29 18:38:49.814232+00	2621			+12148098362								9	f	f		frye kandy l	new lead	\N	
2017-09-30 17:28:30.425377+00	2017-09-30 17:29:35.335067+00	2622			+16785796998								13	f	f			new lead	\N	
2017-05-09 16:10:28.524117+00	2017-11-29 18:38:49.810562+00	2623			+12317307713								9	f	f		shoenmaker josh	new lead	\N	
2017-09-22 23:26:08.109298+00	2017-09-22 23:26:08.161338+00	2624	Charolette	Gaudlock	+16783572653								13	f	f	justinethompson937@yahoo.com		new lead	\N	
2017-04-13 22:20:48.025247+00	2017-11-29 18:38:53.213865+00	2625			+18177972763								9	f	f			new lead	\N	
2017-10-18 17:40:18.301249+00	2017-10-18 17:40:32.622757+00	2626			+17707847288								6	f	f			new lead	\N	
2016-07-28 15:58:56.563539+00	2016-07-29 14:08:21.698238+00	2627	Harold	Gemmell	+14062037349								1	f	f	dablitz13@yahoo.com		application submitted - credit union	\N	
2017-04-18 19:20:44.171803+00	2017-11-29 18:38:53.214184+00	2628			+19185204245								9	f	f		llc entourage  	new lead	\N	
2017-03-09 17:57:54.959055+00	2017-11-29 18:38:53.211975+00	2629			+19036474020								9	f	f		cell phone   tx	new lead	\N	
2016-11-03 16:10:06.698341+00	2016-11-03 16:38:23.907391+00	2630			+14708993111								1	f	f			new lead	\N	
2016-09-29 18:32:16.643674+00	2016-12-10 01:04:28.70637+00	2631			+17062971994								3	f	f			new lead	\N	
2017-08-02 09:20:54.655853+00	2017-11-29 18:32:10.406571+00	2632			+12692351514								1	f	f			new lead	\N	
2017-03-16 19:36:42.730696+00	2017-11-29 18:47:25.067792+00	2633			+12145799559								8	f	f		around the clock tax svc	new lead	\N	
2017-12-09 23:50:28.947416+00	2017-12-09 23:51:17.045406+00	2634			+19402554950								12	f	f		marsden terry	new lead	\N	
2016-11-17 15:25:48.445811+00	2016-11-17 15:25:48.474213+00	2635	thomas	wesolowski	+13149565097								1	f	f	mufan17@yahoo.com		new lead	\N	
2017-10-30 16:37:03.661748+00	2017-10-30 16:40:58.608522+00	2636	Adrian	Jones	+17066805377								13	f	f	Adrianjones0212@gmail.com		new lead	\N	
2016-11-21 21:32:26.834583+00	2016-12-09 17:06:57.830416+00	2637			+15142744607								3	f	f			new lead	\N	
2017-04-19 16:35:19.754425+00	2017-11-29 18:47:25.068137+00	2638			+18174707015								8	f	f		cell phone   tx	new lead	\N	
2017-03-02 16:58:25.232772+00	2017-11-29 18:47:25.067537+00	2639			+19723588836								8	f	f		cell phone   tx	new lead	\N	
2017-08-30 20:38:18.319231+00	2017-08-30 20:41:41.898881+00	2640			+18173026298								12	f	f		harrison ava	new lead	\N	
2017-05-05 20:43:01.412398+00	2017-11-29 18:38:49.810109+00	2641			+13057753233								9	f	f		knoepffler carl	new lead	\N	
2016-05-25 20:34:24.655495+00	2017-11-29 18:31:10.260391+00	2642	Unknown	Middleton	+15137063355								1	f	f	jdixiemiddleton@yahoo.com		new lead	\N	
2017-10-05 15:23:46.877972+00	2017-10-05 15:27:05.064992+00	2643	Hannah	Walters	+17063085026								13	f	f	hannah.walters1128@gmail.com		new lead	\N	
2017-11-29 14:41:36.257242+00	2017-11-29 14:45:04.643466+00	2644			+16784579785								13	f	f		shayabelle	new lead	\N	
2017-04-21 17:00:12.327835+00	2017-11-29 18:38:53.214376+00	2645			+12122496350								9	f	f		friedberg eric	new lead	\N	
2016-08-24 14:04:15.483621+00	2017-11-29 18:31:10.262568+00	2646			+15134467094								1	f	f			general interest	\N	
2017-07-14 23:43:49.631942+00	2017-07-14 23:45:39.765812+00	2647			+18177214210								12	f	f		charles getty	new lead	\N	
2016-06-17 15:57:41.983998+00	2016-12-09 17:06:53.905694+00	2648	Unknown		+12157575920								3	f	f			new lead	\N	
2016-11-07 03:16:16.889837+00	2016-11-07 03:16:16.933021+00	2649	Dale	Heatherly	+12243816676								1	f	f	annybell@icloud.com		new lead	\N	
2017-07-25 15:42:25.770574+00	2017-07-25 15:47:28.97358+00	2650			+17064619079								13	f	f			new lead	\N	
2017-08-30 00:10:32.43674+00	2017-08-30 00:10:32.47377+00	2651	Laura	Harms	+19364466257								1	f	f	lharms06@gmail.com		new lead	\N	
2017-03-10 22:09:14.911157+00	2017-11-29 18:47:25.06768+00	2652			+15805794697								8	f	f		parker kody    	new lead	\N	
2017-11-17 23:36:47.63785+00	2017-11-17 23:37:45.790606+00	2653			+16782627861								13	f	f			new lead	\N	
2017-08-09 14:17:30.093356+00	2017-08-09 14:43:41.852296+00	2654	Scottie 	Graham 	+17069368672								13	f	f	scottiegraham30173@gmail.com		select status	\N	
2016-06-27 18:57:07.314906+00	2017-11-29 18:31:10.261347+00	2655	Unknown		+15136644000								1	f	f			new lead	\N	
2017-12-07 16:59:38.429132+00	2017-12-07 17:19:22.259546+00	2656			+14692871104								15	f	f			new lead	\N	
2017-05-10 20:31:21.947729+00	2017-11-29 18:38:49.810959+00	2657			+17046997027								9	f	f		shembo yodi    	new lead	\N	
2017-09-19 20:34:54.850604+00	2017-09-19 20:37:11.191973+00	2658			+18174781137								12	f	f		speed fab-crete	new lead	\N	
2017-05-25 17:17:43.265131+00	2017-11-29 18:38:49.813423+00	2659			+17023229263								9	f	f		crb	new lead	\N	
2017-04-14 19:51:32.030206+00	2017-11-29 18:38:53.213937+00	2660			+17032162314								9	f	f		mozaffar ahmad 	new lead	\N	
2017-05-10 17:35:00.51579+00	2017-11-29 18:38:53.215583+00	2661			+12103214200								9	f	f		us govt	new lead	\N	
2016-08-03 22:00:26.905125+00	2017-11-29 18:31:10.262082+00	2662	Dan 	Clepper	+15137391890								1	f	f	daniel.clepper@afit.edu		general interest	\N	
2017-05-01 19:43:12.505789+00	2017-11-29 18:38:53.214887+00	2663			+18062180875								9	f	f		tovar lorena   	new lead	\N	
2016-11-05 07:45:20.714104+00	2016-11-05 07:45:20.74514+00	2664	Daymon	Taylor	+16785990819								1	f	f	snaxdabeast36@gmail.com		new lead	\N	
2017-12-07 21:54:46.227204+00	2017-12-07 21:58:35.537749+00	2665			+18137844482								15	f	f			new lead	\N	
2017-04-12 20:58:30.79831+00	2017-11-29 18:38:53.213823+00	2666			+16175105354								9	f	f		welbourn robert	new lead	\N	
2017-03-30 22:26:40.443538+00	2017-11-29 18:38:53.213184+00	2667			+15029953999								9	f	f		louisville  ky	new lead	\N	
2016-11-05 23:26:07.154023+00	2016-11-05 23:26:07.177106+00	2668	zhenhan	cai	+17139097482								1	f	f	jacky_caizh@hotmail.com		new lead	\N	
2016-08-10 23:02:25.146407+00	2016-08-11 12:20:49.474101+00	2669	Latashia	Leath	+19377251795								1	f	f	Leathtashia@hotmail.com		application submitted - autopay	\N	
2017-05-04 14:24:58.935588+00	2017-05-04 14:47:19.469602+00	2670			+18177366274								12	f	f		cell phone   tx	new lead	\N	
2017-12-09 15:23:39.149364+00	2017-12-09 15:33:23.385518+00	2671			+16789341463								13	f	f		conner christin	select status	\N	
2016-09-04 21:10:30.021647+00	2016-12-10 01:01:51.440779+00	2672			+16199772682								3	f	f			new lead	\N	
2016-11-02 14:24:36.281918+00	2017-01-27 21:12:23.813911+00	2673			+18178887964								1	f	f			select status	\N	
2017-05-26 20:21:38.993388+00	2017-11-29 18:38:49.813724+00	2674			+13256768925								9	f	f		txdot credit un	new lead	\N	
2017-12-06 13:50:37.225077+00	2017-12-06 13:58:27.608543+00	2675			+17136721993								15	f	f			new lead	\N	
2016-10-05 15:04:03.286683+00	2016-12-10 01:01:00.200159+00	2676			+16193708981								3	f	f			new lead	\N	
2017-04-27 21:55:04.629659+00	2017-11-29 18:38:53.214703+00	2677			+12148688012								9	f	f		wireless caller	new lead	\N	
2017-11-18 20:51:01.126676+00	2017-11-18 20:52:45.175557+00	2678			+18178930155								12	f	f		waites micheal	new lead	\N	
2016-10-27 17:12:36.034352+00	2017-11-29 18:31:37.369218+00	2679			+16612696329								1	f	f			new lead	\N	
2016-12-01 18:21:57.628437+00	2016-12-10 01:01:51.441184+00	2680			+18583859311								3	f	f			new lead	\N	
2016-10-11 15:02:28.573414+00	2016-12-10 01:04:42.413832+00	2681			+19093885823								3	f	f			new lead	\N	
2016-10-15 23:11:13.771352+00	2016-12-09 17:07:47.979329+00	2682			+17067558572								3	f	f			new lead	\N	
2016-11-05 17:14:15.63725+00	2016-11-05 17:48:53.31152+00	2683			+18173125439								1	f	f			new lead	\N	
2017-07-31 15:08:19.850332+00	2017-07-31 15:12:52.257456+00	2684			+12605855184								13	f	f			new lead	\N	
2016-11-02 00:07:27.79919+00	2016-11-02 00:07:27.82509+00	2685	James	Jackson	+12142080435								1	f	f	jcjackson04@yahoo.com		new lead	\N	
2016-07-28 22:04:09.008917+00	2016-07-29 14:07:40.799331+00	2686	Douglas	Snyder	+13307303208								1	f	f	dsnyder@neo.rr.com		new lead	\N	
2017-05-25 19:50:25.667898+00	2017-11-29 18:38:49.813501+00	2687			+12143346458								9	f	f		cell phone   tx	new lead	\N	
2016-10-04 19:26:36.42122+00	2016-12-09 17:06:53.906014+00	2688			+12157738285								3	f	f			new lead	\N	
2016-11-01 23:51:35.936104+00	2016-11-01 23:51:35.958219+00	2689	Daniel	Garcia	+16144461552								1	f	f	garciada@miamioh.edu		new lead	\N	
2017-12-05 20:01:07.949136+00	2017-12-05 20:01:33.422416+00	2690	george	freeman	+16788228220								14	f	f	freeman.george1@gmail.com		new lead	\N	
2017-12-06 18:39:37.124771+00	2017-12-06 18:42:00.465637+00	2691			+16785991733								13	f	f		dalton  ga	new lead	\N	
2017-02-09 15:36:46.943087+00	2017-02-09 15:41:31.329817+00	2692			+17133061384								1	f	f			new lead	\N	
2017-03-23 21:25:09.24651+00	2017-11-29 18:38:53.212874+00	2693			+18179862547								9	f	f		basavaraju raja	new lead	\N	
2017-04-14 14:56:35.827201+00	2017-11-29 18:31:10.262818+00	2694	Vickie	Williams	+15137858796								1	f	f			general interest	\N	
2016-07-07 18:41:31.034292+00	2017-11-29 18:31:41.490353+00	2695	Bill	Ryan	+17402158681								1	f	f			general interest	\N	
2017-10-15 19:06:09.099761+00	2017-10-15 19:06:42.937539+00	2696			+18178457948								12	f	f		steven john	new lead	\N	
2017-12-12 20:16:25.131947+00	2017-12-12 20:29:39.676628+00	2697	Josephine	Kirchner	+17725211418								15	f	f	jebk1224@gmail.com		new lead	\N	
2016-09-03 14:35:14.748633+00	2016-12-09 17:07:45.331612+00	2698			+14848326591								3	f	f			new lead	\N	
2016-09-01 14:19:08.772777+00	2016-12-10 01:00:18.568329+00	2699			+16193410137								3	f	f			new lead	\N	
2016-12-03 16:01:22.549875+00	2016-12-03 16:19:43.795905+00	2700	Lynn	Bunker	+19208638654								1	f	f	wllbunk@centurytel.net		application submitted - credit union	\N	
2017-03-18 21:21:42.43805+00	2017-11-29 18:31:01.155614+00	2701			+18312741073								1	f	f			new lead	\N	
2017-12-21 14:02:36.261403+00	2017-12-21 14:05:28.637597+00	2702			+12317293616								15	f	f			new lead	\N	
2016-12-05 22:40:08.588398+00	2016-12-05 22:45:31.1528+00	2703			+12145972713								1	f	f			new lead	\N	
2017-06-20 18:17:34.79635+00	2017-06-20 18:18:17.047081+00	2704	richard	valdes	+17863313845								1	f	f	valdesr@autonation.com		new lead	\N	
2017-10-03 22:43:21.823764+00	2017-10-03 23:01:12.04212+00	2705			+17068946702								13	f	f			new lead	\N	
2016-08-03 15:48:11.007328+00	2016-08-05 12:49:39.637716+00	2706	Cherrita	Powell	+19092358450								1	f	f	powellcherri@yahoo.com		application submitted - autopay	\N	
2016-10-05 16:06:20.075978+00	2016-12-10 01:01:51.44103+00	2707			+18083824459								3	f	f			new lead	\N	
2017-10-04 18:53:44.492583+00	2017-10-04 18:57:00.502649+00	2708	Michael	Peters	+18052484234								13	f	f	Milagia03@gmail.com		new lead	\N	
2016-08-05 17:51:38.840573+00	2017-01-27 21:12:23.812736+00	2709	Authur	Ivory	+16614804014								1	f	f	authurivory2013@gmail.com		application submitted - autopay	\N	
2017-08-04 16:34:44.339072+00	2017-08-04 16:39:33.863622+00	2710	Christopher 	Schutzman	+17069731943								13	f	f	Jummpers311@gmail.com		new lead	\N	
2016-11-29 23:43:57.16866+00	2016-11-29 23:49:20.969211+00	2711			+16232660180								1	f	f			new lead	\N	
2017-07-24 20:41:54.874065+00	2017-07-24 20:41:55.041332+00	2712			+18177814280								12	f	f		the reynolds co	new lead	\N	
2016-11-15 01:07:38.441252+00	2016-11-15 01:07:38.464444+00	2713	blanca	garcia	+19405949146								1	f	f	b_govea@hotmail.com		new lead	\N	
2017-10-27 19:15:10.269261+00	2017-10-27 19:21:07.806125+00	2714	David 	Wright	+14702482137								13	f	f	undertakerdeadmanwalking2007@gmail.com		new lead	\N	
2017-11-04 19:30:20.073773+00	2017-11-04 19:31:22.977726+00	2715			+18172232742								12	f	f		hackfeld tricia	new lead	\N	
2016-07-29 17:57:44.985464+00	2017-11-29 18:31:10.26176+00	2716			+15134894233								1	f	f			new lead	\N	
2017-11-01 15:33:03.88701+00	2017-11-01 15:36:10.788472+00	2717			+14708926052								13	f	f			new lead	\N	
2017-12-06 15:23:08.568009+00	2017-12-06 15:23:17.818255+00	2718			+18032330693								6	f	f			new lead	\N	
2016-09-14 13:31:29.806198+00	2016-12-10 00:55:45.165477+00	2719			+16109332320								3	f	f			new lead	\N	
2017-06-29 15:28:53.409437+00	2017-06-29 15:29:49.516739+00	2720			+17063512441								13	f	f			new lead	\N	
2016-06-27 15:50:59.873633+00	2017-11-29 18:31:41.490072+00	2721	Unknown	Bond	+16145714877								1	f	f			new lead	\N	
2017-01-06 22:07:59.188133+00	2017-01-06 22:10:20.209944+00	2722	Skip Esch		+19492805308								1	f	f			new lead	\N	
2017-05-02 19:48:18.519521+00	2017-11-29 18:47:25.068362+00	2723			+14697039067								8	f	f		garcia yolanda	new lead	\N	
2016-08-08 14:37:38.799224+00	2017-01-27 21:12:23.812791+00	2724	Aaron	Hyatt	+18054902098								1	f	f	ahyatt9355@aol.com		application submitted - autopay	\N	
2017-05-19 15:20:09.253482+00	2017-11-29 18:38:49.812259+00	2725			+17066691991								9	f	f		hopper emma    	new lead	\N	
2016-05-31 14:12:41.744422+00	2017-11-29 18:31:10.260598+00	2726	Unknown	Pfleger	+15134760433								1	f	f	gpfleger@huff.com		new lead	\N	
2017-10-31 18:58:57.398331+00	2017-10-31 19:02:21.355046+00	2727			+18172258204								12	f	f		castleman david	new lead	\N	
2017-04-15 16:02:15.818065+00	2017-11-29 18:38:53.214022+00	2728			+12144298464								9	f	f		global transmis	new lead	\N	
2017-08-21 14:50:15.713734+00	2017-08-21 15:12:01.448863+00	2729			+18177562560								12	f	f		dallas  tx	new lead	\N	
2017-12-05 21:17:51.834955+00	2017-12-05 21:40:10.450116+00	2730			+19365257584								15	f	f			new lead	\N	
2016-09-07 14:44:34.066779+00	2016-12-09 17:06:53.905871+00	2731			+19086739000								3	f	f			new lead	\N	
2018-04-22 18:03:38.033275+00	2018-04-22 18:05:54.150917+00	2732	Mason	Bouwer	+14564565465		123 Brick St			WV	56546		4	f	f	hv13@hotmail.com				
2017-07-29 16:33:54.920924+00	2017-11-29 18:47:25.068565+00	2733			+14696557980								8	f	f		aguilera noemis	new lead	\N	
2017-10-30 17:30:27.358863+00	2017-10-30 17:30:50.526198+00	2734	Arthur	Richardson	+17063515790								13	f	f	arthur.richardson@yahoo.com		new lead	\N	
2017-04-29 17:55:20.326875+00	2017-11-29 18:38:49.807455+00	2735			+18172912553								9	f	f		williams jr rog	new lead	\N	
2017-04-25 20:32:45.11835+00	2017-04-25 20:34:48.477058+00	2736			+19723650831								12	f	f		williams sharon	new lead	\N	
2017-11-14 19:42:50.98329+00	2017-11-14 19:47:50.249491+00	2737			+14782131668								13	f	f			new lead	\N	
2016-08-23 14:41:48.499168+00	2017-11-29 18:31:41.4908+00	2738	Robert	Hickman	+16148376645								1	f	f	rhickman1@aol.com		application submitted - credit union	\N	
2017-10-20 19:06:56.111595+00	2017-10-20 19:08:13.209129+00	2739	Barbara	Aly	+17702928340								13	f	f	amber29054@aol.com		new lead	\N	
2017-11-20 14:03:58.461886+00	2017-11-20 14:07:18.214804+00	2740	eugenia	pressley	+17067681241								13	f	f	eugeniapressley@yahoo.com		select status	\N	
2016-08-27 19:34:40.048081+00	2016-08-29 12:31:08.461213+00	2741	Robert	Newbrey	+16619656279								1	f	f	robert.newbrey@gmail.com		application submitted - credit union	\N	
2016-11-02 14:15:44.806827+00	2016-11-02 14:15:44.837174+00	2742	Raymond	Stein	+17045624726								1	f	f	ray@logisource.com		new lead	\N	
2017-05-27 18:46:22.12391+00	2017-11-29 18:38:49.813912+00	2743			+12149716688								9	f	f		dot wo garden	new lead	\N	
2017-07-27 22:07:30.153818+00	2017-07-27 22:09:08.178051+00	2744	cody	palmer	+14705098626								13	f	f	codepalm202@yahoo.com		new lead	\N	
2017-11-30 19:48:58.162958+00	2017-11-30 19:50:27.325337+00	2745			+17062247705								13	f	f		osborn christy	new lead	\N	
2016-07-19 12:21:01.489645+00	2016-12-10 01:05:11.337029+00	2746			+13156247895								3	f	f			new lead	\N	
2017-07-17 23:17:13.260283+00	2017-07-17 23:17:49.133152+00	2747			+14402190391								13	f	f			new lead	\N	
2017-05-19 18:26:07.344864+00	2017-11-29 18:38:49.812274+00	2748			+17274921599								9	f	f		buscema steve  	new lead	\N	
2016-08-05 13:41:26.779046+00	2017-11-29 18:31:41.490646+00	2749	Theresa	Myers	+17403047826								1	f	f	tjmyers62@aol.com		application submitted - autopay	\N	
2016-09-12 01:02:24.587346+00	2016-12-10 01:01:51.44094+00	2750			+16193925829								3	f	f			new lead	\N	
2017-05-03 00:40:44.83904+00	2017-11-29 18:38:53.214923+00	2751			+19726722427								9	f	f		fonseca alejand	new lead	\N	
2016-05-20 18:59:19.562933+00	2017-11-29 18:32:01.935394+00	2752	Unknown		+16142308645								1	f	f			new lead	\N	
2017-08-16 20:31:03.032722+00	2017-08-16 20:31:38.296112+00	2753			+14703571443								13	f	f			new lead	\N	
2017-07-05 16:42:41.548064+00	2017-07-05 16:45:38.322315+00	2754			+18327635434								12	f	f		peterson anthon	new lead	\N	
2016-11-02 14:14:38.280429+00	2017-01-27 21:12:23.813897+00	2755			+19722421925								1	f	f			new lead	\N	
2016-07-20 16:45:51.648722+00	2016-12-09 17:06:53.905737+00	2756			+12156381202								3	f	f			new lead	\N	
2016-10-31 22:14:19.114978+00	2016-10-31 22:14:19.34895+00	2757	Jeremy	Fonteneaux	+14693871254								1	f	f	jfonteneaux1@gmail.com		new lead	\N	
2017-06-14 16:12:00.926835+00	2017-06-14 16:12:20.56497+00	2758			+12034547303								1	f	f			new lead	\N	
2017-06-19 15:32:50.822725+00	2017-06-24 13:44:45.085699+00	2759			+16507615027								13	f	f			new lead	\N	
2016-10-29 23:01:59.002979+00	2016-10-29 23:01:59.064493+00	2760	Summer	Richards	+14696506034								1	f	f	incapearl@gmail.com		new lead	\N	
2017-09-23 07:06:37.15425+00	2017-09-23 07:06:37.216119+00	2761	Charity	Kesler	+17063809314								13	f	f	Charitynadine.08@gmail.com		new lead	\N	
2016-08-12 21:02:10.413501+00	2017-11-29 18:31:56.600139+00	2762			+13394401114								1	f	f			do not contact	\N	
2016-07-23 14:19:50.50548+00	2016-07-25 11:50:38.494234+00	2763	Debora	Tyson	+15129661113								1	f	f	deboramty@yahoo.com		new lead	\N	
2016-10-12 19:54:11.064222+00	2016-11-09 15:44:25.869313+00	2764			+13022130611								3	f	f			new lead	\N	
2017-11-27 20:55:12.057973+00	2017-11-27 20:55:12.209939+00	2765			+18178195403								12	f	f		cantu angelo	new lead	\N	
2017-05-24 15:36:36.881178+00	2017-11-29 18:38:49.813003+00	2766			+12148432707								9	f	f		quinones ana   	new lead	\N	
2017-04-27 17:32:08.882591+00	2017-11-29 18:38:49.806973+00	2767			+16123103140								9	f	f		webb david     	new lead	\N	
2017-06-21 16:40:24.692453+00	2017-06-24 13:45:04.894032+00	2768			+14046644338								13	f	f			new lead	\N	
2016-11-07 16:52:03.622005+00	2016-11-07 17:20:13.706828+00	2769			+19194160909								1	f	f			new lead	\N	
2017-09-11 02:21:26.839336+00	2017-09-11 02:21:26.89883+00	2770	Monika	Patel	+17069731622								13	f	f	monikapatel23.1994@gmail.com		new lead	\N	
2016-10-06 15:08:03.462421+00	2017-02-11 20:02:07.779612+00	2771			+19732074177								3	f	f			new lead	\N	
2017-04-12 17:56:08.811725+00	2017-11-29 18:38:49.80457+00	2772			+14322695864								9	f	f		cell phone   tx	new lead	\N	
2016-06-25 21:23:38.7812+00	2016-06-27 12:58:58.077454+00	2773	CHRISTOPHER	STRAIT	+16145178306								1	f	f	CSTRAIT001@YAHOO.COM		new lead	\N	
2017-01-13 22:05:20.115864+00	2017-01-13 22:43:03.628002+00	2774			+18322071298								1	f	f			new lead	\N	
2017-04-19 21:57:35.179165+00	2017-11-29 18:38:53.214276+00	2775			+12088840150								9	f	f		caped fcu	new lead	\N	
2016-10-06 22:13:44.430364+00	2016-12-10 01:01:00.200386+00	2776			+16198629782								3	f	f			new lead	\N	
2016-06-28 21:06:39.240992+00	2017-11-29 18:31:10.261382+00	2777	Vonda	Chaney	+19377250831								1	f	f	dakota81495@yahoo.com		new lead	\N	
2017-03-09 20:44:48.75476+00	2017-11-29 18:38:53.211989+00	2778			+17135568931								9	f	f		houston ind sch	new lead	\N	
2017-05-30 15:04:55.27872+00	2017-05-30 15:06:06.382373+00	2779			+12142444767								12	f	f		smithson timmy 	new lead	\N	
2016-08-15 21:03:38.405639+00	2017-11-29 18:31:05.368968+00	2780	Danielle	Anderson	+19375806500								1	f	f	andersondanielle54@yahoo.com		application submitted - autopay	\N	
2017-06-23 19:31:01.162346+00	2017-06-23 19:31:11.089449+00	2781			+16094322155								1	f	f			new lead	\N	
2017-09-25 22:29:18.921615+00	2017-09-25 22:35:36.172083+00	2782			+17708855600								13	f	f			new lead	\N	
2016-11-04 19:25:45.198277+00	2016-11-04 19:29:10.250643+00	2783			+19196220248								1	f	f			new lead	\N	
2017-09-30 17:26:31.127886+00	2017-09-30 17:29:07.703652+00	2784			+16785084760								13	f	f			new lead	\N	
2017-04-19 20:37:56.623619+00	2017-11-29 18:38:49.805768+00	2785			+17164711910								9	f	f		collymore j    	new lead	\N	
2016-08-15 16:56:43.44623+00	2016-08-15 18:08:54.335398+00	2786	John	Blanchard	+16619171687								1	f	f	john@theblanchard.com		application submitted - credit union	\N	
2017-12-14 23:53:26.194265+00	2017-12-15 15:04:14.782377+00	2787			+17702408888								13	f	f		kpmg llp	select status	\N	
2017-04-13 00:01:35.950971+00	2017-11-29 18:47:25.068017+00	2788			+14697445787								8	f	f		cell phone   tx	new lead	\N	
2017-08-17 17:26:29.847318+00	2017-08-17 17:27:34.890089+00	2789	April	Couch	+17062062102								13	f	f	Adcfinancial16@gmail.com		new lead	\N	
2017-12-06 20:12:38.321225+00	2017-12-06 20:19:22.711606+00	2790	Joshua 	Davenport	+17063518062								13	f	f	Davenportthegreat93@gmail.com		new lead	\N	
2017-04-22 15:40:43.496644+00	2017-05-17 15:41:07.224364+00	2791			+15408422793								12	f	f		mejia dougles	new lead	\N	
2017-04-14 16:12:00.826759+00	2017-11-29 18:38:49.804916+00	2792			+12142983450								9	f	f			new lead	\N	
2017-12-23 15:02:19.164325+00	2017-12-23 15:06:55.694667+00	2793	Crystal	Harris	+16789141840								13	f	f	Harrisharris723@gmail.com	herrera c	select status	\N	
2017-01-28 21:20:10.880956+00	2017-01-28 21:21:41.045937+00	2794	ROSE	MICHAEL   	+14089813188								1	f	f			new lead	\N	
2017-05-10 14:54:11.027713+00	2017-11-29 18:38:53.215456+00	2795			+18178080961								9	f	f		wess holdings l	new lead	\N	
2016-11-11 17:54:27.140351+00	2016-11-11 17:54:27.164589+00	2796	John	Ardans	+14806035118								1	f	f	JARDANS@COX.NET		new lead	\N	
2017-11-16 14:22:49.157927+00	2017-11-16 22:59:06.912373+00	2797	Wayne	Long	+17062864994								13	f	f			select status	\N	
2017-04-24 17:10:40.666758+00	2017-11-29 18:47:25.068277+00	2798			+12144625725								8	f	f		birdsall wendy 	new lead	\N	
2017-04-24 19:53:54.191296+00	2017-11-29 18:47:25.068291+00	2799			+18173448471								8	f	f		hoskins carrie	new lead	\N	
2016-11-17 16:38:38.434017+00	2016-12-09 17:10:17.413678+00	2800			+18456307148								3	f	f			new lead	\N	
2016-06-02 21:12:48.523312+00	2017-11-29 18:31:37.36824+00	2801	Unknown		+16616096637								1	f	f			new lead	\N	
2016-08-11 20:06:17.149402+00	2017-11-29 18:31:37.368861+00	2802	sandra	resendiz	+16612385072								1	f	f	sandyres7@hotmail.com		application submitted - credit union	\N	
2016-11-18 20:01:55.347841+00	2017-02-11 20:02:07.779655+00	2803			+19085315667								3	f	f			new lead	\N	
2016-11-06 19:13:58.693327+00	2016-12-09 17:06:53.906091+00	2804			+12156451483								3	f	f			new lead	\N	
2016-06-17 19:44:28.144752+00	2017-11-29 18:31:37.368254+00	2805	Susan	Pertik	+18502255874								1	f	f	zsuzsas@cox.net		new lead	\N	
2016-08-10 19:31:25.969069+00	2017-11-29 18:31:37.368589+00	2806	Nancy	koch	+16612776711								1	f	f			general interest	\N	
2016-11-10 22:11:41.678773+00	2017-01-27 21:12:23.8141+00	2807			+14044917319								1	f	f			new lead	\N	
2017-09-06 18:47:37.50732+00	2017-09-06 18:49:15.472942+00	2808			+18326554803								12	f	f		cell phone   tx	new lead	\N	
2017-07-07 18:41:20.313655+00	2017-07-07 18:46:43.699623+00	2809	Dominque	Petty	+16788201548								13	f	f	pettyboi822@gmail.com		new lead	\N	
2016-11-03 18:30:09.980974+00	2016-11-03 18:35:49.159765+00	2810			+12817046052								1	f	f			new lead	\N	
2017-05-06 17:04:20.561989+00	2017-05-06 17:05:07.325074+00	2811			+13126612664								12	f	f		captain america	new lead	\N	
2017-12-04 22:38:58.074642+00	2017-12-04 22:54:01.223627+00	2812			+15862221354								15	f	f			new lead	\N	
2017-08-19 21:30:29.485263+00	2017-08-19 21:31:18.05307+00	2813			+16789282599								13	f	f			new lead	\N	
2017-12-04 20:45:52.284627+00	2017-12-04 21:02:04.605443+00	2814	Carol	Bowen	+15862431145								15	f	f	clb1181479@att.net		new lead	\N	
2016-11-07 17:43:29.854084+00	2016-12-10 01:01:51.441156+00	2815			+16195152550								3	f	f			new lead	\N	
2017-08-26 20:54:05.193806+00	2017-08-26 20:57:33.532745+00	2816			+19032859637								12	f	f		flores garcia i	new lead	\N	
2016-07-25 17:57:30.361852+00	2016-07-25 17:59:16.512063+00	2817	Brad	Lucas	+16143731984								1	f	f	Stefanielucas84@gmail.com		new lead	\N	
2016-11-01 23:17:20.391652+00	2016-11-01 23:29:52.260477+00	2818			+19192913507								1	f	f			new lead	\N	
2017-08-11 21:43:10.108428+00	2017-08-11 21:49:07.870201+00	2819			+14057062848								13	f	f			new lead	\N	
2017-10-26 15:27:56.994143+00	2017-10-26 15:30:16.320047+00	2820			+16786305168								13	f	f			new lead	\N	
2017-07-06 16:33:02.150555+00	2017-07-06 16:38:49.187808+00	2821			+17707668965								13	f	f			new lead	\N	
2017-08-05 20:15:18.599413+00	2017-08-17 14:35:21.045731+00	2822			+18179073874								12	f	f		pineda arnulfo	new lead	\N	
2017-05-28 22:29:10.867316+00	2017-11-29 18:38:49.813947+00	2823			+12147040213								9	f	f		evans joel     	new lead	\N	
2017-05-08 23:22:02.956493+00	2017-05-08 23:27:48.171888+00	2824			+18177059001								12	f	f		menn jeffrey   	new lead	\N	
2017-09-29 03:18:47.917132+00	2017-10-11 14:53:21.475896+00	2825	mssy	nichols	+16786161105								13	f	f	j@gmil.com		select status	\N	
2017-08-15 19:45:56.242281+00	2017-08-17 14:35:21.045866+00	2826			+14698154117								12	f	f		cell phone   tx	new lead	\N	
2017-05-05 22:43:02.446749+00	2017-11-29 18:38:49.810152+00	2827			+12145490339								9	f	f		action fire pro	new lead	\N	
2016-08-15 22:44:35.178989+00	2016-08-16 11:05:56.134496+00	2828	rafael	rivera	+16612369470								1	f	f	rafy1028@yahoo.com		application submitted - autopay	\N	
2017-01-23 16:56:11.971059+00	2017-11-29 18:31:56.600267+00	2829			+15702878544								1	f	f			new lead	\N	
2016-01-29 15:26:45.421297+00	2016-01-29 15:27:11.970208+00	2830	Gareth		+199999999								1	f	f			new lead	\N	
2017-12-15 17:53:53.439829+00	2017-12-15 17:54:26.456668+00	2831	Alison 	Everhart	+16024004193								15	f	f	alison_everhart@outlook.com		new lead	\N	
2017-07-19 12:39:15.789304+00	2017-07-19 12:39:29.771633+00	2832			+17062442005								13	f	f			new lead	\N	
2017-09-26 18:41:44.416391+00	2017-09-26 18:44:27.777852+00	2833			+18327976422								12	f	f		clarice mclarty	new lead	\N	
2017-04-28 20:23:44.201341+00	2017-11-29 18:38:49.807335+00	2834			+13866476168								9	f	f		travis frier   	new lead	\N	
2017-08-18 17:45:48.589053+00	2017-08-18 17:46:52.991826+00	2835	Donte	Holland	+14049035121								13	f	f	Donte.holland@yahoo.com		new lead	\N	
2017-05-08 20:53:40.982235+00	2017-11-29 18:38:49.810469+00	2836			+18479270557								9	f	f		cell phone   il	new lead	\N	
2017-04-06 17:14:14.412924+00	2017-08-17 14:35:21.044952+00	2837			+18177409490								12	f	f		pls loan store	new lead	\N	
2017-09-07 18:06:41.804473+00	2017-09-07 18:12:31.339419+00	2838			+17068097156								13	f	f			new lead	\N	
2017-03-01 22:24:06.583596+00	2017-11-29 18:38:53.211611+00	2839			+19492805308								9	f	f		ESCH SKIP      	new lead	\N	
2017-03-15 00:36:37.696351+00	2017-11-29 18:38:53.212325+00	2840			+17876796020								9	f	f		syminington ric	new lead	\N	
2016-11-03 15:13:07.554934+00	2016-11-03 15:15:24.435706+00	2841			+15732594560								1	f	f			new lead	\N	
2017-05-10 17:29:16.979573+00	2017-11-29 18:38:49.810804+00	2842			+17028409205								9	f	f		cell phone   nv	new lead	\N	
2017-12-10 02:02:42.43156+00	2017-12-11 14:20:19.81877+00	2843	Diamond	Casper 	+16787794553								13	f	f	starrbaby1988@gmail.com		select status	\N	
2016-11-27 16:20:54.18341+00	2016-11-27 16:20:54.213781+00	2844	Vicki	Evans	+16786127681								1	f	f	vicki.evans2013@gmail.com		new lead	\N	
2016-06-16 13:51:37.640586+00	2017-11-29 18:31:56.600089+00	2845	Unknown		+17815815936								1	f	f			new lead	\N	
2017-11-01 21:56:03.733882+00	2017-11-01 21:58:45.340494+00	2846	Robert 	Miller II	+16148177001								13	f	f	junebugg301@gmail.com		new lead	\N	
2017-05-03 23:34:11.801003+00	2017-11-29 18:38:49.809556+00	2847			+12145494084								9	f	f		star tire co in	new lead	\N	
2016-09-29 17:37:00.338203+00	2016-12-10 01:03:35.620594+00	2848			+16177206723								3	f	f			new lead	\N	
2017-09-28 22:38:49.857395+00	2017-09-28 22:40:19.426456+00	2849	david	herculano	+16787686098								13	f	f	hercu.1988@gmail.com		new lead	\N	
2016-10-17 17:09:21.155557+00	2017-11-29 18:32:13.821936+00	2850			+13306804861								1	f	f			new lead	\N	
2016-07-06 17:14:01.019848+00	2016-12-10 01:05:18.400601+00	2851			+12674211869								3	f	f			new lead	\N	
2017-12-04 17:17:41.715597+00	2017-12-04 17:18:40.769995+00	2852	Joseph 	Miller 	+12177104256								15	f	f	Jammiller6872@gmail.com		new lead	\N	
2016-12-13 18:16:11.277442+00	2017-11-29 18:32:10.406485+00	2853			+13612491314								1	f	f			new lead	\N	
2017-05-25 18:18:19.575328+00	2017-11-29 18:38:49.813466+00	2854			+18596192975								9	f	f		harney diane	new lead	\N	
2017-08-13 20:38:01.557651+00	2017-08-13 20:38:01.617539+00	2855	Timmothy	Daniel	+19122699890								13	f	f	Timdaniel100312@gmail.com		new lead	\N	
2017-11-20 15:53:39.13053+00	2017-11-20 15:55:32.762222+00	2856			+16825560399								12	f	f		dallas  tx	new lead	\N	
2017-12-11 22:00:52.9598+00	2017-12-11 22:05:30.034635+00	2857	Megan	Moreland	+13303241524								15	f	f	Beautifullybroken327@gmail.com		new lead	\N	
2016-11-06 20:33:13.021268+00	2016-11-06 20:33:25.98976+00	2858			+17708552486								1	f	f			new lead	\N	
2017-11-21 14:11:23.446764+00	2017-11-21 14:25:19.409294+00	2859	Sharon	Barnes	+17063625403								13	f	f	sbarnes53.sb@yahoo.com		select status	\N	
2017-04-06 16:22:49.942731+00	2017-04-06 16:22:49.979785+00	2860	test	test	+15136665555								1	f	f	test@google.com		new lead	\N	
2017-08-01 19:21:49.029475+00	2017-08-01 19:28:27.113159+00	2861	Sardazecha	Allen	+17062021396								13	f	f	benn.mary51@gmail.com		new lead	\N	
2016-06-28 14:29:42.054666+00	2016-06-28 14:31:31.15106+00	2862	Daniel	Teminsky	+13305013638								1	f	f	teminsky@zoominternet.net		new lead	\N	
2017-04-15 15:41:03.938607+00	2017-11-29 18:38:49.805067+00	2863			+18709492367								9	f	f		wireless caller	new lead	\N	
2016-10-31 22:47:27.631517+00	2016-10-31 22:47:27.6597+00	2864	Patrick	Beaubien	+17705279463								1	f	f	beaubien1000@gmail.com		new lead	\N	
2017-12-06 23:27:55.987086+00	2017-12-06 23:32:49.592045+00	2865			+17863992576								15	f	f			new lead	\N	
2017-12-28 22:23:39.154015+00	2017-12-28 22:26:20.865352+00	2866	Brian	Mathews	+17069627597								13	f	f	Brianjmathews@gmail.com		new lead	\N	
2017-09-02 19:46:38.560106+00	2017-09-02 19:47:18.817293+00	2867			+14403556956								12	f	f		varisco alan	new lead	\N	
2016-09-19 17:06:46.962722+00	2017-11-29 18:31:10.262596+00	2868			+15136098208								1	f	f			new lead	\N	
2017-05-23 19:06:21.374493+00	2017-11-29 18:38:49.81289+00	2869			+12147084121								9	f	f		richardson derr	new lead	\N	
2017-12-15 18:14:46.366095+00	2017-12-15 18:18:08.65338+00	2870	Victoria	Grier	+16786877614								13	f	f	victoriag3145@live.com		new lead	\N	
2017-03-15 15:59:26.757905+00	2017-11-29 18:47:25.067785+00	2871			+15627863867								8	f	f		rana vreshingh	new lead	\N	
2017-04-27 13:22:30.093076+00	2017-11-29 18:38:53.214653+00	2872			+12815155384								9	f	f		phillips mcarth	new lead	\N	
2017-12-26 11:29:23.110398+00	2017-12-26 11:29:23.162039+00	2873	Wendy	Seay	+17706249366								13	f	f	blueyeshine99@gmail.com		new lead	\N	
2016-08-27 19:45:04.336644+00	2017-11-29 18:31:37.36909+00	2874	Jose	Luna	+16616093525								1	f	f	Joe1rodriguez1988@yahoo.com		application submitted - autopay	\N	
2017-11-24 20:24:43.962395+00	2017-11-24 20:25:34.703969+00	2875			+12146216053								12	f	f		dallas  tx	new lead	\N	
2017-05-03 15:43:58.652953+00	2017-11-29 18:38:49.809184+00	2876			+16465150468								9	f	f		manhattan  ny	new lead	\N	
2017-08-13 21:40:47.654552+00	2017-11-29 18:38:53.215646+00	2877			+1+266696687								9	f	f		restricted	new lead	\N	
2017-05-20 17:56:24.576177+00	2017-08-17 14:35:21.045284+00	2878			+12145522351								12	f	f		s watson	new lead	\N	
2016-11-01 22:41:22.021593+00	2016-11-01 23:13:53.800235+00	2879			+19102586270								1	f	f			new lead	\N	
2016-10-21 20:54:41.115512+00	2016-12-10 01:05:18.400826+00	2880	Unknown		+16092596018								3	f	f			new lead	\N	
2017-08-21 15:48:25.334089+00	2017-08-21 15:58:27.480761+00	2881	Tarsa	Brown	+16785212511								13	f	f	tarsabrown@gmail.com		new lead	\N	
2017-09-18 14:13:18.226008+00	2017-09-18 14:19:22.935842+00	2882			+17064249664								13	f	f			new lead	\N	
2017-05-01 18:44:48.933293+00	2017-11-29 18:38:49.808184+00	2883			+17322001186								9	f	f		unbound 32808	new lead	\N	
2017-05-31 18:43:59.623565+00	2017-11-29 18:38:49.814253+00	2884			+12142809228								9	f	f		maverick quant	new lead	\N	
2017-11-21 17:28:26.468362+00	2017-11-21 17:35:02.883458+00	2885			+14049147800								13	f	f			new lead	\N	
2017-01-10 20:00:44.812286+00	2017-11-29 18:31:41.490828+00	2886	Tyler	Beasy	+16145574210								1	f	f	tyler.beasy@yahoo.com		application submitted - autopay	\N	
2017-12-05 23:27:23.20681+00	2017-12-05 23:32:35.203562+00	2887			+14049539443								13	f	f		cell phone   ga	new lead	\N	
2017-10-16 18:57:19.403843+00	2017-10-16 18:58:29.978828+00	2888	Donna	Hunter	+17069636905								13	f	f	lilb.dh@gmail.com		new lead	\N	
2016-08-04 14:46:17.758215+00	2016-12-20 22:16:06.426478+00	2889			+16109697743								3	f	f			new lead	\N	
2016-11-10 19:07:33.682698+00	2016-11-10 19:16:04.370058+00	2890			+17047981238								1	f	f			new lead	\N	
2017-10-07 20:28:55.585266+00	2017-10-07 20:31:00.274103+00	2891			+17063635113								13	f	f			new lead	\N	
2017-04-13 17:50:21.95517+00	2017-11-29 18:38:49.804815+00	2892			+15049947449								9	f	f			new lead	\N	
2017-05-06 22:43:46.11462+00	2017-11-29 18:47:25.068404+00	2893			+12142595291								8	f	f		wireless caller	new lead	\N	
2016-11-07 01:06:48.902346+00	2016-11-07 01:06:48.936329+00	2894	Mary	Wagner	+17138623380								1	f	f	mar_wagner@hotmail.com		new lead	\N	
2017-04-13 20:18:32.354311+00	2017-11-29 18:38:49.804881+00	2895			+19495362107								9	f	f			new lead	\N	
2017-05-26 20:57:28.275375+00	2017-11-29 18:38:49.813761+00	2896			+17149792500								9	f	f		south coast acu	new lead	\N	
2016-05-31 15:47:38.552504+00	2017-11-29 18:32:10.406442+00	2897	Unknown		+17183772731								1	f	f			new lead	\N	
2017-11-11 14:48:37.764049+00	2017-11-11 14:48:38.145629+00	2898			+16783004803								13	f	f			new lead	\N	
2017-05-02 15:38:18.134383+00	2017-11-29 18:38:49.808574+00	2899			+16144308250								9	f	f		auto loft	new lead	\N	
2017-12-18 21:10:32.596592+00	2017-12-18 21:20:34.473659+00	2900			+18133309215								15	f	f			new lead	\N	
2016-08-25 21:21:26.586531+00	2016-12-09 17:06:53.905815+00	2901			+16106624226								3	f	f			new lead	\N	
2017-12-08 15:08:33.923776+00	2017-12-08 15:09:49.704693+00	2902			+19728630569								12	f	f		dallas  tx	new lead	\N	
2017-09-07 19:05:38.783838+00	2017-09-07 19:08:06.097132+00	2903	Annette	Walker	+17062961793								13	f	f	walkerannette40@yahoo.com		new lead	\N	
2016-10-05 15:34:53.32371+00	2017-02-11 20:02:07.779581+00	2904			+19735352717								3	f	f			new lead	\N	
2017-09-10 22:27:58.130898+00	2017-09-10 22:27:58.183953+00	2905	Brian	Woodbury	+16789751323								13	f	f	Woodburybrian17@gmail.com		new lead	\N	
2017-12-04 20:51:47.187691+00	2017-12-04 20:52:45.53755+00	2906			+17063866016								13	f	f		rivers jeann3et	new lead	\N	
2017-05-17 17:18:01.784189+00	2017-11-29 18:38:49.812018+00	2907			+17029474081								9	f	f		leavitt ins	new lead	\N	
2017-11-06 23:04:47.373535+00	2017-11-06 23:21:12.674283+00	2908			+17065318461								13	f	f			new lead	\N	
2017-03-09 14:38:31.739858+00	2017-11-29 18:38:53.211932+00	2909			+12143995444								9	f	f		cell phone   tx	new lead	\N	
2016-10-05 15:25:38.436058+00	2016-12-10 01:01:00.200177+00	2910			+17602209498								3	f	f			new lead	\N	
2017-08-03 18:22:49.962165+00	2017-08-03 18:28:53.092189+00	2911	Christy	Rivard	+17063912144								13	f	f	Crivard1975@yahoo.com		new lead	\N	
2016-10-12 16:12:17.718803+00	2016-12-09 17:10:17.413621+00	2912			+16107596189								3	f	f			new lead	\N	
2016-08-25 17:34:13.870181+00	2016-12-09 17:07:45.331574+00	2913			+16107725380								3	f	f			new lead	\N	
2016-11-04 02:57:55.588793+00	2016-11-04 02:57:55.612044+00	2914	SCOTT	LIENEMANN	+14805430351								1	f	f	azfstop@gmail.com		new lead	\N	
2017-08-26 15:16:25.82104+00	2017-08-26 15:25:32.020009+00	2915	Terrell	Cole	+17065996204								13	f	f	tcole0608@gmail.com		new lead	\N	
2016-11-10 02:05:19.922613+00	2016-11-10 02:05:19.953078+00	2916	Gary	Baldwin	+19193754975								1	f	f	hippiecow@icloud.com		new lead	\N	
2017-11-13 18:01:48.451504+00	2017-11-14 17:38:36.106431+00	2917	Tiara	Test	+14043981087								13	f	f	Dashunsmom@yahoo.com		select status	\N	
2017-12-21 14:33:23.69135+00	2017-12-21 14:35:20.887713+00	2918	William	Schoenbrun	+17063000644								13	f	f	Williamwilson621@gmail.com	schoenbrun w   	select status	\N	
2017-09-02 13:12:49.284389+00	2017-09-02 13:12:49.6881+00	2919			+17062243048								13	f	f			new lead	\N	
2017-03-01 20:26:57.680834+00	2017-11-29 18:47:25.067523+00	2920			+14698775050								8	f	f		SOBYAK FRANK	new lead	\N	
2017-12-01 18:31:22.585451+00	2017-12-01 18:34:51.101646+00	2921	Tanethgia	Davenport	+17066906252								13	f	f	Dtaneika024@outlook.com		new lead	\N	
2017-12-15 17:20:05.982634+00	2017-12-15 17:22:26.56495+00	2922			+16783288238								13	f	f		toe roosevelt	new lead	\N	
2017-09-09 14:47:01.294266+00	2017-09-09 14:49:18.455625+00	2923			+13234948715								12	f	f		hester mark	new lead	\N	
2017-10-09 22:04:11.210896+00	2017-10-11 13:51:26.916709+00	2924	Evelyn	Witherow	+14702090965								13	f	f	coleio0409@gmail.com		select status	\N	
2017-10-18 20:24:31.35505+00	2017-10-18 20:26:04.313867+00	2925			+16824122431								12	f	f		alford kaliph	new lead	\N	
2016-09-03 15:47:44.438563+00	2016-12-10 01:00:18.568371+00	2926			+16198528737								3	f	f			new lead	\N	
2017-05-10 19:24:33.054315+00	2017-11-29 18:47:25.068439+00	2927			+19154224776								8	f	f		el paso  tx	new lead	\N	
2017-11-17 19:26:28.140152+00	2017-11-17 19:34:09.136986+00	2928			+17065890242								13	f	f			new lead	\N	
2017-08-12 14:18:11.180098+00	2017-08-12 14:21:34.040879+00	2929			+14704458740								13	f	f			new lead	\N	
2017-01-04 20:04:43.793986+00	2017-02-08 14:12:24.697467+00	2930	Linda	Watkins	+17707132548								1	f	f	Lmzwatkins@yahoo.com		application submitted - autopay	\N	
2017-05-05 15:23:49.614904+00	2017-11-29 18:38:49.809833+00	2931			+18434895858								9	f	f		minnifield euge	new lead	\N	
2016-11-01 02:56:50.48086+00	2016-11-01 02:56:50.515774+00	2932	Ivo	Moyano Stradmann	+14692716197								1	f	f	vomoyano@hotmail.com		new lead	\N	
2017-12-12 21:11:22.441209+00	2017-12-12 21:18:30.009006+00	2933			+15615736261								15	f	f			new lead	\N	
2017-04-20 14:13:44.029375+00	2017-11-29 18:47:25.068151+00	2934			+19728399510								8	f	f		billeaudeaux ga	new lead	\N	
2017-05-02 16:19:07.281314+00	2017-05-02 16:20:38.600327+00	2935			+18172312156								12	f	f		claudiea clark	new lead	\N	
2017-07-19 19:24:16.1812+00	2017-07-19 19:24:59.72646+00	2936	Harley	Payne jr	+16784144222								13	f	f	Gwwc2017@gmail.com		new lead	\N	
2017-09-01 19:12:59.241107+00	2017-09-01 19:20:04.58277+00	2937	Amber	Reed	+16789516888								13	f	f	amber1007reed@gmail.com		new lead	\N	
2017-06-16 13:58:26.827813+00	2017-06-16 14:01:30.611977+00	2938			+16822287167								12	f	f		butler zachary	new lead	\N	
2017-06-01 20:21:32.476613+00	2017-11-29 18:38:49.814431+00	2939			+13096790530								9	f	f		pearl insurance	new lead	\N	
2017-11-06 18:00:01.035186+00	2017-11-06 18:03:55.196677+00	2940	Halisha	Beasley	+17064108453								13	f	f	Lump161312@gmail.com		new lead	\N	
2016-08-02 16:34:49.832765+00	2016-12-10 00:55:45.164997+00	2941			+16109331740								3	f	f			new lead	\N	
2017-04-28 19:20:18.894045+00	2017-11-29 18:38:53.214766+00	2942			+17012235973								9	f	f		bismarck     nd	new lead	\N	
2017-04-25 20:05:47.813869+00	2017-11-29 18:38:53.214546+00	2943			+18182122794								9	f	f		marcusmillichap	new lead	\N	
2017-10-07 15:22:52.20651+00	2017-10-07 15:24:24.705569+00	2944			+18174955381								12	f	f		faison tamecha	new lead	\N	
2017-09-20 23:15:05.26761+00	2017-09-20 23:20:29.729242+00	2945			+18174487346								12	f	f		rogers	new lead	\N	
2018-02-13 01:22:44.530451+00	2018-02-13 01:23:00.192197+00	2946			+17739699892								29	f	f		HONDA K MI NCHI	new lead	\N	
2017-07-27 19:11:02.759181+00	2017-07-27 19:11:02.809816+00	2947	Michael 	Lopez	+16026390188								1	f	f	lsara_07@live.com		new lead	\N	
2016-09-07 16:11:34.63676+00	2017-11-29 18:31:14.616559+00	2948	Patricia	Murawski	+19203702934								1	f	f			application submitted - autopay	\N	
2016-09-07 18:44:17.336052+00	2016-12-10 01:01:51.440835+00	2949			+16195652523								3	f	f			new lead	\N	
2017-08-17 20:30:31.927031+00	2017-08-17 20:31:23.342022+00	2950			+14043527300								13	f	f			new lead	\N	
2017-11-28 12:49:35.846314+00	2017-11-28 12:49:36.512543+00	2951			+17065259655								13	f	f		norcross  ga	new lead	\N	
2016-11-04 14:16:29.21938+00	2016-11-04 14:20:47.352717+00	2952			+12814981166								1	f	f			new lead	\N	
2017-04-18 17:30:11.494993+00	2017-11-29 18:38:49.805471+00	2953			+14174251062								9	f	f		heppner brian  	new lead	\N	
2017-08-12 17:10:32.994499+00	2017-08-12 17:16:36.956258+00	2954			+16785455147								13	f	f			new lead	\N	
2017-05-10 21:31:50.491422+00	2017-11-29 18:38:53.215604+00	2955			+14699550423								9	f	f		world class car	new lead	\N	
2017-08-15 11:40:05.581977+00	2017-08-15 11:40:05.638366+00	2956	Kimberly	Hontz	+17064296367								13	f	f	kimhontz@gmail.com		new lead	\N	
2017-12-14 21:36:19.636986+00	2017-12-14 22:09:29.304224+00	2957			+16619045675								15	f	f			new lead	\N	
2017-07-19 16:49:24.988185+00	2017-07-19 16:52:23.573575+00	2958			+16783613930								13	f	f			new lead	\N	
2017-04-08 00:22:58.238293+00	2017-11-29 18:38:53.213461+00	2959			+18645040076								9	f	f		cell phone   sc	new lead	\N	
2016-10-31 23:19:26.552463+00	2016-10-31 23:19:26.579066+00	2960	Theresa	Rozycki	+18165378505								1	f	f	terryroz@hotmail.com		new lead	\N	
2017-12-29 16:59:35.915651+00	2017-12-29 17:00:55.437142+00	2961			+19402064097								12	f	f		wilson armstron	new lead	\N	
2016-07-15 16:17:03.157954+00	2016-07-20 15:45:48.076065+00	2962	Stephen	Eastes	+15134897552								1	f	f	seastes@misonix.com		new lead	\N	
2017-09-09 22:25:04.897147+00	2017-09-09 22:25:04.954377+00	2963	Brittney	Morgan	+17062449778								13	f	f	morganbrittney85@gmail.com		new lead	\N	
2016-09-09 16:20:02.580707+00	2016-09-09 16:20:23.532901+00	2964	RESTRICTED		+1+266696687								1	f	f			new lead	\N	
2016-06-30 20:36:22.072614+00	2017-11-29 18:31:41.490269+00	2965	Unknown	Wilkins	+16142040877								1	f	f	racywilkins@yahoo.com		new lead	\N	
2016-11-15 14:31:52.89475+00	2016-12-09 17:10:17.41367+00	2966			+16109727942								3	f	f			new lead	\N	
2016-06-02 19:28:51.138761+00	2017-11-29 18:32:13.820404+00	2967	Unknown	Banko	+13303699044								1	f	f	jbanko53@gmail.com		new lead	\N	
2017-12-11 00:04:15.2072+00	2017-12-11 00:05:36.872594+00	2968	brenda	mondragon	+18478341620								15	f	f	brendie911@gmail.com		new lead	\N	
2017-11-07 15:31:10.552657+00	2017-11-07 15:32:53.759461+00	2969			+18177332304								12	f	f		graeber lauren	new lead	\N	
2016-12-14 16:05:01.800375+00	2016-12-14 16:05:01.864067+00	2970	Chad	Stallings	+12146368159								1	f	f	cestall6754@gmail.com		new lead	\N	
2017-03-27 21:51:09.137294+00	2017-11-29 18:38:53.213084+00	2971			+14804018428								9	f	f		tempe  az	new lead	\N	
2017-05-12 21:06:53.447978+00	2017-11-29 18:38:49.81138+00	2972			+12146047107								9	f	f		cell phone   tx	new lead	\N	
2016-08-19 20:11:30.760775+00	2017-11-29 18:31:10.262546+00	2973	David 	Miller	+15137677214								1	f	f	wildkats88@yahoo.com		application submitted - credit union	\N	
2017-07-21 15:06:46.662177+00	2017-08-17 14:35:21.045637+00	2974			+12148607768								12	f	f		absalon jose	new lead	\N	
2016-08-05 12:55:10.629259+00	2016-12-10 01:05:11.337052+00	2975			+17187278498								3	f	f			new lead	\N	
2017-11-02 17:44:42.94332+00	2017-11-02 17:52:00.76172+00	2976			+17063807898								13	f	f			new lead	\N	
2016-07-19 13:12:52.177612+00	2017-11-29 18:31:41.490518+00	2977			+18039557294								1	f	f			new lead	\N	
2017-06-01 17:01:13.655614+00	2017-11-29 18:38:49.814374+00	2978			+18882989491								9	f	f		800 service    	new lead	\N	
2016-04-01 09:50:08.764212+00	2016-04-01 09:50:08.764259+00	2979	Mihai	Ciumeica	+1+4917681979265								2	f	f	cmihai@gmail.com		new lead	\N	
2017-11-21 17:51:40.648901+00	2017-11-21 18:02:05.612886+00	2980			+17705610202								13	f	f			new lead	\N	
2016-11-29 21:21:47.860768+00	2017-11-29 18:31:10.262638+00	2981			+15135023964								1	f	f			new lead	\N	
2017-08-24 13:45:02.258959+00	2017-08-24 13:45:56.171631+00	2982	Rachel	Moore	+16785490992								13	f	f	Moorerachel51597@yahoo.com		new lead	\N	
2017-10-16 17:38:12.788973+00	2017-10-16 17:39:26.322356+00	2983			+12547471159								12	f	f		cell phone   tx	new lead	\N	
2017-12-15 23:02:50.122927+00	2017-12-15 23:25:07.00606+00	2984			+14805195593								15	f	f			new lead	\N	
2017-12-18 14:16:06.263706+00	2017-12-18 14:17:26.349216+00	2985			+17062065874								13	f	f		norcross  ga	new lead	\N	
2017-09-19 10:51:48.725908+00	2017-09-19 10:51:48.782695+00	2986	Betty	Young	+17707335434								13	f	f	Mrsyoung1121@gmail.com		new lead	\N	
2017-12-07 22:38:02.185313+00	2017-12-07 22:46:30.511135+00	2987			+12695682636								15	f	f			new lead	\N	
2017-02-23 23:13:56.935576+00	2017-11-29 18:47:25.067419+00	2988			+17739699892								8	f	f			new lead	\N	
2016-09-07 20:05:39.913426+00	2016-12-10 01:01:00.19997+00	2989			+16196420555								3	f	f			new lead	\N	
2017-03-31 14:42:29.79595+00	2017-08-17 14:35:21.044916+00	2990			+14699390876								12	f	f		pedroza jose	new lead	\N	
2017-05-10 16:55:22.217646+00	2017-05-17 15:41:07.224451+00	2991			+18172296707								12	f	f		cell phone   tx	new lead	\N	
2017-11-04 15:33:54.851107+00	2017-11-04 15:35:03.280055+00	2992			+12149944612								12	f	f		black betty	new lead	\N	
2017-05-27 13:20:28.99199+00	2017-11-29 18:38:49.813848+00	2993			+19032438352								9	f	f		clarke drake   	new lead	\N	
2017-03-10 18:51:48.183707+00	2017-11-29 18:38:53.212032+00	2994			+18178126605								9	f	f		baker cynthia	new lead	\N	
2017-10-26 19:52:30.996914+00	2017-10-26 19:52:58.370825+00	2995			+16822270659								12	f	f		mclain blake	new lead	\N	
2016-08-10 19:24:02.948419+00	2016-12-10 01:05:11.337067+00	2996			+13155336807								3	f	f			new lead	\N	
2017-05-21 17:05:34.023225+00	2017-11-29 18:38:49.812464+00	2997			+13303894901								9	f	f		akron  oh	new lead	\N	
2016-09-08 14:17:55.266349+00	2016-12-09 17:10:17.413427+00	2998			+14845429324								3	f	f			new lead	\N	
2017-10-21 13:50:00.282875+00	2017-10-21 13:53:02.995634+00	2999	Deondra	Watkins	+16788768324								13	f	f	rubyholliday9@gmail.com		new lead	\N	
2017-08-25 23:55:59.630356+00	2017-08-26 00:18:16.035311+00	3000			+16825838356								12	f	f		murphy kristie	new lead	\N	
2017-11-25 18:42:20.817863+00	2017-11-25 18:48:45.635497+00	3001	SHENITA 	AKINS	+17066126924								13	f	f			select status	\N	
2016-07-08 14:49:07.842485+00	2016-07-08 14:50:34.527306+00	3002	Michelle	Lizardi	+16145575417								1	f	f	mlizardi04@gmail.com		new lead	\N	
2016-06-18 13:17:11.990709+00	2017-11-29 18:31:33.775592+00	3003	Unknown	Tirabasso	+14403822434								1	f	f	michaeltirabasso@att.net		new lead	\N	
2016-08-24 16:25:56.973505+00	2016-12-10 01:00:18.568291+00	3004			+16195647013								3	f	f			new lead	\N	
2017-04-21 21:57:43.44141+00	2017-11-29 18:38:49.806273+00	3005			+18177054072								9	f	f		scherff brad   	new lead	\N	
2017-04-14 21:13:29.085655+00	2017-05-17 15:41:07.224356+00	3006			+18178937681								12	f	f		macias fredy	new lead	\N	
2017-03-02 21:23:46.284054+00	2017-03-02 21:25:03.763371+00	3007			+18052317736								6	f	f			new lead	\N	
2017-11-27 18:00:10.617116+00	2017-11-27 18:00:54.833849+00	3008			+17633178644								15	f	f			new lead	\N	
2017-09-09 15:07:13.944971+00	2017-09-09 15:18:52.672832+00	3009			+17066545484								13	f	f			new lead	\N	
2016-05-25 14:40:45.841597+00	2017-11-29 18:31:24.092914+00	3010	Unknown		+12076682741								1	f	f			new lead	\N	
2017-03-07 17:18:19.326324+00	2017-03-07 17:22:24.845452+00	3011			+19174506716								1	f	f			new lead	\N	
2017-12-07 00:57:04.596029+00	2017-12-07 00:57:04.650755+00	3012	Teirra	Pittman	+17063803954								13	f	f	Teirrapittman@gmail.com		new lead	\N	
2016-11-12 18:56:45.621646+00	2016-11-12 18:56:45.647237+00	3013	Nathan	Cutshall	+12813895411								1	f	f	Dwdrums18@aol.com		new lead	\N	
2017-08-16 21:01:53.087271+00	2017-08-16 21:03:13.895978+00	3014			+16786968308								13	f	f			new lead	\N	
2017-12-05 20:19:53.280358+00	2017-12-05 20:19:53.328055+00	3015	Alec	Carpenter	+13606270357								15	f	f	alec.carpenter@playlivenation.com		new lead	\N	
2017-12-10 00:03:46.450286+00	2017-12-10 00:03:53.541375+00	3016			+17707497720								6	f	f			new lead	\N	
2016-09-27 16:10:22.184974+00	2017-02-11 20:02:12.400333+00	3017			+16103573735								3	f	f			new lead	\N	
2016-11-04 18:34:36.034088+00	2016-11-04 18:50:27.844714+00	3018			+19725710434								1	f	f			new lead	\N	
2017-12-29 15:21:23.42737+00	2017-12-29 15:22:23.945357+00	3019			+17062965962								13	f	f		lumpkin derrick	new lead	\N	
2016-09-02 13:41:19.720485+00	2016-12-09 17:10:17.413376+00	3020			+15702363631								3	f	f			new lead	\N	
2017-03-02 23:16:17.899687+00	2017-11-29 18:38:53.211831+00	3021			+12147287689								9	f	f		cho kwang      	new lead	\N	
2018-03-26 00:17:34.403528+00	2018-03-26 00:18:22.835257+00	3022			+17739699892								28	f	f		chicago  il	new lead	Coby Steak	
2017-12-06 22:25:50.063357+00	2017-12-06 22:36:27.211691+00	3023	David	Rose	+15132052583								15	f	f	daverose03@gmail.com		new lead	\N	
2016-07-22 10:45:51.474837+00	2016-07-25 17:45:57.376837+00	3024	Paul	Harrison	+15138785998								1	f	f	peharrison5@yahoo.com		new lead	\N	
2017-12-13 18:31:41.071168+00	2017-12-13 19:10:27.673679+00	3025			+13038198191								15	f	f			new lead	\N	
2017-10-10 16:58:36.435068+00	2017-10-10 16:59:39.70349+00	3026			+18554310554								13	f	f			new lead	\N	
2017-03-18 22:12:14.69439+00	2017-11-29 18:38:53.212608+00	3027			+19404355926								9	f	f			new lead	\N	
2016-08-12 16:26:04.563976+00	2017-11-29 18:31:37.368668+00	3028	Joseph Patrick 	Welling	+17603730905								1	f	f	j.casher@me.com		application submitted - autopay	\N	
2017-09-23 16:20:02.40311+00	2017-09-23 16:20:54.020012+00	3029			+17062446842								13	f	f			new lead	\N	
2017-05-26 16:08:09.285486+00	2017-11-29 18:38:49.813614+00	3030			+12149738082								9	f	f		baldwin jeremy	new lead	\N	
2017-08-15 14:17:34.907325+00	2017-08-15 14:18:32.596267+00	3031	Kristy	Thomason	+17064991829								13	f	f	Musqsteria@gmail.com		new lead	\N	
2017-09-27 20:55:15.029475+00	2017-09-27 20:56:19.349064+00	3032			+18175759379								12	f	f		cell phone   tx	new lead	\N	
2017-05-11 20:14:06.40598+00	2017-11-29 18:38:49.811168+00	3033			+19723892828								9	f	f		firstcom music	new lead	\N	
2016-10-24 16:34:12.038779+00	2016-12-10 01:01:51.441128+00	3034			+16197266487								3	f	f			new lead	\N	
2017-09-08 16:55:26.293968+00	2017-09-08 17:00:53.064035+00	3035			+17702564295								13	f	f			new lead	\N	
2017-05-13 22:10:41.780819+00	2017-11-29 18:38:49.811487+00	3036			+19724171100								9	f	f		payday loan sto	new lead	\N	
2017-12-05 20:16:01.853825+00	2017-12-05 20:25:46.208092+00	3037			+13613552730								15	f	f			new lead	\N	
2016-08-17 16:24:21.132379+00	2017-11-29 18:31:37.368661+00	3038	Steven	Marsh	+16618212410								1	f	f			do not contact	\N	
2016-08-08 20:30:33.58983+00	2017-11-29 18:31:37.368733+00	3039	Aaron	Hyatt	+16612642346								1	f	f			general interest	\N	
2017-12-28 14:35:17.504107+00	2017-12-28 14:50:00.283935+00	3040	jason	joy	+15612027918								15	f	f	jasonjoy777@gmail.com		new lead	\N	
2017-12-23 02:20:05.998758+00	2017-12-23 02:20:06.056653+00	3041	Roshara	Simmons	+16789332427								13	f	f	Simmonsroshara@yahoo.com		new lead	\N	
2016-09-07 22:38:51.158246+00	2016-12-10 01:01:00.199988+00	3042			+18585317447								3	f	f			new lead	\N	
2017-05-01 18:57:51.66346+00	2017-11-29 18:38:49.80822+00	3043			+18007571178								9	f	f		800 service	new lead	\N	
2017-12-06 23:37:10.643932+00	2017-12-06 23:50:25.619295+00	3044	Anthony	Belline	+16189729567								15	f	f	tbellinekc135@yahoo.com		new lead	\N	
2016-08-02 14:58:33.569881+00	2017-11-29 18:31:37.368403+00	3045	Angelina	Brody	+16618745569								1	f	f			general interest	\N	
2017-11-29 21:27:56.181353+00	2017-11-29 21:32:04.229199+00	3046	Steve	Neu	+18035462731								15	f	f	steveneu@live.com		new lead	\N	
2017-12-12 22:02:30.207254+00	2017-12-12 22:19:01.883484+00	3047			+18134427942								15	f	f			new lead	\N	
2017-08-09 13:37:38.170236+00	2017-08-09 13:38:59.460559+00	3048	REATTE	MILES	+16783683710								13	f	f	rlavernmiles@gmail.com		new lead	\N	
2016-11-02 18:00:42.99327+00	2016-11-02 18:00:43.026772+00	3049	Diane	Dasher	+12108423828								1	f	f	dsdasher919@gmail.com		new lead	\N	
2017-04-26 16:51:08.370941+00	2017-11-29 18:38:49.806731+00	3050			+14072640000								9	f	f		uniworld intern	new lead	\N	
2017-11-29 14:58:29.769282+00	2017-11-29 15:00:41.455118+00	3051			+14043689418								13	f	f		thurby tamra	new lead	\N	
2017-03-16 16:37:07.473627+00	2017-11-29 18:38:53.212432+00	3052			+16827023939								9	f	f			new lead	\N	
2017-08-07 20:40:32.732867+00	2017-11-29 18:29:51.355498+00	3053			+19287831100								1	f	f			new lead	\N	
2016-11-15 02:10:22.938163+00	2016-11-15 02:10:22.967093+00	3054	Jose	moreno	+12147272663								1	f	f	rayados.jlm@gmail.com		new lead	\N	
2017-12-11 21:24:39.630929+00	2017-12-11 21:37:44.076193+00	3055			+12392236127								15	f	f			new lead	\N	
2017-12-13 20:57:12.710171+00	2017-12-13 21:16:26.450154+00	3056	Brandie	Littlejohn	+14704219410								13	f	f	brandielittlejohn@ymail.com		select status	\N	
2017-09-27 19:22:25.059487+00	2017-09-27 19:26:09.819217+00	3057	Demetrius	Bolds	+17063510486								13	f	f	tyeishaboyd@gmail.com		new lead	\N	
2016-08-17 17:00:12.300613+00	2016-08-17 17:00:23.535917+00	3058	A	SECURITY     	+17732315081								1	f	f			new lead	\N	
2016-11-08 19:00:10.53485+00	2016-11-08 19:28:50.981207+00	3059			+14107332449								1	f	f			new lead	\N	
2017-12-05 15:02:54.58684+00	2017-12-05 15:03:20.601812+00	3060	Samuel	Beasley	+17708207739								14	f	f	Sambeasley1967@gmail.com		new lead	\N	
2016-10-01 19:18:23.781338+00	2016-10-01 19:18:23.818831+00	3061	Jorge	Jorge	+17869999047								1	f	f	jjspideytech@gmail.com		new lead	\N	
2017-12-06 16:13:32.824278+00	2017-12-06 16:20:51.550157+00	3062			+12489214089								15	f	f			new lead	\N	
2017-10-13 14:10:31.247884+00	2017-10-13 14:13:33.592061+00	3063	shaneke	Graham	+14048192337								13	f	f	grahamshaneke@yahoo.com		new lead	\N	
2017-04-05 22:29:47.933669+00	2017-11-29 18:38:53.213345+00	3064			+12104880142								9	f	f		rios bosco	new lead	\N	
2016-08-24 13:53:26.199816+00	2016-12-09 17:07:45.331516+00	3065			+16107931058								3	f	f			new lead	\N	
2017-05-10 20:18:57.766994+00	2017-11-29 18:38:49.810942+00	3066			+19012105428								9	f	f		herbers ashli  	new lead	\N	
2016-05-26 13:10:14.732701+00	2017-11-29 18:31:10.260438+00	3067	Unknown	WRIGHT	+15132034177								1	f	f	RAYCW@TWC.COM		new lead	\N	
2016-08-04 19:15:43.353198+00	2016-08-04 20:09:58.108131+00	3068	Brian	Hall	+19709852908								1	f	f	youandi11608@yahoo.com		application submitted - autopay	\N	
2016-11-08 20:34:15.666059+00	2016-11-08 20:55:28.438451+00	3069			+18328767847								1	f	f			new lead	\N	
2017-07-26 23:34:35.353498+00	2017-07-26 23:36:50.562347+00	3070			+16824441252								12	f	f		wireless caller	new lead	\N	
2017-12-08 20:36:01.960787+00	2017-12-08 20:56:53.038714+00	3071			+19565999043								15	f	f			new lead	\N	
2017-05-03 19:02:53.470804+00	2017-11-29 18:38:49.809339+00	3072			+18476693444								9	f	f		natl intl roofi	new lead	\N	
2016-10-21 20:16:39.274193+00	2017-11-29 18:31:37.369204+00	3073			+18185162707								1	f	f			new lead	\N	
2017-05-08 18:57:01.148103+00	2017-11-29 18:38:53.215384+00	3074			+16312651010								9	f	f		credit  solutio	new lead	\N	
2017-09-19 16:09:24.98312+00	2017-09-19 16:15:31.270428+00	3075			+14042462080								13	f	f			new lead	\N	
2016-12-23 12:59:54.267223+00	2017-11-29 18:31:41.490807+00	3076			+17277747678								1	f	f			new lead	\N	
2017-12-03 01:51:46.960187+00	2017-12-03 01:53:09.25673+00	3077			+18173714382								15	f	f			new lead	\N	
2017-04-13 00:00:40.42047+00	2017-11-29 18:38:53.213837+00	3078			+18062901072								9	f	f			new lead	\N	
2017-04-26 13:43:23.718754+00	2017-11-29 18:38:49.806717+00	3079			+19498990632								9	f	f		cell phone   ca	new lead	\N	
2016-07-01 13:56:10.888403+00	2017-11-29 18:32:13.821152+00	3080	Unknown	Councell	+12345647210								1	f	f	rdcouncell@gmail.com		new lead	\N	
2017-12-30 20:23:22.971882+00	2017-12-30 20:24:29.643172+00	3081			+19362445458								12	f	f		trotty desire	new lead	\N	
2017-08-21 15:33:07.292112+00	2017-08-21 15:34:57.508448+00	3082	Detra	Barnum	+17067137394								13	f	f	detrabarnum257@yahoo.com		new lead	\N	
2017-10-30 17:15:16.823479+00	2017-10-30 17:15:40.891574+00	3083	Trenise	Bennett	+17064106706								13	f	f	trenisebennett@yahoo.com		new lead	\N	
2016-09-06 15:34:36.781342+00	2016-12-10 01:05:18.400916+00	3084			+12678180148								3	f	f			new lead	\N	
2016-10-10 22:24:00.515471+00	2016-12-10 01:00:18.568504+00	3085			+16192673996								3	f	f			new lead	\N	
2016-10-31 13:49:36.802262+00	2016-12-09 17:10:05.263319+00	3086			+14404888071								3	f	f			new lead	\N	
2016-08-09 20:20:50.167506+00	2017-11-29 18:31:56.600132+00	3087			+15707356394								1	f	f			do not contact	\N	
2016-08-01 17:37:50.33908+00	2016-12-10 00:55:45.164969+00	3088			+12153804685								3	f	f			new lead	\N	
2017-11-03 17:35:55.213186+00	2017-11-03 17:36:59.964166+00	3089			+12057128509								13	f	f			new lead	\N	
2016-07-28 17:44:05.254184+00	2017-11-29 18:31:18.808818+00	3090	Jeff	Statleton	+14068714663								1	f	f			general interest	\N	
2016-11-23 19:28:00.523633+00	2016-12-02 15:58:03.14951+00	3091			+17144824905								6	f	f			general interest	\N	
2017-10-25 00:48:56.418139+00	2017-10-25 00:49:06.112124+00	3092			+14702159571								13	f	f			new lead	\N	
2017-04-25 02:18:06.30992+00	2017-11-29 18:38:49.806518+00	3093			+19038029590								9	f	f		savis ladonna  	new lead	\N	
2017-09-25 15:51:03.239589+00	2017-09-25 15:51:42.032581+00	3094			+17027572750								13	f	f			new lead	\N	
2017-05-03 15:51:31.818207+00	2017-11-29 18:38:49.809219+00	3095			+12145386567								9	f	f		mattingly jason	new lead	\N	
2017-12-09 19:29:59.181339+00	2017-12-09 19:31:39.342835+00	3096			+16823195209								12	f	f		boyle lindsay	new lead	\N	
2017-12-08 19:37:26.660058+00	2017-12-08 19:46:34.72091+00	3097	Jimmie	Johnson	+16782831087								13	f	f	jimmieedenise@gmail.com		new lead	\N	
2017-08-12 22:13:01.510713+00	2017-08-17 14:35:21.045823+00	3098			+12145768692								12	f	f		mejia juventino	new lead	\N	
2017-08-25 14:34:59.615857+00	2017-08-25 14:36:24.582155+00	3099	Paige	Lafferty	+17068093212								13	f	f	misspaigelafferty@gmail.com		new lead	\N	
2016-08-29 17:19:58.102317+00	2016-08-29 21:11:00.718892+00	3100	Crystal	carraudo	+17608281506								1	f	f	Crystalelana17@yahoo.com		application submitted - autopay	\N	
2016-08-03 15:42:24.573989+00	2017-11-29 18:31:01.155606+00	3101			+13173133321								1	f	f			new lead	\N	
2017-05-23 15:43:19.856542+00	2017-11-29 18:38:49.812784+00	3102			+14129600018								9	f	f		redden brandon	new lead	\N	
2016-09-28 15:23:01.433413+00	2016-11-09 15:42:56.35141+00	3103			+13023686300								3	f	f			new lead	\N	
2017-05-29 15:57:03.047175+00	2017-08-17 14:35:21.04537+00	3104			+14302078447								12	f	f		wireless caller	new lead	\N	
2016-05-25 18:22:01.905578+00	2017-11-29 18:31:37.368168+00	3105	Unknown		+19723459980								1	f	f			new lead	\N	
2017-08-10 02:15:25.346527+00	2017-08-10 02:15:25.404406+00	3106	george	holcombe	+17065251421								13	f	f	holcombe79@gmail.com		new lead	\N	
2017-04-03 19:22:30.880859+00	2017-11-29 18:38:53.213285+00	3107			+12143925949								9	f	f		ent t	new lead	\N	
2016-08-05 15:36:47.730674+00	2017-11-29 18:31:05.368953+00	3108			+19372748257								1	f	f			general interest	\N	
2017-08-21 18:53:55.629458+00	2017-08-21 19:03:14.517371+00	3109			+18179890596								12	f	f		ware leesa	new lead	\N	
2017-06-09 20:31:12.610543+00	2017-08-17 14:35:21.045442+00	3110			+18174552858								12	f	f		euless  tx	new lead	\N	
2017-12-23 02:16:57.216128+00	2017-12-23 02:16:57.27408+00	3111	Terrol 	Hester 	+16789973797								13	f	f	terryhester42@gmail.com		new lead	\N	
2017-03-13 18:18:09.494808+00	2017-11-29 18:38:53.212132+00	3112			+19293839692								9	f	f		boni king	new lead	\N	
2016-11-21 22:44:20.746548+00	2016-11-21 22:59:01.461332+00	3113			+18179299020								1	f	f			new lead	\N	
2016-10-06 13:59:50.357609+00	2016-12-10 01:05:18.401082+00	3114			+14849411274								3	f	f			new lead	\N	
2016-09-07 18:23:49.184121+00	2016-12-10 01:04:42.413748+00	3115			+19094193819								3	f	f			new lead	\N	
2017-07-12 22:15:46.334681+00	2017-08-17 14:35:21.045586+00	3116			+18177565090								12	f	f		gc - easytel hu	new lead	\N	
2016-11-27 17:27:43.423109+00	2016-11-27 17:27:43.449449+00	3117	Nicholas 	Duchinsky 	+16364487989								1	f	f	aduchinsky15@yahoo.com		new lead	\N	
2017-08-19 14:50:44.767918+00	2017-08-19 14:52:10.765007+00	3118			+17067787387								13	f	f			new lead	\N	
2017-12-04 22:23:00.01645+00	2017-12-04 22:23:53.692771+00	3119	David	Spalty	+17274107862								15	f	f	spaltee13@hotmail.com		new lead	\N	
2016-12-03 18:15:55.43133+00	2016-12-05 13:18:50.883587+00	3120	Darl	Elsea	+13146160572								1	f	f	dgelsea@sbcglobal.net		application submitted - autopay	\N	
2017-10-07 14:30:22.695981+00	2017-10-07 14:31:03.965711+00	3121	jazmine	murry	+14702239470								13	f	f	murry_jazz@yahoo.com		new lead	\N	
2017-04-19 21:19:08.56441+00	2017-11-29 18:38:49.805796+00	3122			+12147090101								9	f	f		carlisle telequ	new lead	\N	
2017-05-26 23:41:56.902245+00	2017-11-29 18:38:49.813833+00	3123			+12146621680								9	f	f		lipscomb dan	new lead	\N	
2016-10-14 16:22:14.281552+00	2016-12-09 17:10:17.413635+00	3124			+19083107230								3	f	f			new lead	\N	
2017-09-15 20:01:43.254398+00	2017-09-15 20:04:51.453659+00	3125	Canita	Kelley	+16788303493								13	f	f	jaedilia31@gmail.com		new lead	\N	
2017-04-27 16:41:51.110818+00	2017-11-29 18:38:53.21466+00	3126			+1114322582205								9	f	f			new lead	\N	
2017-09-22 15:25:06.730026+00	2017-09-22 15:26:26.222478+00	3127	Jasmine	Thornton	+16783584791								13	f	f	jasmine.thornton@student.life.edu		new lead	\N	
2016-11-14 23:27:04.08804+00	2017-11-29 18:31:37.369304+00	3128	Deborah	Merritt	+16614505222								1	f	f	nealmerritt33@gmail.com		new lead	\N	
2017-04-27 21:16:26.893716+00	2017-11-29 18:38:53.214688+00	3129			+17272002772								9	f	f		mustafic hazim	new lead	\N	
2017-03-16 17:17:39.445077+00	2017-11-29 18:38:53.212453+00	3130			+18434212996								9	f	f			new lead	\N	
2017-09-06 03:03:52.541141+00	2017-09-06 03:03:52.598772+00	3131	Chastity	Appleby	+17705496335								13	f	f	chat35.apple@gmail.com		new lead	\N	
2017-04-06 19:20:00.309982+00	2017-11-29 18:38:53.21336+00	3132			+19725334319								9	f	f		de la torre raf	new lead	\N	
2017-05-26 21:20:46.973805+00	2017-11-29 18:38:49.813782+00	3133			+14697066520								9	f	f		dallas  tx	new lead	\N	
2017-10-09 21:40:06.074645+00	2017-10-09 21:40:50.329205+00	3134			+18172697439								12	f	f		euless  tx	new lead	\N	
2016-11-03 20:16:16.152188+00	2016-11-03 20:19:07.240037+00	3135			+14802542655								1	f	f			new lead	\N	
2017-12-01 22:22:34.036609+00	2017-12-01 22:49:01.853742+00	3136			+18173491766								15	f	f			new lead	\N	
2016-09-08 16:49:11.15461+00	2016-12-10 00:57:48.461733+00	3137			+18056541060								3	f	f			new lead	\N	
2016-10-10 18:34:09.477417+00	2016-12-10 00:57:48.461803+00	3138			+18057600305								3	f	f			new lead	\N	
2016-07-06 17:05:39.8607+00	2016-12-10 01:05:18.400593+00	3139			+16104273810								3	f	f			new lead	\N	
2016-10-24 23:28:19.013541+00	2016-12-10 01:01:51.441135+00	3140			+16195086023								3	f	f			new lead	\N	
2016-11-29 21:15:57.082756+00	2016-11-29 21:36:17.423172+00	3141			+12812578787								1	f	f			new lead	\N	
2017-05-06 18:31:11.193045+00	2017-11-29 18:38:53.215192+00	3142			+12142368898								9	f	f		ron g          	new lead	\N	
2017-05-11 00:50:22.854663+00	2017-11-29 18:38:49.811066+00	3143			+14693281930								9	f	f		rockhill myrand	new lead	\N	
2017-12-13 14:46:08.705878+00	2017-12-13 14:53:02.360085+00	3144			+16787541333								13	f	f		hill lisa	new lead	\N	
2016-08-08 19:38:11.353598+00	2017-11-29 18:31:10.261459+00	3145	Mr. Jackson		+15136283840								1	f	f			general interest	\N	
2016-09-08 17:41:11.511656+00	2016-12-10 01:01:00.200028+00	3146			+18586103108								3	f	f			new lead	\N	
2017-04-27 20:18:19.238428+00	2017-11-29 18:38:53.214674+00	3147			+12149607724								9	f	f		arana mari	new lead	\N	
2017-06-01 21:55:22.495+00	2017-11-29 18:38:49.814482+00	3148			+17815265875								9	f	f		chow jacquelyn	new lead	\N	
2017-04-20 17:33:35.845274+00	2017-11-29 18:38:53.214312+00	3149			+19122819504								9	f	f		wireless caller	new lead	\N	
2017-08-17 17:05:49.99883+00	2017-08-17 17:28:52.39889+00	3150			+18179296734								12	f	f		hill laverne	new lead	\N	
2016-07-14 15:08:48.409316+00	2016-12-10 00:57:42.908354+00	3151			+15137484356								3	f	f			new lead	\N	
2017-09-29 02:45:16.875811+00	2017-10-11 15:25:29.273989+00	3152	Albert	Reddick	+14045035121								13	f	f	Alby.123@gmail.com		select status	\N	
2017-11-22 15:02:45.823113+00	2017-11-22 16:16:31.420997+00	3153			+14044824323								13	f	f			select status	\N	
2017-11-13 20:49:44.141067+00	2017-11-13 20:56:56.61028+00	3154			+18177561440								12	f	f		christopher wilder phd	new lead	\N	
2017-12-04 21:08:57.906727+00	2017-12-04 21:45:44.349248+00	3155			+18109656805								15	f	f			new lead	\N	
2017-11-17 18:42:43.236675+00	2017-11-17 18:45:37.088721+00	3156			+16782830920								13	f	f			new lead	\N	
2016-10-12 14:34:09.853969+00	2017-02-11 20:02:07.779641+00	3157			+12032418900								3	f	f			new lead	\N	
2017-04-25 20:48:43.411862+00	2017-11-29 18:38:49.806689+00	3158			+18179259955								9	f	f		fidelity remark	new lead	\N	
2017-04-25 19:00:18.305691+00	2017-05-17 15:41:07.224378+00	3159			+18179322751								12	f	f		villanueva juan	new lead	\N	
2017-05-29 23:08:19.264427+00	2017-05-29 23:09:31.433371+00	3160			+18176898904								12	f	f		jeffreys iris  	new lead	\N	
2016-08-11 23:27:49.03527+00	2016-08-12 13:19:47.022649+00	3161	salvador	moreno	+16619023000								1	f	f	chavymoreno@hotmail.com		application submitted - credit union	\N	
2017-04-29 19:46:18.938983+00	2017-11-29 18:38:53.214831+00	3162			+14438395102								9	f	f		coleman wanda	new lead	\N	
2016-12-28 00:22:23.178796+00	2016-12-28 00:22:23.204115+00	3163	Camen	Aponte	+16022068954								1	f	f	cyiya67@yahoo.com		new lead	\N	
2017-03-09 02:00:49.774783+00	2017-11-29 18:47:25.067651+00	3164			+14696324875								8	f	f		mcelmurry rhond	new lead	\N	
2017-11-03 14:14:40.394283+00	2017-11-03 14:18:21.88561+00	3165	Ty	Haley 	+17063911378								13	f	f	cagethety@gmail.com		new lead	\N	
2016-06-02 14:19:49.94326+00	2017-11-29 18:31:14.616439+00	3166	Unknown	Mills	+19206640201								1	f	f			new lead	\N	
2017-08-15 22:25:31.855144+00	2017-08-15 22:32:48.829374+00	3167	Sharia	Johnson	+14049020230								13	f	f	J.sharia@yahoo.com		new lead	\N	
2017-10-30 23:12:22.461367+00	2017-10-30 23:15:30.337476+00	3168			+18172700443								12	f	f		henderson james	new lead	\N	
2016-07-20 16:57:57.997541+00	2016-07-20 17:00:16.833763+00	3169	Melvin	Hancock	+19257782522								1	f	f	eastbayindex@gmail.com		new lead	\N	
2017-03-22 17:32:13.771825+00	2017-08-17 14:35:21.044847+00	3170			+16823859940								12	f	f		fort worth  tx	new lead	\N	
2017-12-15 20:28:02.985788+00	2017-12-15 20:29:33.93585+00	3171	Christopher 	Sudduth	+17063293332								13	f	f	Christophersudduth87@gmail.com		select status	\N	
2017-11-24 13:22:16.766053+00	2017-11-24 14:14:00.266487+00	3172	Kaylie	Wilbanks	+16782839698								13	f	f	kayliewilbanks2121@gmail.com		select status	\N	
2017-03-13 19:48:35.076233+00	2017-11-29 18:47:25.067722+00	3173			+12149860661								8	f	f		smith ryan     	new lead	\N	
2017-07-21 20:10:52.84304+00	2017-07-21 20:18:37.567477+00	3174			+17706391129								13	f	f			new lead	\N	
2016-09-01 19:32:21.782879+00	2016-12-10 01:00:18.56835+00	3175			+16192003622								3	f	f			new lead	\N	
2017-12-09 15:28:20.931704+00	2017-12-09 22:25:44.605622+00	3176	John	Kennedy	+17702271417								13	f	f	Jhkennedy2013@gmail.com		select status	\N	
2016-10-04 19:22:24.694572+00	2016-12-09 17:06:53.905984+00	3177			+12672297651								3	f	f			new lead	\N	
2016-06-28 17:14:09.951103+00	2017-11-29 18:32:13.820781+00	3178	Unknown		+13302068838								1	f	f			new lead	\N	
2017-12-04 15:25:14.519707+00	2017-12-04 15:26:07.735905+00	3179	NATTASHA	FOX	+13476416674								13	f	f	sam9ravenel@gmail.com	fox natasha	select status	\N	
2016-11-21 22:03:36.648542+00	2016-11-21 22:07:41.968024+00	3180			+18138432569								1	f	f			new lead	\N	
2017-05-03 23:33:20.734451+00	2017-05-03 23:34:29.379509+00	3181			+19409231448								12	f	f		chandra	new lead	\N	
2017-08-17 17:35:01.501838+00	2017-08-17 17:38:35.490494+00	3182			+16784376324								13	f	f			new lead	\N	
2017-03-03 20:03:02.415997+00	2017-11-29 18:47:25.067573+00	3183			+14693248972								8	f	f		cierra mcclendo	new lead	\N	
2016-11-17 21:40:09.872324+00	2016-11-17 21:40:09.897027+00	3184	Carlos	Duque	+19195907977								1	f	f	cduque@interrainternational.com		new lead	\N	
2016-11-02 19:21:16.215212+00	2016-11-02 19:21:16.24201+00	3185	Nhi	Van	+19194551975								1	f	f	tracy_nhi@yahoo.com.hk		new lead	\N	
2016-10-05 14:50:57.900692+00	2017-02-11 20:02:07.779566+00	3186			+19084640425								3	f	f			new lead	\N	
2017-07-31 19:06:17.917293+00	2017-07-31 19:12:00.149787+00	3187			+17707663947								13	f	f			new lead	\N	
2017-08-22 21:11:08.117205+00	2017-08-22 21:17:52.402172+00	3188			+18177564726								12	f	f		gc - easytel hu	new lead	\N	
2017-09-28 17:40:10.065374+00	2017-09-28 17:41:52.246466+00	3189	Theresa	Williams 	+14049642155								13	f	f	Theresacancer66@yahoo.com		new lead	\N	
2016-08-10 23:07:37.437143+00	2017-11-29 18:32:01.935487+00	3190			+12564793982								1	f	f			new lead	\N	
2017-04-15 19:16:35.249079+00	2017-11-29 18:47:25.068045+00	3191			+19032801572								8	f	f		davis robert   	new lead	\N	
2017-09-29 19:11:03.310903+00	2017-09-29 19:17:40.560049+00	3192			+18177568455								12	f	f		dallas  tx	new lead	\N	
2017-08-30 15:44:19.877484+00	2017-08-30 15:45:35.798645+00	3193			+12246767011								13	f	f			new lead	\N	
2017-03-25 14:07:30.787483+00	2017-11-29 18:47:25.067919+00	3194			+12142873626								8	f	f		lapolla industr	new lead	\N	
2017-04-27 19:27:32.056952+00	2017-11-29 18:38:49.807066+00	3195			+17039714235								9	f	f		petro petty	new lead	\N	
2017-12-20 15:36:17.287002+00	2017-12-20 16:02:51.323285+00	3196			+19049004337								15	f	f			new lead	\N	
2017-12-08 14:06:34.124719+00	2017-12-08 14:06:58.550962+00	3197			+16785221986								14	f	f			new lead	\N	
2017-10-15 16:27:32.816735+00	2017-10-15 16:33:25.603204+00	3198	Michael	Sanders	+16789282324								13	f	f	Sandersm714@gmail.com		new lead	\N	
2016-08-02 19:33:28.224175+00	2017-11-29 18:31:10.261923+00	3199			+15133483072								1	f	f			general interest	\N	
2016-06-27 22:52:59.09109+00	2016-06-28 11:03:06.696747+00	3200	Anthony	Morgan	+17404091898								1	f	f	backtothefuture11555@yahoo.com		new lead	\N	
2017-09-29 17:46:39.184196+00	2017-11-29 18:31:37.369357+00	3201			+13179360056								1	f	f			new lead	\N	
2016-06-27 14:42:54.321485+00	2017-11-29 18:32:13.820469+00	3202	Unknown		+13303836443								1	f	f			new lead	\N	
2017-08-29 22:36:30.716828+00	2017-08-29 22:58:56.298723+00	3203			+18178410168								12	f	f		cortez anthony	new lead	\N	
2016-09-08 20:53:56.027378+00	2016-12-10 01:01:51.440898+00	3204			+16195121294								3	f	f			new lead	\N	
2017-09-07 18:34:45.074943+00	2017-09-07 18:36:19.093845+00	3205			+13046160131								12	f	f		grace brenda	new lead	\N	
2017-03-26 23:03:08.701776+00	2017-11-29 18:38:53.212937+00	3206			+14162008047								9	f	f		etobicoke   on	new lead	\N	
2017-12-02 17:02:59.500968+00	2017-12-02 17:03:24.086772+00	3207			+17705606782								14	f	f			new lead	\N	
2016-10-05 19:41:15.427483+00	2016-12-10 01:01:00.200294+00	3208			+18587752232								3	f	f			new lead	\N	
2016-07-16 16:22:48.142282+00	2016-12-10 01:05:11.33702+00	3209			+17189879219								3	f	f			new lead	\N	
2018-03-20 02:52:19.793511+00	2018-03-20 02:52:46.003417+00	3210			+12248758574								4	f	f		chicago  il	new lead	\N	
2016-08-01 16:42:23.034395+00	2016-12-10 01:05:18.400736+00	3211			+16102091234								3	f	f			new lead	\N	
2016-11-01 13:28:41.297562+00	2016-11-01 13:46:22.914117+00	3212			+16789979577								1	f	f			new lead	\N	
2016-09-08 16:30:22.126655+00	2016-12-09 17:06:53.905907+00	3213			+12675668629								3	f	f			new lead	\N	
2017-12-12 16:36:33.118528+00	2017-12-12 16:39:50.478724+00	3214			+15134768895								15	f	f			new lead	\N	
2017-11-27 19:51:27.833472+00	2017-11-27 20:02:15.439429+00	3215	Kizzy	Dukes	+16787916228								13	f	f	Kflem3311@gmail.com		select status	\N	
2016-07-30 13:52:04.945956+00	2017-11-29 18:31:05.368917+00	3216	John	Kilfoil	+19379999230								1	f	f	jkilfoil@mail.com		application submitted - credit union	\N	
2017-04-29 14:05:17.794478+00	2017-04-29 14:11:35.794785+00	3217			+16017907678								12	f	f		baaree gloria n	new lead	\N	
2016-08-19 17:01:56.878708+00	2016-12-10 01:05:18.400812+00	3218			+12154367269								3	f	f			new lead	\N	
2017-06-01 18:57:52.628679+00	2017-11-29 18:38:49.81441+00	3219			+14698998351								9	f	f		apple vacations	new lead	\N	
2017-01-13 21:41:01.695263+00	2017-02-08 14:11:15.710287+00	3220	DILLON	HOWARD	+14046640197								1	f	f	tinarhamy@yahoo.com		application submitted - autopay	\N	
2016-11-04 14:38:58.200146+00	2016-11-04 14:41:39.608665+00	3221			+17135172469								1	f	f			new lead	\N	
2016-10-05 00:09:49.317983+00	2016-12-10 01:01:51.441016+00	3222			+16198635025								3	f	f			new lead	\N	
2017-04-17 14:34:32.857599+00	2017-11-29 18:47:25.068059+00	3223			+12146203054								8	f	f		frye frank     	new lead	\N	
2017-12-20 17:43:14.858103+00	2017-12-20 17:46:23.816356+00	3224	Devi	Johnson-Evans	+14044493407								13	f	f	djohnsonevans@gmail.com	devi chef	new lead	\N	
2017-03-23 18:39:42.954444+00	2017-11-29 18:32:01.935509+00	3225			+12022482988								1	f	f			new lead	\N	
2017-08-14 14:58:29.026925+00	2017-08-17 14:35:21.04583+00	3226			+18178408597								12	f	f		cruz rigoberto	new lead	\N	
2017-10-03 22:15:40.195377+00	2017-10-03 22:18:53.464762+00	3227			+18177244008								12	f	f		boyd rhonda	new lead	\N	
2016-10-30 18:59:41.393827+00	2016-10-30 18:59:41.423246+00	3228	Frankie	Lucas	+14698105563								1	f	f	teffrank@yahoo.com		new lead	\N	
2016-09-29 17:13:44.494737+00	2016-11-09 15:46:28.724983+00	3229			+18473416910								3	f	f			new lead	\N	
2016-06-27 18:32:56.154616+00	2017-11-29 18:31:41.490093+00	3230	Unknown	Brown	+17404771313								1	f	f			new lead	\N	
2017-07-12 01:54:09.25838+00	2017-07-12 01:54:17.397396+00	3231			+18082865990								1	f	f			new lead	\N	
2017-09-11 19:44:09.351358+00	2017-09-11 19:45:50.633836+00	3232			+15016132479								12	f	f		s matlock	new lead	\N	
2017-08-08 21:21:35.595408+00	2017-08-08 21:27:41.220717+00	3233			+14046419998								13	f	f			new lead	\N	
2017-11-07 20:11:41.426937+00	2017-11-07 20:14:35.430821+00	3234			+12544851548								12	f	f		euless  tx	new lead	\N	
2016-08-29 17:46:15.328964+00	2016-12-10 00:57:42.908371+00	3235			+15134774132								3	f	f			new lead	\N	
2017-12-02 20:49:58.353308+00	2017-12-02 20:51:51.508008+00	3236			+18174371539								12	f	f		thompson jr boy	new lead	\N	
2017-03-22 18:07:12.488934+00	2017-11-29 18:47:25.067898+00	3237			+18176086079								8	f	f		rojas jose     	new lead	\N	
2017-05-08 22:31:33.145327+00	2017-11-29 18:38:53.215441+00	3238			+12145800261								9	f	f		bayon rick	new lead	\N	
2017-11-27 21:38:04.129218+00	2017-11-27 21:41:50.355094+00	3239	Kelli	Minish	+17063620029								13	f	f	Kelliminish26@yahoo.com		new lead	\N	
2017-11-28 20:20:37.974799+00	2017-11-28 20:25:37.213854+00	3240			+17069731461								13	f	f		cell phone   ga	new lead	\N	
2017-04-13 19:55:37.425058+00	2017-11-29 18:38:53.213858+00	3241			+12142235055								9	f	f		odom kayla	new lead	\N	
2017-12-17 17:48:07.443366+00	2017-12-18 14:01:08.374051+00	3242	Jessica	Peek	+14043601794								13	f	f	Peekjessica28@gmail.com		select status	\N	
2017-09-09 23:28:50.659646+00	2017-09-09 23:28:50.714834+00	3243	Mario	Cornejo	+16787324712								13	f	f	Mariocornejo2505@yahoo.com		new lead	\N	
2016-08-08 13:40:41.594345+00	2016-12-10 01:01:51.440686+00	3244	Robert	Kocak	+14384900760								3	f	f	rezskocak@aol.com		new lead	\N	
2016-06-08 20:40:26.00965+00	2017-11-29 18:31:10.261221+00	3245	Unknown	Shouse 	+15135756706								1	f	f	chrisshouse_20@yahoo.com		new lead	\N	
2017-05-02 22:59:30.263472+00	2017-11-29 18:38:49.808914+00	3246			+16825214335								9	f	f		lenear don	new lead	\N	
2017-12-18 16:35:49.545597+00	2017-12-18 16:44:25.048433+00	3247	Tyranie	Reid	+14045872057								13	f	f	tyranier@gmail.com		select status	\N	
2016-11-16 18:11:50.378788+00	2017-11-29 18:32:13.821951+00	3248			+13304233913								1	f	f			new lead	\N	
2016-08-27 23:14:29.293355+00	2016-08-29 12:41:22.365045+00	3249	Joshua	Rogers	+14196062982								1	f	f	jmrrogers@yahoo.com		application submitted - credit union	\N	
2017-05-08 21:34:07.735511+00	2017-11-29 18:38:49.810491+00	3250			+17322595053								9	f	f		cell phone   nj	new lead	\N	
2017-10-31 15:58:37.068316+00	2017-10-31 15:59:32.398495+00	3251			+18172341234								12	f	f		auto leasing	new lead	\N	
2016-09-15 13:00:18.577933+00	2016-11-09 15:46:31.903355+00	3252			+13213239667								3	f	f			new lead	\N	
2016-11-02 18:03:15.228569+00	2016-11-02 18:03:15.260954+00	3253	Carlos	Ruiz	+17132915941								1	f	f	carlos_ppp@yahoo.com.mx		new lead	\N	
2016-07-08 19:12:45.632152+00	2017-11-29 18:32:13.821434+00	3254	Bonnie	Drake	+13303070500								1	f	f			new lead	\N	
2016-08-29 21:06:27.089479+00	2016-12-10 01:04:42.413585+00	3255			+17037792057								3	f	f			new lead	\N	
2017-03-18 23:53:41.276493+00	2017-11-29 18:38:53.212615+00	3256			+14054217792								9	f	f			new lead	\N	
2016-08-13 17:45:48.493442+00	2016-08-25 16:47:09.538071+00	3257	Cheyenne	Hamilton	+15134187491								1	f	f	cheyennehamilton50@yahoo.com		application submitted - autopay	\N	
2017-03-31 14:31:34.107446+00	2017-11-29 18:32:13.822035+00	3258	Donald	Renzenbrink	+13307578090								1	f	f	nickdive@aol.com		application submitted - credit union	\N	
2017-12-16 00:27:35.260443+00	2017-12-16 00:27:35.322095+00	3259	Rachael 	Mason	+17708434139								13	f	f	rachaelmason25@yahoo.com		select status	\N	
2016-07-05 16:27:31.559381+00	2017-11-29 18:31:41.490318+00	3260	Unknown	Savage	+17402152922								1	f	f	Savdawg98@yahoo.com		new lead	\N	
2016-06-06 18:29:54.343034+00	2017-11-29 18:31:56.600111+00	3261	Unknown		+17725810686								1	f	f			new lead	\N	
2017-09-04 16:22:18.438567+00	2017-09-04 16:24:05.868152+00	3262			+18177915794								12	f	f		patricia choice	new lead	\N	
2017-10-30 17:51:50.44106+00	2017-10-30 17:53:24.17921+00	3263	Bridget	Thompson	+14708487880								13	f	f	bridgetsaylor11@gmail.com		new lead	\N	
2016-07-30 04:18:42.710736+00	2016-07-30 04:18:42.735502+00	3264	Punnamchander	Erram	+15107174475								1	f	f	erram.punnam@gmail.com		new lead	\N	
2017-10-16 13:11:04.343505+00	2017-10-16 13:13:08.100065+00	3265	Abasha	Smith	+16788632343								13	f	f	Abasha.smith@yahoo.com		new lead	\N	
2016-11-12 20:06:04.739511+00	2016-11-12 20:33:11.711112+00	3266			+18324396041								1	f	f			new lead	\N	
2016-09-21 19:52:06.63087+00	2017-11-29 18:31:10.262603+00	3267	Sonia	Bauer	+15136301505								1	f	f			application submitted - credit union	\N	
2017-03-14 20:57:26.003421+00	2017-11-29 18:38:53.212261+00	3268			+13376543417								9	f	f		reed keith     	new lead	\N	
2016-08-02 04:40:10.38453+00	2016-08-02 14:04:38.027356+00	3269	Rene Paul	Gonzalez	+18186345321								1	f	f	ponggonzalez@yahoo.com		application submitted - autopay	\N	
2016-09-01 16:09:35.370947+00	2016-12-10 01:01:51.440729+00	3270			+16194260986								3	f	f			new lead	\N	
2016-11-16 16:52:17.86051+00	2016-12-09 17:08:31.908901+00	3271			+16097770872								3	f	f			new lead	\N	
2017-11-09 11:01:46.135618+00	2017-11-09 11:02:02.175728+00	3272			+16787251772								13	f	f			new lead	\N	
2017-10-18 18:10:35.601654+00	2017-10-18 18:19:03.286898+00	3273	Ronnie 		+14044287186								1	f	f			new lead	\N	
2016-11-02 15:47:45.622637+00	2016-11-02 16:08:25.510173+00	3274			+16783134220								1	f	f			new lead	\N	
2017-05-01 22:32:13.614563+00	2017-11-29 18:38:53.214902+00	3275			+14699695230								9	f	f		smith thompson 	new lead	\N	
2017-11-18 14:32:32.603253+00	2017-11-18 14:36:04.185227+00	3276			+16785313827								13	f	f			new lead	\N	
2017-05-08 17:57:17.059966+00	2017-11-29 18:38:49.810344+00	3277			+15208774851								9	f	f		bank of the wes	new lead	\N	
2016-07-11 16:20:09.492451+00	2016-12-10 01:05:18.400672+00	3278			+16107683300								3	f	f			new lead	\N	
2017-04-14 15:01:57.929214+00	2017-11-29 18:38:53.213887+00	3279			+19034452749								9	f	f		l martinez	new lead	\N	
2016-06-28 21:44:42.918765+00	2016-06-28 21:56:48.083401+00	3280	Jenna	Watson	+13307745644								1	f	f	jlwatson1008@gmail.com		new lead	\N	
2016-05-25 18:29:18.483294+00	2017-11-29 18:31:37.368122+00	3281	Unknown		+16614000461								1	f	f			new lead	\N	
2016-10-05 14:43:24.944117+00	2016-12-10 01:03:26.835864+00	3282			+19733328762								3	f	f			new lead	\N	
2016-08-25 13:08:04.892414+00	2016-08-25 13:27:22.962121+00	3283	Luanne	Salzgeber	+16144409378								1	f	f	salzgeberluanne@gmail.com		application submitted - credit union	\N	
2016-05-31 19:43:49.147653+00	2017-11-29 18:31:37.368219+00	3284	Unknown		+14014734613								1	f	f			new lead	\N	
2017-07-08 16:07:10.332053+00	2017-07-08 16:11:16.100519+00	3285	Naum	Itskov	+17702749263								13	f	f	normhomes@comcast.net		new lead	\N	
2017-11-13 19:22:51.347752+00	2017-11-13 19:24:49.125783+00	3286			+14325532975								12	f	f		midland  tx	new lead	\N	
2017-08-07 16:06:34.763206+00	2017-08-07 16:13:06.404249+00	3287	Tony	Hair	+17063670017								13	f	f	Hairatldog@gmail.com		new lead	\N	
2017-03-01 22:52:09.446765+00	2017-11-29 18:38:53.211681+00	3288			+12149745109								9	f	f		DALLAS  TX	new lead	\N	
2017-09-08 15:14:37.325089+00	2017-09-08 15:19:19.895167+00	3289			+14705590714								13	f	f			new lead	\N	
2017-03-28 16:48:01.496442+00	2017-11-29 18:38:53.213105+00	3290			+12144128192								9	f	f		cell phone   tx	new lead	\N	
2017-08-10 18:36:48.272808+00	2017-08-10 18:42:58.88555+00	3291			+15037049332								13	f	f			new lead	\N	
2018-03-08 19:44:27.565428+00	2018-03-08 19:44:27.764005+00	3292	rastsea	asdfasdf	+1asdf		asdf			asdf	asdf		4	f	f	test@test.com				
2017-12-19 14:32:52.655731+00	2017-12-19 14:32:56.641933+00	3293			+17579028868								10	f	f			new lead	\N	
2017-07-30 14:07:24.451928+00	2017-07-30 14:07:43.759734+00	3294			+18177568805								12	f	f		dallas  tx	new lead	\N	
2017-04-15 16:25:35.399908+00	2017-11-29 18:38:49.805074+00	3295			+12142632611								9	f	f		johnson roger  	new lead	\N	
2017-04-13 18:01:28.899365+00	2017-04-13 18:02:01.603154+00	3296			+12144423965								12	f	f		huinh phuong	new lead	\N	
2017-09-13 07:25:56.615676+00	2017-09-13 07:25:56.666875+00	3297	Emma	Passmore	+16786975381								13	f	f	profepassmore@gmail.com		new lead	\N	
2016-11-04 11:47:56.313879+00	2016-11-04 11:47:56.345712+00	3298	Amanda	Edwards	+18162558416								1	f	f	Aedwards31391@gmail.com		new lead	\N	
2017-07-22 16:32:27.609133+00	2017-07-22 16:35:32.911982+00	3299			+12547337851								12	f	f		solorio clara	new lead	\N	
2017-12-06 20:52:44.256241+00	2017-12-06 21:07:49.961896+00	3300			+14072569331								15	f	f			new lead	\N	
2017-12-05 19:51:54.531177+00	2017-12-05 20:08:18.395747+00	3301			+17137308816								15	f	f			new lead	\N	
2016-05-25 17:01:46.684174+00	2017-11-29 18:31:01.155591+00	3302	Unknown		+13303010551								1	f	f			new lead	\N	
2017-05-20 17:08:04.411368+00	2017-11-29 18:38:49.812406+00	3303			+18178819424								9	f	f		jaffery shahnan	new lead	\N	
2017-10-13 17:09:42.796671+00	2017-10-13 17:10:24.266095+00	3304			+17175529667								13	f	f			new lead	\N	
2016-09-09 20:48:09.323758+00	2016-12-10 01:01:00.200046+00	3305			+15852676461								3	f	f			new lead	\N	
2017-05-24 16:29:07.124173+00	2017-11-29 18:38:49.813089+00	3306			+12816829826								9	f	f		bennett william	new lead	\N	
2017-12-20 21:27:18.932974+00	2017-12-20 21:28:11.315017+00	3307			+12143012200								12	f	f		boswell gabriel	new lead	\N	
2017-05-04 14:20:07.274908+00	2017-08-17 14:35:21.045119+00	3308			+16016678633								12	f	f		john warfield	new lead	\N	
2017-10-26 16:38:33.577251+00	2017-10-26 16:41:13.175985+00	3309	Mark	Justice	+17066104643								13	f	f	Sherryborja43@gmail.com		select status	\N	
2017-05-06 16:27:20.658632+00	2017-11-29 18:47:25.068383+00	3310			+12147896212								8	f	f		teeter e	new lead	\N	
2016-10-01 12:59:50.137557+00	2016-12-10 01:05:11.337125+00	3311			+16102873904								3	f	f			new lead	\N	
2017-09-13 18:21:51.634224+00	2017-09-13 18:24:19.495731+00	3312			+12108461221								13	f	f			new lead	\N	
2017-01-21 13:57:47.776766+00	2017-11-29 18:31:05.368982+00	3313			+18130120421								1	f	f			new lead	\N	
2017-05-03 14:28:28.384768+00	2017-11-29 18:38:53.214937+00	3314			+19312657938								9	f	f		cell phone   tn	new lead	\N	
2016-12-24 15:51:16.109676+00	2016-12-24 15:51:32.446595+00	3315			+14194745840								1	f	f			new lead	\N	
2017-11-15 18:30:50.781694+00	2017-11-15 18:31:29.837811+00	3316	Morris	Woodruff	+17065436725								13	f	f	morris.woodruff@aol.com		new lead	\N	
2017-12-21 19:31:13.539556+00	2017-12-21 19:34:25.359496+00	3317			+18174085254								12	f	f		brister rachel	new lead	\N	
2016-06-16 16:37:25.293217+00	2017-11-29 18:32:13.820411+00	3318	Unknown	Hinzman	+13307192810								1	f	f	drhinzman@gmail.com		new lead	\N	
2017-04-27 13:40:58.702992+00	2017-11-29 18:38:49.806858+00	3319			+12145573785								9	f	f		cell phone   tx	new lead	\N	
2017-06-26 16:30:59.714355+00	2017-06-26 16:31:21.765815+00	3320	camille	brown	+14782343180								13	f	f	sunday83ful@gmail.com		new lead	\N	
2016-10-07 16:07:25.319305+00	2016-12-10 01:01:51.441065+00	3321			+16198706449								3	f	f			new lead	\N	
2016-08-05 18:14:58.485651+00	2016-08-05 19:07:43.659199+00	3322	Gerald	Collins	+16617142378								1	f	f	nutfor3@aol.com		application submitted - credit union	\N	
2017-12-14 20:04:51.079242+00	2017-12-14 20:12:01.078889+00	3323	Salathiel	McKinney	+14787727517								13	f	f	calebmckinney26@gmail.com		select status	\N	
2017-05-18 14:37:36.40352+00	2017-11-29 18:29:46.631349+00	3324			+17035438026								1	f	f			new lead	\N	
2016-09-15 23:09:54.429629+00	2016-12-10 01:01:51.440967+00	3325			+16198625627								3	f	f			new lead	\N	
2016-10-28 14:51:57.409722+00	2016-12-10 01:03:20.585959+00	3326			+13478330009								3	f	f			new lead	\N	
2017-03-27 17:08:55.61222+00	2017-11-29 18:38:53.212993+00	3327			+16095297176								9	f	f		nam stanislav  	new lead	\N	
2017-11-03 17:26:11.356895+00	2017-11-03 17:32:55.0291+00	3328	Mikkos	Bolton	+16784374115								13	f	f	mikkos314@gmail.com		new lead	\N	
2016-10-13 20:19:00.781488+00	2016-12-10 01:01:51.441114+00	3329			+14154541460								3	f	f			new lead	\N	
2017-05-01 16:21:36.516784+00	2017-11-29 18:38:49.807934+00	3330			+12146831784								9	f	f		monzon arturo	new lead	\N	
2017-05-18 17:28:18.22494+00	2017-11-29 18:29:57.477834+00	3331			+17033047182								1	f	f			new lead	\N	
2016-08-19 14:08:02.382674+00	2016-12-09 17:06:53.905801+00	3332			+12159691520								3	f	f			new lead	\N	
2017-06-20 19:00:54.751242+00	2017-06-20 19:02:20.374998+00	3333	Jeff	Grindle	+17068786101								13	f	f	Mistygrindle99@gmail.com		new lead	\N	
2016-10-13 20:53:40.410885+00	2016-12-09 17:07:47.979301+00	3334			+16105586800								3	f	f			new lead	\N	
2016-11-08 21:48:04.735051+00	2016-11-08 21:48:04.767283+00	3335	fernando	Chavira	+19725718107								1	f	f	fsecchavira@hotmail.com		new lead	\N	
2016-11-03 00:24:43.744414+00	2016-11-03 00:24:43.768148+00	3336	Navneet	Mishra	+17137258486								1	f	f	nav.1985@gmail.com		new lead	\N	
2017-04-04 00:50:59.232429+00	2017-11-29 18:38:53.213309+00	3337			+12128833811								9	f	f		moelis and co	new lead	\N	
2016-08-19 14:25:27.858634+00	2017-11-29 18:31:10.262462+00	3338	Sonia	Bauer	+15133993080								1	f	f			application submitted - autopay	\N	
2016-10-31 18:09:25.429673+00	2016-10-31 18:42:03.500777+00	3339			+17702678186								1	f	f			new lead	\N	
2016-09-23 19:04:53.980966+00	2016-12-09 17:07:45.331676+00	3340			+14849477757								3	f	f			new lead	\N	
2017-12-16 21:55:53.628555+00	2017-12-16 21:57:15.165105+00	3341			+16022288435								15	f	f			new lead	\N	
2016-05-25 18:38:37.98384+00	2017-11-29 18:31:10.260376+00	3342	Unknown		+15137350587								1	f	f			new lead	\N	
2017-09-14 22:52:46.134904+00	2017-09-14 22:56:50.001938+00	3343			+14049528567								13	f	f			new lead	\N	
2017-11-20 19:14:28.843619+00	2017-11-20 20:09:36.73581+00	3344	Jacquez	Dunn	+17063405331								13	f	f	tscoleman2@gmail.com		select status	\N	
2017-05-04 21:25:28.856441+00	2017-11-29 18:38:53.215121+00	3345			+19727054501								9	f	f		bbvacompass	new lead	\N	
2017-05-08 20:38:14.860376+00	2017-11-29 18:38:49.810426+00	3346			+13237747956								9	f	f		cell phone   ca	new lead	\N	
2017-10-14 14:12:20.893699+00	2017-10-14 14:13:55.961342+00	3347			+18176579151								12	f	f		donna scott	new lead	\N	
2016-11-03 19:57:12.997465+00	2016-11-03 20:16:31.096148+00	3348			+17046434498								1	f	f			new lead	\N	
2017-06-28 23:34:57.512935+00	2017-08-17 14:35:21.045507+00	3349			+18173501785								12	f	f		caranza manuela	new lead	\N	
2017-05-31 19:11:10.634556+00	2017-08-17 14:35:21.045413+00	3350			+18175008018								12	f	f		phone c	new lead	\N	
2017-10-27 18:01:18.757597+00	2017-10-27 18:04:23.116655+00	3351	Brenda	Davidson 	+17065250368								13	f	f	davidsin30533@gmail.com		new lead	\N	
2016-10-31 22:07:38.519279+00	2016-10-31 22:14:38.958943+00	3352			+14694274527								1	f	f			new lead	\N	
2016-07-12 21:06:46.658591+00	2016-12-10 01:05:18.400693+00	3353			+16104620156								3	f	f			new lead	\N	
2017-03-23 15:39:05.962673+00	2017-11-29 18:47:25.067905+00	3354			+19725278888								8	f	f		excel realty	new lead	\N	
2017-04-19 23:31:42.577604+00	2017-11-29 18:47:25.068144+00	3355			+18703510561								8	f	f		owens kyle	new lead	\N	
2017-10-10 20:49:15.451518+00	2017-10-10 20:54:25.413428+00	3356	April	Kelly	+17062449636								13	f	f	April.l.kelly11@gmail.com		new lead	\N	
2017-12-05 20:57:46.466741+00	2017-12-05 20:58:35.953361+00	3357			+16788665440								14	f	f			new lead	\N	
2016-10-05 16:07:12.604418+00	2016-12-10 01:03:35.620603+00	3358			+12124727270								3	f	f			new lead	\N	
2016-08-05 21:25:34.342244+00	2017-11-29 18:32:13.821678+00	3359			+13306102326								1	f	f			new lead	\N	
2016-11-03 13:28:34.226807+00	2016-11-03 13:28:34.24949+00	3360	SAMIK	SAHA	+14122250286								1	f	f	SAHA.SAMIK@GMAIL.COM		new lead	\N	
2017-05-30 13:18:02.818746+00	2017-11-29 18:38:49.813968+00	3361			+17703353184								9	f	f		lopez jr e     	new lead	\N	
2017-09-26 13:55:16.703968+00	2017-09-26 13:56:42.251982+00	3362	RODNEY	PRATHER	+14042072786								13	f	f	prather.rodney25@yahoo.com		new lead	\N	
2016-11-30 18:46:15.495864+00	2016-11-30 18:46:15.517233+00	3363	Philip	Fields	+14047966980								1	f	f	Pipestone01@comcast.net		new lead	\N	
2016-10-31 20:22:55.810672+00	2016-10-31 20:25:23.297161+00	3364			+14043810668								1	f	f			new lead	\N	
2017-09-27 13:26:40.57077+00	2017-09-27 13:29:54.338315+00	3365	Michelle	Ayers	+17068094562								13	f	f	elleayers29@gmail.com		new lead	\N	
2016-11-21 17:44:22.002961+00	2016-11-21 17:44:22.038834+00	3366	Diana	Montgomery	+16239791647								1	f	f	dmontgomery13@cox.net		new lead	\N	
2016-11-07 18:06:00.92618+00	2016-11-07 18:33:43.467923+00	3367			+12144031026								1	f	f			new lead	\N	
2017-11-01 17:43:43.030021+00	2017-11-01 18:11:57.263679+00	3368			+14697745124								12	f	f		sterling rashad	new lead	\N	
2017-10-21 21:25:13.54937+00	2017-10-21 21:28:17.870962+00	3369	Patsy 	Howard	+17063623859								13	f	f	patsyhoward1949@gmail.com		new lead	\N	
2017-04-20 21:03:30.572544+00	2017-11-29 18:38:49.806082+00	3370			+14693092928								9	f	f		cell phone   tx	new lead	\N	
2016-11-01 03:27:22.778835+00	2016-12-10 00:57:48.461894+00	3371			+18058322309								3	f	f			new lead	\N	
2017-12-19 13:35:25.982282+00	2017-12-19 13:38:52.686996+00	3372			+14193415345								15	f	f			new lead	\N	
2017-05-22 21:21:24.809964+00	2017-11-29 18:38:49.812728+00	3373			+12105382493								9	f	f		san antonio  tx	new lead	\N	
2016-09-19 17:19:09.685641+00	2016-12-10 01:00:18.568427+00	3374			+16198884336								3	f	f			new lead	\N	
2017-06-23 17:40:26.690816+00	2017-06-24 13:44:45.085782+00	3375			+17709904888								13	f	f			new lead	\N	
2017-12-15 23:12:25.546652+00	2017-12-15 23:14:22.457324+00	3376			+17378742833								13	f	f		name unavailabl	new lead	\N	
2017-08-12 14:40:08.739985+00	2017-08-17 14:35:21.045809+00	3377			+18178997395								12	f	f		lowery melinda	new lead	\N	
2016-11-02 19:24:21.024692+00	2016-11-02 19:24:21.04605+00	3378	Michael	Poppell	+17273656858								1	f	f	mqpoppell@gmail.com		new lead	\N	
2017-04-20 21:05:21.117521+00	2017-11-29 18:38:49.806096+00	3379			+13086721159								9	f	f		elkins tiffany 	new lead	\N	
2017-04-05 23:55:27.593096+00	2017-05-17 15:41:07.224284+00	3380			+16822079700								12	f	f		rylos jr p	new lead	\N	
2017-03-14 21:28:52.042338+00	2017-11-29 18:47:25.06775+00	3381			+19407351247								8	f	f		phillip thomas	new lead	\N	
2017-04-22 18:35:38.453965+00	2017-11-29 18:38:53.214426+00	3382			+14694083202								9	f	f		borchardt kelli	new lead	\N	
2017-11-25 14:13:53.649204+00	2017-11-25 14:14:58.149343+00	3383			+17063086687								13	f	f			new lead	\N	
2017-12-06 15:45:08.353082+00	2017-12-06 15:58:23.707562+00	3384			+15614418015								15	f	f			new lead	\N	
2017-12-05 20:19:22.30146+00	2017-12-05 20:19:22.343664+00	3385	Mary	Stanton	+12105693714								15	f	f	robbymendy7018@att.net		new lead	\N	
2016-06-27 14:40:38.244722+00	2017-11-29 18:31:41.490043+00	3386	Unknown		+16143908025								1	f	f			new lead	\N	
2016-11-18 22:32:06.553407+00	2017-11-29 18:31:56.600232+00	3387			+15709910489								1	f	f			new lead	\N	
2016-11-10 18:32:36.93917+00	2016-11-10 18:32:36.962783+00	3388	Franklin	O'Neal	+14043767220								1	f	f	ffoneal@gmail.com		new lead	\N	
2016-09-29 18:33:29.513218+00	2017-02-11 20:02:07.779535+00	3389			+12013230901								3	f	f			new lead	\N	
2016-10-12 16:45:28.517383+00	2016-12-10 01:05:18.401175+00	3390			+16109715000								3	f	f			new lead	\N	
2017-08-19 19:30:07.133811+00	2017-08-19 19:36:13.818189+00	3391			+17707667886								13	f	f			new lead	\N	
2017-05-08 00:16:46.05397+00	2017-05-08 00:17:16.312641+00	3392			+17864634898								1	f	f		barberousse  a	new lead	\N	
2016-09-27 17:25:50.189361+00	2016-12-10 01:00:18.568441+00	3393			+19292618524								3	f	f			new lead	\N	
2017-10-20 13:58:58.119089+00	2017-10-20 14:02:05.157956+00	3394	Susan	Manus	+14044533353								13	f	f	susanmanus30@gmail.com		new lead	\N	
2017-06-12 18:23:29.088185+00	2017-06-12 18:24:44.18046+00	3395			+17702978700								6	f	f			new lead	\N	
2017-05-30 15:51:40.064055+00	2017-11-29 18:38:49.814004+00	3396			+15033055598								9	f	f		logical positio	new lead	\N	
2017-10-13 13:37:49.859901+00	2017-10-13 13:44:59.328968+00	3397			+14044684830								13	f	f			new lead	\N	
2017-10-14 14:52:37.400787+00	2017-10-14 14:56:54.69614+00	3398	Brantley	Scuffham	+17708992092								13	f	f	scuffhamlaw@gmail.com		new lead	\N	
2017-10-19 18:23:16.914479+00	2017-10-19 18:24:38.463855+00	3399	JOSHUA	VISBAL	+19548601527								13	f	f	j.visbal80@gmail.com		new lead	\N	
2016-11-02 22:17:17.93527+00	2016-11-02 22:17:30.653673+00	3400			+12814605174								1	f	f			new lead	\N	
2016-11-03 19:25:02.833079+00	2016-11-03 19:28:30.033456+00	3401			+17132318989								1	f	f			new lead	\N	
2017-09-30 19:48:37.90146+00	2017-09-30 19:49:46.535499+00	3402	Jerika	Dillard 	+16784802820								13	f	f	Dillardjerika2@gmail.com		new lead	\N	
2017-04-20 20:07:07.947375+00	2017-11-29 18:38:53.214333+00	3403			+13126181700								9	f	f		racic charles  	new lead	\N	
2017-11-25 14:32:49.893302+00	2017-11-25 14:39:40.0931+00	3404	Misty	Adams	+17702944537								13	f	f	mertmert30519@gmail.com		new lead	\N	
2016-11-14 20:08:18.298997+00	2016-11-14 20:11:24.342076+00	3405			+13462129394								1	f	f			new lead	\N	
2017-12-23 15:36:52.999949+00	2017-12-23 16:05:07.959494+00	3406			+18065594898								15	f	f			new lead	\N	
2017-04-21 20:12:49.243268+00	2017-11-29 18:38:53.214397+00	3407			+12142960341								9	f	f		m5 networks	new lead	\N	
2017-06-23 21:24:00.272823+00	2017-06-24 13:44:45.085842+00	3408			+17067687561								13	f	f			new lead	\N	
2017-01-20 22:11:32.05666+00	2017-01-20 22:12:55.764872+00	3409			+16788878685								1	f	f			new lead	\N	
2017-04-26 15:03:07.055193+00	2017-11-29 18:38:53.214574+00	3410			+12147836038								9	f	f		wireless caller	new lead	\N	
2017-04-25 20:21:01.589669+00	2017-11-29 18:38:49.806674+00	3411			+14154179060								9	f	f		cell phone   ca	new lead	\N	
2017-07-14 19:59:11.827587+00	2017-11-29 18:31:41.49087+00	3412			+13058490245								1	f	f			new lead	\N	
2017-04-26 17:29:11.335901+00	2017-11-29 18:38:53.214589+00	3413			+12533206781								9	f	f		latif abdul	new lead	\N	
2017-11-01 16:16:02.13744+00	2017-11-01 16:19:41.838305+00	3414			+18177290147								12	f	f		q link wireless	new lead	\N	
2017-12-28 01:00:40.00483+00	2017-12-28 01:01:56.224877+00	3415	Juan	Castro	+13059876401								15	f	f	juandcast@gmail.com		new lead	\N	
2017-09-18 14:30:46.026354+00	2017-09-18 14:32:00.747984+00	3416			+17064988523								13	f	f			new lead	\N	
2017-04-27 16:48:16.722263+00	2017-11-29 18:38:49.806966+00	3417			+12147970210								9	f	f		levin adam     	new lead	\N	
2016-11-25 12:47:20.549209+00	2016-12-09 17:10:17.413706+00	3418			+19083035005								3	f	f			new lead	\N	
2016-10-27 17:19:58.38369+00	2016-12-09 17:06:53.906063+00	3419			+12157507040								3	f	f			new lead	\N	
2016-12-06 16:57:06.458385+00	2016-12-09 17:06:53.906161+00	3420			+12673125924								3	f	f			new lead	\N	
2017-12-15 22:22:15.910185+00	2017-12-15 22:23:30.206888+00	3421	Saquesha	Bell	+14702761124								13	f	f	Tyteria23@gmail.com		new lead	\N	
2016-11-01 19:30:51.240245+00	2016-12-10 01:05:18.40121+00	3422			+16103108576								3	f	f			new lead	\N	
2017-04-26 19:03:30.048167+00	2017-11-29 18:38:53.21461+00	3423			+18129892512								9	f	f		cell michael   	new lead	\N	
2017-02-15 16:28:33.977653+00	2017-02-15 16:41:38.699682+00	3424			+12147969527								1	f	f			new lead	\N	
2017-12-13 00:06:16.680719+00	2017-12-13 00:20:44.142528+00	3425	frederick	anderson	+12162407126								15	f	f	freddanderson671@gmail.com		new lead	\N	
2017-06-01 21:53:24.068091+00	2017-11-29 18:38:53.215405+00	3426			+19143201812								9	f	f		soriano angela 	new lead	\N	
2017-12-04 16:13:16.63782+00	2017-12-04 16:13:18.103371+00	3427			+14708787505								14	f	f			new lead	\N	
2016-11-15 15:01:53.582613+00	2016-11-15 15:35:55.940263+00	3428			+16786833674								1	f	f			new lead	\N	
2016-09-08 16:21:58.954891+00	2016-12-10 01:01:00.200008+00	3429			+16199544129								3	f	f			new lead	\N	
2017-04-24 18:00:17.570318+00	2017-11-29 18:38:49.806448+00	3430			+12293755003								9	f	f		kellyn odom	new lead	\N	
2016-09-08 15:26:54.505805+00	2016-12-10 01:00:18.568406+00	3431			+16192824585								3	f	f			new lead	\N	
2017-11-17 19:42:40.898965+00	2017-11-17 19:43:35.648297+00	3432			+14698057681								12	f	f		cell phone   tx	new lead	\N	
2016-09-12 19:32:00.161015+00	2016-12-10 01:01:51.440953+00	3433			+16193792043								3	f	f			new lead	\N	
2017-12-06 20:07:44.718979+00	2017-12-06 20:31:49.434741+00	3434			+18133471175								15	f	f			new lead	\N	
2016-06-29 02:14:47.761215+00	2017-11-29 18:31:41.490143+00	3435	Raquel	Fuentes	+12163965003								1	f	f	juanca709@yahoo.com		new lead	\N	
2016-06-16 13:53:00.061675+00	2016-06-16 13:56:09.184512+00	3436	Melvin	Shapiro	+17817241889								1	f	f			new lead	\N	
2016-11-01 18:53:58.402678+00	2016-11-01 18:53:58.427576+00	3437	Keith	Bean	+18176375057								1	f	f	beaninsurance@sbcglobal.net		new lead	\N	
2017-10-28 02:40:00.914381+00	2017-11-29 18:31:37.369382+00	3438			+12054843165								1	f	f			new lead	\N	
2016-08-04 06:17:04.687372+00	2016-08-04 13:18:12.327946+00	3439	Calvin	Brookins	+16614339319								1	f	f	Brookins.calvin@yahoo.com		application submitted - credit union	\N	
2016-06-29 15:19:18.110416+00	2017-11-29 18:32:13.820914+00	3440	william	poole	+13303076485								1	f	f	poolewilliam50@yahoo.com		new lead	\N	
2016-09-22 23:09:24.985663+00	2016-12-09 17:06:53.905963+00	3441			+12159467136								3	f	f			new lead	\N	
2017-05-18 17:57:20.592928+00	2017-11-29 18:38:49.812189+00	3442			+13108091666								9	f	f		wireless caller	new lead	\N	
2016-04-27 16:42:28.526406+00	2016-04-27 16:43:20.602549+00	3443	Van	Trump	+17739699892								2	f	f	White		new lead	\N	
2017-12-29 21:03:57.166251+00	2017-12-29 21:04:44.16846+00	3444			+17063716278								13	f	f		cell phone   ga	new lead	\N	
2017-04-14 14:54:55.057243+00	2017-11-29 18:31:56.60038+00	3445			+15708627465								1	f	f			do not contact	\N	
2017-04-15 18:46:25.03235+00	2017-08-17 14:35:21.044995+00	3446			+16822070614								12	f	f		conner john	new lead	\N	
2017-05-25 21:30:50.454281+00	2017-11-29 18:38:49.813549+00	3447			+19723421059								9	f	f		adams david    	new lead	\N	
2017-03-03 23:28:42.875736+00	2017-11-29 18:47:25.06758+00	3448			+13184172164								8	f	f		cell phone   la	new lead	\N	
2017-05-04 14:04:56.993698+00	2017-11-29 18:38:49.809585+00	3449			+13059928667								9	f	f		bryan internati	new lead	\N	
2017-05-09 20:12:26.210758+00	2017-11-29 18:38:49.810676+00	3450			+19729318000								9	f	f		digital docum	new lead	\N	
2016-12-30 12:53:43.336106+00	2017-11-29 18:31:56.600253+00	3451			+15708297951								1	f	f			new lead	\N	
2016-11-01 17:33:58.124201+00	2016-12-09 17:10:17.413656+00	3452			+19176486613								3	f	f			new lead	\N	
2017-05-05 16:12:15.511029+00	2017-11-29 18:38:49.809931+00	3453			+17313439505								9	f	f		hatter william 	new lead	\N	
2016-08-15 13:59:26.940572+00	2016-12-10 00:55:45.165269+00	3454			+14845243674								3	f	f			new lead	\N	
2017-11-28 17:50:57.592383+00	2017-11-28 17:52:32.498948+00	3455			+13475754617								12	f	f		thapa ranjan	new lead	\N	
2017-11-17 21:34:01.524746+00	2017-11-29 18:31:56.600521+00	3456			+15703886878								1	f	f			select status	\N	
2016-09-08 18:36:16.427242+00	2016-12-10 01:00:18.568413+00	3457			+16198084595								3	f	f			new lead	\N	
2017-11-01 15:59:42.787859+00	2017-11-01 16:01:42.918097+00	3458			+16826676580								12	f	f		fort worth  tx	new lead	\N	
2016-07-15 16:20:35.725705+00	2016-11-09 15:43:50.981579+00	3459			+19842550883								3	f	f			new lead	\N	
2017-03-22 02:07:49.019077+00	2017-11-29 18:38:53.212735+00	3460			+12149803356								9	f	f			new lead	\N	
2017-04-27 17:20:14.259081+00	2017-11-29 18:38:53.214667+00	3461			+13147935485								9	f	f		osman liban	new lead	\N	
2017-07-07 17:42:32.746529+00	2017-07-07 17:44:04.327283+00	3462			+14042274110								13	f	f			new lead	\N	
2016-11-09 21:32:08.695582+00	2016-11-09 21:32:08.728607+00	3463	Arthur	Rayos	+17134169727								1	f	f	arayos@sbcglobal.net		new lead	\N	
2017-04-10 21:20:50.939526+00	2017-11-29 18:38:53.213681+00	3464			+12146078911								9	f	f		novaco alex	new lead	\N	
2017-05-09 15:43:48.730232+00	2017-11-29 18:47:25.068425+00	3465			+12147106013								8	f	f		matthews ervi	new lead	\N	
2017-12-14 16:35:19.059782+00	2017-12-14 16:36:22.278124+00	3466			+12142930000								12	f	f		dunbar darius	new lead	\N	
2017-08-12 00:47:49.877423+00	2017-08-12 01:10:52.253109+00	3467			+18178971482								12	f	f		euless  tx	new lead	\N	
2016-11-16 21:51:06.787397+00	2016-11-16 22:21:45.429421+00	3468			+18322604742								1	f	f			new lead	\N	
2017-09-22 16:33:45.571731+00	2017-09-22 16:40:47.929817+00	3469			+19723307057								12	f	f		oaks cierra a	new lead	\N	
2017-05-13 17:11:51.00335+00	2017-11-29 18:38:49.811451+00	3470			+17148035017								9	f	f		hass steven    	new lead	\N	
2016-08-12 19:14:05.800302+00	2017-11-29 18:32:13.821771+00	3471	tyler	duncan	+13309841111								1	f	f	lisajennings380@gmail.com		application submitted - autopay	\N	
2017-05-24 14:28:03.883405+00	2017-11-29 18:38:49.812981+00	3472			+12146609195								9	f	f		fortune partner	new lead	\N	
2016-09-07 23:45:42.825987+00	2016-12-10 01:01:51.44087+00	3473			+16192539474								3	f	f			new lead	\N	
2017-12-19 19:35:17.699882+00	2017-12-19 19:47:31.972403+00	3474	David	Kouzmanoff	+18168069928								15	f	f	dkouzmanoff@gmail.com		new lead	\N	
2017-09-15 00:14:10.788749+00	2017-09-15 00:35:28.17377+00	3475			+18175349886								12	f	f		davis roberta	new lead	\N	
2017-10-26 14:03:54.547497+00	2017-10-26 14:06:51.946314+00	3476			+14705774657								13	f	f			new lead	\N	
2016-11-03 18:36:09.995149+00	2016-11-03 18:38:48.939329+00	3477			+13146032477								1	f	f			new lead	\N	
2017-12-17 07:10:06.318571+00	2017-12-18 13:53:52.761949+00	3478	Ellen	Brown	+17064272532								13	f	f	Ebzipo@yahoo.com		select status	\N	
2017-05-05 14:14:30.049126+00	2017-08-17 14:35:21.045126+00	3479			+18178567848								12	f	f		wren terrance	new lead	\N	
2016-08-15 19:46:33.977787+00	2016-08-23 19:19:02.402776+00	3480	Jared	Preston	+14063704230								1	f	f	Jared_preston@yahoo.com		application submitted - autopay	\N	
2017-10-19 17:43:21.575154+00	2017-11-29 18:38:53.215661+00	3481			+12146767311								9	f	f		heverly linh   	new lead	\N	
2017-04-28 01:05:22.983781+00	2017-11-29 18:38:53.214731+00	3482			+14053969705								9	f	f		arcadia  ok	new lead	\N	
2017-12-21 22:31:05.281591+00	2017-12-21 22:32:15.488869+00	3483			+17542248727								15	f	f			new lead	\N	
2016-11-03 13:47:34.897756+00	2016-11-03 13:47:34.926611+00	3484	Rosemary	Bonelli Fischer	+16787590940								1	f	f	heal2@me.com		new lead	\N	
2016-07-21 19:25:00.616599+00	2017-11-29 18:31:41.490547+00	3485			+14195721656								1	f	f			new lead	\N	
2016-11-02 20:38:00.469874+00	2016-11-02 20:40:33.163248+00	3486			+19724156732								1	f	f			new lead	\N	
2017-05-11 18:20:40.792841+00	2017-11-29 18:47:25.068495+00	3487			+12253154182								8	f	f		asah m j       	new lead	\N	
2017-08-21 12:39:03.948734+00	2017-08-21 12:39:04.380153+00	3488			+17066211632								13	f	f			new lead	\N	
2017-09-05 20:38:33.350257+00	2017-09-05 20:45:12.054656+00	3489			+14046448311								13	f	f			new lead	\N	
2017-03-07 00:18:07.781939+00	2017-03-07 00:18:41.471604+00	3490			+19365204627								1	f	f			new lead	\N	
2016-11-05 20:02:05.717867+00	2016-12-10 01:00:18.568545+00	3491			+18586033471								3	f	f			new lead	\N	
2017-10-23 22:07:36.290594+00	2017-10-23 22:08:34.600656+00	3492			+16822031306								12	f	f		kirkpatrick mik	new lead	\N	
2016-12-01 15:16:17.281502+00	2016-12-10 01:05:18.401256+00	3493			+16105822352								3	f	f			new lead	\N	
2017-08-11 15:47:10.684974+00	2017-08-11 15:48:15.277701+00	3494	Ashley	Adams	+16784723158								13	f	f	ashii241@icloud.com		new lead	\N	
2017-04-24 18:53:21.559817+00	2017-11-29 18:38:53.214496+00	3495			+16825617348								9	f	f		harvey bryan	new lead	\N	
2016-10-05 16:11:26.32378+00	2016-12-09 17:10:17.413535+00	3496			+14845038001								3	f	f			new lead	\N	
2016-10-03 17:12:11.805696+00	2016-12-10 01:04:28.706378+00	3497			+19093875500								3	f	f			new lead	\N	
2016-09-08 19:25:09.710238+00	2016-12-10 01:01:51.440877+00	3498			+18583618661								3	f	f			new lead	\N	
2017-10-20 16:54:24.749134+00	2017-10-20 17:01:09.248308+00	3499	Milik	Williams	+16785983390								13	f	f	Milwil1996@gmail.com		new lead	\N	
2016-06-03 13:11:35.335684+00	2017-11-29 18:31:10.260919+00	3500	Marbeth	Carmack	+15139311167								1	f	f	mcarmack@fuse.net		new lead	\N	
2017-12-02 14:04:57.952417+00	2017-12-02 18:16:00.700826+00	3501			+17066523562								13	f	f		williams elaine	select status	\N	
2017-11-29 16:28:53.909953+00	2017-11-29 16:30:02.575063+00	3502			+14705057514								13	f	f		nancis ando	select status	\N	
2017-05-23 18:59:39.343108+00	2017-11-29 18:38:49.812876+00	3503			+18178072384								9	f	f		cell phone   tx	new lead	\N	
2017-11-17 20:38:47.02934+00	2017-11-17 20:40:32.188842+00	3504			+16787580740								13	f	f			new lead	\N	
2017-05-18 16:24:49.977737+00	2017-05-18 16:28:28.767192+00	3505			+16825599330								12	f	f		cox timothy    	new lead	\N	
2016-08-03 18:05:35.23896+00	2016-12-10 00:55:45.165075+00	3506			+16103824247								3	f	f			new lead	\N	
2017-12-20 20:02:46.345508+00	2017-12-20 20:09:36.611967+00	3507			+18035280206								15	f	f			new lead	\N	
2016-06-14 00:34:27.410718+00	2016-06-14 11:50:15.706705+00	3508	shantel	gould	+16616994248								1	f	f	shantellica@gmail.com		new lead	\N	
2017-05-19 20:55:27.603131+00	2017-05-19 21:18:34.42008+00	3509			+14692865600								12	f	f		manuel vincent	new lead	\N	
2017-12-05 01:52:43.560506+00	2017-12-05 02:13:54.467456+00	3510	Barbara	Thornton	+16144913546								15	f	f	bjwt552@aol.com		new lead	\N	
2017-12-12 22:08:24.618013+00	2017-12-12 23:26:47.833563+00	3511	Melissa	Lawley	+16788580541								13	f	f	Melissalawley72@gmail.com		select status	\N	
2016-12-02 21:54:45.652655+00	2016-12-09 17:11:00.853724+00	3512			+19082831347								3	f	f			new lead	\N	
2017-12-26 16:22:54.551845+00	2017-12-26 16:26:36.336668+00	3513			+17706052383								13	f	f		cain michael	new lead	\N	
2017-04-20 16:32:44.775116+00	2017-11-29 18:38:53.214305+00	3514			+14697327481								9	f	f		bennedsen thoma	new lead	\N	
2017-04-03 22:32:30.385218+00	2017-11-29 18:38:53.213292+00	3515			+12145141810								9	f	f		winters mark   	new lead	\N	
2017-11-01 18:00:56.611103+00	2017-11-01 18:07:14.979211+00	3516	Kendra 	Davis 	+17063627433								13	f	f	Kendrardavis88@yahoo.com		new lead	\N	
2016-11-01 12:58:37.260598+00	2016-11-09 15:47:03.908395+00	3517			+13026833067								3	f	f			new lead	\N	
2017-10-27 19:03:56.008534+00	2017-11-17 18:01:31.136077+00	3518	Donald 	Meadow	+17062488920								13	f	f	dotnga@aol.com		select status	\N	
2017-10-12 03:13:07.845489+00	2017-10-12 03:13:07.900638+00	3519	Miranda	Gragg	+17067162026								13	f	f	Mhgragg1214@gmail.com		new lead	\N	
2017-11-07 22:50:31.767218+00	2017-11-07 22:56:47.514193+00	3520			+14705358407								13	f	f			new lead	\N	
2017-01-13 17:33:55.013075+00	2017-01-13 18:01:17.699471+00	3521			+14049324070								1	f	f			new lead	\N	
2017-05-08 17:22:54.483786+00	2017-11-29 18:38:53.215369+00	3522			+19567408638								9	f	f		alvarez alejand	new lead	\N	
2017-12-15 03:18:49.929379+00	2017-12-15 03:19:53.130334+00	3523	Gregorio	Camacho	+15202569263								15	f	f	gc_75@aol.com		new lead	\N	
2016-10-28 18:04:01.819943+00	2016-12-10 01:00:22.124032+00	3524			+12158133883								3	f	f			new lead	\N	
2016-07-27 19:58:24.560207+00	2017-11-29 18:31:10.26164+00	3525	Timothy	Washington	+15136338135								1	f	f	timwashington3@gmail.com		new lead	\N	
2017-05-05 17:19:34.833278+00	2017-11-29 18:38:49.80998+00	3526			+14694463983								9	f	f		anderson sheldo	new lead	\N	
2017-04-18 17:45:14.230242+00	2017-11-29 18:38:49.805478+00	3527			+12146931777								9	f	f		ibe mike       	new lead	\N	
2017-12-03 21:11:33.819317+00	2017-12-03 21:12:55.361919+00	3528	Allan	McBee	+12145209122								15	f	f	dlynns@aol.com		new lead	\N	
2017-12-12 23:36:39.063754+00	2017-12-12 23:39:21.938466+00	3529	Kayla	King	+17068099232								13	f	f	Kingkayla144@gmail.com		select status	\N	
2017-09-07 00:52:45.945614+00	2017-09-07 01:14:42.844925+00	3530			+18177567042								12	f	f		dallas  tx	new lead	\N	
2017-02-23 16:56:01.449159+00	2017-11-29 18:31:41.490653+00	3531	Steve	Phone   SC	+18035462731								1	f	f			new lead	\N	
2017-05-09 20:25:34.864277+00	2017-11-29 18:38:49.810704+00	3532			+12146505961								9	f	f		roberson liz	new lead	\N	
2017-03-05 15:53:17.731875+00	2017-11-29 18:47:25.067616+00	3533			+14174890514								8	f	f		wireless caller	new lead	\N	
2017-10-20 20:37:10.682924+00	2017-10-20 20:40:12.128734+00	3534			+14045489462								13	f	f			new lead	\N	
2017-09-13 07:35:17.062375+00	2017-09-13 07:35:17.118481+00	3535	Barbara	White	+17063082535								13	f	f	barbarawhite165@gmail.com		new lead	\N	
2017-11-11 16:47:38.480143+00	2017-11-11 16:48:43.807028+00	3536			+18652588220								12	f	f		cooley jesse	new lead	\N	
2016-08-28 12:17:54.790963+00	2016-12-10 01:05:11.337103+00	3537			+17184481475								3	f	f			new lead	\N	
2017-03-17 15:05:17.766689+00	2017-11-29 18:38:53.212495+00	3538			+18326215613								9	f	f			new lead	\N	
2017-12-02 15:24:43.872209+00	2017-12-02 15:24:54.82324+00	3539			+17729780878								15	f	f			new lead	\N	
2016-08-01 18:53:42.570188+00	2017-11-29 18:31:37.368269+00	3540	Unknown	Ekman	+16616182198								1	f	f	ekmand@yahoo.com		general interest	\N	
2017-10-13 15:47:42.58404+00	2017-10-13 15:49:15.145186+00	3541			+18174134000								12	f	f		tc workforce	new lead	\N	
2017-12-04 20:48:47.75778+00	2017-12-04 21:06:27.530677+00	3542			+19413503912								15	f	f			new lead	\N	
2017-03-21 17:57:57.798173+00	2017-11-29 18:38:53.212721+00	3543			+12707236290								9	f	f			new lead	\N	
2017-04-28 22:51:37.021772+00	2017-11-29 18:38:49.807393+00	3544			+12148616140								9	f	f		hampton mark	new lead	\N	
2017-12-13 15:40:16.841559+00	2017-12-13 15:42:15.696539+00	3545	Deanthony	Thomas	+16785365996								13	f	f	moneybag371@gmail.com	roswell  ga	select status	\N	
2016-05-22 23:43:44.332824+00	2016-05-25 17:05:16.64576+00	3546	donna	castelluccio	+15133400711								1	f	f	gbe4113@yahoo.com		new lead	\N	
2016-09-01 17:02:45.926844+00	2016-12-10 01:01:00.199834+00	3547			+16192792751								3	f	f			new lead	\N	
2017-05-04 15:06:08.053935+00	2017-11-29 18:38:49.809614+00	3548			+12294956027								9	f	f		albany  ga	new lead	\N	
2016-08-11 18:20:44.191336+00	2017-11-29 18:31:37.368839+00	3549			+16614711499								1	f	f			new lead	\N	
2016-10-05 19:33:23.448971+00	2016-12-10 01:05:18.401068+00	3550			+16103370357								3	f	f			new lead	\N	
2017-03-07 19:52:01.097568+00	2017-03-07 20:06:38.197003+00	3551			+12149158341								1	f	f			new lead	\N	
2016-02-02 02:45:27.77465+00	2016-02-02 02:45:41.451835+00	3552	Piet Pompies		+15555555555								1	f	f			new lead	\N	
2017-09-12 21:15:02.841582+00	2017-09-12 21:19:25.493962+00	3553			+12544856944								12	f	f		euless  tx	new lead	\N	
2017-11-17 21:56:15.882815+00	2017-11-17 21:57:06.090835+00	3554			+17063805887								13	f	f			new lead	\N	
2017-10-09 20:32:08.78369+00	2017-10-09 20:39:01.597837+00	3555			+18176554215								12	f	f		powell harold	new lead	\N	
2017-11-01 22:30:18.57542+00	2017-11-01 22:31:13.365217+00	3556			+18177709792								12	f	f		esquivel veness	new lead	\N	
2017-04-17 16:03:27.642882+00	2017-11-29 18:47:25.068066+00	3557			+19728968993								8	f	f		lerente allen	new lead	\N	
2016-08-22 21:45:18.401394+00	2016-08-22 21:54:05.186121+00	3558	Darlene 	Maxim	+13305186408								1	f	f	Dmaxim51@me.com		application submitted - autopay	\N	
2017-11-04 14:11:16.945727+00	2017-11-04 14:12:32.966615+00	3559			+17063470706								13	f	f			new lead	\N	
2017-05-15 22:47:06.859039+00	2017-11-29 18:38:49.811657+00	3560			+19098387792								9	f	f		davis victoria 	new lead	\N	
2016-11-23 15:32:04.122755+00	2016-11-23 15:32:04.147742+00	3561	Marshall	Hilliard	+17046342610								1	f	f	marshall.hilliard@gmail.com		new lead	\N	
2016-11-10 15:43:05.688915+00	2016-11-10 15:43:05.714215+00	3562	Jeffrey	Jackson	+17134948562								1	f	f	jeffj1@comcast.net		new lead	\N	
2017-05-03 15:36:19.016555+00	2017-11-29 18:38:53.214944+00	3563			+14073325150								9	f	f		subway development co	new lead	\N	
2016-08-23 14:42:52.685129+00	2016-08-23 14:44:18.650162+00	3564			+16144020232								1	f	f			new lead	\N	
2016-12-21 13:35:09.028914+00	2016-12-21 13:35:09.067+00	3565	Mateusz	Malinowski	+18137353962								1	f	f	mmalinowski@mail.usf.edu		new lead	\N	
2017-08-26 14:13:40.640721+00	2017-08-26 14:17:45.900239+00	3566	Teresa	Sosebee	+16783320840								13	f	f	teresasosebee14@gmail.com		new lead	\N	
2016-11-28 17:33:35.844241+00	2016-12-09 17:10:17.413714+00	3567			+14846355810								3	f	f			new lead	\N	
2017-05-12 17:55:05.302785+00	2017-11-29 18:38:49.811344+00	3568			+12148157183								9	f	f		consulting j	new lead	\N	
2016-11-02 17:18:50.878693+00	2016-12-10 01:01:00.200585+00	3569			+18584881400								3	f	f			new lead	\N	
2017-11-06 22:28:59.832194+00	2017-11-06 22:35:09.138275+00	3570	holly	wells	+16784642485								13	f	f	hollywells30534@yahoo.com		new lead	\N	
2016-11-14 16:02:29.099988+00	2016-11-14 16:04:05.021182+00	3571			+19195506410								1	f	f			new lead	\N	
2016-08-17 16:13:54.234126+00	2016-12-09 17:06:53.905794+00	3572			+12154939366								3	f	f			new lead	\N	
2017-10-31 21:15:57.216347+00	2017-10-31 21:25:16.672744+00	3573			+16789978883								13	f	f			new lead	\N	
2017-04-18 16:32:20.174617+00	2017-11-29 18:38:53.214156+00	3574			+18069282146								9	f	f		munos jose     	new lead	\N	
2016-09-07 20:50:35.131915+00	2016-11-09 15:43:50.981615+00	3575			+12062049801								3	f	f			new lead	\N	
2017-09-28 17:30:08.637614+00	2017-09-28 17:38:40.809591+00	3576			+14698316145								12	f	f		robin cassandra	new lead	\N	
2016-09-09 15:10:24.868499+00	2016-12-10 01:05:11.337117+00	3577			+17187270447								3	f	f			new lead	\N	
2017-12-17 00:18:49.07611+00	2017-12-17 00:40:26.036689+00	3578			+18179371078								12	f	f		vazquez angel	new lead	\N	
2017-05-30 17:56:49.122221+00	2017-11-29 18:38:49.814082+00	3579			+12142590445								9	f	f		tx             	new lead	\N	
2017-10-12 17:39:56.042089+00	2017-10-12 17:41:38.551695+00	3580	Allison	Smith	+17069691292								13	f	f	smithdenise977@yahoo.com		new lead	\N	
2016-08-02 01:34:01.271947+00	2016-08-02 13:48:47.128308+00	3581	Walter	Erickson	+16612308400								1	f	f	walerickson1@gmail.com		application submitted - credit union	\N	
2016-08-15 21:13:51.039924+00	2016-12-10 00:55:45.16532+00	3582			+14849956427								3	f	f			new lead	\N	
2017-04-13 22:57:52.318782+00	2017-04-13 23:02:53.4175+00	3583			+12546519197								12	f	f			new lead	\N	
2017-05-02 18:42:32.927722+00	2017-11-29 18:32:01.935538+00	3584			+14145436991								1	f	f			do not contact	\N	
2017-05-08 16:11:05.068745+00	2017-11-29 18:38:49.810294+00	3585			+12146866893								9	f	f		brumbeloe hayes	new lead	\N	
2016-04-01 14:49:28.569241+00	2016-04-21 22:09:51.281964+00	3586	Unknown	Jones	+17732909650								2	f	f	Many@many.co		new lead	\N	
2017-04-27 21:43:30.818196+00	2017-11-29 18:38:49.807201+00	3587			+17325899988								9	f	f		lacroix dolly	new lead	\N	
2016-09-07 15:46:42.018955+00	2016-12-09 17:10:17.413405+00	3588			+16102534055								3	f	f			new lead	\N	
2017-05-16 21:53:55.203873+00	2017-08-17 14:35:21.045227+00	3589			+16828043611								12	f	f		garcia juan	new lead	\N	
2017-04-11 15:48:44.349089+00	2017-11-29 18:38:53.213766+00	3590			+18174953830								9	f	f		william paul	new lead	\N	
2017-06-20 20:48:48.613835+00	2017-08-17 14:35:21.045479+00	3591			+18175007998								12	f	f		mayberry y	new lead	\N	
2017-07-14 15:11:17.584325+00	2017-07-14 15:17:14.657711+00	3592			+16788626987								13	f	f			new lead	\N	
2017-04-07 19:43:44.754515+00	2017-04-07 19:43:44.785878+00	3593	floyd 	brumfield 	+15139471426								1	f	f	brumfieldf12@gmail.com		new lead	\N	
2017-12-18 13:23:26.368189+00	2017-12-18 14:19:58.983151+00	3594	diane	dodd	+17063521522								13	f	f	dianedodd998@gmail.com		select status	\N	
2017-04-10 02:01:26.783567+00	2017-04-10 02:01:36.526746+00	3595			+12146467714								12	f	f		dupree keith	new lead	\N	
2017-05-06 15:59:20.247767+00	2017-11-29 18:38:53.215177+00	3596			+12103038139								9	f	f		pasvigel elisa 	new lead	\N	
2016-08-22 22:36:14.587084+00	2017-11-29 18:31:37.369053+00	3597	RONALD	SUSCA	+16619432708								1	f	f	BLEVERINGOD@YAHOO.COM		application submitted - autopay	\N	
2017-11-01 20:46:58.525937+00	2017-11-01 20:51:29.317835+00	3598	Julian	Walker	+16787245632								13	f	f	Blaze9216mvrley@gmail.Com		new lead	\N	
2017-02-28 15:10:57.467009+00	2017-11-29 18:32:13.82198+00	3599			+12604757534								1	f	f			new lead	\N	
2016-07-26 18:29:24.34953+00	2017-11-29 18:31:14.616461+00	3600			+19204310862								1	f	f			new lead	\N	
2017-03-07 13:45:18.996024+00	2017-11-29 18:31:56.600288+00	3601			+15707353495								1	f	f			new lead	\N	
2016-11-10 02:29:21.135776+00	2016-11-10 02:29:21.162283+00	3602	Nathaniel	White	+16364393136								1	f	f	natslu29@hotmail.com		new lead	\N	
2017-05-11 00:32:00.104814+00	2017-11-29 18:47:25.068446+00	3603			+12542663109								8	f	f		brown fredia   	new lead	\N	
2017-10-13 18:10:51.483623+00	2017-10-13 18:12:31.56533+00	3604	Santonio	Ferrell	+14048096644								13	f	f	Greatdad404@icloud.com		new lead	\N	
2017-12-13 17:04:38.783635+00	2017-12-13 17:06:30.575015+00	3605			+18177241323								12	f	f		ross patrick	new lead	\N	
2016-08-02 00:14:09.320158+00	2016-08-05 12:51:26.912889+00	3606	Alayna	Brett	+17609375565								1	f	f	alayna.parkes-brett@hotmail.com		application submitted - autopay	\N	
2016-11-02 19:26:46.940415+00	2016-11-02 19:30:50.850266+00	3607			+17133848512								1	f	f			new lead	\N	
2017-12-29 16:08:30.073773+00	2017-12-29 16:15:12.259706+00	3608	Nakisha	Knight 	+17063187801								13	f	f	Alwaysforeverhappy15@gmail.com	cell phone   ga	select status	\N	
2016-06-27 14:35:17.131158+00	2017-11-29 18:31:41.490034+00	3609	Isaias	Alarcon	+13127308750								1	f	f			new lead	\N	
2017-10-13 20:11:12.406968+00	2017-11-29 18:31:05.369003+00	3610			+15124524224								1	f	f			new lead	\N	
2017-04-29 15:55:38.038645+00	2017-04-29 16:16:55.455315+00	3611			+16019664674								12	f	f		baaree gloria  	new lead	\N	
2016-08-26 19:01:58.039394+00	2016-12-10 01:05:18.400854+00	3612	Unknown		+17739699892								3	f	f			new lead	\N	
2017-05-12 15:39:30.23009+00	2017-08-17 14:35:21.045183+00	3613			+12148696957								12	f	f		walker bob     	new lead	\N	
2017-12-05 17:40:14.191224+00	2017-12-05 17:40:14.631516+00	3614			+17633254565								15	f	f			new lead	\N	
2017-04-13 22:44:10.705101+00	2017-11-29 18:38:53.21388+00	3615			+12148761534								9	f	f		mitchell henry 	new lead	\N	
2016-12-21 20:10:15.374455+00	2016-12-21 20:41:52.133741+00	3616			+12816282740								1	f	f			new lead	\N	
2017-12-20 14:11:04.392973+00	2017-12-20 14:16:24.239458+00	3617	 Hailey	Solomon	+17702874180								13	f	f	Hmsolomon1@hmail.com	solomon hailey	select status	\N	
2017-05-16 20:05:32.943578+00	2017-11-29 18:38:49.811854+00	3618			+12143856670								9	f	f		premier financi	new lead	\N	
2016-12-06 16:59:34.834975+00	2016-12-06 17:13:05.416459+00	3619			+17048794929								1	f	f			new lead	\N	
2017-12-16 19:30:48.471669+00	2017-12-16 19:36:54.324782+00	3620			+17064996247								13	f	f		morris tina	new lead	\N	
2016-11-07 15:46:32.651987+00	2016-11-07 15:46:32.682727+00	3621	lucas	heck	+14704246172								1	f	f	lauke98@yahoo.com		new lead	\N	
2016-11-02 18:45:08.383941+00	2016-11-02 18:48:27.498534+00	3622			+17702565500								1	f	f			new lead	\N	
2017-05-01 21:23:54.256954+00	2017-11-29 18:38:49.808387+00	3623			+14698373031								9	f	f		dallas  tx	new lead	\N	
2017-11-25 20:35:06.821207+00	2017-11-25 20:53:54.088143+00	3624	TRESSA	CLEGARN	+17065250790								13	f	f		cell phone   ga	select status	\N	
2017-08-26 01:09:57.281735+00	2017-08-26 01:32:20.154505+00	3625			+19036503764								12	f	f		cell phone   tx	new lead	\N	
2016-11-04 17:16:28.837534+00	2016-11-04 17:51:43.736445+00	3626			+12142449978								1	f	f			new lead	\N	
2016-08-10 16:30:02.462056+00	2016-12-09 17:07:47.979185+00	3627			+14164479984								3	f	f			new lead	\N	
2016-08-22 15:56:17.33812+00	2016-12-10 00:55:45.165406+00	3628			+12159907829								3	f	f			new lead	\N	
2017-05-18 20:34:52.542476+00	2017-11-29 18:38:49.812224+00	3629			+18554752729								9	f	f		800 service	new lead	\N	
2017-03-20 20:04:02.740952+00	2017-11-29 18:38:53.212678+00	3630			+15125657701								9	f	f			new lead	\N	
2017-07-28 21:09:03.356343+00	2017-07-28 21:12:48.569712+00	3631	Joseph	Hudgins	+14045280988								13	f	f	Hudginsgscon@gmail.com		new lead	\N	
2017-05-23 15:44:53.484594+00	2017-11-29 18:38:49.812799+00	3632			+12816786020								9	f	f		cell phone   tx	new lead	\N	
2017-05-19 19:43:56.813394+00	2017-11-29 18:38:49.812295+00	3633			+18132609349								9	f	f		bonilla silvest	new lead	\N	
2017-12-05 19:11:14.547822+00	2017-12-05 19:35:23.303605+00	3634			+17862707346								15	f	f			new lead	\N	
2016-11-04 21:38:27.239637+00	2016-11-04 21:50:36.36289+00	3635			+16362908218								1	f	f			new lead	\N	
2017-04-27 21:28:18.015432+00	2017-08-17 14:35:21.045059+00	3636			+12146056687								12	f	f		dallas  tx	new lead	\N	
2016-12-08 15:43:38.672026+00	2016-12-09 17:08:22.273139+00	3637			+16095613090								3	f	f			new lead	\N	
2017-05-17 14:53:09.563836+00	2017-11-29 18:38:49.81194+00	3638			+17137533466								9	f	f		kbr            	new lead	\N	
2017-04-29 22:48:33.023586+00	2017-11-29 18:38:53.214852+00	3639			+13606479007								9	f	f		webb john	new lead	\N	
2017-09-04 18:43:34.16555+00	2017-09-04 18:49:36.510125+00	3640	Raymond	Morrison	+16036615789								13	f	f	ray.morrison78@gmail.com		new lead	\N	
2017-05-11 19:38:17.897004+00	2017-11-29 18:38:49.811161+00	3641			+18025407352								9	f	f		burlington  vt	new lead	\N	
2016-11-01 10:56:01.526915+00	2016-11-01 10:56:01.563597+00	3642	ryan	register	+17047774427								1	f	f	register.blake88@gmail.com		new lead	\N	
2017-10-20 15:11:27.696173+00	2017-10-20 15:12:37.583893+00	3643			+14046860601								13	f	f			new lead	\N	
2017-07-29 16:38:47.950182+00	2017-07-29 16:39:52.105805+00	3644			+17069494617								13	f	f			new lead	\N	
2017-07-18 19:47:36.287842+00	2017-08-17 14:35:21.045623+00	3645			+18177568414								12	f	f		dallas  tx	new lead	\N	
2016-11-10 16:49:52.10377+00	2016-11-10 16:49:52.135522+00	3646	Toya	Embras	+15127539312								1	f	f	toya.embras@gmail.com		new lead	\N	
2017-11-29 20:20:01.975182+00	2017-11-29 20:21:39.598961+00	3647	Austin 	SCOTT	+13035182891								15	f	f	austinrobertscott@gmail.com		new lead	\N	
2017-04-20 20:12:23.686056+00	2017-11-29 18:38:49.806068+00	3648			+12142800129								9	f	f		prince marish	new lead	\N	
2017-10-03 18:06:50.001217+00	2017-10-03 18:07:45.175626+00	3649			+17703691707								13	f	f			new lead	\N	
2016-11-05 19:02:48.540273+00	2016-11-05 19:02:48.56286+00	3650	Jacqueline 	Spencer	+18164011481								1	f	f	jackiespencer19@gmail.com		new lead	\N	
2017-08-11 22:03:25.623149+00	2017-08-11 22:10:47.394749+00	3651	ROBERT	DRUMM	+16789975311								13	f	f	robert.drumm10@gmail.com		new lead	\N	
2017-08-16 21:31:00.867921+00	2017-08-16 21:37:12.369406+00	3653	Walter	Bennett	+17708733763								13	f	f	Walterbennett2972@gmail.com		new lead	\N	
2017-12-07 01:15:10.365765+00	2017-12-07 01:15:10.396069+00	3654	Rodolfo	Witrago	+18175645680								15	f	f	Jrtp68@aol.com		new lead	\N	
2016-07-11 01:08:19.105363+00	2016-07-11 12:10:56.421238+00	3655	curt	albrecht	+16147747165								1	f	f	curtalbrecht88@gmail.com		new lead	\N	
2017-08-17 02:32:53.379066+00	2017-08-17 02:32:53.442517+00	3656	Staci	Lane	+14049573905								13	f	f	Stacilane07@gmail.com		new lead	\N	
2017-10-25 15:31:22.397195+00	2017-10-25 15:33:00.116907+00	3657	Sydney	Bush	+14046988515								13	f	f	trouble431939@gmail.com		new lead	\N	
2017-10-19 14:13:44.774302+00	2017-10-19 14:13:44.774372+00	3658	jerry lamp		+13526303316								1	f	f	jvlamp@gmail.com		new lead	\N	
2017-12-20 17:32:13.290463+00	2017-12-20 17:54:33.789263+00	3659			+18179995335								12	f	f		euless  tx	new lead	\N	
2017-12-15 19:10:24.577347+00	2017-12-15 19:17:48.515022+00	3660	Saulo	Martinez	+19565625399								15	f	f	phenom2ta@sbcglobal.net		new lead	\N	
2016-10-30 03:26:17.795721+00	2016-10-30 03:26:17.831726+00	3661	DELWIN	SIMMS	+12142749009								1	f	f	DELWINSIMMS@YAHOO.COM		new lead	\N	
2016-11-01 23:23:47.078019+00	2016-11-01 23:23:47.099382+00	3662	Cory 	Trahan	+18164467519								1	f	f	mystikalhome99@yahoo.com		new lead	\N	
2017-05-01 19:40:03.702136+00	2017-11-29 18:38:53.21488+00	3663			+14697090550								9	f	f		roberts eyen	new lead	\N	
2018-03-08 19:36:35.140346+00	2018-03-08 19:36:35.363558+00	3664	tets	test	+1test		test		tsets	test	tset		4	f	f	test@test.com				
2016-09-03 17:29:10.961869+00	2016-12-10 01:01:00.19993+00	3665			+16197219978								3	f	f			new lead	\N	
2016-07-29 19:30:08.454159+00	2017-11-29 18:31:10.261796+00	3666			+14136958757								1	f	f			do not contact	\N	
2017-12-02 17:42:42.845629+00	2017-12-02 17:56:21.336553+00	3667			+14076142191								15	f	f			new lead	\N	
2017-12-16 00:40:13.910955+00	2017-12-16 17:33:08.916345+00	3668	Sara	Bryson	+17063513862								13	f	f	sarabryson1983@gmail.com		select status	\N	
2017-11-14 17:37:34.199002+00	2017-11-14 17:39:24.146434+00	3669			+12149239408								12	f	f		ripley jason	new lead	\N	
2017-07-15 21:23:41.758709+00	2017-07-15 21:24:25.297179+00	3670	Holly	Davis	+17069731012								13	f	f	SapphireAngel412@gmail.com		new lead	\N	
2016-10-21 15:14:15.18906+00	2016-12-10 01:04:28.706435+00	3671			+19512588798								3	f	f			new lead	\N	
2016-11-02 15:27:45.070471+00	2016-11-02 15:35:08.127221+00	3672			+17047759337								1	f	f			new lead	\N	
2017-11-06 18:21:05.628065+00	2017-11-06 18:22:25.652088+00	3673	Cindi	Walker	+14709555213								13	f	f	shortstuff5051@yahoo.com		new lead	\N	
2016-10-12 13:37:43.557138+00	2016-11-09 15:46:59.235387+00	3674			+13022397774								3	f	f			new lead	\N	
2017-10-13 21:48:17.998176+00	2017-10-13 21:49:16.690254+00	3675	Shaquitta 	Fulton 	+17064246712								13	f	f	bosslaydi26@gmail.com		new lead	\N	
2016-11-01 18:51:58.511082+00	2016-11-01 19:32:04.220735+00	3676			+17048277649								1	f	f			new lead	\N	
2016-12-01 14:32:19.924788+00	2017-11-29 18:32:13.821973+00	3677			+12166442191								1	f	f			new lead	\N	
2017-05-12 18:49:55.092648+00	2017-11-29 18:38:49.811352+00	3678			+15055772223								9	f	f		cell phone   nm	new lead	\N	
2017-08-22 05:35:00.797259+00	2017-08-22 05:35:00.859671+00	3679	Rachelle 	Vaughan 	+16788583510								13	f	f	Ray_bad@yahoo.com		new lead	\N	
2017-10-23 18:39:29.501691+00	2017-10-23 18:45:12.215557+00	3680	Jacob	Orr	+16782340526								13	f	f	Gregorycharlesorr@gmail.com		new lead	\N	
2017-11-16 14:31:52.121478+00	2017-11-16 14:32:43.964774+00	3681	Mariah	Price	+17062865952								13	f	f	annpricr21@icloud.com		new lead	\N	
2017-03-24 00:44:36.052006+00	2017-11-29 18:38:53.212902+00	3682			+12107883318								9	f	f		angel rabago	new lead	\N	
2017-10-14 16:55:16.816714+00	2017-10-14 17:01:00.893767+00	3683	William	Rotton	+17703774758								13	f	f	Btk33@hotmail.com		new lead	\N	
2017-05-26 18:41:47.379049+00	2017-11-29 18:38:49.813685+00	3684			+14699200031								9	f	f		estes antonio	new lead	\N	
2016-09-07 14:21:47.237411+00	2016-12-09 17:10:17.413398+00	3685			+19086195568								3	f	f			new lead	\N	
2017-07-25 17:41:37.882572+00	2017-08-17 14:35:21.045659+00	3686			+18173238203								12	f	f		brandon welch	new lead	\N	
2016-09-20 18:10:26.066083+00	2016-12-09 17:06:53.905956+00	3687			+12154932483								3	f	f			new lead	\N	
2016-09-06 20:16:05.778438+00	2016-12-09 17:06:53.905864+00	3688			+12156966682								3	f	f			new lead	\N	
2016-08-24 13:05:30.273355+00	2016-12-09 17:10:17.413103+00	3689			+14846765521								3	f	f			new lead	\N	
2017-06-24 18:39:35.530013+00	2017-06-24 18:45:57.738056+00	3690			+16786930172								13	f	f			new lead	\N	
2017-05-11 19:11:27.585394+00	2017-11-29 18:38:49.811139+00	3691			+12017555432								9	f	f		rowe md paul   	new lead	\N	
2017-03-15 20:26:51.451511+00	2017-11-29 18:31:18.808926+00	3692			+17022097844								1	f	f			new lead	\N	
2017-05-10 18:43:44.516439+00	2017-11-29 18:38:49.810853+00	3693			+19732400205								9	f	f		halen brands	new lead	\N	
2017-04-19 16:59:45.887293+00	2017-11-29 18:38:53.214255+00	3694			+12146341500								9	f	f		ben e keith bee	new lead	\N	
2017-11-15 19:18:45.361658+00	2017-11-15 19:26:15.551295+00	3695	James	Powell	+17702947377								13	f	f	ashley.snotrucking@yahoo.com		select status	\N	
2017-06-30 22:31:49.138231+00	2017-06-30 22:36:08.534674+00	3696			+14787334616								13	f	f			new lead	\N	
2017-11-16 21:39:05.078108+00	2017-11-17 17:57:25.894468+00	3697	Tina	holder	+17066128918								13	f	f	tinaholder2003@gmail.com		select status	\N	
2017-11-30 20:37:17.040372+00	2017-11-30 20:39:01.964818+00	3698			+16788978161								13	f	f		cell phone   ga	new lead	\N	
2016-09-27 16:21:51.936805+00	2017-02-11 20:02:12.400307+00	3699			+16103576138								3	f	f			new lead	\N	
2017-12-26 21:06:00.641922+00	2017-12-26 21:07:51.103838+00	3700			+16822215466								12	f	f		bjones streetri	new lead	\N	
2017-05-08 15:30:50.723248+00	2017-11-29 18:38:53.215348+00	3701			+13037188174								9	f	f		dill renae     	new lead	\N	
2016-10-05 21:25:41.722668+00	2016-12-09 17:10:17.413563+00	3702			+19732869611								3	f	f			new lead	\N	
2016-12-02 23:14:42.568473+00	2016-12-02 23:14:42.596822+00	3703	William	Stern	+12812654851								1	f	f	wjstern@windstream.net		new lead	\N	
2016-06-30 16:06:56.024586+00	2016-06-30 18:06:08.496227+00	3704	MARGARET BETH	HURLEY	+16143908212								1	f	f	HURLEY.42@OSU.EDU		new lead	\N	
2017-05-08 19:03:13.050682+00	2017-11-29 18:38:53.215391+00	3705			+16312654000								9	f	f		credit solution	new lead	\N	
2017-10-24 21:45:55.428771+00	2017-10-24 21:48:11.313295+00	3706			+18303251538								12	f	f		san antonio  tx	new lead	\N	
2016-10-06 15:02:30.986353+00	2016-12-10 01:01:00.20035+00	3707			+16195185993								3	f	f			new lead	\N	
2016-11-04 19:20:45.501046+00	2016-11-04 19:34:16.336065+00	3708			+13145226529								1	f	f			new lead	\N	
2016-11-03 19:34:41.15971+00	2016-11-03 19:34:41.184076+00	3709	katie	cook	+17704800333								1	f	f	bcook1223@gmail.com		new lead	\N	
2016-08-09 18:24:00.118766+00	2016-12-10 00:55:45.165212+00	3710			+12152555410								3	f	f			new lead	\N	
2017-06-08 19:29:41.438776+00	2017-06-08 19:29:51.959742+00	3711			+19702016356								1	f	f			new lead	\N	
2017-03-28 17:43:19.439687+00	2017-11-29 18:32:13.82199+00	3712			+13307579080								1	f	f			general interest	\N	
2017-12-04 01:09:47.673853+00	2017-12-04 01:11:08.44434+00	3713	Kimberly	Thompson	+13053042872								15	f	f	mohtmik@yahoo.com		new lead	\N	
2017-12-19 21:13:28.978641+00	2017-12-19 21:21:13.415941+00	3714			+14699717799								12	f	f		kenyette king	new lead	\N	
2017-06-30 16:38:01.479755+00	2017-06-30 16:48:58.860364+00	3715			+14049404890								13	f	f			new lead	\N	
2017-12-23 14:18:52.709887+00	2017-12-23 14:24:41.087475+00	3716	Dimarcus	Curry	+17065401874								13	f	f	collegepark96@gmail.com		select status	\N	
2016-11-03 15:48:08.912775+00	2016-11-03 15:48:08.937527+00	3717	Amber	Palacios	+12816029858								1	f	f	AmberLPalacios@ymail.com		new lead	\N	
2017-12-12 16:18:06.510188+00	2017-12-12 16:29:45.243315+00	3718	sterling	wooldridge	+15754911471								15	f	f	store@partnernet.com		new lead	\N	
2016-10-05 20:16:15.589463+00	2016-11-09 15:46:59.235341+00	3719			+13126468400								3	f	f			new lead	\N	
2017-05-22 19:30:13.407529+00	2017-11-29 18:38:49.812686+00	3720			+19038708703								9	f	f		four feathers a	new lead	\N	
2016-12-01 17:04:47.014225+00	2016-12-10 01:01:00.200628+00	3721			+16194450349								3	f	f			new lead	\N	
2017-12-02 20:08:04.028403+00	2017-12-02 20:25:11.021297+00	3722	Steven P	DesRoches	+13125195350								15	f	f	spdesroches56@gmail.com		new lead	\N	
2017-05-03 20:29:45.569184+00	2017-05-03 20:31:31.012493+00	3723			+14058332695								12	f	f		cell phone   ok	new lead	\N	
2016-07-26 18:24:33.869611+00	2016-12-09 17:06:53.905744+00	3724			+13024529836								3	f	f			new lead	\N	
2017-05-05 18:49:52.101105+00	2017-11-29 18:38:49.810073+00	3725			+19724785200								9	f	f		state of tx dmv	new lead	\N	
2017-01-07 20:24:02.149878+00	2017-02-08 14:11:45.192502+00	3726	Chie Woong	Ha	+14697748655								1	f	f	twomoments@hanmail.net		application submitted - autopay	\N	
2017-05-13 15:01:39.676709+00	2017-11-29 18:38:49.811444+00	3727			+18177061390								9	f	f		john shue      	new lead	\N	
2017-05-01 20:23:31.911231+00	2017-11-29 18:38:53.214895+00	3728			+19095920123								9	f	f		san dimas    ca	new lead	\N	
2017-08-08 18:20:45.512967+00	2017-08-08 18:24:06.29687+00	3729	Shawna	Morgan	+17063042714								13	f	f	katie.morgan0207@gmail.com		new lead	\N	
2017-11-18 20:04:57.51763+00	2017-11-18 20:08:47.33833+00	3730	Travis	Terrell	+17065726960								13	f	f	travispatricia7@gmail.com		new lead	\N	
2016-11-18 23:06:15.810966+00	2017-11-29 18:31:56.600239+00	3731			+15707357316								1	f	f			new lead	\N	
2017-04-13 17:21:59.086335+00	2017-11-29 18:38:49.804808+00	3732			+19175587251								9	f	f		white simone   	new lead	\N	
2017-08-17 15:04:44.078989+00	2017-08-17 15:05:36.077512+00	3733	Knesha	Thomas	+17063512586								13	f	f	neshathomas825@gmail.com		new lead	\N	
2017-12-11 15:34:42.018798+00	2017-12-11 15:36:53.933679+00	3734			+16782708276								13	f	f		kevin thomas	select status	\N	
2016-08-05 00:21:13.621631+00	2016-08-16 19:29:55.405347+00	3735	Steven 	Puzio	+16613495232								1	f	f	Sbplaya19@icloud.com		application submitted - autopay	\N	
2017-08-17 22:08:55.170646+00	2017-08-17 22:16:01.79526+00	3736			+14322888145								12	f	f		andrade jose	new lead	\N	
2016-07-05 16:59:51.226984+00	2017-11-29 18:32:13.82131+00	3737	Dan 	Petrello	+13305074822								1	f	f	dan9919@neo.rr.com		new lead	\N	
2017-05-16 14:51:40.382946+00	2017-11-29 18:38:49.811678+00	3738			+18646537949								9	f	f		golds gym of cl	new lead	\N	
2016-08-13 19:51:37.104607+00	2016-08-15 12:15:41.589285+00	3739	peter	montcalm	+19206387044								1	f	f	petemontcalm@sbcglobal.net		application submitted - autopay	\N	
2016-06-27 15:48:21.185136+00	2017-11-29 18:31:41.490005+00	3740	Unknown		+17404092393								1	f	f			new lead	\N	
2016-08-02 20:26:20.022681+00	2017-11-29 18:31:37.368439+00	3741	Ronald	Rosselli	+16612729791								1	f	f	NA@noemail.com		application submitted - autopay	\N	
2016-08-24 14:44:56.829398+00	2016-12-10 00:55:45.164841+00	3742	Unknown		+17732909650								3	f	f			new lead	\N	
2017-04-01 00:35:48.88454+00	2017-11-29 18:47:25.06794+00	3743			+12145461628								8	f	f		contreras esmer	new lead	\N	
2016-10-10 19:56:40.343913+00	2016-10-10 19:57:36.878418+00	3744			+14199577575								1	f	f			new lead	\N	
2016-09-30 23:13:10.324558+00	2016-12-10 01:04:42.413818+00	3745			+13233696350								3	f	f			new lead	\N	
2017-10-25 11:44:53.369294+00	2017-10-25 14:59:10.760027+00	3746	Fredrico	Purnell	+17067137314								13	f	f	Purnell.rico52@gmail.com		select status	\N	
2016-05-25 16:33:29.040002+00	2017-11-29 18:32:01.935472+00	3747	Unknown		+14196512795								1	f	f			new lead	\N	
2017-07-21 16:06:44.511815+00	2017-11-29 18:32:13.82205+00	3748			+13303851337								1	f	f			new lead	\N	
2017-05-30 23:42:50.135232+00	2017-11-29 18:38:49.814175+00	3749			+14694046707								9	f	f		cell phone   tx	new lead	\N	
2017-03-14 13:53:07.804447+00	2017-03-14 13:53:38.542902+00	3750			+18037797300								10	f	f			new lead	\N	
2017-04-29 21:44:05.803632+00	2017-11-29 18:38:53.214845+00	3751			+16209625289								9	f	f		drouhard sam	new lead	\N	
2017-07-30 16:21:05.486497+00	2017-07-30 16:21:23.289572+00	3752			+12145274485								12	f	f		tieman kay	new lead	\N	
2016-06-03 15:52:36.377055+00	2017-11-29 18:31:10.260985+00	3753	Marbeth	Carmack	+15139482141								1	f	f			new lead	\N	
2017-12-18 23:26:35.13391+00	2017-12-18 23:29:52.752483+00	3754			+17062002674								13	f	f		roswell  ga	new lead	\N	
2016-11-14 21:12:58.148988+00	2016-11-14 21:12:58.171298+00	3755	Dharanidhar	Bapathu	+17329832493								1	f	f	ddr_905@hotmail.com		new lead	\N	
2017-04-26 23:14:33.452137+00	2017-11-29 18:38:49.806851+00	3756			+12145334286								9	f	f		courtney kevin 	new lead	\N	
2017-03-15 13:28:15.787674+00	2017-11-29 18:38:53.212332+00	3757			+13193896035								9	f	f		herder sean    	new lead	\N	
2017-12-06 17:53:47.483192+00	2017-12-06 17:53:52.383973+00	3758			+18032131488								10	f	f			new lead	\N	
2016-09-11 22:20:24.99891+00	2017-11-29 18:31:56.600189+00	3759			+15706750737								1	f	f			new lead	\N	
2017-08-25 16:34:09.789961+00	2017-08-25 16:37:06.897816+00	3760			+14702482069								13	f	f			new lead	\N	
2017-11-11 16:31:09.513669+00	2017-11-11 16:33:31.814189+00	3761			+19032618345								12	f	f		longview  tx	new lead	\N	
2017-12-09 21:16:38.345925+00	2017-12-09 21:20:13.767927+00	3762			+13053436771								15	f	f			new lead	\N	
2017-08-08 03:20:07.378134+00	2017-11-29 18:47:25.068601+00	3763			+19162568700								8	f	f		lewis thurman	new lead	\N	
2017-12-12 15:00:10.923483+00	2017-12-12 15:00:51.029076+00	3764			+17065258865								13	f	f		cell phone   ga	new lead	\N	
2016-12-05 20:49:39.426609+00	2016-12-05 20:52:58.080358+00	3765			+16026921377								1	f	f			new lead	\N	
2017-07-20 12:56:38.677229+00	2017-07-20 13:02:21.500507+00	3766			+16789898526								13	f	f			new lead	\N	
2017-11-28 16:26:13.022794+00	2017-11-28 16:32:38.009401+00	3767			+17707666368								13	f	f		atlanta  ga	new lead	\N	
2016-11-02 21:45:14.142085+00	2016-11-02 21:48:04.857108+00	3768			+17706854634								1	f	f			new lead	\N	
2017-12-01 19:16:39.728203+00	2017-12-01 19:18:56.355825+00	3769			+18172109624								12	f	f		williams aljie	new lead	\N	
2016-06-28 16:35:44.905979+00	2016-06-28 17:38:29.38247+00	3770	CATHY	EWING	+13302408056								1	f	f	cewing@rothbros.com		new lead	\N	
2016-11-09 14:14:02.343386+00	2016-11-09 14:23:39.440511+00	3771			+18162772949								1	f	f			new lead	\N	
2016-08-10 13:59:09.703474+00	2017-11-29 18:32:13.821714+00	3772	Lisa 	Genias	+13303440583								1	f	f			general interest	\N	
2016-09-07 18:24:35.33396+00	2016-09-07 18:56:15.403471+00	3773	emily	simmons	+12164090260								1	f	f	eacsimmons@gmail.com		application submitted - autopay	\N	
2016-12-07 15:43:42.876782+00	2016-12-07 16:18:31.84516+00	3774			+16786603401								1	f	f			new lead	\N	
2017-04-12 17:14:32.04584+00	2017-11-29 18:47:25.06801+00	3775			+16824722167								8	f	f		selvera beth	new lead	\N	
2017-04-14 18:16:13.437827+00	2017-11-29 18:47:25.068038+00	3776			+18177098495								8	f	f			new lead	\N	
2017-04-06 21:24:45.77229+00	2017-08-17 14:35:21.044959+00	3777			+19096649000								12	f	f		american honda	new lead	\N	
2017-05-23 16:33:22.864841+00	2017-11-29 18:38:49.812813+00	3778			+14692307020								9	f	f		martinez domini	new lead	\N	
2017-04-05 16:40:12.70685+00	2017-11-29 18:38:53.213338+00	3779			+18324748477								9	f	f		mcfarlin reece 	new lead	\N	
2017-12-22 20:36:08.864012+00	2017-12-22 21:14:03.489687+00	3780	Quinten	Bullock	+17062546652								13	f	f	qmbullock@gmail.com		select status	\N	
2017-06-18 18:22:36.183943+00	2017-06-18 18:22:51.382801+00	3917			+16622427155								13	f	f			new lead	\N	
2017-12-15 21:57:44.062651+00	2017-12-15 22:16:34.219012+00	3781	Brad 	Boren	+19036906263								15	f	f	dambreaker0@gmail.com		new lead	\N	
2017-12-19 20:41:38.970876+00	2017-12-19 21:11:44.219407+00	3782	PJ	HUGGINS	+16787252110								13	f	f		cell phone   ga	select status	\N	
2016-08-02 21:43:27.516545+00	2017-11-29 18:31:37.368483+00	3783	Raquel	Sheldon	+18186202142								1	f	f	Ofcrsheldon@aol.com		application submitted - autopay	\N	
2016-11-20 16:53:49.505083+00	2016-11-20 16:53:49.530585+00	3784	SANDRA	HAIRELL	+17134432346								1	f	f	sandra.hairell@yahoo.com		new lead	\N	
2017-04-17 19:45:06.447039+00	2017-11-29 18:47:25.068087+00	3785			+19039526225								8	f	f		kay andre	new lead	\N	
2016-08-05 21:06:49.052612+00	2017-11-29 18:31:37.368718+00	3786	Francisco	Sandoval Jr	+16618398413								1	f	f	fsnum2@gmail.com		application submitted - credit union	\N	
2016-06-29 17:17:58.303998+00	2017-11-29 18:32:13.820942+00	3787	Unknown	Cornelius	+17082147776								1	f	f	NA@noemail.com		new lead	\N	
2016-07-29 14:57:30.529464+00	2017-11-29 18:32:13.821466+00	3788	Christina	Binius	+13302243021								1	f	f	cbinius29@yahoo.com		new lead	\N	
2017-04-17 17:33:30.64053+00	2017-11-29 18:47:25.06808+00	3789			+12145544292								8	f	f		moore winifred 	new lead	\N	
2017-07-22 12:11:29.468234+00	2017-07-22 12:11:36.298576+00	3790			+16782279450								13	f	f			new lead	\N	
2017-11-15 21:21:03.639774+00	2017-11-15 21:21:03.801331+00	3791			+18174958621								12	f	f		whitaker mya	new lead	\N	
2016-10-03 20:26:54.240258+00	2016-12-10 01:04:28.706392+00	3792			+19095870316								3	f	f			new lead	\N	
2016-11-05 01:09:44.165801+00	2016-11-05 01:09:44.200035+00	3793	aaron	bennett	+19405978545								1	f	f	aaron3113@live.com		new lead	\N	
2017-03-16 17:33:58.915636+00	2017-11-29 18:38:53.21246+00	3794			+12148610451								9	f	f		urango michael 	new lead	\N	
2017-11-16 22:41:10.293699+00	2017-11-16 22:42:28.686775+00	3795			+18179863657								12	f	f		martinez maria	new lead	\N	
2017-03-09 17:30:57.746468+00	2017-11-29 18:47:25.067658+00	3796			+18179051430								8	f	f		pham hung	new lead	\N	
2016-11-30 13:27:26.10466+00	2016-12-10 01:02:30.610684+00	3797			+18148612748								3	f	f			new lead	\N	
2017-04-19 17:17:05.187842+00	2017-11-29 18:38:49.805732+00	3798			+17144762543								9	f	f		rodrigo luchett	new lead	\N	
2017-10-13 19:00:42.352665+00	2017-10-13 19:02:02.115978+00	3799			+16823860117								12	f	f		rogers donnelle	new lead	\N	
2017-12-19 15:25:04.576376+00	2017-12-19 15:25:44.147597+00	3800	Andrew 	Thompson 	+17062978753								13	f	f	Andrewthompson978@gmail.com	norcross  ga	select status	\N	
2017-12-08 17:53:35.099561+00	2017-12-08 18:04:20.708999+00	3802			+18476526126								15	f	f			new lead	\N	
2017-11-17 18:00:01.293883+00	2017-11-17 18:04:38.82801+00	3803			+17063805466								13	f	f			new lead	\N	
2018-05-02 20:55:12.949462+00	2018-05-02 20:55:13.16189+00	3804	test	test	+1234567890		aasdf		TestCity	ST	asdf		4	f	f	test@test.com				
2016-11-04 18:56:15.52527+00	2016-11-04 19:11:42.360032+00	3805			+18176416766								1	f	f			new lead	\N	
2017-05-01 18:03:24.525188+00	2017-11-29 18:38:49.808073+00	3806			+14696019553								9	f	f		cell phone   tx	new lead	\N	
2017-12-15 21:36:58.163093+00	2017-12-15 21:44:08.664881+00	3807			+13184239889								12	f	f		cell phone   la	new lead	\N	
2017-04-17 19:43:25.218892+00	2017-11-29 18:38:53.214093+00	3808			+18174302256								9	f	f		staton anneva	new lead	\N	
2017-04-17 20:11:35.559211+00	2017-11-29 18:38:49.805283+00	3809			+18176851267								9	f	f		scherff brad   	new lead	\N	
2017-03-10 18:34:35.653796+00	2017-11-29 18:38:53.212025+00	3810			+19547724005								9	f	f		kapner michelle	new lead	\N	
2016-11-09 18:12:04.865828+00	2016-12-10 00:59:34.177849+00	3811			+15402507428								3	f	f			new lead	\N	
2016-08-17 14:01:02.630418+00	2016-12-10 00:55:45.165356+00	3812			+13178601200								3	f	f			new lead	\N	
2017-03-17 21:08:40.273253+00	2017-11-29 18:47:25.067806+00	3813			+14698535529								8	f	f		leon davenport	new lead	\N	
2017-09-05 20:00:20.452019+00	2017-09-05 20:01:57.32855+00	3814			+16824148871								12	f	f		dallas  tx	new lead	\N	
2017-04-21 19:12:07.007503+00	2017-11-29 18:38:53.21439+00	3815			+15015809956								9	f	f		zimmerman john	new lead	\N	
2017-05-17 14:47:56.230987+00	2017-05-17 14:47:56.27135+00	3816	591c6256df442	591c6256df484	+1								1	f	f	uipangie@gmail.com		new lead	\N	
2016-11-11 03:33:33.881859+00	2016-11-11 03:33:33.912355+00	3817	Cherie	Wagner	+14803169511								1	f	f	cherries188@yahoo.com		new lead	\N	
2017-12-20 20:27:23.207572+00	2017-12-20 20:34:28.972674+00	3818	Jermaine 	Bess	+16784646322								13	f	f	Bessjermaine@yahoo.com		select status	\N	
2017-12-06 16:57:04.16364+00	2017-12-06 17:03:03.197872+00	3819	Abrasha	Oliphant	+18037614553								13	f	f	Oliphantabrasha@yahoo.com		new lead	\N	
2017-04-16 13:50:33.56685+00	2017-11-29 18:38:53.21405+00	3820			+13166315083								9	f	f		terry cannon	new lead	\N	
2017-11-14 20:57:38.311858+00	2017-11-14 21:01:34.04057+00	3821	Kimberlin	Deeb	+17702993592								13	f	f	kimberlindeeb2017@gmail.com		select status	\N	
2017-09-13 18:32:00.570382+00	2017-09-13 18:35:44.295813+00	3822			+16822039384								12	f	f		landry lizzie	new lead	\N	
2016-08-15 18:36:58.408476+00	2016-08-15 18:49:06.218997+00	3823	Sonia	Bauer	+15136301055								1	f	f	jackandsonia@msn.com		application submitted - credit union	\N	
2016-11-02 20:51:08.682928+00	2016-11-02 21:05:50.824376+00	3824			+19032163786								1	f	f			new lead	\N	
2017-06-02 16:06:36.335789+00	2017-08-17 14:35:21.04542+00	3825			+18176579481								12	f	f		fort worth  tx	new lead	\N	
2016-10-11 18:54:25.939857+00	2016-12-10 01:04:28.706428+00	3826			+19092840296								3	f	f			new lead	\N	
2016-02-02 02:46:03.892854+00	2016-02-02 03:03:30.423486+00	3827	Piet Pompies		+15712799579								1	f	f			new lead	\N	
2016-10-24 19:44:33.244074+00	2016-10-24 19:44:39.362083+00	3828			+17035438003								1	f	f			new lead	\N	
2016-11-01 13:42:18.206628+00	2016-11-01 14:11:17.473828+00	3829			+19198342175								1	f	f			new lead	\N	
2017-04-18 22:48:37.925444+00	2017-11-29 18:38:49.805646+00	3830			+12144367508								9	f	f		dallas  tx	new lead	\N	
2016-11-02 15:43:32.985398+00	2016-11-02 16:04:18.962351+00	3831			+16787615333								1	f	f			new lead	\N	
2017-04-22 15:43:00.616934+00	2017-11-29 18:38:53.214419+00	3832			+18322935851								9	f	f		nguyen tai     	new lead	\N	
2017-09-02 13:14:39.799149+00	2017-09-02 13:20:11.022237+00	3833	Jkiesha 	Elder	+16786986220								13	f	f	Witnessmissy00@aol.com		new lead	\N	
2016-11-25 20:18:26.659104+00	2016-11-25 20:18:26.687048+00	3834	Kristina	Phelps	+14045094465								1	f	f	davidandjoy@comcast.net		new lead	\N	
2016-08-10 14:55:51.051813+00	2016-12-09 17:06:53.90578+00	3835			+12156328595								3	f	f			new lead	\N	
2017-06-30 01:30:02.802619+00	2017-06-30 01:30:02.883777+00	3836	Andros	King	+16783824561								13	f	f	androsllking@gmail.com		new lead	\N	
2017-08-02 23:11:41.867473+00	2017-08-17 14:35:21.045702+00	3837			+18174485776								12	f	f		hernandez jose	new lead	\N	
2017-08-02 21:32:18.220355+00	2017-08-02 21:37:58.002488+00	3838	Anthony	Clark	+16789084940								13	f	f	trent387@gmail.com		new lead	\N	
2017-11-11 13:05:51.875933+00	2017-11-11 13:05:51.93954+00	3839	Sheena	Hayman	+17063417123								13	f	f	sheenahay2015@gmail.com		new lead	\N	
2016-08-09 16:55:47.065808+00	2017-11-29 18:31:10.261439+00	3840	Michael	Moore	+15134414136								1	f	f			do not contact	\N	
2017-07-30 16:11:49.177384+00	2017-07-30 16:12:20.834921+00	3841			+17703147752								6	f	f			new lead	\N	
2017-06-01 18:04:27.947982+00	2017-11-29 18:38:49.814403+00	3842			+17138220288								9	f	f		jimenez santiag	new lead	\N	
2016-10-11 20:59:53.16956+00	2016-12-20 22:16:06.426529+00	3843			+19168010826								3	f	f			new lead	\N	
2017-07-26 17:38:06.073079+00	2017-08-17 14:35:21.045666+00	3844			+16822467939								12	f	f		jarvis sonya	new lead	\N	
2017-08-23 17:17:54.698855+00	2017-08-23 17:24:10.857191+00	3845			+18177142085								12	f	f		beblowski carl	new lead	\N	
2017-05-05 15:51:49.747173+00	2017-11-29 18:38:53.215135+00	3846			+1811111111								9	f	f			new lead	\N	
2016-09-17 16:03:53.614711+00	2016-12-09 17:06:53.905935+00	3847			+12674710830								3	f	f			new lead	\N	
2016-11-02 18:17:08.376823+00	2016-11-02 18:43:49.695988+00	3848			+19088873443								1	f	f			new lead	\N	
2017-12-17 19:50:44.54659+00	2017-12-18 14:03:47.235235+00	3849	christy	pressley	+17063084072								13	f	f	christypressley121574@gmail.com		select status	\N	
2017-08-23 14:21:47.628231+00	2017-08-23 14:24:42.555606+00	3850			+18176966619								12	f	f		garza martha	new lead	\N	
2017-03-31 19:52:38.695697+00	2017-11-29 18:38:53.213206+00	3851			+19034982433								9	f	f		kemp tx	new lead	\N	
2016-11-02 18:41:34.249099+00	2016-11-02 18:48:48.602986+00	3852			+18177331570								1	f	f			new lead	\N	
2017-05-05 16:02:18.500051+00	2017-11-29 18:38:49.809896+00	3853			+12145227461								9	f	f		john ridings lee	new lead	\N	
2016-07-28 15:27:58.705608+00	2017-11-29 18:31:10.261711+00	3854	Carmen	Woody	+15133743199								1	f	f	woodycin@yahoo.com		new lead	\N	
2017-12-23 17:32:17.477705+00	2017-12-23 17:44:20.739772+00	3855	KREG	Johnson	+12144026354								15	f	f	kreg_johnson@hotmail.com		new lead	\N	
2017-12-21 23:47:33.622706+00	2017-12-22 00:15:41.663228+00	3856			+18324908941								15	f	f			new lead	\N	
2017-04-14 18:01:58.097077+00	2017-11-29 18:38:53.21393+00	3857			+18172477740								9	f	f		thornton t     	new lead	\N	
2017-07-01 00:30:17.764722+00	2017-07-01 00:30:17.816018+00	3858	Charra	Kilgore	+14702818489								13	f	f	cak671@yahoo.com		new lead	\N	
2017-03-25 16:16:56.550079+00	2017-11-29 18:38:53.21293+00	3859			+13375467977								9	f	f		frye triston   	new lead	\N	
2016-10-05 15:03:14.464709+00	2016-11-09 15:46:59.235319+00	3860			+13028982266								3	f	f			new lead	\N	
2016-05-24 15:02:17.950546+00	2017-11-29 18:32:10.406393+00	3861	Unknown		+16103775348								1	f	f			new lead	\N	
2017-08-26 15:31:25.172787+00	2017-08-26 15:38:04.125683+00	3862			+16822219682								12	f	f		alston ashle	new lead	\N	
2016-09-21 14:57:09.296493+00	2016-12-09 17:10:17.41347+00	3863			+19082317000								3	f	f			new lead	\N	
2016-07-17 17:41:28.481313+00	2016-07-18 12:45:50.949965+00	3864	Serena	Risner	+13303606915								1	f	f	Stressedout_always@yahoo.com		new lead	\N	
2016-10-11 14:21:32.679077+00	2016-11-09 15:46:59.235354+00	3865			+16104701086								3	f	f			new lead	\N	
2016-06-25 20:25:58.071691+00	2016-06-27 12:25:41.615976+00	3866	Amanda	Nichols	+18144107135								1	f	f	amm9622@gmail.com		new lead	\N	
2017-04-19 20:39:09.205503+00	2017-04-19 21:01:36.428472+00	3867			+12142288253								12	f	f		ewing kristin  	new lead	\N	
2017-04-12 18:01:33.336051+00	2017-11-29 18:38:49.804592+00	3868			+14012138082								9	f	f		service	new lead	\N	
2016-09-29 14:52:30.371125+00	2016-12-09 17:08:31.90882+00	3869			+17708807847								3	f	f			new lead	\N	
2017-03-09 18:15:51.813713+00	2017-11-29 18:47:25.067672+00	3870			+18185963818								8	f	f		canoga park  ca	new lead	\N	
2016-11-01 00:15:32.710532+00	2016-11-01 00:27:55.188281+00	3871			+19195381985								1	f	f			new lead	\N	
2017-12-29 22:11:55.080391+00	2017-12-29 22:41:52.651973+00	3872			+17087852826								15	f	f			new lead	\N	
2016-08-21 18:47:34.138548+00	2017-11-29 18:31:05.368924+00	3873	frankie	spencer	+19372707399								1	f	f	fspencer23.fs@gmail.com		application submitted - autopay	\N	
2017-12-08 18:05:33.605255+00	2017-12-08 18:23:36.396644+00	3874	la	WAWM	+12142568400								15	f	f	lawawm@gmail.com		new lead	\N	
2017-04-18 15:10:03.161507+00	2017-11-29 18:38:49.805413+00	3875			+19048856239								9	f	f		olga nekrasoya	new lead	\N	
2016-11-01 23:35:25.136409+00	2016-11-01 23:35:25.162613+00	3876	mark	maness	+18177149526								1	f	f	marksmaness@gmail.com		new lead	\N	
2016-11-03 16:26:47.193358+00	2016-11-03 16:30:54.037831+00	3877			+19369336236								1	f	f			new lead	\N	
2017-05-12 15:07:46.420562+00	2017-11-29 18:38:49.811258+00	3878			+14193043212								9	f	f		lewis jeromy r 	new lead	\N	
2017-03-13 16:47:56.543288+00	2017-11-29 18:38:53.212104+00	3879			+14322519661								9	f	f		allen eddy     	new lead	\N	
2017-12-14 20:22:18.931096+00	2017-12-14 20:34:02.280423+00	3880			+14405362066								15	f	f			new lead	\N	
2016-08-23 21:52:09.652397+00	2017-11-29 18:31:05.368931+00	3881			+19372637132								1	f	f			general interest	\N	
2016-11-11 18:37:26.165581+00	2016-11-11 18:39:37.057457+00	3882			+19369319410								1	f	f			new lead	\N	
2017-08-03 21:22:05.425051+00	2017-08-03 21:30:25.591605+00	3883	Corey	Kidd	+18643970636								13	f	f	cmk198531@gmail.com		new lead	\N	
2016-08-08 13:42:50.165717+00	2016-12-10 01:01:54.351654+00	3884			+17607058888								3	f	f			new lead	\N	
2016-11-03 03:57:32.390013+00	2016-11-03 03:57:32.419494+00	3885	Cory	Simpson	+18327362766								1	f	f	cory.simpson@gmail.com		new lead	\N	
2017-11-28 17:28:11.101447+00	2017-11-28 17:29:41.046516+00	3886	Carley	Loner	+14704183876								13	f	f	Smilerainorshine00@gmail.com		select status	\N	
2017-06-21 21:29:23.719935+00	2017-06-24 13:44:45.085721+00	3887	Angela	Graham	+17704804323								13	f	f	Mayberry9804@gmail.com		new lead	\N	
2017-10-23 19:43:31.261814+00	2017-10-23 19:44:31.198568+00	3888	William	Richey	+17066149637								13	f	f	Williamrichey678@yahoo.com		new lead	\N	
2016-11-16 19:38:21.809659+00	2016-11-16 19:40:52.566192+00	3889			+13148753206								1	f	f			new lead	\N	
2017-03-20 15:04:43.925998+00	2017-11-29 18:31:56.600295+00	3890			+15708254154								1	f	f			new lead	\N	
2017-09-23 17:34:58.796824+00	2017-09-23 17:36:02.475731+00	3891			+19032169977								12	f	f		cell phone   tx	new lead	\N	
2017-09-18 18:52:59.912104+00	2017-09-18 19:00:02.662409+00	3892			+17063728282								13	f	f			new lead	\N	
2017-05-16 16:54:22.275898+00	2017-11-29 18:38:49.811767+00	3893			+16825608017								9	f	f		nguyen thao	new lead	\N	
2017-08-25 22:47:45.405776+00	2017-08-25 22:54:12.255107+00	3894			+17069495914								13	f	f			new lead	\N	
2016-09-06 17:50:54.51283+00	2016-12-09 17:06:57.830395+00	3895			+13146145277								3	f	f			new lead	\N	
2017-08-28 14:02:08.346783+00	2017-08-28 14:05:27.984109+00	3896	FMaeshea	Holloway	+17069639386								13	f	f	g_peach_2010@yahoo.com		new lead	\N	
2017-09-06 19:40:32.084126+00	2017-09-06 19:41:27.743059+00	3897			+18179185382								12	f	f		dupont amber	new lead	\N	
2016-11-02 22:40:18.570991+00	2016-11-02 22:40:18.59973+00	3898	Patricio	Armenta	+16232931614								1	f	f	Pat.armenta@hotmail.com		new lead	\N	
2017-11-14 21:13:11.394615+00	2017-11-14 21:17:21.41992+00	3899	Shanario	Carter	+17063728205								13	f	f	legendcarter@icloud.com		select status	\N	
2016-11-16 16:02:27.084317+00	2016-12-10 01:01:00.200614+00	3900			+18585411100								3	f	f			new lead	\N	
2017-11-08 17:51:06.350667+00	2017-11-08 17:52:34.097678+00	3901	Oliver	Fuss	+17705474818								13	f	f	oliverfuss45@gmail.com		new lead	\N	
2016-09-19 22:41:11.332317+00	2016-12-10 00:57:48.461754+00	3902			+18173082983								3	f	f			new lead	\N	
2017-12-16 19:18:40.674065+00	2017-12-16 19:19:15.67874+00	3903	robert	jett	+17706917049								13	f	f	lou5269@gmail.com	jett robert	select status	\N	
2017-12-27 21:08:09.654052+00	2017-12-27 21:09:08.497864+00	3904	Nathan	Day	+16783538472								13	f	f	Nathan.joe.day@gmail.com	dan nathan	select status	\N	
2017-09-20 15:12:23.908351+00	2017-09-20 15:17:48.032215+00	3905	PrincessJavon	Porter	+19512230646								13	f	f	porter.javon@ymail.com		new lead	\N	
2016-08-22 20:31:41.877907+00	2016-12-10 00:55:45.165413+00	3906			+12156610121								3	f	f			new lead	\N	
2016-11-02 16:18:00.383764+00	2016-11-02 16:39:09.015391+00	3907			+19363720044								1	f	f			new lead	\N	
2016-08-03 02:04:25.524094+00	2016-08-03 13:10:17.340167+00	3908	Alan	Stansbery	+16612211692								1	f	f	alan.stansbery@sbcglobal.net		application submitted - credit union	\N	
2017-04-19 14:54:06.106765+00	2017-11-29 18:38:53.214248+00	3909			+12147169177								9	f	f		solis jorge	new lead	\N	
2016-08-03 05:25:34.316312+00	2016-08-03 13:09:50.314633+00	3910	Kylie	Bullock	+16613493086								1	f	f	kcollubk@hotmail.com		application submitted - credit union	\N	
2016-08-25 17:13:19.663235+00	2017-11-29 18:32:13.821481+00	3911	Catlin	Labote	+13303220804								1	f	f			do not contact	\N	
2016-07-26 19:51:01.066812+00	2017-11-29 18:31:41.490561+00	3912			+16147622324								1	f	f			general interest	\N	
2016-08-15 15:28:15.118882+00	2017-11-29 18:31:05.368961+00	3913	jeffrey	gerlach	+19378300428								1	f	f	jeffro13072@yahoo.com		application submitted - credit union	\N	
2016-05-27 11:42:12.507527+00	2016-12-09 17:06:53.90562+00	3914	Unknown		+19315261880								3	f	f			new lead	\N	
2017-09-29 17:56:17.546298+00	2017-09-29 17:57:29.757382+00	3915			+17068092216								13	f	f			new lead	\N	
2016-09-07 18:14:35.267258+00	2016-12-10 01:01:51.440828+00	3916			+16195200766								3	f	f			new lead	\N	
2017-05-05 16:28:41.913185+00	2017-11-29 18:38:49.809938+00	3918			+19728003004								9	f	f		jallah ivor    	new lead	\N	
2017-12-08 21:10:17.586457+00	2017-12-08 21:14:55.318327+00	3919			+19567233977								15	f	f			new lead	\N	
2017-03-22 18:12:26.354072+00	2017-11-29 18:38:53.212784+00	3920			+12148813571								9	f	f		garza juan	new lead	\N	
2017-05-22 18:20:09.410243+00	2017-05-22 18:26:43.579109+00	3921			+19892134417								12	f	f		saginaw  mi	new lead	\N	
2017-10-19 16:42:11.633859+00	2017-10-19 16:45:21.095312+00	3922			+18177191085								12	f	f		reeves david	new lead	\N	
2017-12-07 14:08:38.559597+00	2017-12-07 14:09:03.295112+00	3923			+17062639592								14	f	f			new lead	\N	
2017-04-18 22:16:49.748572+00	2017-11-29 18:38:49.805616+00	3924			+18324559952								9	f	f		pourmoghaddam a	new lead	\N	
2016-11-15 19:47:06.825041+00	2016-12-10 01:01:51.441163+00	3925			+18587352991								3	f	f			new lead	\N	
2016-10-14 22:04:39.960369+00	2016-12-10 01:01:00.200424+00	3926			+16192452350								3	f	f			new lead	\N	
2016-10-17 19:09:40.034315+00	2016-12-10 01:00:18.568518+00	3927			+18085518172								3	f	f			new lead	\N	
2016-10-05 14:33:38.313461+00	2016-12-10 01:03:26.835835+00	3928			+12128664417								3	f	f			new lead	\N	
2017-11-04 15:23:04.028871+00	2017-11-04 15:25:21.901883+00	3929			+13253702410								12	f	f		dunnam jamie	new lead	\N	
2016-10-04 20:53:13.612913+00	2016-12-10 01:01:00.200121+00	3930			+16197944943								3	f	f			new lead	\N	
2017-10-27 13:30:27.692606+00	2017-10-27 13:34:55.31262+00	3931			+17062465315								13	f	f			new lead	\N	
2017-05-03 20:30:53.428398+00	2017-11-29 18:38:49.809451+00	3932			+12143259750								9	f	f		abundant gracec	new lead	\N	
2017-04-01 22:40:03.799154+00	2017-04-01 23:03:28.238792+00	3933			+18177792807								12	f	f		wireless caller	new lead	\N	
2016-12-02 12:40:22.632147+00	2016-12-09 17:06:53.906147+00	3934			+18567788080								3	f	f			new lead	\N	
2017-10-13 17:03:07.784224+00	2017-10-13 17:03:44.46124+00	3935			+13255134430								12	f	f		farias isaac	new lead	\N	
2017-11-14 16:47:17.519805+00	2017-11-14 17:08:57.469322+00	3936			+18176058003								12	f	f		watauga  tx	new lead	\N	
2017-07-22 21:24:42.882425+00	2017-07-22 21:30:09.75695+00	3937			+18175350150								12	f	f		martin karen	new lead	\N	
2017-05-22 14:12:01.850379+00	2017-11-29 18:38:49.812486+00	3938			+17702373200								9	f	f		myles truck repair	new lead	\N	
2016-07-20 12:17:11.84503+00	2016-12-10 00:55:45.164933+00	3939			+16102873244								3	f	f			new lead	\N	
2016-08-18 15:21:20.764483+00	2017-11-29 18:31:10.262429+00	3940	Cole	Aufderheide	+15132180718								1	f	f	cwaufderheide@gmail.com		application submitted - autopay	\N	
2016-06-29 15:21:18.31192+00	2017-11-29 18:31:41.490241+00	3941	Unknown		+16144409823								1	f	f			new lead	\N	
2017-09-16 15:16:22.524834+00	2017-09-16 15:21:42.197364+00	3942	Capria	Powe	+16464031787								13	f	f	capriapowe@gmail.com		new lead	\N	
2017-06-24 17:26:40.749324+00	2017-06-24 17:34:11.738506+00	3943			+17706865726								13	f	f			new lead	\N	
2017-10-17 14:42:06.926813+00	2017-10-17 14:45:08.029287+00	3944			+18173533452								12	f	f		and tree c	new lead	\N	
2017-12-21 17:54:49.02304+00	2017-12-21 17:56:38.651588+00	3945	Danny	Lee	+14707767380								13	f	f	DANNYLEE3938@YAHOO.COM		new lead	\N	
2017-11-22 20:03:09.72228+00	2017-11-22 20:13:22.309338+00	3946			+14042018410								13	f	f			new lead	\N	
2017-07-18 15:53:19.888357+00	2017-11-29 18:47:25.068537+00	3947			+16016069399								8	f	f		greer randall  	new lead	\N	
2017-03-16 18:41:17.178362+00	2017-11-29 18:38:53.212467+00	3948			+18179070986								9	f	f			new lead	\N	
2016-11-19 00:16:17.293242+00	2016-11-19 00:25:09.117663+00	3949			+14693091957								1	f	f			new lead	\N	
2017-09-27 21:07:37.893507+00	2017-09-27 21:09:26.010572+00	3950			+14697669610								12	f	f		campbell keonta	new lead	\N	
2016-10-27 19:44:08.865159+00	2016-12-09 17:08:44.542525+00	3951			+16094486418								3	f	f			new lead	\N	
2017-06-26 20:15:43.613127+00	2017-06-26 20:19:07.650977+00	3952			+14049338064								13	f	f			new lead	\N	
2017-07-29 19:51:54.958892+00	2017-07-29 19:52:32.096736+00	3953			+16788583691								13	f	f			new lead	\N	
2016-11-01 16:01:29.052855+00	2016-11-01 16:01:29.078499+00	3954	Kimberly	Cooley	+17708248199								1	f	f	kcooley0707@comcast.net		new lead	\N	
2017-10-06 18:06:11.433138+00	2017-10-06 18:12:34.467925+00	3955	Donald	Powell	+18646238350								13	f	f	Powelldonald20@yahoo.com		new lead	\N	
2016-11-04 20:08:00.432634+00	2016-12-10 00:57:48.4619+00	3956			+18057607531								3	f	f			new lead	\N	
2016-06-01 13:41:14.087173+00	2017-11-29 18:31:10.260665+00	3957	Wesley	Blalock	+15136336838								1	f	f	eye.cu22@hotmail.com		new lead	\N	
2017-12-15 17:36:47.050977+00	2017-12-15 17:40:18.867293+00	3958	LARRY	HOLLAND	+12396722168								13	f	f	Sonnyholland0@gmail.com	fort myers  fl	select status	\N	
2017-05-01 17:56:39.393918+00	2017-11-29 18:38:49.808061+00	3959			+12143754271								9	f	f		gsbc credit uni	new lead	\N	
2018-05-09 09:15:10.584335+00	2018-05-09 09:15:23.929677+00	3960			+17378742833								4	f	f			new lead	\N	
2016-10-13 17:25:40.763888+00	2016-12-10 00:57:48.461838+00	3961			+18056446990								3	f	f			new lead	\N	
2016-05-31 20:48:14.272199+00	2017-11-29 18:31:05.368859+00	3962	Unknown		+16463554438								1	f	f			new lead	\N	
2016-08-03 17:37:21.025247+00	2016-08-16 19:29:29.725565+00	3963	Santiago	C Benavente	+16618355333								1	f	f	cbenaventesantiago@yahoo.com		application submitted - autopay	\N	
2016-08-05 15:18:12.270147+00	2016-12-10 00:55:45.165091+00	3964			+14846788940								3	f	f			new lead	\N	
2016-08-03 13:43:03.555661+00	2016-12-10 00:55:45.165045+00	3965			+16107050657								3	f	f			new lead	\N	
2017-08-17 19:02:28.212088+00	2017-08-17 19:07:59.589766+00	3966			+18004928377								13	f	f			new lead	\N	
2016-10-11 19:27:00.230221+00	2016-12-10 01:05:18.401152+00	3967			+14847160203								3	f	f			new lead	\N	
2017-11-20 19:54:34.812508+00	2017-11-20 20:08:39.58812+00	3968	AUSTIN		+16789975520								13	f	f			select status	\N	
2016-05-25 16:43:35.172701+00	2017-11-29 18:31:05.3688+00	3969	Unknown		+13523686052								1	f	f			new lead	\N	
2017-03-13 17:44:58.984374+00	2017-11-29 18:38:53.212118+00	3970			+19292582608								9	f	f		manhattan  ny	new lead	\N	
2016-08-12 20:27:48.416186+00	2017-11-29 18:31:37.368582+00	3971	Kurt	Ryan	+16614005554								1	f	f			general interest	\N	
2017-05-16 21:18:19.396073+00	2017-11-29 18:38:49.811883+00	3972			+12142368746								9	f	f		sltc inc	new lead	\N	
2017-07-08 14:25:09.724387+00	2017-07-08 14:26:31.966665+00	3973			+14692314591								12	f	f		perez gabriel	new lead	\N	
2017-10-09 20:22:57.485608+00	2017-10-09 20:24:05.355984+00	3974			+14047342471								13	f	f			new lead	\N	
2017-08-26 15:13:20.221897+00	2017-08-26 15:13:47.630078+00	3975			+19178252042								13	f	f			new lead	\N	
2018-04-25 15:59:47.831108+00	2018-04-25 15:59:48.073638+00	3976	Ben	Toddler	+1fsdfsdfsdfsdf		sdfsdsd			sdfsdf	543435		4	f	f	sdas@sdfsd.com				
2017-12-02 19:51:01.425328+00	2017-12-02 20:07:12.749975+00	3977	Carolina	Laxson	+19282317220								15	f	f	krlaxson@msn.com		new lead	\N	
2018-04-28 18:16:50.92199+00	2018-04-28 18:24:51.213655+00	3978	Molly	Greenwald	+17732979153		123 West			IL	60613		4	f	f	hv13@hotmail.com				
2017-05-04 19:18:33.233283+00	2017-11-29 18:47:25.068376+00	3979			+18168033343								8	f	f		pham simone    	new lead	\N	
2017-03-29 21:20:51.070286+00	2017-11-29 18:38:53.213134+00	3980			+19183612505								9	f	f		aery stephen   	new lead	\N	
2017-12-27 15:13:16.608587+00	2017-12-27 15:24:08.542658+00	3981	paul	foster	+18172293853								15	f	f	sfoster_53@yahoo.com		new lead	\N	
2017-04-26 20:48:05.348446+00	2017-11-29 18:38:53.214617+00	3982			+16176698710								9	f	f		ahmed mohammed	new lead	\N	
2017-11-11 19:48:47.878932+00	2017-11-11 19:50:20.620959+00	3983			+14042769697								13	f	f			new lead	\N	
2016-11-03 04:12:32.751033+00	2016-11-03 04:12:32.774157+00	3984	Raana	Syed	+12814981908								1	f	f	zaheersyed@yahoo.com		new lead	\N	
2017-11-10 18:54:46.953199+00	2017-11-10 18:58:22.27147+00	3985			+12144976689								12	f	f		varner charles	new lead	\N	
2017-12-07 14:14:57.970448+00	2017-12-07 14:18:19.704198+00	3986			+16824297066								12	f	f		swayne erik	new lead	\N	
2017-11-15 21:54:03.633798+00	2017-11-15 21:57:42.575088+00	3987	Michael	Cosby	+17066146358								13	f	f	Mike416@uga.edu		new lead	\N	
2017-04-12 17:54:31.813196+00	2017-11-29 18:32:01.935524+00	3988	Juday	Alverez	+13148245205								1	f	f			do not contact	\N	
2017-04-20 15:41:18.507263+00	2017-11-29 18:47:25.068165+00	3989			+12142999268								8	f	f		mclennan robert	new lead	\N	
2016-11-03 16:02:09.096813+00	2016-11-03 16:02:09.135621+00	3990	Ernest	Kobs	+12919557332								1	f	f	eckobs@airmail.net		new lead	\N	
2017-08-23 19:39:48.751869+00	2017-08-23 19:43:52.579825+00	3991	Almono	Martin	+17064241269								13	f	f	almonomartin9@gmail.com		new lead	\N	
2016-08-08 18:57:12.298395+00	2016-08-08 18:57:19.700534+00	3992			+18606176244								1	f	f			new lead	\N	
2017-06-30 13:19:13.854806+00	2017-06-30 13:22:37.883524+00	3993	Artillious 	King	+16785989373								13	f	f	akinggap88@gmail.com		new lead	\N	
2016-12-06 16:01:53.354725+00	2016-12-10 01:01:51.441198+00	3994			+16194791202								3	f	f			new lead	\N	
2017-10-10 06:17:18.240543+00	2017-10-11 13:48:44.654752+00	3995	James	Pass	+17063805180								13	f	f	Pass.christy0414@gmail.com		select status	\N	
2017-12-05 22:18:08.854892+00	2017-12-05 22:20:23.055895+00	3996			+18176029622								12	f	f		debouse diana	new lead	\N	
2016-11-02 22:41:15.482986+00	2016-11-02 22:41:15.506773+00	3997	Paul	Ladd	+14699993344								1	f	f	paulwladd@mac.com		new lead	\N	
2017-09-29 17:06:37.947137+00	2017-09-29 17:28:39.986897+00	3998			+19032271244								12	f	f		farmers bra  tx	new lead	\N	
2017-03-27 16:57:13.679505+00	2017-11-29 18:38:53.212986+00	3999			+19292567196								9	f	f		manhattan  ny	new lead	\N	
2017-03-20 21:03:13.800224+00	2017-11-29 18:32:01.935502+00	4000			+16513486175								1	f	f			new lead	\N	
2017-04-11 15:24:46.924685+00	2017-11-29 18:38:53.213745+00	4001			+12403813401								9	f	f		mancilla diaz o	new lead	\N	
2017-05-03 21:14:30.288039+00	2017-11-29 18:38:49.809479+00	4002			+19165673000								9	f	f		diamond autospo	new lead	\N	
2017-08-01 00:30:42.647791+00	2017-08-01 00:30:42.708395+00	4003	CEDRIC	GREEN	+17705613347								13	f	f	Cedgreen2@gmail.com		new lead	\N	
2016-08-17 17:04:01.902123+00	2017-11-29 18:31:37.368925+00	4004	Dennis	Hamill	+16613719372								1	f	f	dennishamill@yahoo.com		application started	\N	
2017-12-29 03:15:42.403807+00	2017-12-29 03:15:42.460183+00	4005	Miranda	Minter	+17062978108								13	f	f	miranda.minter@pwipartners.com		new lead	\N	
2016-10-31 14:12:56.295243+00	2016-12-10 01:03:35.620633+00	4006			+12017313675								3	f	f			new lead	\N	
2016-05-25 17:16:09.697917+00	2017-11-29 18:31:01.155581+00	4007	Unknown		+17277899398								1	f	f			new lead	\N	
2017-11-19 10:06:19.17423+00	2017-11-19 10:06:19.230909+00	4008	Ethel	Marsingill	+14702091768								13	f	f	itnomatter10@gmail.com		select status	\N	
2017-11-05 23:10:48.544436+00	2017-11-05 23:10:48.603012+00	4009	Alaina	Bowen	+17064918203								13	f	f	alainabrenee@gmail.com		new lead	\N	
2016-05-25 16:58:05.597743+00	2017-11-29 18:31:10.260264+00	4010	Unknown		+15137696904								1	f	f			new lead	\N	
2017-07-08 23:50:11.058731+00	2017-07-08 23:50:11.11167+00	4011	Terrence	Walker	+17324853601								13	f	f	Walkerterrence912@gmail.com		new lead	\N	
2017-11-29 19:44:40.473733+00	2017-11-29 19:51:25.235793+00	4012			+10000000000								13	f	f			new lead	\N	
2017-03-27 20:54:17.050238+00	2017-11-29 18:38:53.21306+00	4013			+13126854100								9	f	f		jareou zaid	new lead	\N	
2017-12-30 16:33:19.307651+00	2017-12-30 16:38:33.216174+00	4014	Vickie	Lira	+17707447815								13	f	f	Kilratl60@gmail.com		select status	\N	
2016-05-25 16:39:10.028191+00	2017-11-29 18:31:10.260247+00	4015	Unknown		+15135284643								1	f	f			new lead	\N	
2016-05-23 17:14:50.987827+00	2016-05-23 17:15:56.394799+00	4016	Marquita	Ebright	+19372063816								1	f	f	marquita.ebright@gmail.com		new lead	\N	
2017-11-02 17:16:18.432747+00	2017-11-02 17:20:43.540162+00	4017			+12149809338								12	f	f		hoard ann	new lead	\N	
2017-05-08 21:12:13.130569+00	2017-11-29 18:38:53.215265+00	4018			+14699700602								9	f	f		world class car	new lead	\N	
2016-06-01 19:26:23.78678+00	2017-11-29 18:31:10.260834+00	4019	Unknown	Maxwell	+15132323210								1	f	f	lyndamaxwell06@gmail.com		new lead	\N	
2017-12-04 15:03:59.428339+00	2017-12-04 15:08:37.492846+00	4020			+16824720953								12	f	f		wright randall	new lead	\N	
2017-03-17 21:05:19.586362+00	2017-11-29 18:47:25.067799+00	4021			+18172987897								8	f	f		dallas  tx	new lead	\N	
2017-12-04 17:49:34.321885+00	2017-12-04 17:50:32.192044+00	4022			+14043977024								14	f	f			new lead	\N	
2016-09-06 21:53:28.136299+00	2016-12-10 01:01:51.440786+00	4023			+18584923518								3	f	f			new lead	\N	
2017-04-01 23:05:51.294711+00	2017-11-29 18:47:25.067968+00	4024			+16826674949								8	f	f		fort worth  tx	new lead	\N	
2017-10-10 00:18:42.972082+00	2017-10-11 13:54:33.342087+00	4025	Christopher	Martin	+17063869269								13	f	f	cm3505111@gmail.com		select status	\N	
2016-08-22 17:46:52.289959+00	2017-11-29 18:31:18.808876+00	4026			+14062189069								1	f	f			do not contact	\N	
2017-12-27 22:24:39.526778+00	2017-12-27 22:29:56.410873+00	4027	Tiny	Pitts	+17062443258								13	f	f	cherylpitts83@gmail.com		new lead	\N	
2017-12-30 16:25:11.289244+00	2017-12-30 16:26:14.475548+00	4028			+18176946717								12	f	f		parker hannifin	new lead	\N	
2016-11-07 19:07:28.978369+00	2016-11-07 19:30:33.521944+00	4029			+13142401140								1	f	f			new lead	\N	
2017-05-08 20:38:54.695121+00	2017-11-29 18:38:49.810433+00	4030			+13157662224								9	f	f		syracuse  ny	new lead	\N	
2018-01-07 20:25:56.922834+00	2018-01-07 20:26:04.984585+00	4031	VERMAAK	HERMANU	+18473123318								1	f	f		vermaak hermanu	new lead	\N	
2017-05-22 15:45:52.113113+00	2017-11-29 18:38:49.812536+00	4032			+14804505878								9	f	f		otterson kevin 	new lead	\N	
2016-08-23 16:41:00.125492+00	2016-08-23 17:06:04.46843+00	4033	Dee	Holmes	+14062608883								1	f	f	deeannaholmes@yahoo.com		application submitted - credit union	\N	
2017-08-22 16:19:22.18284+00	2017-08-22 16:41:02.883184+00	4034			+18177566367								12	f	f		dallas  tx	new lead	\N	
2017-04-25 17:12:15.444303+00	2017-11-29 18:38:49.806625+00	4035			+19722436004								9	f	f		xport lease co	new lead	\N	
2017-11-27 15:27:56.36321+00	2017-11-27 15:28:41.37009+00	4036			+18172300700								12	f	f		d r horton	new lead	\N	
2017-01-18 22:53:10.428841+00	2017-11-29 18:32:01.935495+00	4037			+12529458667								1	f	f			new lead	\N	
2016-08-05 22:22:31.854118+00	2017-11-29 18:31:18.80884+00	4038			+13373530433								1	f	f			new lead	\N	
2016-08-12 18:59:38.019256+00	2017-11-29 18:31:41.490688+00	4039			+16142565508								1	f	f			general interest	\N	
2016-09-07 20:04:02.026886+00	2016-12-10 01:01:51.440856+00	4040			+16196188602								3	f	f			new lead	\N	
2017-10-25 14:54:42.827455+00	2017-10-25 14:56:21.599479+00	4041	donna	chappie	+17062013334								13	f	f	djc82468@gmail.com		new lead	\N	
2017-11-08 17:22:10.210989+00	2017-11-08 17:22:53.578232+00	4042			+14049526760								13	f	f			new lead	\N	
2017-06-23 17:26:14.266902+00	2017-06-24 13:44:45.085774+00	4043			+17709051462								13	f	f			new lead	\N	
2016-11-08 22:44:35.038256+00	2016-11-08 22:53:45.435257+00	4044			+12817609381								1	f	f			new lead	\N	
2017-05-20 21:49:04.342171+00	2017-11-29 18:38:49.812442+00	4045			+12144970181								9	f	f		turney kimberly	new lead	\N	
2016-11-03 23:09:06.20811+00	2016-11-03 23:10:54.050609+00	4046			+12145321277								1	f	f			new lead	\N	
2016-08-15 13:56:51.666941+00	2016-12-10 00:55:45.165262+00	4047			+16102876827								3	f	f			new lead	\N	
2017-04-04 00:27:26.874691+00	2017-11-29 18:38:53.213299+00	4048			+19728783644								9	f	f		hanford jeffrey	new lead	\N	
2016-10-05 14:31:59.960494+00	2016-11-09 15:46:59.235312+00	4049			+13027922212								3	f	f			new lead	\N	
2016-08-08 15:08:49.00599+00	2017-11-29 18:31:56.600125+00	4050			+15708249546								1	f	f			new lead	\N	
2017-11-03 16:39:39.610215+00	2017-11-03 16:40:56.985872+00	4051			+19202064473								12	f	f		bethesda luther	new lead	\N	
2017-04-20 20:56:18.38911+00	2017-11-29 18:47:25.068186+00	4052			+14693741103								8	f	f		miguel estrada	new lead	\N	
2017-12-05 23:27:04.892031+00	2017-12-05 23:38:26.52157+00	4053			+15616024448								15	f	f			new lead	\N	
2017-04-15 17:34:51.757473+00	2017-11-29 18:38:53.214036+00	4054			+15058008124								9	f	f		wireless caller	new lead	\N	
2016-07-02 01:17:28.180191+00	2016-07-05 12:16:41.147065+00	4055	Tenisha 	Mack	+12168575463								1	f	f	nisharonniyah@yahoo.com		new lead	\N	
2017-05-15 20:07:50.997148+00	2017-05-15 20:09:26.707635+00	4056			+14693246650								12	f	f		alvarez manuel	new lead	\N	
2017-12-08 16:21:06.57696+00	2017-12-08 16:38:42.549437+00	4057			+18172628351								15	f	f			new lead	\N	
2016-08-24 22:24:45.471122+00	2016-12-10 01:01:00.199775+00	4058			+16193730032								3	f	f			new lead	\N	
2017-08-11 19:34:09.351065+00	2017-08-11 19:43:17.851813+00	4059			+16786302951								13	f	f			new lead	\N	
2017-04-13 21:57:19.728128+00	2017-11-29 18:38:49.804888+00	4060			+18177054292								9	f	f			new lead	\N	
2016-08-23 19:06:51.123794+00	2017-11-29 18:31:41.49043+00	4061			+17408521386								1	f	f			do not contact	\N	
2016-11-03 22:20:43.094665+00	2017-01-27 21:12:23.813953+00	4062			+18172231831								1	f	f			new lead	\N	
2016-09-07 17:08:31.534457+00	2016-12-10 01:04:42.413657+00	4063			+19096932585								3	f	f			new lead	\N	
2016-11-09 16:20:36.251135+00	2017-01-27 21:12:23.81396+00	4064			+18172299040								1	f	f			new lead	\N	
2017-03-07 02:17:12.139766+00	2017-11-29 18:47:25.06763+00	4065			+12149244365								8	f	f		k and sons expr	new lead	\N	
2017-04-19 15:41:57.40414+00	2017-11-29 18:38:49.80571+00	4066			+13185700030								9	f	f		monroe  la	new lead	\N	
2016-08-15 19:05:17.676016+00	2017-11-29 18:32:13.821832+00	4067	Johnny	Stewart	+13303320900								1	f	f	1@1.com		application submitted - credit union	\N	
2016-07-30 11:35:47.220717+00	2016-07-30 11:35:47.256975+00	4068	Adam	Ward	+15133825139								1	f	f	lordwards@yahoo.com		new lead	\N	
2016-10-19 17:36:04.891321+00	2016-12-10 01:01:04.035905+00	4069			+18182558705								3	f	f			new lead	\N	
2017-11-25 18:44:30.292212+00	2017-11-25 18:45:15.730631+00	4070	Brittany 	Vann	+16788766226								13	f	f	Vannbritt@yahoo.com		new lead	\N	
2016-10-18 19:23:45.343239+00	2016-12-10 01:01:51.441121+00	4071			+16195179609								3	f	f			new lead	\N	
2017-04-26 19:48:25.129188+00	2017-11-29 18:47:25.068334+00	4072			+14692866192								8	f	f		huynh lyhuong	new lead	\N	
2017-04-06 19:04:25.126381+00	2017-08-17 14:35:21.044966+00	4073			+18177662481								12	f	f		dallas  tx	new lead	\N	
2016-09-06 13:04:34.876702+00	2016-12-09 17:06:53.905858+00	4074			+16098962475								3	f	f			new lead	\N	
2017-05-11 23:01:00.199635+00	2017-08-17 14:35:21.045176+00	4075			+18177978036								12	f	f		carol black	new lead	\N	
2016-12-13 11:32:01.372932+00	2016-12-13 11:32:01.402287+00	4076	John	Webb	+19722708084								1	f	f	horns4ever@sbcglobal.net		new lead	\N	
2017-05-17 21:50:55.286556+00	2017-11-29 18:38:49.812125+00	4077			+12147787355								9	f	f		chaney benny	new lead	\N	
2016-05-25 18:20:27.115273+00	2017-11-29 18:31:37.368151+00	4078	Unknown		+19196213378								1	f	f			new lead	\N	
2017-04-04 21:51:32.159906+00	2017-11-29 18:31:18.808954+00	4079			+18136040019								1	f	f			do not contact	\N	
2017-09-23 17:19:29.549058+00	2017-09-23 17:21:01.91789+00	4080			+16303067212								12	f	f		kesireddy madhu	new lead	\N	
2017-06-01 20:22:42.540977+00	2017-11-29 18:38:53.21471+00	4081			+19728915612								9	f	f		wells frankie	new lead	\N	
2016-11-03 23:02:10.601855+00	2016-11-03 23:02:10.635317+00	4082	Misty	Pinke	+19035704469								1	f	f	mpinke1@yahoo.com		new lead	\N	
2017-12-05 15:40:23.036028+00	2017-12-05 16:07:46.472061+00	4083			+12487550777								15	f	f			new lead	\N	
2016-07-29 18:34:42.312706+00	2017-11-29 18:32:13.821627+00	4084			+13307572787								1	f	f			new lead	\N	
2017-09-13 19:44:42.975939+00	2017-09-13 19:45:41.914457+00	4085			+19125840759								13	f	f			new lead	\N	
2016-07-20 21:24:26.780321+00	2016-12-10 00:55:45.16494+00	4086			+12155305350								3	f	f			new lead	\N	
2016-10-29 23:18:35.645487+00	2016-10-29 23:18:35.676042+00	4087	William	Luznar	+18178001954								1	f	f	wdluznar1@gmail.com		new lead	\N	
2017-04-20 20:01:16.326369+00	2017-11-29 18:38:53.214326+00	4088			+18174219420								9	f	f		weiler eric    	new lead	\N	
2016-08-10 14:10:00.704832+00	2017-11-29 18:32:13.821707+00	4089		Genais	+17249819427								1	f	f			general interest	\N	
2016-10-05 19:23:12.116274+00	2016-12-10 01:00:18.568469+00	4090			+16194433939								3	f	f			new lead	\N	
2016-11-02 15:59:27.107704+00	2016-11-02 15:59:27.127944+00	4091	VENKATA	TIPPARAJU	+14045363884								1	f	f	st04989@gmail.com		new lead	\N	
2016-11-01 13:13:59.273989+00	2016-11-01 13:40:16.575779+00	4092			+17048579224								1	f	f			new lead	\N	
2017-04-27 22:20:21.093996+00	2017-11-29 18:38:53.214724+00	4093			+12148938313								9	f	f		hood michael   	new lead	\N	
2017-05-05 18:43:47.795878+00	2017-11-29 18:38:49.810037+00	4094			+16078821055								9	f	f		semidey laiza  	new lead	\N	
2016-09-01 19:46:34.278703+00	2016-12-10 01:01:51.440743+00	4095			+16197337788								3	f	f			new lead	\N	
2017-12-13 19:18:42.854012+00	2017-12-13 19:30:19.114128+00	4096	Sheryl	Sklare	+13307306493								15	f	f	csklare@att.net		new lead	\N	
2017-05-03 17:52:18.983937+00	2017-05-03 17:53:16.551667+00	4097			+18179466941								12	f	f		mancha omar    	new lead	\N	
2017-04-14 15:41:38.447768+00	2017-11-29 18:38:49.804909+00	4098			+19412562152								9	f	f			new lead	\N	
2017-08-14 12:15:19.776336+00	2017-08-14 12:15:20.503636+00	4099			+14702775324								13	f	f			new lead	\N	
2016-11-01 18:16:47.299766+00	2016-11-01 18:27:34.337324+00	4100			+17069089294								1	f	f			new lead	\N	
2017-12-03 00:56:57.364897+00	2017-12-03 00:57:11.49504+00	4101			+17705473730								14	f	f			new lead	\N	
2017-12-15 15:52:05.806305+00	2017-12-15 16:12:37.107524+00	4102	Christina	Butler	+18623336017								15	f	f	tinaabutler1954@icloud.com		new lead	\N	
2016-08-17 17:44:49.345191+00	2017-11-29 18:31:37.36854+00	4103	Anthony	Zalbracco	+18054432977								1	f	f			general interest	\N	
2016-06-30 10:43:58.223893+00	2016-06-30 11:07:55.196142+00	4104	Rosemary	Davis	+13305190482								1	f	f	rdavis44511@yahoo.com		new lead	\N	
2016-08-11 18:51:53.01199+00	2016-12-10 00:55:45.165227+00	4105			+16102794128								3	f	f			new lead	\N	
2016-08-17 16:22:01.660615+00	2017-11-29 18:31:37.368366+00	4106			+16619174074								1	f	f			general interest	\N	
2017-12-06 15:58:30.629396+00	2017-12-06 16:00:35.324346+00	4107			+17708659117								14	f	f			new lead	\N	
2017-11-07 01:42:15.362985+00	2017-11-07 01:42:15.414677+00	4108	Tiffani	Perry	+17069412214								13	f	f	tiffani81perry@gmail.com		new lead	\N	
2017-04-03 17:50:30.448468+00	2017-04-03 18:14:19.443431+00	4109			+12146204556								12	f	f		cell phone   tx	new lead	\N	
2017-09-27 22:47:34.056275+00	2017-09-27 23:01:03.82245+00	4110			+17066129500								13	f	f			select status	\N	
2017-04-24 09:56:37.621393+00	2017-04-24 09:56:37.663893+00	4111	VirgilclarM	VirgilclarM	+183234996282								1	f	f	virgil50@mail.ru		new lead	\N	
2017-10-10 18:34:46.596006+00	2017-10-10 18:38:47.58314+00	4112			+17069698382								13	f	f			new lead	\N	
2017-09-18 16:02:31.920253+00	2017-09-18 16:05:35.851619+00	4113			+18178841814								12	f	f		fort worth  tx	new lead	\N	
2017-08-25 21:03:42.958886+00	2017-08-25 21:05:17.628648+00	4114			+14698447525								12	f	f		dallas  tx	new lead	\N	
2016-11-01 21:50:40.566372+00	2016-11-01 21:50:40.603226+00	4115	Kimberly	Street	+19724944335								1	f	f	jmkds@aol.com		new lead	\N	
2017-06-13 17:29:58.687809+00	2017-08-17 14:35:21.045449+00	4116			+14794623497								12	f	f		wireless caller	new lead	\N	
2017-12-02 18:47:20.316979+00	2017-12-02 18:47:20.355166+00	4117	Marcos	Costilla	+12143549138								15	f	f	mark@greystone-insurance.com		new lead	\N	
2017-10-11 19:22:56.724646+00	2017-10-11 19:24:47.418187+00	4118	Jerri 	Strickland 	+16789438726								13	f	f	Badmonkeyred@gmail.com		select status	\N	
2017-08-05 18:46:26.173088+00	2017-08-05 18:50:46.835191+00	4119	Chandler	Hughes	+14705120113								13	f	f	hughes.chandler13@yahoo.com		new lead	\N	
2017-12-04 16:31:07.620571+00	2017-12-04 16:56:37.478511+00	4120			+18152383376								15	f	f			new lead	\N	
2017-02-28 20:58:30.185207+00	2017-11-29 18:31:56.600281+00	4121			+15707352706								1	f	f			new lead	\N	
2017-05-10 15:14:30.984497+00	2017-11-29 18:38:53.215555+00	4122			+12603520528								9	f	f		prater alice   	new lead	\N	
2017-05-23 16:46:01.393898+00	2017-11-29 18:38:49.81282+00	4123			+16129918151								9	f	f		wireless caller	new lead	\N	
2016-09-03 20:17:25.210384+00	2017-11-29 18:31:10.262582+00	4124	Donald 	Fite	+15133283852								1	f	f	rancherd721@yahoo.com		application submitted - autopay	\N	
2017-12-08 20:27:49.455117+00	2017-12-08 20:49:30.329129+00	4125			+17082075421								15	f	f			new lead	\N	
2017-04-14 20:20:37.458226+00	2017-08-17 14:35:21.044988+00	4126			+13187623913								12	f	f		freaky h	new lead	\N	
2016-05-20 18:42:44.556061+00	2016-05-20 18:43:53.785881+00	4127	Larry	Whitfield	+16619659600								1	f	f	Lwhitfield1972@yahoo.com		new lead	\N	
2017-05-03 23:45:38.823103+00	2017-11-29 18:38:53.215078+00	4128			+12145427844								9	f	f		pezeshki mortez	new lead	\N	
2016-11-03 15:21:17.696474+00	2017-01-27 21:12:23.813932+00	4129		Ms. Torrens	+17049333055								1	f	f			select status	\N	
2016-09-19 15:02:01.022088+00	2017-11-29 18:31:56.600204+00	4130			+15708220436								1	f	f			new lead	\N	
2016-11-04 16:21:25.365467+00	2017-01-27 21:12:23.814037+00	4131			+17703802773								1	f	f			new lead	\N	
2017-11-30 16:23:08.127578+00	2017-11-30 16:23:56.243765+00	4132	Tamekia	Riden	+14044825147								13	f	f	Tamekia.riden@yahoo.com		new lead	\N	
2016-12-01 17:17:16.681116+00	2016-12-10 01:01:54.351692+00	4133			+13125867081								3	f	f			new lead	\N	
2017-12-02 19:10:00.378594+00	2017-12-02 19:34:15.714501+00	4134			+13045595672								15	f	f			new lead	\N	
2017-01-14 17:09:17.456653+00	2017-01-14 17:29:11.154386+00	4135			+16824385733								1	f	f			new lead	\N	
2017-05-24 18:58:38.836104+00	2017-08-17 14:35:21.045327+00	4136			+18177565066								12	f	f		gc - easytel hu	new lead	\N	
2016-06-28 17:25:47.187723+00	2017-11-29 18:32:13.820805+00	4137	Unknown	Milan	+18623688214								1	f	f			new lead	\N	
2017-05-05 16:44:50.978676+00	2017-11-29 18:38:49.809952+00	4138			+18702268505								9	f	f		warren pub scho	new lead	\N	
2017-05-03 21:26:39.439706+00	2017-11-29 18:38:53.214979+00	4139			+12132585840								9	f	f		piao zhong     	new lead	\N	
2017-08-28 20:57:33.757275+00	2017-08-28 21:01:30.406813+00	4140	Kimberly	Smith	+17064618562								13	f	f	kasmith305@aol.com		new lead	\N	
2017-03-22 22:50:17.939629+00	2017-08-17 14:35:21.044886+00	4141			+16824720158								12	f	f		gutierrez maria	new lead	\N	
2017-01-23 16:16:51.846191+00	2017-02-08 14:10:58.903004+00	4142	Traci	Jancik-Lynch	+16787900560								1	f	f	traci.jancik@gmail.com		application submitted - autopay	\N	
2016-11-10 21:24:10.525534+00	2016-11-10 21:24:10.556737+00	4143	Daniel	Gonzalez 	+19802540719								1	f	f	Daniel_gonza_@hotmail.com		new lead	\N	
2016-10-12 11:27:58.447835+00	2016-12-10 01:05:18.401168+00	4144			+16104763633								3	f	f			new lead	\N	
2017-11-14 14:39:36.034004+00	2017-11-14 14:41:44.071369+00	4145	Annette	Walters	+16785984153								13	f	f	Jeannettelove26@gmail.com		new lead	\N	
2016-12-14 23:24:21.770452+00	2016-12-14 23:24:21.794979+00	4146	Samuel	Sanchez Sr	+16023390101								1	f	f	mas46mas@gmail.com		new lead	\N	
2017-05-25 18:46:52.048956+00	2017-05-25 18:46:52.090501+00	4147	DAN	PARK	+14802626130								1	f	f	aadanpark@yahoo.com		new lead	\N	
2017-07-12 12:33:54.840565+00	2017-07-12 12:34:11.896787+00	4148			+17062395281								13	f	f			new lead	\N	
2017-03-15 22:29:38.910827+00	2017-11-29 18:38:53.212382+00	4149			+13162919562								9	f	f		foulston siefki	new lead	\N	
2017-08-21 15:21:18.703763+00	2017-08-21 15:21:51.621562+00	4150	Gary	Cummings	+15026089695								13	f	f	corvis81@gmail.com		new lead	\N	
2017-12-27 14:27:14.783693+00	2017-12-27 14:27:51.678552+00	4151	Takeisheya	Hall	+13526811968								13	f	f	Takeisheyab@yahoo.com	cell phone   fl	select status	\N	
2017-09-29 18:04:40.713886+00	2017-09-29 18:05:46.635301+00	4152			+14045479933								13	f	f			new lead	\N	
2017-11-17 15:08:56.92358+00	2017-11-17 15:09:55.50691+00	4153			+17705729684								13	f	f			new lead	\N	
2017-05-19 20:02:28.044099+00	2017-11-29 18:38:49.812317+00	4154			+19725896845								9	f	f		mike welch	new lead	\N	
2016-11-11 02:53:53.750396+00	2016-11-11 02:54:27.583529+00	4155			+17735030711								1	f	f			new lead	\N	
2017-08-03 17:18:41.191947+00	2017-08-03 17:20:33.789548+00	4156			+12142596673								12	f	f		dallas  tx	new lead	\N	
2017-10-26 14:00:45.963494+00	2017-10-26 14:01:39.514173+00	4157			+17063405682								13	f	f			new lead	\N	
2016-07-27 21:54:51.197452+00	2017-11-29 18:31:10.261677+00	4158	Donald	Bice	+18599161291								1	f	f	brian.bice@yahoo.com		new lead	\N	
2017-07-10 19:18:23.718486+00	2017-07-10 19:24:17.886326+00	4159			+18178911299								12	f	f		hudson tameka	new lead	\N	
2017-05-01 23:09:21.721064+00	2017-11-29 18:38:49.808483+00	4160			+16464135014								9	f	f		manhattan  ny	new lead	\N	
2017-08-05 20:40:24.495149+00	2017-08-17 14:35:21.045738+00	4161			+18174566942								12	f	f		cell phone   tx	new lead	\N	
2016-09-13 17:38:08.793082+00	2016-09-13 17:38:08.816711+00	4162	Elyse	Hall	+17577390567								1	f	f	hall.elyse@yahoo.com		new lead	\N	
2017-12-01 16:37:06.354662+00	2017-12-01 16:38:15.488594+00	4163	Daniel	Hollister	+16143120936								15	f	f	dannobassist1963@gmail.com		new lead	\N	
2017-06-19 21:24:58.406133+00	2017-06-24 13:45:04.893988+00	4164			+12295881727								13	f	f			new lead	\N	
2016-07-06 18:45:23.466703+00	2017-11-29 18:32:13.821396+00	4165	Daniel	Teminski	+13307790740								1	f	f			new lead	\N	
2017-08-05 18:09:01.723108+00	2017-08-05 18:12:23.145839+00	4166	Mike	Tucker	+14043961361								13	f	f	Hartford1800@gmail.com		new lead	\N	
2016-11-05 12:42:48.31594+00	2016-12-10 01:05:18.400882+00	4167	Kevin	Stroble	+16107033116								3	f	f	kstroble@ptd.net		new lead	\N	
2016-08-18 15:52:24.426714+00	2016-12-10 00:55:45.16537+00	4168			+16102879659								3	f	f			new lead	\N	
2016-08-02 19:28:56.751729+00	2016-12-10 00:55:45.165028+00	4169			+14846865872								3	f	f			new lead	\N	
2017-12-06 18:56:10.36708+00	2017-12-06 18:56:37.711626+00	4170			+14046834818								14	f	f			new lead	\N	
2017-12-01 16:29:55.131683+00	2017-12-01 16:31:33.714118+00	4171	Alannah	Davis	+17063724651								13	f	f	alannah.shauri@gmail.com		select status	\N	
2017-08-14 04:32:51.343052+00	2017-08-14 04:32:51.405775+00	4172	Amber	Richardson	+17705497689								13	f	f	Amber01975@gmail.com		new lead	\N	
2016-11-05 14:26:23.733441+00	2016-11-05 14:31:29.185971+00	4173			+12392819826								1	f	f			new lead	\N	
2017-03-10 20:00:58.536466+00	2017-03-10 20:02:59.778179+00	4174			+13474796141								1	f	f			new lead	\N	
2017-09-01 02:22:37.327423+00	2017-09-01 02:22:37.378291+00	4175	Netanya 	Rolling 	+17063087820								13	f	f	Netanyarolling96@gmail.com		new lead	\N	
2017-05-02 15:36:58.510441+00	2017-11-29 18:38:49.808563+00	4176			+18173908433								9	f	f		bass enterprise	new lead	\N	
2017-05-29 22:17:54.192362+00	2017-11-29 18:38:49.813961+00	4177			+19035212815								9	f	f		wood charles   	new lead	\N	
2016-11-01 13:20:55.648059+00	2016-11-01 13:20:55.67187+00	4178	MARIA	SANCHEZ	+14698314475								1	f	f	sanvar53@sbcglobal.net		new lead	\N	
2017-12-18 18:58:22.300319+00	2017-12-18 19:02:30.912327+00	4179			+19035275343								15	f	f			new lead	\N	
2017-03-16 15:21:00.591341+00	2017-11-29 18:38:53.212411+00	4180			+12255715202								9	f	f			new lead	\N	
2016-08-25 20:22:52.466357+00	2017-11-29 18:31:33.775599+00	4181	Stephanie	Parks	+12165263459								1	f	f	Devonn2017@gmail.com		application submitted - credit union	\N	
2017-07-31 23:06:11.160438+00	2017-07-31 23:06:11.232581+00	4182	Annette	Miller	+18636056563								13	f	f	nanni061412@gmail.com		new lead	\N	
2017-08-14 12:11:04.466676+00	2017-08-14 12:11:04.818146+00	4183			+17705387855								13	f	f			new lead	\N	
2017-04-22 21:26:01.166957+00	2017-04-22 21:27:33.136756+00	4184			+14692712199								12	f	f		cell phone   tx	new lead	\N	
2017-05-17 20:11:13.618425+00	2017-11-29 18:38:49.812089+00	4185			+14047497905								9	f	f		williams damiya	new lead	\N	
2016-09-12 11:15:49.779591+00	2016-12-10 01:05:18.400951+00	4186			+16107924577								3	f	f			new lead	\N	
2017-04-22 15:34:54.097988+00	2017-11-29 18:38:49.806301+00	4187			+12392494444								9	f	f		wilkins adam   	new lead	\N	
2017-11-25 19:43:00.689096+00	2017-11-25 19:46:11.233621+00	4188	Melissa	Prince	+16787605849								13	f	f	19melissaprince@gmail.com		select status	\N	
2016-08-25 16:19:31.653974+00	2016-12-10 01:00:18.568315+00	4189			+16193571157								3	f	f			new lead	\N	
2016-11-03 17:04:04.213151+00	2016-11-03 17:04:04.249844+00	4190	Valerie	Boyce	+13133501254								1	f	f	vboycedsc@yahoo.com		new lead	\N	
2017-04-19 16:42:50.794947+00	2017-11-29 18:38:49.805725+00	4191			+12147623126								9	f	f		cormier philip 	new lead	\N	
2017-11-30 22:05:37.772359+00	2017-11-30 22:07:01.419096+00	4192	Anthony	mervine	+19013897218								13	f	f	karson10aj@gmail.com		new lead	\N	
2017-10-10 23:58:03.684749+00	2017-10-10 23:59:58.694869+00	4193			+18173508519								12	f	f		williams iesha	new lead	\N	
2018-05-23 19:00:56.427334+00	2019-10-18 05:12:12.435256+00	3801	Tom	Rogers	+17739699892		123 Brick St		Buffalo	ME	56546		4	f	f	tom@buyercall.com	chicago  il	new lead	Lachelle Campbell	
2018-04-25 15:27:33.77221+00	2018-07-26 22:49:07.769493+00	1219	Test	test	+16786787673		123 Brick St			sf	43324		4	f	f	test@test.com				
2018-07-26 22:51:08.011623+00	2018-07-26 22:51:12.455914+00	4194	Mike	Dalton	+12343534636		123 West			IL	64532		4	f	f	hvermaak@asds.com		no status		
2018-11-07 03:09:16.577084+00	2018-11-07 03:09:16.590062+00	4195	Patrick	Schiller	+17732909651		123 Main St		Boston	MA	50432		4	f	f	support@buyercall.com		no status		
2019-10-01 21:09:30.206266+00	2019-10-01 21:38:28.606324+00	4216	Fred	Walton	+12245439906		23 Main St		Chicago	IL	60649		4	f	f	Fred@buyercall.com		no status	John McGill	
2018-11-20 18:05:00.444033+00	2018-11-20 18:05:00.457203+00	4196	Simone	Ross	+19668343680		123 Main Road		Seattle	WA	94549		4	f	f	susicoho@mailinator.net		no status		
2018-12-12 22:16:42.936629+00	2018-12-12 22:16:42.936649+00	4197	Johan	Jones	+17742320094								4	f	f	hv13@hotmail.com		no status		
2019-01-02 18:07:04.578485+00	2019-01-02 18:07:04.578503+00	4198	Ben	Tom	+17734094321								4	f	f	tom@buyercall.com		no status		
2019-01-02 18:26:58.547277+00	2019-01-02 18:26:58.547297+00	4200	Mike	Jones	+17732898543								4	f	f	test@buyercall.com		no status		
2019-10-02 01:13:22.802555+00	2019-10-02 01:13:22.830469+00	4217	Steven 	Flint	+13123344567		54 Main ST		Chicago	IL	60513		4	f	f	Steven@buyercall.com		no status		
2018-05-01 22:57:40.273642+00	2019-10-02 02:50:10+00	3652	Sue	Vans	+17732909650		wqeqwe		Boulder	IL	60613		4	f	f	hv13@hotmail.com	VERMAAK,HERMANU	new lead		
2019-10-17 19:49:44.347506+00	2019-10-17 19:49:44.347548+00	4218	John	Barry	+18483123318								4	f	f	hello@buyercall.com		no status		
2017-05-26 18:08:05.343359+00	2017-11-29 18:38:49.813671+00	1			+18172711966								4	f	f		cell phone   tx	new lead	\N	
2017-08-03 23:08:10.088561+00	2017-08-03 23:09:28.932638+00	2			+18177237190								4	f	f		jasmine mccloud	new lead	\N	
2017-04-28 22:06:33.981417+00	2017-05-17 15:41:07.224393+00	3			+18177578290								4	f	f		martinez c	new lead	\N	
2016-08-08 16:43:19.50754+00	2017-11-29 18:31:37.36874+00	4	Leslie	Meyer	+16618167715								4	f	f	1@1.com		application submitted - credit union	\N	
2017-07-17 13:17:27.051889+00	2017-07-17 13:20:34.644263+00	5			+17062865316								4	f	f			new lead	\N	
2019-04-07 20:25:15.912466+00	2019-04-07 20:25:15.925066+00	4203	Matt	Hancock	+17739699893		123 Main ST			AZ	98102		4	f	f	support@buyercall.com		no status	Jesus Torres	
2019-01-02 18:20:02.705338+00	2019-03-02 00:32:32.126239+00	4199	Bob-Ross	Rob	+17743432211		19 W 24th St			NY	10010-3203		4	f	f	test@buyercall.com		no status	Bob Vans	
2019-03-01 01:47:36.950466+00	2019-03-02 00:32:50.845224+00	4201	Barry-May	Williams-Jones	+18083443412		151 Sterling Lake Dr		Lexington	AL	29072		4	f	f	mikew@buyercall.com		no status		
2019-10-22 16:07:44.345542+00	2019-10-22 16:07:44.361118+00	4219	test 	test	+17739699892		test 		test 	AK	29072		34	f	f	test@test.com		no status		
2019-04-11 21:59:08.46129+00	2019-04-11 22:01:18+00	4204	George 	Bush	+18479009875		2612 NW 62nd ST		Seattle	WA	98107		4	f	f	george@buyercall.com		no status		
2019-04-13 14:18:07.668597+00	2019-04-13 14:18:07.668629+00	4205	John	McMann	+1hv13@hotmail.com								4	f	f	78953233222		no status		
2019-04-13 14:45:39.231235+00	2019-04-13 14:45:39.231255+00	4206	Matt	Hancock	+1hv13@hotmail,con								4	f	f	6763323232		no status		
2019-04-13 14:50:13.219251+00	2019-04-13 14:50:13.219268+00	4207	Barry	Hancock	+1hv13@hotmail,com								4	f	f	7732909650		no status		
2019-03-02 00:50:29.40647+00	2019-03-02 00:50:29.417305+00	4202	morne	bolla	+18478084432		151 Sterling Lake Dr		Lexington	CO	29072		4	f	f	hv13@hotmail.com		no status		
2019-04-13 14:54:57.767002+00	2019-04-13 14:54:57.767021+00	4208	Matt	Hancock	+1hv13@hitnaukc,on								4	f	f	77324404352		no status		
2019-04-13 14:56:11.745674+00	2019-04-13 14:56:11.745704+00	4209	Barry	Hancock	+1hv2FG.o								4	f	f	77323390912		no status		
2018-05-02 20:53:30.78052+00	2019-04-13 15:44:05.977615+00	1695	test		+1								4	f	f			new lead		
2019-05-23 22:49:07.717931+00	2019-05-23 22:49:07.717955+00	4210	Saul	Goodman	+17735469660								4	f	f	saulgood@buyercall.com		no status	\N	
2019-05-23 22:54:21.71356+00	2019-05-23 22:54:21.713582+00	4211	Sue	Gary	+17773334444								4	f	f	sue@buyercall.com		no status	\N	
2019-05-23 23:02:20.426529+00	2019-05-23 23:02:20.439255+00	4212	Cody	Blake	+14567073332		151 Sterling Lake Dr		Lexington	CO	29072		4	f	f	hot@mail.com		no status		
2019-08-22 14:03:59.732454+00	2019-08-22 14:03:59.763884+00	4213	Rosemary	Willis	+14042365394		2718 oxford drive		Gainesville	GA	30354		4	f	f	rsmrywillis106@yahoo.com		no status		
2019-09-19 17:17:37.189836+00	2019-09-19 17:17:37.189866+00	4214	Steve	Neu	+18035462731								4	f	f	steveneu@live.com		no status		
2019-10-01 20:38:59.632536+00	2019-10-01 20:38:59.647856+00	4215	Mark	Stewart	+17735649987		123 Main ST		Lexington	AR	29072		4	f	f	testing@buyercall.com		no status		
\.


--
-- Name: contacts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('contacts_id_seq', 4219, true);


--
-- Data for Name: coupons; Type: TABLE DATA; Schema: public; Owner: -
--

COPY coupons (created_on, updated_on, id, code, duration, amount_off, percent_off, currency, duration_in_months, max_redemptions, redeem_by, times_redeemed, valid) FROM stdin;
\.


--
-- Name: coupons_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('coupons_id_seq', 1, true);


--
-- Data for Name: credit_cards; Type: TABLE DATA; Schema: public; Owner: -
--

COPY credit_cards (created_on, updated_on, id, brand, last4, exp_date, is_expiring, cc_name, is_deleted) FROM stdin;
2016-01-30 20:08:02.254516+00	2016-01-30 20:08:02.254534+00	2	Visa	4242	2024-09-01	f	Mike	f
2018-01-31 16:19:35.505477+00	2018-01-31 16:19:35.505498+00	13	Visa	4242	2023-03-01	f	ABC	f
2018-02-08 23:07:16.35959+00	2018-02-08 23:07:16.359608+00	14	Visa	4242	2024-10-01	f	dfsdfsd	f
2018-02-08 23:10:42.85717+00	2018-02-08 23:10:42.857197+00	15	Visa	4242	2025-09-01	f	Jonna	f
2018-02-13 01:17:14.998624+00	2018-02-13 01:17:14.998652+00	16	Visa	4242	2026-10-01	f	Makky	f
2017-04-30 15:40:18.470281+00	2019-10-29 16:01:00.641264+00	12	MasterCard	3764	2019-06-01	t	JDR Investments	f
\.


--
-- Name: credit_cards_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('credit_cards_id_seq', 16, true);


--
-- Data for Name: external_api_service_providers; Type: TABLE DATA; Schema: public; Owner: -
--

COPY external_api_service_providers (created_on, updated_on, id, name) FROM stdin;
2019-10-01 20:21:00.793551+00	2019-10-01 20:21:00.793551+00	1	Auto Master Systems
\.


--
-- Name: external_api_service_providers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('external_api_service_providers_id_seq', 1, true);


--
-- Data for Name: external_api_service_providers_partnership_account_tie; Type: TABLE DATA; Schema: public; Owner: -
--

COPY external_api_service_providers_partnership_account_tie (created_on, updated_on, external_api_service_provider_id, partnership_account_id, username, password, secret, url, token_url, client_id, source, app_source) FROM stdin;
2019-09-23 17:31:31.63159+00	2019-10-04 16:12:46.735759+00	1	4	S7vS55VOsLZwBWoraWUh8Qxq88i8lRcIZE/G41AmoeE=	HCNgySkry4WZdnq1Et/LqqcrjNTEDMD/0iBbUs6DxO0fGyRPGStiPS30cwPMPa7a	0Bi1A6LYwc7X7hF7rxd2drILODlGwJceSGfax1H8GJ80+X9dct14yse8qOxlAS0ygAo+eBhZAul7XS0dViynbw==	https://1220.amsws.com/api/applications/create	https://1220.amsws.com/token	DigMark		
\.


--
-- Data for Name: external_form_fields; Type: TABLE DATA; Schema: public; Owner: -
--

COPY external_form_fields (form_id, "position", field_id, display_name, show_in_table) FROM stdin;
5	1	firstnamefield	firstname	t
6	1	firstnamefield	firstname	t
8	1	firstnamefield	firstname	t
9	1	firstnamefield	firstname	t
10	1	firstnamefield	firstname	t
11	1	firstnamefield	firstname	t
12	1	firstnamefield	firstname	t
13	1	firstnamefield	firstname	t
14	1	firstnamefield	firstname	t
1	2	lastnamefield	lastname	t
2	2	lastnamefield	lastname	t
3	2	lastnamefield	lastname	t
1	3	emailfield	email	t
2	3	emailfield	email	t
3	3	emailfield	email	t
11	3	emailfield	email	t
12	3	emailfield	email	t
4	5	phonefield	phone	t
5	5	phonefield	phone	t
6	5	phonefield	phone	t
7	5	phonefield	phone	t
8	5	phonefield	phone	t
9	5	phonefield	phone	t
12	5	phonefield	phone	t
1	61	extendedwarrantyfield	extendedwarranty	f
1	62	privacypolicyfield	acceptprivacypolicy	f
2	61	extendedwarrantyfield	extendedwarranty	f
2	62	privacypolicyfield	acceptprivacypolicy	f
3	61	extendedwarrantyfield	extendedwarranty	f
3	62	privacypolicyfield	acceptprivacypolicy	f
4	61	extendedwarrantyfield	extendedwarranty	f
4	62	privacypolicyfield	acceptprivacypolicy	f
19	1	firstnamefield	firstname	t
19	2	lastnamefield	lastname	t
19	3	emailfield	email	t
19	4	phonefield	phone	t
19	5	datepicker	datepicker	f
19	6	streetfield	street	f
19	7	cityfield	city	f
19	8	statefield	state	f
19	9	zipfield	zip	f
19	10	cumemberfield	ssnumber	f
19	11	incomefield	income	f
19	12	privacypolicyfield	acceptprivacypolicy	f
6	30	employmentyearsfield	employmentyears	f
7	30	employmentyearsfield	employmentyears	f
10	30	employmentyearsfield	employmentyears	f
11	30	employmentyearsfield	employmentyears	f
12	30	employmentyearsfield	employmentyears	f
13	30	employmentyearsfield	employmentyears	f
14	30	employmentyearsfield	employmentyears	f
3	47	payoffgoodtillfield	payoffgoodtill	f
3	48	dailyinterestfield	dailyinterest	f
3	49	referencesfield	references	f
4	44	nadafield	nada	f
4	45	ficofield	fico	f
4	46	payofffield	payoff	f
4	47	payoffgoodtillfield	payoffgoodtill	f
4	48	dailyinterestfield	dailyinterest	f
4	49	referencesfield	references	f
5	44	nadafield	nada	f
5	45	ficofield	fico	f
5	46	payofffield	payoff	f
5	47	payoffgoodtillfield	payoffgoodtill	f
5	48	dailyinterestfield	dailyinterest	f
5	49	referencesfield	references	f
6	44	nadafield	nada	f
6	45	ficofield	fico	f
6	46	payofffield	payoff	f
6	47	payoffgoodtillfield	payoffgoodtill	f
4	2	lastnamefield	lastname	t
5	2	lastnamefield	lastname	t
6	2	lastnamefield	lastname	t
4	3	emailfield	email	t
5	3	emailfield	email	t
6	3	emailfield	email	t
6	48	dailyinterestfield	dailyinterest	f
6	49	referencesfield	references	f
7	44	nadafield	nada	f
7	45	ficofield	fico	f
7	46	payofffield	payoff	f
7	47	payoffgoodtillfield	payoffgoodtill	f
7	48	dailyinterestfield	dailyinterest	f
7	49	referencesfield	references	f
8	44	nadafield	nada	f
8	45	ficofield	fico	f
8	46	payofffield	payoff	f
8	47	payoffgoodtillfield	payoffgoodtill	f
8	48	dailyinterestfield	dailyinterest	f
8	49	referencesfield	references	f
9	44	nadafield	nada	f
9	45	ficofield	fico	f
9	46	payofffield	payoff	f
9	47	payoffgoodtillfield	payoffgoodtill	f
9	48	dailyinterestfield	dailyinterest	f
9	49	referencesfield	references	f
10	44	nadafield	nada	f
10	45	ficofield	fico	f
10	46	payofffield	payoff	f
10	47	payoffgoodtillfield	payoffgoodtill	f
10	48	dailyinterestfield	dailyinterest	f
10	49	referencesfield	references	f
11	44	nadafield	nada	f
11	45	ficofield	fico	f
11	46	payofffield	payoff	f
11	47	payoffgoodtillfield	payoffgoodtill	f
11	48	dailyinterestfield	dailyinterest	f
11	49	referencesfield	references	f
12	44	nadafield	nada	f
12	45	ficofield	fico	f
12	46	payofffield	payoff	f
12	47	payoffgoodtillfield	payoffgoodtill	f
12	48	dailyinterestfield	dailyinterest	f
12	49	referencesfield	references	f
13	44	nadafield	nada	f
13	45	ficofield	fico	f
13	46	payofffield	payoff	f
13	47	payoffgoodtillfield	payoffgoodtill	f
13	48	dailyinterestfield	dailyinterest	f
13	49	referencesfield	references	f
14	44	nadafield	nada	f
14	45	ficofield	fico	f
14	46	payofffield	payoff	f
14	47	payoffgoodtillfield	payoffgoodtill	f
14	48	dailyinterestfield	dailyinterest	f
14	49	referencesfield	references	f
1	50	currentratefield	currentrate	f
2	50	currentratefield	currentrate	f
3	50	currentratefield	currentrate	f
4	50	currentratefield	currentrate	f
5	50	currentratefield	currentrate	f
6	50	currentratefield	currentrate	f
7	50	currentratefield	currentrate	f
8	50	currentratefield	currentrate	f
9	50	currentratefield	currentrate	f
10	50	currentratefield	currentrate	f
11	50	currentratefield	currentrate	f
12	50	currentratefield	currentrate	f
6	51	cosignerfirstnamefield	cosignerfirstname	f
6	52	cosignerlastnamefield	cosignerlastname	f
6	53	cosigneremployerfield	cosigneremployer	f
6	54	cosigneremploymerphonefield	cosigneremploymerphone	f
7	51	cosignerfirstnamefield	cosignerfirstname	f
7	52	cosignerlastnamefield	cosignerlastname	f
7	53	cosigneremployerfield	cosigneremployer	f
7	54	cosigneremploymerphonefield	cosigneremploymerphone	f
5	59	cosignerdateofbirthfield	cosignerdateofbirth	f
5	60	cosignerssnfield	cosignerssn	f
6	57	cosignerpositionfield	cosignerposition	f
6	58	cosignermonthlyincomefield	cosignermonthlyincome	f
6	59	cosignerdateofbirthfield	cosignerdateofbirth	f
6	60	cosignerssnfield	cosignerssn	f
7	57	cosignerpositionfield	cosignerposition	f
7	58	cosignermonthlyincomefield	cosignermonthlyincome	f
7	59	cosignerdateofbirthfield	cosignerdateofbirth	f
7	60	cosignerssnfield	cosignerssn	f
8	57	cosignerpositionfield	cosignerposition	f
5	61	extendedwarrantyfield	extendedwarranty	f
8	51	cosignerfirstnamefield	cosignerfirstname	f
8	52	cosignerlastnamefield	cosignerlastname	f
8	53	cosigneremployerfield	cosigneremployer	f
8	54	cosigneremploymerphonefield	cosigneremploymerphone	f
5	62	privacypolicyfield	acceptprivacypolicy	f
6	61	extendedwarrantyfield	extendedwarranty	f
6	62	privacypolicyfield	acceptprivacypolicy	f
7	61	extendedwarrantyfield	extendedwarranty	f
7	62	privacypolicyfield	acceptprivacypolicy	f
8	61	extendedwarrantyfield	extendedwarranty	f
8	62	privacypolicyfield	acceptprivacypolicy	f
9	61	extendedwarrantyfield	extendedwarranty	f
9	62	privacypolicyfield	acceptprivacypolicy	f
10	61	extendedwarrantyfield	extendedwarranty	f
10	62	privacypolicyfield	acceptprivacypolicy	f
11	61	extendedwarrantyfield	extendedwarranty	f
11	62	privacypolicyfield	acceptprivacypolicy	f
12	61	extendedwarrantyfield	extendedwarranty	f
12	62	privacypolicyfield	acceptprivacypolicy	f
13	61	extendedwarrantyfield	extendedwarranty	f
13	62	privacypolicyfield	acceptprivacypolicy	f
7	2	lastnamefield	lastname	t
8	2	lastnamefield	lastname	t
9	2	lastnamefield	lastname	t
7	3	emailfield	email	t
8	3	emailfield	email	t
9	3	emailfield	email	t
9	51	cosignerfirstnamefield	cosignerfirstname	f
9	52	cosignerlastnamefield	cosignerlastname	f
9	53	cosigneremployerfield	cosigneremployer	f
9	54	cosigneremploymerphonefield	cosigneremploymerphone	f
14	61	extendedwarrantyfield	extendedwarranty	f
14	62	privacypolicyfield	acceptprivacypolicy	f
17	12	repfield	representative	t
10	51	cosignerfirstnamefield	cosignerfirstname	f
10	52	cosignerlastnamefield	cosignerlastname	f
10	53	cosigneremployerfield	cosigneremployer	f
10	54	cosigneremploymerphonefield	cosigneremploymerphone	f
11	51	cosignerfirstnamefield	cosignerfirstname	f
11	52	cosignerlastnamefield	cosignerlastname	f
11	53	cosigneremployerfield	cosigneremployer	f
11	54	cosigneremploymerphonefield	cosigneremploymerphone	f
12	51	cosignerfirstnamefield	cosignerfirstname	f
12	52	cosignerlastnamefield	cosignerlastname	f
12	53	cosigneremployerfield	cosigneremployer	f
12	54	cosigneremploymerphonefield	cosigneremploymerphone	f
13	51	cosignerfirstnamefield	cosignerfirstname	f
13	52	cosignerlastnamefield	cosignerlastname	f
13	53	cosigneremployerfield	cosigneremployer	f
13	54	cosigneremploymerphonefield	cosigneremploymerphone	f
2	35	addressyearstotalfield	addressyears	f
3	35	addressyearstotalfield	addressyears	f
4	35	addressyearstotalfield	addressyears	f
5	35	addressyearstotalfield	addressyears	f
6	35	addressyearstotalfield	addressyears	f
9	57	cosignerpositionfield	cosignerposition	f
9	58	cosignermonthlyincomefield	cosignermonthlyincome	f
9	59	cosignerdateofbirthfield	cosignerdateofbirth	f
9	60	cosignerssnfield	cosignerssn	f
10	57	cosignerpositionfield	cosignerposition	f
10	58	cosignermonthlyincomefield	cosignermonthlyincome	f
10	59	cosignerdateofbirthfield	cosignerdateofbirth	f
10	60	cosignerssnfield	cosignerssn	f
11	57	cosignerpositionfield	cosignerposition	f
11	58	cosignermonthlyincomefield	cosignermonthlyincome	f
11	60	cosignerssnfield	cosignerssn	f
11	59	cosignerdateofbirthfield	cosignerdateofbirth	f
12	57	cosignerpositionfield	cosignerposition	f
12	58	cosignermonthlyincomefield	cosignermonthlyincome	f
12	59	cosignerdateofbirthfield	cosignerdateofbirth	f
12	60	cosignerssnfield	cosignerssn	f
13	57	cosignerpositionfield	cosignerposition	f
13	58	cosignermonthlyincomefield	cosignermonthlyincome	f
14	51	cosignerfirstnamefield	cosignerfirstname	f
14	52	cosignerlastnamefield	cosignerlastname	f
14	53	cosigneremployerfield	cosigneremployer	f
14	54	cosigneremploymerphonefield	cosigneremploymerphone	f
13	59	cosignerdateofbirthfield	cosignerdateofbirth	f
7	1	firstnamefield	firstname	t
10	2	lastnamefield	lastname	t
11	2	lastnamefield	lastname	t
12	2	lastnamefield	lastname	t
10	3	emailfield	email	t
1	30	employmentyearsfield	employmentyears	f
13	50	currentratefield	currentrate	f
14	50	currentratefield	currentrate	f
1	51	cosignerfirstnamefield	cosignerfirstname	f
1	52	cosignerlastnamefield	cosignerlastname	f
1	53	cosigneremployerfield	cosigneremployer	f
1	54	cosigneremploymerphonefield	cosigneremploymerphone	f
1	55	cosigneremploymentlengthyearsfield	cosigneremploymentlengthyears	f
6	55	cosigneremploymentlengthyearsfield	cosigneremploymentlengthyears	f
7	55	cosigneremploymentlengthyearsfield	cosigneremploymentlengthyears	f
11	55	cosigneremploymentlengthyearsfield	cosigneremploymentlengthyears	f
2	51	cosignerfirstnamefield	cosignerfirstname	f
2	52	cosignerlastnamefield	cosignerlastname	f
2	53	cosigneremployerfield	cosigneremployer	f
2	54	cosigneremploymerphonefield	cosigneremploymerphone	f
12	55	cosigneremploymentlengthyearsfield	cosigneremploymentlengthyears	f
13	55	cosigneremploymentlengthyearsfield	cosigneremploymentlengthyears	f
14	55	cosigneremploymentlengthyearsfield	cosigneremploymentlengthyears	f
1	63	additionalincomesourcefield	additionalincomesource	f
3	51	cosignerfirstnamefield	cosignerfirstname	f
3	52	cosignerlastnamefield	cosignerlastname	f
3	53	cosigneremployerfield	cosigneremployer	f
3	54	cosigneremploymerphonefield	cosigneremploymerphone	f
1	64	driverlicensetatefield	driverlicensetate	f
1	65	driverlicensefield	driverlicense	f
1	66	cosignerphonefield	cosignerphonefield	f
1	67	cosigneremailfield	cosigneremailfield	f
4	51	cosignerfirstnamefield	cosignerfirstname	f
4	52	cosignerlastnamefield	cosignerlastname	f
4	53	cosigneremployerfield	cosigneremployer	f
4	54	cosigneremploymerphonefield	cosigneremploymerphone	f
2	63	additionalincomesourcefield	additionalincomesource	f
2	64	driverlicensetatefield	driverlicensetate	f
2	65	driverlicensefield	driverlicense	f
5	51	cosignerfirstnamefield	cosignerfirstname	f
2	66	cosignerphonefield	cosignerphonefield	f
2	67	cosigneremailfield	cosigneremailfield	f
1	35	addressyearstotalfield	addressyears	f
7	35	addressyearstotalfield	addressyears	f
8	35	addressyearstotalfield	addressyears	f
12	35	addressyearstotalfield	addressyears	f
13	35	addressyearstotalfield	addressyears	f
14	35	addressyearstotalfield	addressyears	f
1	57	cosignerpositionfield	cosignerposition	f
1	58	cosignermonthlyincomefield	cosignermonthlyincome	f
1	59	cosignerdateofbirthfield	cosignerdateofbirth	f
1	60	cosignerssnfield	cosignerssn	f
2	57	cosignerpositionfield	cosignerposition	f
2	58	cosignermonthlyincomefield	cosignermonthlyincome	f
2	59	cosignerdateofbirthfield	cosignerdateofbirth	f
2	60	cosignerssnfield	cosignerssn	f
3	57	cosignerpositionfield	cosignerposition	f
3	58	cosignermonthlyincomefield	cosignermonthlyincome	f
3	59	cosignerdateofbirthfield	cosignerdateofbirth	f
3	60	cosignerssnfield	cosignerssn	f
4	57	cosignerpositionfield	cosignerposition	f
4	58	cosignermonthlyincomefield	cosignermonthlyincome	f
4	59	cosignerdateofbirthfield	cosignerdateofbirth	f
4	60	cosignerssnfield	cosignerssn	f
5	63	additionalincomesourcefield	additionalincomesource	f
5	64	driverlicensetatefield	driverlicensetate	f
5	65	driverlicensefield	driverlicense	f
5	66	cosignerphonefield	cosignerphonefield	f
5	67	cosigneremailfield	cosigneremailfield	f
6	63	additionalincomesourcefield	additionalincomesource	f
6	64	driverlicensetatefield	driverlicensetate	f
3	63	additionalincomesourcefield	additionalincomesource	f
3	64	driverlicensetatefield	driverlicensetate	f
3	65	driverlicensefield	driverlicense	f
3	66	cosignerphonefield	cosignerphonefield	f
3	67	cosigneremailfield	cosigneremailfield	f
4	63	additionalincomesourcefield	additionalincomesource	f
4	64	driverlicensetatefield	driverlicensetate	f
4	65	driverlicensefield	driverlicense	f
4	66	cosignerphonefield	cosignerphonefield	f
4	67	cosigneremailfield	cosigneremailfield	f
6	65	driverlicensefield	driverlicense	f
6	66	cosignerphonefield	cosignerphonefield	f
6	67	cosigneremailfield	cosigneremailfield	f
7	63	additionalincomesourcefield	additionalincomesource	f
7	64	driverlicensetatefield	driverlicensetate	f
7	65	driverlicensefield	driverlicense	f
7	66	cosignerphonefield	cosignerphonefield	f
7	67	cosigneremailfield	cosigneremailfield	f
8	63	additionalincomesourcefield	additionalincomesource	f
8	64	driverlicensetatefield	driverlicensetate	f
8	65	driverlicensefield	driverlicense	f
8	66	cosignerphonefield	cosignerphonefield	f
10	8	cityfield	city	f
1	1	firstnamefield	firstname	t
2	1	firstnamefield	firstname	t
3	1	firstnamefield	firstname	t
4	1	firstnamefield	firstname	t
5	57	cosignerpositionfield	cosignerposition	f
5	58	cosignermonthlyincomefield	cosignermonthlyincome	f
8	67	cosigneremailfield	cosigneremailfield	f
9	63	additionalincomesourcefield	additionalincomesource	f
9	64	driverlicensetatefield	driverlicensetate	f
9	65	driverlicensefield	driverlicense	f
9	66	cosignerphonefield	cosignerphonefield	f
9	67	cosigneremailfield	cosigneremailfield	f
10	63	additionalincomesourcefield	additionalincomesource	f
10	64	driverlicensetatefield	driverlicensetate	f
10	65	driverlicensefield	driverlicense	f
10	66	cosignerphonefield	cosignerphonefield	f
10	67	cosigneremailfield	cosigneremailfield	f
11	63	additionalincomesourcefield	additionalincomesource	f
11	64	driverlicensetatefield	driverlicensetate	f
11	65	driverlicensefield	driverlicense	f
11	66	cosignerphonefield	cosignerphonefield	f
11	67	cosigneremailfield	cosigneremailfield	f
12	63	additionalincomesourcefield	additionalincomesource	f
12	64	driverlicensetatefield	driverlicensetate	f
12	65	driverlicensefield	driverlicense	f
12	66	cosignerphonefield	cosignerphonefield	f
12	67	cosigneremailfield	cosigneremailfield	f
13	63	additionalincomesourcefield	additionalincomesource	f
13	64	driverlicensetatefield	driverlicensetate	f
13	65	driverlicensefield	driverlicense	f
13	66	cosignerphonefield	cosignerphonefield	f
13	67	cosigneremailfield	cosigneremailfield	f
14	63	additionalincomesourcefield	additionalincomesource	f
14	64	driverlicensetatefield	driverlicensetate	f
14	65	driverlicensefield	driverlicense	f
14	66	cosignerphonefield	cosignerphonefield	f
14	67	cosigneremailfield	cosigneremailfield	f
2	30	employmentyearsfield	employmentyears	f
3	30	employmentyearsfield	employmentyears	f
4	30	employmentyearsfield	employmentyears	f
5	30	employmentyearsfield	employmentyears	f
5	52	cosignerlastnamefield	cosignerlastname	f
5	53	cosigneremployerfield	cosigneremployer	f
5	54	cosigneremploymerphonefield	cosigneremploymerphone	f
1	5	phonefield	phone	t
2	5	phonefield	phone	t
3	5	phonefield	phone	t
9	35	addressyearstotalfield	addressyears	f
10	35	addressyearstotalfield	addressyears	f
11	35	addressyearstotalfield	addressyears	f
8	55	cosigneremploymentlengthyearsfield	cosigneremploymentlengthyears	f
9	55	cosigneremploymentlengthyearsfield	cosigneremploymentlengthyears	f
10	55	cosigneremploymentlengthyearsfield	cosigneremploymentlengthyears	f
15	1	firstnamefield	name	t
15	2	emailfield	email	t
15	3	phonefield	phone	t
15	4	messagefield	message	t
16	1	firstnamefield	firstnamefield	t
16	2	lastnamefield	lastnamefield	t
16	3	emailfield	emailfield	t
16	4	confirmemailfield	confirmemailfield	f
3	31	enploymentfield	employmentmonths	f
1	32	formeremployerfield	formeremployer	f
2	32	formeremployerfield	formeremployer	f
3	32	formeremployerfield	formeremployer	f
1	33	rentorownfield	housingstatus	f
2	33	rentorownfield	housingstatus	f
3	33	rentorownfield	housingstatus	f
16	5	phonefield	phonefield	t
16	6	datepicker	datepicker	f
16	7	streetfield	streetfield	f
16	8	cityfield	cityfield	f
16	9	statefield	statefield	f
16	10	zipfield	zipfield	f
16	11	cumemberfield	cumemberfield	f
16	12	applicationtypefield	applicationtypefield	f
16	13	loantypefield	loantypefield	f
16	14	requesttermfield	requesttermfield	f
16	15	loanamountfield	loanamountfield	f
16	16	vehicletypefield	vehicletypefield	f
16	17	vehiclemakefield	vehiclemakefield	f
16	18	vehicleyearfield	vehicleyearfield	f
16	19	vehiclemodelfield	vehiclemodelfield	f
16	20	vinfield	vinfield	f
16	21	mileagefield	mileagefield	f
16	22	vehicleoptionsfield	vehicleoptionsfield	f
4	32	formeremployerfield	formeremployer	f
5	32	formeremployerfield	formeremployer	f
5	33	rentorownfield	housingstatus	f
16	23	vehicletradefield	vehicletradefield	f
16	24	employmentstatusfield	employmentstatusfield	f
16	25	employerfield	employerfield	f
16	26	titlefield	titlefield	f
16	27	workphonefield	workphonefield	f
16	28	incomefield	incomefield	f
16	29	additionalincomefield	additionalincomefield	f
16	30	enploymentfield	enploymentfield	f
16	31	formeremployerfield	formeremployerfield	f
16	32	rentorownfield	rentorownfield	f
16	33	monthlypaymentfield	monthlypaymentfield	f
16	34	addressyearsfield	addressyearsfield	f
16	35	previousstreetfield	previousstreetfield	f
16	36	previouscitytfield	previouscitytfield	f
16	37	previousstatefield	previousstatefield	f
16	38	previouszipfield	previouszipfield	f
16	39	financialfield	financialfield	f
16	40	accountfield	accountfield	f
16	41	vehicleinsurancefield	vehicleinsurancename	f
16	42	nadafield	nada	f
16	43	ficofield	fico	f
16	44	payofffield	payoff	f
8	31	enploymentfield	employmentmonths	f
6	32	formeremployerfield	formeremployer	f
7	32	formeremployerfield	formeremployer	f
8	32	formeremployerfield	formeremployer	f
6	33	rentorownfield	housingstatus	f
7	33	rentorownfield	housingstatus	f
8	33	rentorownfield	housingstatus	f
16	45	payoffgoodtillfield	payoffgoodtill	f
16	46	dailyinterestfield	dailyinterest	f
16	47	referencesfield	references	f
16	48	currentratefield	currentrate	f
16	49	cosignerfirstnamefield	cosignerfirstname	f
16	50	cosignerlastnamefield	cosignerlastname	f
16	51	cosigneremployerfield	cosigneremployer	f
16	52	cosigneremploymerphonefield	cosigneremploymerphone	f
8	30	employmentyearsfield	employmentyears	f
9	30	employmentyearsfield	employmentyears	f
16	53	cosigneremploymentlengthfield	cosigneremploymentlength	f
16	54	cosignerpositionfield	cosignerposition	f
16	55	cosignermonthlyincomefield	cosignermonthlyincome	f
16	56	cosignerdateofbirthfield	cosignerdateofbirth	f
16	57	cosignerssnfield	cosignerssn	f
1	4	confirmemailfield	confirmemail	f
2	4	confirmemailfield	confirmemail	f
1	6	datepicker	dateofbirth	f
2	6	datepicker	dateofbirth	f
3	6	datepicker	dateofbirth	f
1	7	streetfield	street	f
2	7	streetfield	street	f
3	7	streetfield	street	f
1	8	cityfield	city	f
2	8	cityfield	city	f
3	8	cityfield	city	f
1	9	statefield	state	f
2	9	statefield	state	f
3	9	statefield	state	f
1	10	zipfield	zip	f
2	10	zipfield	zip	f
3	10	zipfield	zip	f
1	11	cumemberfield	ssnumber	f
2	11	cumemberfield	ssnumber	f
3	11	cumemberfield	ssnumber	f
1	12	applicationtypefield	applicationtype	f
2	12	applicationtypefield	applicationtype	f
3	12	applicationtypefield	applicationtype	f
1	13	loantypefield	loantype	f
2	13	loantypefield	loantype	f
3	13	loantypefield	loantype	f
1	14	requesttermfield	requestterm	f
2	14	requesttermfield	requestterm	f
3	14	requesttermfield	requestterm	f
1	15	loanamountfield	loanamount	f
2	15	loanamountfield	loanamount	f
3	15	loanamountfield	loanamount	f
1	16	vehicletypefield	vehicletype	f
2	16	vehicletypefield	vehicletype	f
3	16	vehicletypefield	vehicletype	f
1	17	vehiclemakefield	vehiclemake	f
2	17	vehiclemakefield	vehiclemake	f
3	17	vehiclemakefield	vehiclemake	f
1	18	vehicleyearfield	vehicleyear	f
2	18	vehicleyearfield	vehicleyear	f
3	18	vehicleyearfield	vehicleyear	f
1	19	vehiclemodelfield	vehiclemodel	f
2	19	vehiclemodelfield	vehiclemodel	f
3	19	vehiclemodelfield	vehiclemodel	f
1	20	vinfield	vin	f
2	20	vinfield	vin	f
3	20	vinfield	vin	f
1	21	mileagefield	mileage	f
2	21	mileagefield	mileage	f
3	21	mileagefield	mileage	f
1	22	vehicleoptionsfield	vehicleoptions	f
2	22	vehicleoptionsfield	vehicleoptions	f
3	22	vehicleoptionsfield	vehicleoptions	f
1	23	vehicletradefield	vehicletradein	f
2	23	vehicletradefield	vehicletradein	f
3	23	vehicletradefield	vehicletradein	f
1	24	employmentstatusfield	employmentstatus	f
2	24	employmentstatusfield	employmentstatus	f
3	24	employmentstatusfield	employmentstatus	f
1	25	employerfield	employer	f
2	25	employerfield	employer	f
3	25	employerfield	employer	f
1	26	titlefield	jobtitle	f
2	26	titlefield	jobtitle	f
3	26	titlefield	jobtitle	f
1	27	workphonefield	workphone	f
2	27	workphonefield	workphone	f
3	27	workphonefield	workphone	f
1	28	incomefield	income	f
2	28	incomefield	income	f
3	28	incomefield	income	f
1	29	additionalincomefield	additionalincome	f
2	29	additionalincomefield	additionalincome	f
3	29	additionalincomefield	additionalincome	f
1	37	previousstreetfield	previousstreet	f
2	37	previousstreetfield	previousstreet	f
1	38	previouscitytfield	previouscity	f
2	38	previouscitytfield	previouscity	f
1	39	previousstatefield	previousstate	f
2	39	previousstatefield	previousstate	f
1	41	financialfield	bankname	f
2	41	financialfield	bankname	f
1	42	accountfield	accountnumber	f
2	42	accountfield	accountnumber	f
1	36	addressyearsfield	addressmonths	f
2	36	addressyearsfield	addressmonths	f
3	36	addressyearsfield	addressmonths	f
1	40	previouszipfield	previouszip	f
2	40	previouszipfield	previouszip	f
4	4	confirmemailfield	confirmemail	f
5	4	confirmemailfield	confirmemail	f
6	4	confirmemailfield	confirmemail	f
4	56	cosigneremploymentlengthfield	cosigneremploymentlengthmonths	f
5	56	cosigneremploymentlengthfield	cosigneremploymentlengthmonths	f
6	56	cosigneremploymentlengthfield	cosigneremploymentlengthmonths	f
4	6	datepicker	dateofbirth	f
5	6	datepicker	dateofbirth	f
6	6	datepicker	dateofbirth	f
4	7	streetfield	street	f
5	7	streetfield	street	f
6	7	streetfield	street	f
4	8	cityfield	city	f
5	8	cityfield	city	f
6	8	cityfield	city	f
4	9	statefield	state	f
5	9	statefield	state	f
6	9	statefield	state	f
4	10	zipfield	zip	f
5	10	zipfield	zip	f
6	10	zipfield	zip	f
4	11	cumemberfield	ssnumber	f
5	11	cumemberfield	ssnumber	f
6	11	cumemberfield	ssnumber	f
4	12	applicationtypefield	applicationtype	f
5	12	applicationtypefield	applicationtype	f
6	12	applicationtypefield	applicationtype	f
4	13	loantypefield	loantype	f
5	13	loantypefield	loantype	f
6	13	loantypefield	loantype	f
4	14	requesttermfield	requestterm	f
5	14	requesttermfield	requestterm	f
6	14	requesttermfield	requestterm	f
4	15	loanamountfield	loanamount	f
1	31	enploymentfield	employmentmonths	f
2	31	enploymentfield	employmentmonths	f
7	56	cosigneremploymentlengthfield	cosigneremploymentlengthmonths	f
5	15	loanamountfield	loanamount	f
6	15	loanamountfield	loanamount	f
4	16	vehicletypefield	vehicletype	f
5	16	vehicletypefield	vehicletype	f
6	16	vehicletypefield	vehicletype	f
4	17	vehiclemakefield	vehiclemake	f
5	17	vehiclemakefield	vehiclemake	f
6	17	vehiclemakefield	vehiclemake	f
4	18	vehicleyearfield	vehicleyear	f
5	18	vehicleyearfield	vehicleyear	f
6	18	vehicleyearfield	vehicleyear	f
4	19	vehiclemodelfield	vehiclemodel	f
5	19	vehiclemodelfield	vehiclemodel	f
6	19	vehiclemodelfield	vehiclemodel	f
4	20	vinfield	vin	f
5	20	vinfield	vin	f
6	20	vinfield	vin	f
4	21	mileagefield	mileage	f
5	21	mileagefield	mileage	f
6	21	mileagefield	mileage	f
4	22	vehicleoptionsfield	vehicleoptions	f
5	22	vehicleoptionsfield	vehicleoptions	f
6	22	vehicleoptionsfield	vehicleoptions	f
4	23	vehicletradefield	vehicletradein	f
5	23	vehicletradefield	vehicletradein	f
6	23	vehicletradefield	vehicletradein	f
4	24	employmentstatusfield	employmentstatus	f
5	24	employmentstatusfield	employmentstatus	f
6	24	employmentstatusfield	employmentstatus	f
4	25	employerfield	employer	f
5	25	employerfield	employer	f
6	25	employerfield	employer	f
4	26	titlefield	jobtitle	f
5	26	titlefield	jobtitle	f
6	26	titlefield	jobtitle	f
4	27	workphonefield	workphone	f
5	27	workphonefield	workphone	f
6	27	workphonefield	workphone	f
4	28	incomefield	income	f
5	28	incomefield	income	f
4	29	additionalincomefield	additionalincome	f
5	29	additionalincomefield	additionalincome	f
3	37	previousstreetfield	previousstreet	f
4	37	previousstreetfield	previousstreet	f
5	37	previousstreetfield	previousstreet	f
3	38	previouscitytfield	previouscity	f
4	38	previouscitytfield	previouscity	f
5	38	previouscitytfield	previouscity	f
3	39	previousstatefield	previousstate	f
4	39	previousstatefield	previousstate	f
5	39	previousstatefield	previousstate	f
3	41	financialfield	bankname	f
4	41	financialfield	bankname	f
5	41	financialfield	bankname	f
3	42	accountfield	accountnumber	f
4	42	accountfield	accountnumber	f
5	42	accountfield	accountnumber	f
4	36	addressyearsfield	addressmonths	f
5	36	addressyearsfield	addressmonths	f
3	40	previouszipfield	previouszip	f
4	40	previouszipfield	previouszip	f
5	40	previouszipfield	previouszip	f
6	37	previousstreetfield	previousstreet	f
7	37	previousstreetfield	previousstreet	f
7	4	confirmemailfield	confirmemail	f
8	4	confirmemailfield	confirmemail	f
9	4	confirmemailfield	confirmemail	f
8	37	previousstreetfield	previousstreet	f
6	38	previouscitytfield	previouscity	f
7	6	datepicker	dateofbirth	f
8	6	datepicker	dateofbirth	f
9	6	datepicker	dateofbirth	f
7	7	streetfield	street	f
8	7	streetfield	street	f
9	7	streetfield	street	f
7	8	cityfield	city	f
8	8	cityfield	city	f
9	8	cityfield	city	f
7	9	statefield	state	f
8	9	statefield	state	f
9	9	statefield	state	f
7	10	zipfield	zip	f
8	10	zipfield	zip	f
9	10	zipfield	zip	f
7	11	cumemberfield	ssnumber	f
8	11	cumemberfield	ssnumber	f
9	11	cumemberfield	ssnumber	f
7	12	applicationtypefield	applicationtype	f
8	12	applicationtypefield	applicationtype	f
9	12	applicationtypefield	applicationtype	f
7	13	loantypefield	loantype	f
8	13	loantypefield	loantype	f
9	13	loantypefield	loantype	f
7	14	requesttermfield	requestterm	f
8	14	requesttermfield	requestterm	f
9	14	requesttermfield	requestterm	f
7	15	loanamountfield	loanamount	f
8	15	loanamountfield	loanamount	f
9	15	loanamountfield	loanamount	f
7	16	vehicletypefield	vehicletype	f
8	16	vehicletypefield	vehicletype	f
9	16	vehicletypefield	vehicletype	f
7	17	vehiclemakefield	vehiclemake	f
8	17	vehiclemakefield	vehiclemake	f
9	17	vehiclemakefield	vehiclemake	f
7	18	vehicleyearfield	vehicleyear	f
8	18	vehicleyearfield	vehicleyear	f
9	18	vehicleyearfield	vehicleyear	f
7	19	vehiclemodelfield	vehiclemodel	f
8	19	vehiclemodelfield	vehiclemodel	f
9	19	vehiclemodelfield	vehiclemodel	f
7	20	vinfield	vin	f
8	20	vinfield	vin	f
9	20	vinfield	vin	f
7	21	mileagefield	mileage	f
4	31	enploymentfield	employmentmonths	f
5	31	enploymentfield	employmentmonths	f
4	33	rentorownfield	housingstatus	f
8	21	mileagefield	mileage	f
7	22	vehicleoptionsfield	vehicleoptions	f
8	22	vehicleoptionsfield	vehicleoptions	f
7	23	vehicletradefield	vehicletradein	f
8	23	vehicletradefield	vehicletradein	f
7	24	employmentstatusfield	employmentstatus	f
8	24	employmentstatusfield	employmentstatus	f
7	25	employerfield	employer	f
8	25	employerfield	employer	f
7	26	titlefield	jobtitle	f
8	26	titlefield	jobtitle	f
7	27	workphonefield	workphone	f
8	27	workphonefield	workphone	f
6	28	incomefield	income	f
7	28	incomefield	income	f
8	28	incomefield	income	f
6	29	additionalincomefield	additionalincome	f
7	29	additionalincomefield	additionalincome	f
8	29	additionalincomefield	additionalincome	f
7	38	previouscitytfield	previouscity	f
8	42	accountfield	accountnumber	f
6	36	addressyearsfield	addressmonths	f
7	36	addressyearsfield	addressmonths	f
8	36	addressyearsfield	addressmonths	f
6	40	previouszipfield	previouszip	f
7	40	previouszipfield	previouszip	f
8	40	previouszipfield	previouszip	f
9	37	previousstreetfield	previousstreet	f
10	37	previousstreetfield	previousstreet	f
11	37	previousstreetfield	previousstreet	f
9	38	previouscitytfield	previouscity	f
10	38	previouscitytfield	previouscity	f
11	38	previouscitytfield	previouscity	f
9	39	previousstatefield	previousstate	f
10	39	previousstatefield	previousstate	f
11	39	previousstatefield	previousstate	f
9	41	financialfield	bankname	f
10	41	financialfield	bankname	f
11	41	financialfield	bankname	f
9	42	accountfield	accountnumber	f
10	42	accountfield	accountnumber	f
11	42	accountfield	accountnumber	f
9	36	addressyearsfield	addressmonths	f
10	36	addressyearsfield	addressmonths	f
11	36	addressyearsfield	addressmonths	f
9	40	previouszipfield	previouszip	f
10	40	previouszipfield	previouszip	f
11	40	previouszipfield	previouszip	f
10	4	confirmemailfield	confirmemail	f
11	4	confirmemailfield	confirmemail	f
10	6	datepicker	dateofbirth	f
11	6	datepicker	dateofbirth	f
12	6	datepicker	dateofbirth	f
10	7	streetfield	street	f
11	7	streetfield	street	f
12	7	streetfield	street	f
11	8	cityfield	city	f
12	8	cityfield	city	f
10	9	statefield	state	f
11	9	statefield	state	f
12	9	statefield	state	f
10	10	zipfield	zip	f
11	10	zipfield	zip	f
12	10	zipfield	zip	f
10	11	cumemberfield	ssnumber	f
11	11	cumemberfield	ssnumber	f
12	11	cumemberfield	ssnumber	f
10	12	applicationtypefield	applicationtype	f
11	12	applicationtypefield	applicationtype	f
12	12	applicationtypefield	applicationtype	f
10	13	loantypefield	loantype	f
11	13	loantypefield	loantype	f
12	13	loantypefield	loantype	f
10	14	requesttermfield	requestterm	f
11	14	requesttermfield	requestterm	f
10	15	loanamountfield	loanamount	f
11	15	loanamountfield	loanamount	f
10	16	vehicletypefield	vehicletype	f
11	16	vehicletypefield	vehicletype	f
10	17	vehiclemakefield	vehiclemake	f
11	17	vehiclemakefield	vehiclemake	f
10	18	vehicleyearfield	vehicleyear	f
11	18	vehicleyearfield	vehicleyear	f
10	19	vehiclemodelfield	vehiclemodel	f
11	19	vehiclemodelfield	vehiclemodel	f
10	20	vinfield	vin	f
11	20	vinfield	vin	f
9	21	mileagefield	mileage	f
10	21	mileagefield	mileage	f
11	21	mileagefield	mileage	f
9	22	vehicleoptionsfield	vehicleoptions	f
10	22	vehicleoptionsfield	vehicleoptions	f
11	22	vehicleoptionsfield	vehicleoptions	f
9	23	vehicletradefield	vehicletradein	f
10	23	vehicletradefield	vehicletradein	f
11	23	vehicletradefield	vehicletradein	f
9	24	employmentstatusfield	employmentstatus	f
10	24	employmentstatusfield	employmentstatus	f
11	24	employmentstatusfield	employmentstatus	f
9	25	employerfield	employer	f
10	25	employerfield	employer	f
11	25	employerfield	employer	f
9	26	titlefield	jobtitle	f
10	26	titlefield	jobtitle	f
11	26	titlefield	jobtitle	f
9	27	workphonefield	workphone	f
10	27	workphonefield	workphone	f
11	27	workphonefield	workphone	f
9	28	incomefield	income	f
10	28	incomefield	income	f
11	28	incomefield	income	f
9	29	additionalincomefield	additionalincome	f
10	5	phonefield	phone	t
11	5	phonefield	phone	t
6	31	enploymentfield	employmentmonths	f
7	31	enploymentfield	employmentmonths	f
10	29	additionalincomefield	additionalincome	f
11	29	additionalincomefield	additionalincome	f
13	38	previouscitytfield	previouscity	f
14	38	previouscitytfield	previouscity	f
12	39	previousstatefield	previousstate	f
13	39	previousstatefield	previousstate	f
14	39	previousstatefield	previousstate	f
13	41	financialfield	bankname	f
14	41	financialfield	bankname	f
12	42	accountfield	accountnumber	f
13	42	accountfield	accountnumber	f
14	42	accountfield	accountnumber	f
12	36	addressyearsfield	addressmonths	f
13	36	addressyearsfield	addressmonths	f
14	36	addressyearsfield	addressmonths	f
12	40	previouszipfield	previouszip	f
13	40	previouszipfield	previouszip	f
14	40	previouszipfield	previouszip	f
1	43	vehicleinsurancefield	vehicleinsurancename	f
2	43	vehicleinsurancefield	vehicleinsurancename	f
3	43	vehicleinsurancefield	vehicleinsurancename	f
4	43	vehicleinsurancefield	vehicleinsurancename	f
5	43	vehicleinsurancefield	vehicleinsurancename	f
6	43	vehicleinsurancefield	vehicleinsurancename	f
7	43	vehicleinsurancefield	vehicleinsurancename	f
8	43	vehicleinsurancefield	vehicleinsurancename	f
9	43	vehicleinsurancefield	vehicleinsurancename	f
10	43	vehicleinsurancefield	vehicleinsurancename	f
11	43	vehicleinsurancefield	vehicleinsurancename	f
12	43	vehicleinsurancefield	vehicleinsurancename	f
13	43	vehicleinsurancefield	vehicleinsurancename	f
14	43	vehicleinsurancefield	vehicleinsurancename	f
1	44	nadafield	nada	f
1	45	ficofield	fico	f
13	4	confirmemailfield	confirmemail	f
13	6	datepicker	dateofbirth	f
14	6	datepicker	dateofbirth	f
13	7	streetfield	street	f
14	7	streetfield	street	f
13	8	cityfield	city	f
14	8	cityfield	city	f
13	9	statefield	state	f
14	9	statefield	state	f
13	10	zipfield	zip	f
14	10	zipfield	zip	f
13	11	cumemberfield	ssnumber	f
14	11	cumemberfield	ssnumber	f
13	12	applicationtypefield	applicationtype	f
14	12	applicationtypefield	applicationtype	f
13	13	loantypefield	loantype	f
14	13	loantypefield	loantype	f
12	14	requesttermfield	requestterm	f
13	14	requesttermfield	requestterm	f
14	14	requesttermfield	requestterm	f
12	15	loanamountfield	loanamount	f
13	15	loanamountfield	loanamount	f
14	15	loanamountfield	loanamount	f
12	16	vehicletypefield	vehicletype	f
13	16	vehicletypefield	vehicletype	f
14	16	vehicletypefield	vehicletype	f
12	17	vehiclemakefield	vehiclemake	f
13	17	vehiclemakefield	vehiclemake	f
14	17	vehiclemakefield	vehiclemake	f
12	18	vehicleyearfield	vehicleyear	f
13	18	vehicleyearfield	vehicleyear	f
14	18	vehicleyearfield	vehicleyear	f
12	19	vehiclemodelfield	vehiclemodel	f
13	19	vehiclemodelfield	vehiclemodel	f
14	19	vehiclemodelfield	vehiclemodel	f
12	20	vinfield	vin	f
13	20	vinfield	vin	f
14	20	vinfield	vin	f
12	21	mileagefield	mileage	f
13	21	mileagefield	mileage	f
14	21	mileagefield	mileage	f
12	22	vehicleoptionsfield	vehicleoptions	f
13	22	vehicleoptionsfield	vehicleoptions	f
14	22	vehicleoptionsfield	vehicleoptions	f
12	23	vehicletradefield	vehicletradein	f
13	23	vehicletradefield	vehicletradein	f
14	23	vehicletradefield	vehicletradein	f
12	24	employmentstatusfield	employmentstatus	f
13	24	employmentstatusfield	employmentstatus	f
14	24	employmentstatusfield	employmentstatus	f
12	25	employerfield	employer	f
13	25	employerfield	employer	f
14	25	employerfield	employer	f
12	26	titlefield	jobtitle	f
13	26	titlefield	jobtitle	f
14	26	titlefield	jobtitle	f
12	27	workphonefield	workphone	f
13	27	workphonefield	workphone	f
14	27	workphonefield	workphone	f
12	28	incomefield	income	f
13	28	incomefield	income	f
14	28	incomefield	income	f
12	29	additionalincomefield	additionalincome	f
13	29	additionalincomefield	additionalincome	f
14	29	additionalincomefield	additionalincome	f
1	46	payofffield	payoff	f
1	47	payoffgoodtillfield	payoffgoodtill	f
1	48	dailyinterestfield	dailyinterest	f
1	49	referencesfield	references	f
2	44	nadafield	nada	f
2	45	ficofield	fico	f
2	46	payofffield	payoff	f
2	47	payoffgoodtillfield	payoffgoodtill	f
2	48	dailyinterestfield	dailyinterest	f
2	49	referencesfield	references	f
3	44	nadafield	nada	f
13	2	lastnamefield	lastname	t
14	2	lastnamefield	lastname	t
13	3	emailfield	email	t
14	3	emailfield	email	t
13	5	phonefield	phone	t
14	5	phonefield	phone	t
9	31	enploymentfield	employmentmonths	f
10	31	enploymentfield	employmentmonths	f
12	37	previousstreetfield	previousstreet	f
13	37	previousstreetfield	previousstreet	f
14	37	previousstreetfield	previousstreet	f
12	38	previouscitytfield	previouscity	f
12	41	financialfield	bankname	f
3	45	ficofield	fico	f
3	46	payofffield	payoff	f
1	34	monthlypaymentfield	monthlypayment	f
2	34	monthlypaymentfield	monthlypayment	f
3	34	monthlypaymentfield	monthlypayment	f
4	34	monthlypaymentfield	monthlypayment	f
5	34	monthlypaymentfield	monthlypayment	f
6	34	monthlypaymentfield	monthlypayment	f
7	34	monthlypaymentfield	monthlypayment	f
8	34	monthlypaymentfield	monthlypayment	f
9	34	monthlypaymentfield	monthlypayment	f
10	34	monthlypaymentfield	monthlypayment	f
11	34	monthlypaymentfield	monthlypayment	f
12	34	monthlypaymentfield	monthlypayment	f
13	34	monthlypaymentfield	monthlypayment	f
14	34	monthlypaymentfield	monthlypayment	f
8	58	cosignermonthlyincomefield	cosignermonthlyincome	f
3	4	confirmemailfield	confirmemail	f
12	4	confirmemailfield	confirmemail	f
14	4	confirmemailfield	confirmemail	f
8	59	cosignerdateofbirthfield	cosignerdateofbirth	f
8	60	cosignerssnfield	cosignerssn	f
1	56	cosigneremploymentlengthfield	cosigneremploymentlengthmonths	f
2	56	cosigneremploymentlengthfield	cosigneremploymentlengthmonths	f
3	56	cosigneremploymentlengthfield	cosigneremploymentlengthmonths	f
13	60	cosignerssnfield	cosignerssn	f
14	57	cosignerpositionfield	cosignerposition	f
14	58	cosignermonthlyincomefield	cosignermonthlyincome	f
14	59	cosignerdateofbirthfield	cosignerdateofbirth	f
14	60	cosignerssnfield	cosignerssn	f
9	56	cosigneremploymentlengthfield	cosigneremploymentlengthmonths	f
10	56	cosigneremploymentlengthfield	cosigneremploymentlengthmonths	f
11	56	cosigneremploymentlengthfield	cosigneremploymentlengthmonths	f
12	56	cosigneremploymentlengthfield	cosigneremploymentlengthmonths	f
13	56	cosigneremploymentlengthfield	cosigneremploymentlengthmonths	f
14	56	cosigneremploymentlengthfield	cosigneremploymentlengthmonths	f
8	56	cosigneremploymentlengthfield	cosigneremploymentlengthmonths	f
2	55	cosigneremploymentlengthyearsfield	cosigneremploymentlengthyears	f
3	55	cosigneremploymentlengthyearsfield	cosigneremploymentlengthyears	f
4	55	cosigneremploymentlengthyearsfield	cosigneremploymentlengthyears	f
5	55	cosigneremploymentlengthyearsfield	cosigneremploymentlengthyears	f
16	58	addressyearstotalfield	addressyears	f
16	59	employmentyearsfield	employmentyears	f
16	60	cosigneremploymentlengthyearsfield	cosigneremploymentlengthyears	f
16	61	extendedwarrantyfield	extendedwarranty	f
16	62	privacypolicyfield	acceptprivacypolicy	f
16	63	additionalincomesourcefield	additionalincomesource	f
16	64	driverlicensetatefield	driverlicensetate	f
16	65	driverlicensefield	driverlicense	f
16	66	cosignerphonefield	cosignerphonefield	f
16	67	cosigneremailfield	cosigneremailfield	f
8	38	previouscitytfield	previouscity	f
6	39	previousstatefield	previousstate	f
7	39	previousstatefield	previousstate	f
8	39	previousstatefield	previousstate	f
6	41	financialfield	bankname	f
7	41	financialfield	bankname	f
8	41	financialfield	bankname	f
6	42	accountfield	accountnumber	f
7	42	accountfield	accountnumber	f
16	68	offercodefield	offercodefield	f
17	1	firstnamefield	firstname	t
17	2	lastnamefield	lastname	t
17	3	emailfield	email	t
17	4	phonefield	phone	t
17	5	datepicker	datepicker	f
17	6	streetfield	street	f
17	7	cityfield	city	f
11	31	enploymentfield	employmentmonths	f
9	32	formeremployerfield	formeremployer	f
10	32	formeremployerfield	formeremployer	f
11	32	formeremployerfield	formeremployer	f
9	33	rentorownfield	housingstatus	f
10	33	rentorownfield	housingstatus	f
11	33	rentorownfield	housingstatus	f
17	8	statefield	state	f
17	9	zipfield	zip	f
17	10	cumemberfield	ssnumber	f
17	11	incomefield	income	f
18	1	firstnamefield	firstname	t
18	2	lastnamefield	lastname	t
18	3	emailfield	email	t
18	4	phonefield	phone	t
18	5	datepicker	datepicker	f
18	6	streetfield	street	f
18	7	cityfield	city	f
18	8	statefield	state	f
18	9	zipfield	zip	f
18	10	cumemberfield	ssnumber	f
18	11	incomefield	income	f
18	12	privacypolicyfield	acceptprivacypolicy	f
17	13	privacypolicyfield	acceptprivacypolicy	f
12	31	enploymentfield	employmentmonths	f
13	31	enploymentfield	employmentmonths	f
14	31	enploymentfield	employmentmonths	f
12	32	formeremployerfield	formeremployer	f
13	32	formeremployerfield	formeremployer	f
14	32	formeremployerfield	formeremployer	f
12	33	rentorownfield	housingstatus	f
13	33	rentorownfield	housingstatus	f
14	33	rentorownfield	housingstatus	f
20	1	vehiclefield	Vehicle	t
20	2	stockfield	Stock Number	t
20	3	locationfield	Location	f
20	6	lastnamefield	Last Name	t
20	7	phonefield	Phone Number	t
20	8	emailfield	Email	f
20	9	datepicker	Date of Birth	f
20	10	ssnfield	SS Number	f
20	11	driverlicensefield	Driver License Number	f
20	12	driverlicensestatefield	Driver License State	f
20	13	streetfield	Street	f
20	14	citytfield	City	f
20	15	statefield	State	f
20	16	zipfield	Zip Code / Postal Code	f
20	17	rentorownfield	Residence Status	f
20	18	monthlypaymentfield	Monthly Rent /Mortgage	f
20	19	addressyearstotalfield	Time at Residence	f
20	20	previousstreetfield	Previous Street	f
20	21	previouscitytfield	Previous City	f
20	22	previousstatefield	Previous State	f
20	23	previouszipfield	Previous Zip / Postal Code	f
20	24	employerfield	Employer	f
20	25	employercitytfield	Employer City	f
20	26	employerstatefield	Employer State	f
20	27	titlefield	Position	f
20	28	employmentyearsfield	Length of Employment	f
20	29	workphonefield	Work Phone	f
20	30	incomefield	Gross Monthly Income	f
20	31	additionalincomefield	Other Monthly Income	f
20	32	additionalincomesourcefield	Other Monthly Income Source	f
20	33	formeremployerfield	Previous Employer	f
20	34	formeremployercityfield	Previous Employer City	f
20	35	formeremployerstatefield	Previous Employer State	f
20	36	formeremployerpositionfield	Previous Position	f
20	37	formeremployertimefield	Previous Length of Employment	f
20	38	formeremployerphonefield	Previous Work Phone	f
20	39	cosignerfirstnamefield	Co-applicant First Name	f
20	40	ccosignerlastnamefield	Co-applicant Last Name	f
20	41	cosignerphonefield	Co-applicant Phone Number	f
20	42	cosigneremailfield	Co-applicant Email	f
20	43	cosignerdateofbirthfield	Co-applicant Date of Birth	f
20	44	cosignerssnfield	Co-applicant SS Number	f
20	45	codriverlicensefield	Co-applicant Driver License Number	f
20	46	codriverlicensestatefield	Co-applicant Driver License State	f
20	47	cosignerstreetfield	Co-applicant Street	f
20	48	cosignercitytfield	Co-applicant City	f
20	49	cosignerstatefield	Co-applicant State	f
20	50	cosignerzipfield	Co-applicant Zip / Postal Code	f
20	51	cosignerrentorownfield	Co-applicant Residence Status	f
20	52	cosignermonthlypaymentfield	Co-applicant Monthly Rent / Mortgage	f
20	53	cosigneraddressyearstotalfield	Co-applicant Time at Residence	f
20	54	cosignerpreviousstreetfield	Co-applicant Previous Street	f
20	55	cosignerpreviouscitytfield	Co-applicant Previous City	f
20	56	cosignerpreviousstatefield	Co-applicant Previous State	f
20	57	cosignerpreviouszipfield	Co-applicant Zip / Postal Code	f
20	58	cosigneremployerfield	Co-applicant Employer	f
20	59	cosigneremployercityfield	Co-applicant Employer City	f
20	60	cosigneremployerstatefield	Co-applicant Employer State	f
20	61	cosignerpositionfield	Co-applicant Employer Position	f
20	62	cosigneremploymentlengthyearsfield	Co-applicant Length of Employment	f
20	63	cosigneremploymerphonefield	Co-applicant Work Phone	f
20	64	cosignermonthlyincomefield	Co-applicant Gross Monthly Income	f
20	65	cosigneradditionalincomefield	Co-applicant Other Monthly Income	f
20	66	cosigneradditionalincomesourcefield	Co-applicant Other Monthly Income Source	f
20	67	cosignerformeremployerfield	Co-applicant Previous Employer	f
20	68	cosignerformeremployercityfield	Co-applicant Previous Employer City	f
20	69	cosignerformeremployerstatefield	Co-applicant Previous Employer State	f
20	70	cosignerformeremployerpositionfield	Co-applicant Previous Position	f
20	71	cosignerformeremployertimefield	Co-applicant Previous Length of Employment	f
20	72	cosignerformeremployerphonefield	Co-applicant Previous Work Phone	f
20	73	additionalinformationfield	Additional Comments	f
20	74	privacypolicyfield	Accept Privacy Policy	f
20	75	statusnote	Status Note	t
21	1	vehiclefield	Vehicle	t
21	2	stockfield	Stock Number	t
20	4	applicationtypefield	Application Type	f
20	5	firstnamefield	First Name	t
21	3	locationfield	Location	f
21	4	applicationtypefield	Application Type	f
21	5	firstnamefield	First Name	t
21	6	middlenamefield	Middle Name	f
21	7	lastnamefield	Last Name	t
21	8	phonefield	Phone Number	t
21	9	emailfield	Email	f
21	10	datepicker	Date of Birth	f
21	11	ssnfield	SS Number	f
21	12	driverlicensefield	Driver License Number	f
21	13	driverlicensestatefield	Driver License State	f
21	14	streetfield	Street	f
21	15	citytfield	City	f
21	16	statefield	State	f
21	17	zipfield	Zip Code / Postal Code	f
21	18	rentorownfield	Residence Status	f
21	19	monthlypaymentfield	Monthly Rent /Mortgage	f
21	20	addressyearstotalfield	Time at Residence	f
21	21	previousstreetfield	Previous Street	f
21	22	previouscitytfield	Previous City	f
21	23	previousstatefield	Previous State	f
21	24	previouszipfield	Previous Zip / Postal Code	f
21	25	employerfield	Employer	f
21	26	employercitytfield	Employer City	f
21	27	employerstatefield	Employer State	f
21	28	titlefield	Position	f
21	29	employmentyearsfield	Length of Employment	f
21	30	workphonefield	Work Phone	f
21	31	incomefield	Gross Monthly Income	f
21	32	additionalincomefield	Other Monthly Income	f
21	33	additionalincomesourcefield	Other Monthly Income Source	f
21	34	formeremployerfield	Previous Employer	f
21	35	formeremployercityfield	Previous Employer City	f
21	36	formeremployerstatefield	Previous Employer State	f
21	37	formeremployerpositionfield	Previous Position	f
21	38	formeremployertimefield	Previous Length of Employment	f
21	39	formeremployerphonefield	Previous Work Phone	f
21	40	cosignerfirstnamefield	Co-applicant First Name	f
21	41	cosignermiddlenamefield	Co-applicant Middle Name	f
21	42	ccosignerlastnamefield	Co-applicant Last Name	f
21	43	cosignerphonefield	Co-applicant Phone Number	f
21	44	cosigneremailfield	Co-applicant Email	f
21	45	cosignerdateofbirthfield	Co-applicant Date of Birth	f
21	46	cosignerssnfield	Co-applicant SS Number	f
21	47	codriverlicensefield	Co-applicant Driver License Number	f
21	48	codriverlicensestatefield	Co-applicant Driver License State	f
21	49	cosignerstreetfield	Co-applicant Street	f
21	50	cosignercitytfield	Co-applicant City	f
21	51	cosignerstatefield	Co-applicant State	f
21	52	cosignerzipfield	Co-applicant Zip / Postal Code	f
21	53	cosignerrentorownfield	Co-applicant Residence Status	f
21	54	cosignermonthlypaymentfield	Co-applicant Monthly Rent / Mortgage	f
21	55	cosigneraddressyearstotalfield	Co-applicant Time at Residence	f
21	56	cosignerpreviousstreetfield	Co-applicant Previous Street	f
21	57	cosignerpreviouscitytfield	Co-applicant Previous City	f
21	58	cosignerpreviousstatefield	Co-applicant Previous State	f
21	59	cosignerpreviouszipfield	Co-applicant Zip / Postal Code	f
21	60	cosigneremployerfield	Co-applicant Employer	f
21	61	cosigneremployercityfield	Co-applicant Employer City	f
21	62	cosigneremployerstatefield	Co-applicant Employer State	f
21	63	cosignerpositionfield	Co-applicant Employer Position	f
21	64	cosigneremploymentlengthyearsfield	Co-applicant Length of Employment	f
21	65	cosigneremploymerphonefield	Co-applicant Work Phone	f
21	66	cosignermonthlyincomefield	Co-applicant Gross Monthly Income	f
21	67	cosigneradditionalincomefield	Co-applicant Other Monthly Income	f
21	68	cosigneradditionalincomesourcefield	Co-applicant Other Monthly Income Source	f
21	69	cosignerformeremployerfield	Co-applicant Previous Employer	f
21	70	cosignerformeremployercityfield	Co-applicant Previous Employer City	f
21	71	cosignerformeremployerstatefield	Co-applicant Previous Employer State	f
21	72	cosignerformeremployerpositionfield	Co-applicant Previous Position	f
21	73	cosignerformeremployertimefield	Co-applicant Previous Length of Employment	f
21	74	cosignerformeremployerphonefield	Co-applicant Previous Work Phone	f
21	75	additionalinformationfield	Additional Comments	f
21	76	privacypolicyfield	Completed TOS	t
21	77	statusnote	Status Note	t
21	78	repfield	Sales Person	t
22	1	firstnamefield	firstname	t
22	2	lastnamefield	lastname	t
22	3	emailfield	email	t
22	4	phonefield	phone	t
22	5	datepicker	datepicker	f
22	6	streetfield	street	f
22	7	cityfield	city	f
22	8	statefield	state	f
22	9	zipfield	zip	f
22	10	cumemberfield	ssnumber	f
22	11	incomefield	income	f
22	12	repfield	Sales Person	t
22	13	privacypolicyfield	acceptprivacypolicy	f
23	1	applicationtypefield	Application Type	f
23	2	firstnamefield	First Name	t
23	3	middlenamefield	Middle Name	f
23	4	lastnamefield	Last Name	t
23	5	phonefield	Home Phone	t
23	7	mobilephonefield	Cell Phone	t
23	8	phonebillfield	Name Phone is Billed To	t
23	6	emailfield	Email	f
23	9	datepicker	Date of Birth	f
23	10	ssnfield	SS Number	f
23	11	driverlicensefield	Driver License Number	f
23	12	driverlicensestatefield	Driver License State	f
23	13	maritalstatusfield	Marital Status	f
23	14	dependentsfield	Number of Dependents	f
23	15	dependentagesfield	Ages of Dependents	f
23	16	streetfield	Street	f
23	17	citytfield	City	f
23	18	statefield	State	f
23	19	zipfield	Zip Code / Postal Code	f
23	20	countyfield	County	f
23	21	townshipfield	Township	f
23	22	rentorownfield	Residence Status	f
23	23	monthlypaymentfield	Monthly Rent /Mortgage	f
23	24	addressyearstotalfield	Years at Address	f
23	25	addressmonthstotalfield	Months at Address	f
23	26	landlordfield	Mortgage Holder Or Landlord	f
23	27	landlordphonefield	Landlord Phone	f
23	28	previousstreetfield	Previous Street	f
23	29	previouscitytfield	Previous City	f
23	30	previousstatefield	Previous State	f
23	31	previouszipfield	Previous Zip / Postal Code	f
23	32	previousaddressyearstotalfield	Previous Years at Address	f
23	33	previousaddressmonthstotalfield	Previous Months at Address	f
23	34	employerfield	Employer	f
23	35	employeraddressfield	Employer Address	f
23	36	employercitytfield	Employer City	f
23	37	employerstatefield	Employer State	f
23	38	employerzipfield	Employer Zip	f
23	39	titlefield	Occupation	f
23	40	employmentyearsfield	Years Employed	f
23	41	employmentmonthsfield	Months Employed	f
23	42	workphonefield	Employer Phone	f
23	43	incomefield	Monthly Gross Income	f
23	44	hourlypayfield	Hourly Pay	f
23	45	hoursworkedfield	Hours Worked	f
23	46	payperiodfield	Pay Period	f
23	47	additionalincomefield	Other Monthly Income	f
23	48	additionalincomesourcefield	Other Monthly Income Source	f
23	49	formeremployerfield	Previous Employer	f
23	50	formeremployerpositionfield	Previous Occupation	f
23	51	formeremployertimefield	Previous Years Employed	f
23	52	formeremployertimemonthsfield	Previous Months Employed	f
23	53	formeremployerphonefield	Previous Employer Phone	f
23	54	formeremployerleavereasonfield	Reason For Leaving	f
23	55	maintenancepaymentfield	Obligated to make alimony, child support or separate maintenance payments?	f
24	1	applicationtypefield	Application Type	f
24	2	firstnamefield	First Name	t
24	3	middlenamefield	Middle Name	f
24	4	lastnamefield	Last Name	t
24	5	phonefield	Home Phone	t
24	7	mobilephonefield	Cell Phone	t
24	8	phonebillfield	Name Phone is Billed To	f
24	6	emailfield	Email	t
24	9	datepicker	Date of Birth	f
24	10	ssnfield	SS Number	f
24	11	driverlicensefield	Driver License Number	f
24	12	driverlicensestatefield	Driver License State	f
24	13	maritalstatusfield	Marital Status	f
24	14	dependentsfield	Number of Dependents	f
24	15	dependentagesfield	Ages of Dependents	f
24	16	streetfield	Street	f
24	17	citytfield	City	f
24	18	statefield	State	f
24	19	zipfield	Zip Code / Postal Code	f
24	20	countyfield	County	f
24	21	townshipfield	Township	f
24	22	rentorownfield	Residence Status	f
24	23	monthlypaymentfield	Monthly Rent /Mortgage	f
24	24	addressyearstotalfield	Years at Address	f
24	25	addressmonthstotalfield	Months at Address	f
24	26	landlordfield	Mortgage Holder Or Landlord	f
24	27	landlordphonefield	Landlord Phone	f
24	28	previousstreetfield	Previous Street	f
24	29	previouscitytfield	Previous City	f
24	30	previousstatefield	Previous State	f
24	31	previouszipfield	Previous Zip / Postal Code	f
24	32	previousaddressyearstotalfield	Previous Years at Address	f
24	33	previousaddressmonthstotalfield	Previous Months at Address	f
24	34	employerfield	Employer	f
24	35	employeraddressfield	Employer Address	f
24	36	employercitytfield	Employer City	f
24	37	employerstatefield	Employer State	f
24	38	employerzipfield	Employer Zip	f
24	39	titlefield	Occupation	f
24	40	employmentyearsfield	Years Employed	f
24	41	employmentmonthsfield	Months Employed	f
24	42	workphonefield	Employer Phone	f
24	43	incomefield	Monthly Gross Income	f
24	44	hourlypayfield	Hourly Pay	f
24	45	hoursworkedfield	Hours Worked	f
24	46	payperiodfield	Pay Period	f
24	47	additionalincomefield	Other Monthly Income	f
24	48	additionalincomesourcefield	Other Monthly Income Source	f
24	49	formeremployerfield	Previous Employer	f
24	50	formeremployerpositionfield	Previous Occupation	f
24	51	formeremployertimefield	Previous Years Employed	f
24	52	formeremployertimemonthsfield	Previous Months Employed	f
24	53	formeremployerphonefield	Previous Employer Phone	f
24	54	formeremployerleavereasonfield	Reason For Leaving	f
24	55	maintenancepaymentfield	Obligated to make alimony, child support or separate maintenance payments?	f
24	56	childsupportagesfield	If Yes, youngests age	f
24	57	bankruptcyfield	Have you ever filed Bankruptcy?	f
24	58	bankruptcydischargedatefield	Discharged Date	f
24	59	bankruptcychapterfield	If yes, Chapter (select one)	f
24	60	repossessionfield	Have you ever had a vehicle or merchandise repossessed?	f
24	61	repossessiondatefield	If yes, when?	f
24	62	repossessiontypefield	Merchandise or Vehicle?	f
24	63	priorvehiclecreditborrowedfield	Prior Vehicle Credit Amount Borrowed?	f
24	64	amountowedfield	Amount Owed	f
24	65	loanwithwhomfield	With Whom?	f
24	66	banknamefield	Bank Name	f
24	67	bankcityfield	Bank City	f
24	68	checkingbalancefield	Checking Balance	f
24	69	savingbalancefield	Savings Balance	f
24	70	utilitiespaymentfield	Utilities Payment	f
24	71	childcarepaymentfield	Child Care Payment	f
24	72	cabletvpaymentfield	Cable TV Payment	f
24	73	downpaymentfield	Down Payment	f
24	74	cosignerfirstnamefield	Co-applicant First Name	f
24	75	cosignermiddlenamefield	Co-applicant Middle Name	f
24	76	ccosignerlastnamefield	Co-applicant Last Name	f
24	77	cosignerphonefield	Co-applicant Home Phone	f
24	78	cosignermobilephonefield	Co-applicant Cell Phone	f
24	79	cosignerphonebillfield	Name Phone is Billed To	f
24	80	cosigneremailfield	Co-applicant Email	f
24	81	cosignerdateofbirthfield	Co-applicant Date of Birth	f
24	82	cosignerssnfield	Co-applicant SS Number	f
24	83	codriverlicensefield	Co-applicant Driver License Number	f
24	84	codriverlicensestatefield	Co-applicant Driver License State	f
24	85	cosignermaritalstatusfield	Co-applicant Marital Status	f
24	86	cosignerdependentsfield	Co-applicant Number of Dependents	f
24	87	cosignerdependentagesfield	Co-applicant Ages of Dependents	f
24	88	cosignerstreetfield	Co-applicant Street	f
24	89	cosignercitytfield	Co-applicant City	f
24	90	cosignerstatefield	Co-applicant State	f
24	91	cosignerzipfield	Co-applicant Zip Code	f
24	92	cosignercountyfield	Co-applicant County	f
24	93	cosignertownshipfield	Co-applicant Township	f
24	94	cosignerrentorownfield	Co-applicant Residence Status	f
24	95	cosignermonthlypaymentfield	Co-applicant Monthly Rent / Mortgage	f
24	96	cosigneraddressyearstotalfield	Co-applicant Years at Residence	f
24	97	cosigneraddressmonthstotalfield	Co-applicant Months at Residence	f
24	98	cosignerlandlordfield	Co-applicant Mortgage Holder Or Landlord	f
24	99	cosignerlandlordphonefield	Co-applicant Landlords Phone	f
24	100	cosignerpreviousstreetfield	Co-applicant Previous Street	f
24	101	cosignerpreviouscitytfield	Co-applicant Previous City	f
24	102	cosignerpreviousstatefield	Co-applicant Previous State	f
24	103	cosignerpreviouszipfield	Co-applicant Previous Zip Code	f
24	104	cosignerpreviousaddressyearstotalfield	Co-applicant Years at Previous Address	f
24	105	cosignerpreviousaddressmonthstotalfield	Co-applicant Months at Previous Address	f
24	106	cosigneremployerfield	Co-applicant Employer	f
24	107	cosigneremployeraddressfield	Co-applicant Street Address	f
24	108	cosigneremployercityfield	Co-applicant Employer City	f
24	109	cosigneremployerstatefield	Co-applicant Employer State	f
24	110	cosigneremployerzipfield	Co-applicant Employer Zip Code	f
24	111	cosignerpositionfield	Co-applicant Employer Position	f
24	112	cosigneremploymentlengthyearsfield	Co-applicant Employment in Years	f
24	113	cosigneremploymentmonthsfield	Co-applicant Employment in Months	f
24	114	cosigneremploymerphonefield	Co-applicant Work Phone	f
24	115	cosignerhourlypayfield	Co-applicant Hourly pay	f
24	116	cosignerhoursworkedfield	Co-applicant Hours Worked	f
24	117	cosignerpayperiodfield	Co-applicant Pay Period	f
24	118	cosigneradditionalincomefield	Co-applicant Other Monthly Income	f
24	119	cosigneradditionalincomesourcefield	Co-applicant Other Monthly Income Source	f
24	120	cosignerformeremployerfield	Co-applicant Previous Employer	f
24	121	cosignerformeremployerpositionfield	Co-applicant Previous Occupation	f
24	122	cosignerformeremployertimefield	Co-applicant Previous Employment in Years	f
24	123	cosignerformeremployertimemonthsfield	Co-applicant Previous Employment in Months	f
24	124	cosignerformeremployerphonefield	Co-applicant Previous Work Phone	f
24	125	cosignerformeremployerleavereasonfield	Co-applicant Reason For Leaving	f
24	126	cosignermaintenancepaymentfield	is the co-applicant obligated to make alimony, child support or separate maintenance payments?	f
24	127	cosignerchildsupportagesfield	If Yes, youngests age	f
24	128	cosignerbankruptcyfield	Have the co-applicant ever filed Bankruptcy?	f
24	129	cosignerbankruptcydischargedatefield	Co-applicant Bankruptcy Discharged Date	f
24	130	cosignerbankruptcychapterfield	If yes, Chapter (select one)	f
24	131	cosignerrepossessionfield	Have the co-applicant ever had a vehicle or merchandise repossessed?	f
24	132	cosignerrepossessiondatefield	If yes, when?	f
24	133	cosignerrepossessiontypefield	Merchandise or Vehicle?	f
24	134	cosignerpriorvehiclecreditborrowedfield	Co-applicant Prior Vehicle Credit Amount Borrowed?	f
24	135	cosigneramountowedfield	Amount Owed by co-applicant	f
24	136	cosignerloanwithwhomfield	With Whom?	f
24	137	cosignerbanknamefield	Co-applicants Bank Name	f
24	138	cosignerbankcityfield	Co-applicant Banks City	f
24	139	cosignercheckingbalancefield	Co-applicant Checking Balance	f
24	140	cosignersavingbalancefield	Co-applicant Savings Balance	f
24	141	cosignerutilitiespaymentfield	Co-applicant Utilities Payment	f
24	142	cosignerchildcarepaymentfield	Co-applicant Child Care Payment	f
24	143	cosignercabletvpaymentfield	Co-applicant Cable TV Payment	f
24	144	cosignerdownpaymentfield	Co-applicant Down Payment	f
24	145	additionalinformationfield	Additional Comments	f
24	146	privacypolicyfield	Completed TOS	t
24	147	statusnote	Status Note	f
24	148	repfield	Sales Person	f
27	1	vehiclefield	Vehicle	t
27	2	stockfield	Stock Number	t
27	3	locationfield	Location	f
27	4	applicationtypefield	Application Type	f
27	5	firstnamefield	First Name	t
27	6	middlenamefield	Middle Name	f
27	7	lastnamefield	Last Name	t
27	8	phonefield	Phone Number	t
27	9	emailfield	Email	f
27	10	datepicker	Date of Birth	f
27	11	ssnfield	SS Number	f
27	12	driverlicensefield	Driver License Number	f
27	13	driverlicensestatefield	Driver License State	f
27	14	streetfield	Street	f
27	15	citytfield	City	f
27	16	statefield	State	f
27	17	zipfield	Zip Code / Postal Code	f
27	18	rentorownfield	Residence Status	f
27	19	monthlypaymentfield	Monthly Rent /Mortgage	f
27	20	addressyearstotalfield	Time at Residence	f
27	21	previousstreetfield	Previous Street	f
27	22	previouscitytfield	Previous City	f
27	23	previousstatefield	Previous State	f
27	24	previouszipfield	Previous Zip / Postal Code	f
27	25	employerfield	Employer	f
27	26	employercitytfield	Employer City	f
27	27	employerstatefield	Employer State	f
27	28	titlefield	Position	f
27	29	employmentyearsfield	Length of Employment	f
27	30	workphonefield	Work Phone	f
27	31	incomefield	Gross Monthly Income	f
27	32	additionalincomefield	Other Monthly Income	f
27	33	additionalincomesourcefield	Other Monthly Income Source	f
27	34	formeremployerfield	Previous Employer	f
27	35	formeremployercityfield	Previous Employer City	f
27	36	formeremployerstatefield	Previous Employer State	f
27	37	formeremployerpositionfield	Previous Position	f
27	38	formeremployertimefield	Previous Length of Employment	f
27	39	formeremployerphonefield	Previous Work Phone	f
27	40	cosignerfirstnamefield	Co-applicant First Name	f
27	41	cosignermiddlenamefield	Co-applicant Middle Name	f
27	42	ccosignerlastnamefield	Co-applicant Last Name	f
27	43	cosignerphonefield	Co-applicant Phone Number	f
27	44	cosigneremailfield	Co-applicant Email	f
27	45	cosignerdateofbirthfield	Co-applicant Date of Birth	f
27	46	cosignerssnfield	Co-applicant SS Number	f
27	47	codriverlicensefield	Co-applicant Driver License Number	f
27	48	codriverlicensestatefield	Co-applicant Driver License State	f
27	49	cosignerstreetfield	Co-applicant Street	f
27	50	cosignercitytfield	Co-applicant City	f
27	51	cosignerstatefield	Co-applicant State	f
27	52	cosignerzipfield	Co-applicant Zip / Postal Code	f
27	53	cosignerrentorownfield	Co-applicant Residence Status	f
27	54	cosignermonthlypaymentfield	Co-applicant Monthly Rent / Mortgage	f
27	55	cosigneraddressyearstotalfield	Co-applicant Time at Residence	f
27	56	cosignerpreviousstreetfield	Co-applicant Previous Street	f
27	57	cosignerpreviouscitytfield	Co-applicant Previous City	f
27	58	cosignerpreviousstatefield	Co-applicant Previous State	f
27	59	cosignerpreviouszipfield	Co-applicant Zip / Postal Code	f
27	60	cosigneremployerfield	Co-applicant Employer	f
27	61	cosigneremployercityfield	Co-applicant Employer City	f
27	62	cosigneremployerstatefield	Co-applicant Employer State	f
27	63	cosignerpositionfield	Co-applicant Employer Position	f
27	64	cosigneremploymentlengthyearsfield	Co-applicant Length of Employment	f
27	65	cosigneremploymerphonefield	Co-applicant Work Phone	f
27	66	cosignermonthlyincomefield	Co-applicant Gross Monthly Income	f
27	67	cosigneradditionalincomefield	Co-applicant Other Monthly Income	f
27	68	cosigneradditionalincomesourcefield	Co-applicant Other Monthly Income Source	f
27	69	cosignerformeremployerfield	Co-applicant Previous Employer	f
27	70	cosignerformeremployercityfield	Co-applicant Previous Employer City	f
27	71	cosignerformeremployerstatefield	Co-applicant Previous Employer State	f
27	72	cosignerformeremployerpositionfield	Co-applicant Previous Position	f
27	73	cosignerformeremployertimefield	Co-applicant Previous Length of Employment	f
27	74	cosignerformeremployerphonefield	Co-applicant Previous Work Phone	f
27	75	additionalinformationfield	Additional Comments	f
27	76	privacypolicyfield	Completed TOS	t
27	77	statusnote	Status Note	t
27	78	repfield	Sales Person	t
27	79	employeraddressfield	Employer Address	f
28	1	vehiclefield	Vehicle	t
28	2	stockfield	Stock Number	t
28	3	locationfield	Location	f
28	4	applicationtypefield	Application Type	f
28	5	firstnamefield	First Name	t
28	6	middlenamefield	Middle Name	f
28	7	lastnamefield	Last Name	t
28	8	phonefield	Phone Number	t
28	9	emailfield	Email	f
28	10	datepicker	Date of Birth	f
28	11	ssnfield	SS Number	f
28	12	driverlicensefield	Driver License Number	f
28	13	driverlicensestatefield	Driver License State	f
28	14	streetfield	Street	f
28	15	citytfield	City	f
28	16	statefield	State	f
28	17	zipfield	Zip Code / Postal Code	f
28	18	rentorownfield	Residence Status	f
28	19	monthlypaymentfield	Monthly Rent /Mortgage	f
28	20	addressyearstotalfield	Time at Residence	f
28	21	previousstreetfield	Previous Street	f
28	22	previouscitytfield	Previous City	f
28	23	previousstatefield	Previous State	f
28	24	previouszipfield	Previous Zip / Postal Code	f
28	25	employerfield	Employer	f
28	26	employercitytfield	Employer City	f
28	27	employerstatefield	Employer State	f
28	28	titlefield	Position	f
28	29	employmentyearsfield	Length of Employment	f
28	30	workphonefield	Work Phone	f
28	31	incomefield	Gross Monthly Income	f
28	32	additionalincomefield	Other Monthly Income	f
28	33	additionalincomesourcefield	Other Monthly Income Source	f
28	34	formeremployerfield	Previous Employer	f
28	35	formeremployercityfield	Previous Employer City	f
28	36	formeremployerstatefield	Previous Employer State	f
28	37	formeremployerpositionfield	Previous Position	f
28	38	formeremployertimefield	Previous Length of Employment	f
28	39	formeremployerphonefield	Previous Work Phone	f
28	40	cosignerfirstnamefield	Co-applicant First Name	f
28	41	cosignermiddlenamefield	Co-applicant Middle Name	f
28	42	ccosignerlastnamefield	Co-applicant Last Name	f
28	43	cosignerphonefield	Co-applicant Phone Number	f
28	44	cosigneremailfield	Co-applicant Email	f
28	45	cosignerdateofbirthfield	Co-applicant Date of Birth	f
28	46	cosignerssnfield	Co-applicant SS Number	f
28	47	codriverlicensefield	Co-applicant Driver License Number	f
28	48	codriverlicensestatefield	Co-applicant Driver License State	f
28	49	cosignerstreetfield	Co-applicant Street	f
28	50	cosignercitytfield	Co-applicant City	f
28	51	cosignerstatefield	Co-applicant State	f
28	52	cosignerzipfield	Co-applicant Zip / Postal Code	f
28	53	cosignerrentorownfield	Co-applicant Residence Status	f
28	54	cosignermonthlypaymentfield	Co-applicant Monthly Rent / Mortgage	f
28	55	cosigneraddressyearstotalfield	Co-applicant Time at Residence	f
28	56	cosignerpreviousstreetfield	Co-applicant Previous Street	f
28	57	cosignerpreviouscitytfield	Co-applicant Previous City	f
28	58	cosignerpreviousstatefield	Co-applicant Previous State	f
28	59	cosignerpreviouszipfield	Co-applicant Zip / Postal Code	f
28	60	cosigneremployerfield	Co-applicant Employer	f
28	61	cosigneremployercityfield	Co-applicant Employer City	f
28	62	cosigneremployerstatefield	Co-applicant Employer State	f
28	63	cosignerpositionfield	Co-applicant Employer Position	f
28	64	cosigneremploymentlengthyearsfield	Co-applicant Length of Employment	f
28	65	cosigneremploymerphonefield	Co-applicant Work Phone	f
28	66	cosignermonthlyincomefield	Co-applicant Gross Monthly Income	f
28	67	cosigneradditionalincomefield	Co-applicant Other Monthly Income	f
28	68	cosigneradditionalincomesourcefield	Co-applicant Other Monthly Income Source	f
28	69	cosignerformeremployerfield	Co-applicant Previous Employer	f
28	70	cosignerformeremployercityfield	Co-applicant Previous Employer City	f
28	71	cosignerformeremployerstatefield	Co-applicant Previous Employer State	f
28	72	cosignerformeremployerpositionfield	Co-applicant Previous Position	f
28	73	cosignerformeremployertimefield	Co-applicant Previous Length of Employment	f
28	74	cosignerformeremployerphonefield	Co-applicant Previous Work Phone	f
28	75	additionalinformationfield	Additional Comments	f
28	76	privacypolicyfield	Completed TOS	t
28	77	statusnote	Status Note	t
28	78	repfield	Sales Person	t
28	79	employeraddressfield	Employer Address	f
\.


--
-- Name: external_form_fields_position_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('external_form_fields_position_seq', 68, true);


--
-- Data for Name: external_forms; Type: TABLE DATA; Schema: public; Owner: -
--

COPY external_forms (id, public_id, display_name, created_on, updated_on, routing_id, is_external_api_auto, email_addresses, partnership_account_id, email_subject, partial_data_email, full_submit_email, adf_email_addresses, send_auto_email, send_auto_email_subject, send_auto_email_msg, send_auto_sms, send_auto_sms_inbound_id, send_auto_sms_msg) FROM stdin;
16	Autosave123 01	Autosave123	2016-05-05 16:13:24.575201+00	2016-10-03 19:05:24.554038+00	74	t	{}	1		t	f	{"emails": ""}	f			f	\N	
14	Struthers 01	Struthers	2016-05-05 16:13:24.575201+00	2016-05-05 16:13:24.575201+00	22	f	{}	1		t	f	{"emails": ""}	f			f	\N	
13	Standard Register FCU 01	Standard Register FCU	2016-05-05 16:13:24.575201+00	2016-05-05 16:13:24.575201+00	21	f	{}	1		t	f	{"emails": ""}	f			f	\N	
12	Sharefax 01	Sharefax	2016-05-05 16:13:24.575201+00	2016-05-05 16:13:24.575201+00	20	f	{}	1		t	f	{"emails": ""}	f			f	\N	
11	Schneider 01	Schneider	2016-05-05 16:13:24.575201+00	2016-05-05 16:13:24.575201+00	19	f	{}	1		t	f	{"emails": ""}	f			f	\N	
10	Park Side 01	Park Side	2016-05-05 16:13:24.575201+00	2016-05-05 16:13:24.575201+00	18	f	{}	1		t	f	{"emails": ""}	f			f	\N	
9	HealthFirst 01	HealthFirst	2016-05-05 16:13:24.575201+00	2016-05-05 16:13:24.575201+00	17	f	{}	1		t	f	{"emails": ""}	f			f	\N	
8	Falls Catholic 01	Falls Catholic	2016-05-05 16:13:24.575201+00	2016-05-05 16:13:24.575201+00	16	f	{}	1		t	f	{"emails": ""}	f			f	\N	
7	Emerald 01	Emerald	2016-05-05 16:13:24.575201+00	2016-05-05 16:13:24.575201+00	15	f	{}	1		t	f	{"emails": ""}	f			f	\N	
6	Edwards 01	Edwards	2016-05-05 16:13:24.575201+00	2016-05-05 16:13:24.575201+00	14	f	{}	1		t	f	{"emails": ""}	f			f	\N	
5	CU of Ohio 01	CU of Ohio	2016-05-05 16:13:24.575201+00	2016-05-05 16:13:24.575201+00	13	f	{}	1		t	f	{"emails": ""}	f			f	\N	
4	Brotherhood 01	Brotherhood	2016-05-05 16:13:24.575201+00	2016-05-05 16:13:24.575201+00	12	f	{}	1		t	f	{"emails": ""}	f			f	\N	
3	Badlands 01	Badlands	2016-05-05 16:13:24.575201+00	2016-05-05 16:13:24.575201+00	11	f	{}	1		t	f	{"emails": ""}	f			f	\N	
2	Ashland 01	Ashland	2016-05-05 16:13:24.575201+00	2016-05-05 16:13:24.575201+00	10	f	{}	1		t	f	{"emails": ""}	f			f	\N	
1	ASECU 01	ASECU	2016-05-05 16:13:24.575201+00	2016-05-05 16:13:24.575201+00	9	f	{}	1		t	f	{"emails": ""}	f			f	\N	
17	Cavender 01	Cavender Loan Application	2017-06-15 16:13:24.575201+00	2017-06-24 15:11:52.718508+00	94	f	{"emails": "steveneu@live.com, cavenderr@cavenderautosales.com"}	1		t	f	{"emails": ""}	f			f	\N	
19	CarLoanDirect 01	CarLoanDirect Application	2017-11-29 16:13:24.575201+00	2017-12-01 18:42:11.712005+00	97	f	{"emails": "waynedaniel3@gmail.com,steveneu@live.com"}	1		t	f	{"emails": ""}	f			f	\N	
18	AutoApprove 01	AutoApproveLoan Application	2017-11-21 16:13:24.575201+00	2017-11-30 23:59:54.29578+00	98	f	{"emails": "info@autoapprove.com,steveneu@live.com"}	1		t	f	{"emails": ""}	f			f	\N	
15	devcompany	Development Company Contact Form	2016-08-10 17:13:24.575201+00	2016-08-10 17:13:24.575201+00	72	f	{}	1		t	f	{"emails": ""}	f			f	\N	
21	BlueGrassRVAshland 01	Fine Nature RV Finance App - Springfield	2018-09-04 13:13:24.575201+00	2019-04-26 15:14:33.302424+00	\N	f	{"emails": ""}	4	Finance App Notification	f	t	{"emails": ""}	f			f	\N	
23	AMSLongForm 01	AMS Long Form - Finance App	2019-07-22 08:13:24.575201+00	2019-07-22 08:13:24.575201+00	\N	f	{"emails": ""}	4	Finance App Notification	f	t	{"emails": ""}	f			f	\N	
24	AMSLongForm 02	AMS Long Form Extended 02 - Finance App	2019-09-23 08:13:24.575201+00	2019-10-01 20:37:51.162971+00	\N	t	{"emails": "harry@buyercall.com"}	4	Finance App Notification	f	t	{"emails": "hjvermaak@gmail.com"}	f			f	\N	
27	TVAPIFormId 01	TV API Form	2019-10-22 08:13:24.575201+00	2019-10-22 08:13:24.575201+00	\N	f	{"emails": ""}	34	TV API Form Notification	f	t	{"emails": ""}	f			f	\N	
28	TViFrameForm 01	TV iFrame Form	2019-10-22 08:13:24.575201+00	2019-10-22 08:13:24.575201+00	\N	f	{"emails": ""}	34	TV iFrame Form Notification	f	t	{"emails": ""}	f			f	\N	
22	MasterCars 01	Master Cars Experts Marketing Finance App	2019-04-07 15:13:24.575201+00	2019-04-26 15:13:44.079142+00	\N	f	{"emails": ""}	4	Finance App Notification	f	t	{"emails": ""}	f			f	\N	
20	RVDealer 01	Sunshine RV Toledo - Test Finance App	2018-02-16 16:13:24.575201+00	2019-04-26 15:14:00.962063+00	\N	f	{"emails": "hjvermaak@gmail.com"}	4	Finance App Notification	f	t	{"emails": "harry@buyercall.com"}	t	#COMPANY# - Thank you for your submission	Hi #NAME#,\r\n\r\nThank you for your submission\r\n---\r\nWe are in the process of reviewing your submission for the #FORM#. Once we will be in contact as soon as possible\r\n---\r\n Thanks,\r\n#COMPANY# support team\r\n\r\n Please note this is an automated email notification. Do not reply to this email.	t	161	Hi #NAME#, JOIN THE BIG PARTY TONIGHT! #COMPANY#
\.


--
-- Name: external_forms_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('external_forms_id_seq', 28, true);


--
-- Data for Name: form_lead_fields; Type: TABLE DATA; Schema: public; Owner: -
--

COPY form_lead_fields (lead_id, field_id, field_value) FROM stdin;
1358	streetfield	
1358	cosigneradditionalincomesourcefield	
1358	addressyearstotalfield	
1358	cosignerphonefield	
1358	cosignerfirstnamefield	
1358	ccosignerlastnamefield	
1358	rentorownfield	
1358	codriverlicensestatefield	IL
1358	additionalincomesourcefield	
1358	cosigneremailfield	
1358	previousstatefield	IL
1358	cosigneremployerstatefield	IL
1358	cosignermonthlyincomefield	
1358	cosignermonthlypaymentfield	
1358	cosignerpreviousstreetfield	
1358	cosigneremployercityfield	
1358	cosigneremployerfield	
1358	statusnote	
1358	cosignerformeremployertimefield	
1358	cosignerformeremployerphonefield	
1358	driverlicensestatefield	IL
1358	cosigneradditionalincomefield	
1358	titlefield	
1358	cosigneraddressyearstotalfield	
1358	emailfield	hv13@hotmail.com
1358	codriverlicensefield	
1358	cosignerrentorownfield	
1358	workphonefield	
1358	formeremployerphonefield	
1358	citytfield	
1358	cosigneremploymentlengthyearsfield	
1358	cosignerformeremployerfield	
1358	cosignerpreviouscitytfield	
1358	cosignercitytfield	
1358	cosignerstreetfield	
1358	stockfield	
1358	cosignerpositionfield	
1358	additionalincomefield	
1358	formeremployertimefield	
1358	employerfield	
1358	cosigneremploymerphonefield	
1358	monthlypaymentfield	
1358	cosignerstatefield	IL
1358	applicationtypefield	
1358	formeremployerstatefield	IL
1358	previouscitytfield	
1358	cosignerzipfield	
1358	cosignerformeremployercityfield	
1358	employmentyearsfield	
1358	statefield	IL
1358	locationfield	
1358	previouszipfield	
1358	zipfield	
1358	employerstatefield	IL
1358	phonefield	17732909650
1358	cosignerpreviouszipfield	
1358	cosignerformeremployerpositionfield	
1358	incomefield	
1358	vehiclefield	
1358	lead-id-field	
1358	formeremployerfield	
1358	cosignerpreviousstatefield	IL
1358	driverlicensefield	
1358	employercitytfield	
1358	cosignerformeremployerstatefield	IL
1358	lastnamefield	Montana
1358	formeremployercityfield	
1358	firstnamefield	Joe
1358	formeremployerpositionfield	
1358	previousstreetfield	
1358	additionalinformationfield	
1358	privacypolicyfield	
1359	streetfield	sddf
1359	cosigneradditionalincomesourcefield	
1359	addressyearstotalfield	5
1359	cosignerphonefield	
1359	cosignerfirstnamefield	
1359	ccosignerlastnamefield	
1359	rentorownfield	Other
1359	codriverlicensestatefield	IL
1359	additionalincomesourcefield	
1359	cosigneremailfield	
1359	previousstatefield	IL
1359	cosigneremployerstatefield	IL
1359	cosignermonthlyincomefield	
1359	cosignermonthlypaymentfield	
1359	cosignerpreviousstreetfield	
1359	cosigneremployercityfield	
1359	cosigneremployerfield	
1359	statusnote	
1359	cosignerformeremployertimefield	
1359	cosignerformeremployerphonefield	
1359	driverlicensestatefield	IL
1359	cosigneradditionalincomefield	
1359	titlefield	sdfsd
1359	cosigneraddressyearstotalfield	
1359	emailfield	hv13@hotmail.com
1359	codriverlicensefield	
1359	cosignerrentorownfield	
1359	workphonefield	17732909650
1359	formeremployerphonefield	
1359	citytfield	sdf
1359	cosigneremploymentlengthyearsfield	
1359	cosignerformeremployerfield	
1359	cosignerpreviouscitytfield	
1359	cosignercitytfield	
1359	cosignerstreetfield	
1359	stockfield	
1359	cosignerpositionfield	
1359	additionalincomefield	
1359	formeremployertimefield	
1359	employerfield	sfsdf
1359	cosigneremploymerphonefield	
1359	monthlypaymentfield	43534
1359	cosignerstatefield	IL
1359	applicationtypefield	Individual
1359	formeremployerstatefield	IL
1359	previouscitytfield	
1359	cosignerzipfield	
1359	cosignerformeremployercityfield	
1359	employmentyearsfield	5
1359	statefield	IL
1359	locationfield	
1359	previouszipfield	
1359	zipfield	60613
1359	employerstatefield	IL
1359	phonefield	17732909650
1359	cosignerpreviouszipfield	
1359	cosignerformeremployerpositionfield	
1359	incomefield	
1359	vehiclefield	
1359	lead-id-field	
1359	formeremployerfield	
1359	cosignerpreviousstatefield	IL
1359	privacypolicyfield	yes
1359	driverlicensefield	dsfsdf452342
1359	employercitytfield	retet
1359	cosignerformeremployerstatefield	IL
1359	lastnamefield	Montana
1359	formeremployercityfield	
1359	firstnamefield	Joe
1359	formeremployerpositionfield	
1359	previousstreetfield	
1359	additionalinformationfield	
1360	streetfield	
1360	cosigneradditionalincomesourcefield	
1360	addressyearstotalfield	
1360	cosignerphonefield	
1360	cosignerfirstnamefield	
1360	ccosignerlastnamefield	
1360	rentorownfield	
1360	codriverlicensestatefield	IL
1360	additionalincomesourcefield	
1360	cosigneremailfield	
1360	previousstatefield	IL
1360	cosigneremployerstatefield	IL
1360	cosignermonthlyincomefield	
1360	cosignermonthlypaymentfield	
1360	cosignerpreviousstreetfield	
1360	cosigneremployercityfield	
1360	cosigneremployerfield	
1360	statusnote	
1360	cosignerformeremployertimefield	
1360	cosignerformeremployerphonefield	
1360	driverlicensestatefield	IL
1360	cosigneradditionalincomefield	
1360	titlefield	
1360	cosigneraddressyearstotalfield	
1360	emailfield	hv13@hotmail.com
1360	codriverlicensefield	
1360	cosignerrentorownfield	
1360	workphonefield	
1360	formeremployerphonefield	
1360	citytfield	
1360	cosigneremploymentlengthyearsfield	
1360	cosignerformeremployerfield	
1360	cosignerpreviouscitytfield	
1360	cosignercitytfield	
1360	cosignerstreetfield	
1360	stockfield	
1360	cosignerpositionfield	
1360	additionalincomefield	
1360	formeremployertimefield	
1360	employerfield	
1360	cosigneremploymerphonefield	
1360	monthlypaymentfield	
1360	cosignerstatefield	IL
1360	applicationtypefield	
1360	formeremployerstatefield	IL
1360	previouscitytfield	
1360	cosignerzipfield	
1360	cosignerformeremployercityfield	
1360	employmentyearsfield	
1360	statefield	IL
1360	locationfield	
1360	previouszipfield	
1360	zipfield	
1360	employerstatefield	IL
1360	phonefield	17732909650
1360	cosignerpreviouszipfield	
1360	cosignerformeremployerpositionfield	
1360	incomefield	
1360	vehiclefield	
1360	lead-id-field	
1360	formeremployerfield	
1360	cosignerpreviousstatefield	IL
1360	form-name	commentForm
1360	driverlicensefield	
1360	employercitytfield	
1360	cosignerformeremployerstatefield	IL
1360	lastnamefield	Lemy
1360	formeremployercityfield	
1360	firstnamefield	Connor
1360	formeremployerpositionfield	
1360	previousstreetfield	
1360	additionalinformationfield	
1360	privacypolicyfield	
1361	streetfield	
1361	cosigneradditionalincomesourcefield	
1361	addressyearstotalfield	
1361	cosignerphonefield	
1361	cosignerfirstnamefield	
1361	ccosignerlastnamefield	
1361	rentorownfield	
1361	codriverlicensestatefield	IL
1361	additionalincomesourcefield	
1361	cosigneremailfield	
1361	previousstatefield	IL
1361	cosigneremployerstatefield	IL
1361	cosignermonthlyincomefield	
1361	cosignermonthlypaymentfield	
1361	cosignerpreviousstreetfield	
1361	cosigneremployercityfield	
1361	cosigneremployerfield	
1361	statusnote	
1361	cosignerformeremployertimefield	
1361	cosignerformeremployerphonefield	
1361	driverlicensestatefield	IL
1361	cosigneradditionalincomefield	
1361	titlefield	
1361	cosigneraddressyearstotalfield	
1361	emailfield	hv13@hotmail.com
1361	codriverlicensefield	
1361	cosignerrentorownfield	
1361	workphonefield	
1361	formeremployerphonefield	
1361	citytfield	
1361	cosigneremploymentlengthyearsfield	
1361	cosignerformeremployerfield	
1361	cosignerpreviouscitytfield	
1361	cosignercitytfield	
1361	cosignerstreetfield	
1361	stockfield	
1361	cosignerpositionfield	
1361	additionalincomefield	
1361	formeremployertimefield	
1361	employerfield	
1361	cosigneremploymerphonefield	
1361	monthlypaymentfield	
1361	cosignerstatefield	IL
1361	applicationtypefield	
1361	formeremployerstatefield	IL
1361	previouscitytfield	
1361	cosignerzipfield	
1361	cosignerformeremployercityfield	
1361	employmentyearsfield	
1361	statefield	IL
1361	locationfield	
1361	previouszipfield	
1361	zipfield	
1361	employerstatefield	IL
1361	phonefield	17732909650
1361	cosignerpreviouszipfield	
1361	cosignerformeremployerpositionfield	
1361	incomefield	
1361	vehiclefield	
1361	lead-id-field	
1361	formeremployerfield	
1361	cosignerpreviousstatefield	IL
1361	form-name	commentForm
1361	driverlicensefield	
1361	employercitytfield	
1361	cosignerformeremployerstatefield	IL
1361	lastnamefield	dfgdf
1361	formeremployercityfield	
1361	firstnamefield	fgdfg
1361	formeremployerpositionfield	
1361	previousstreetfield	
1361	additionalinformationfield	
1361	privacypolicyfield	
1362	streetfield	
1362	cosigneradditionalincomesourcefield	
1362	addressyearstotalfield	
1362	cosignerphonefield	
1362	cosignerfirstnamefield	
1362	ccosignerlastnamefield	
1362	rentorownfield	
1362	codriverlicensestatefield	IL
1362	additionalincomesourcefield	
1362	cosigneremailfield	
1362	previousstatefield	IL
1362	cosigneremployerstatefield	IL
1362	cosignermonthlyincomefield	
1362	cosignermonthlypaymentfield	
1362	cosignerpreviousstreetfield	
1362	cosigneremployercityfield	
1362	cosigneremployerfield	
1362	statusnote	
1362	cosignerformeremployertimefield	
1362	cosignerformeremployerphonefield	
1362	driverlicensestatefield	IL
1362	cosigneradditionalincomefield	
1362	titlefield	
1362	cosigneraddressyearstotalfield	
1362	emailfield	hv13@hotmail.com
1362	codriverlicensefield	
1362	cosignerrentorownfield	
1362	workphonefield	
1362	formeremployerphonefield	
1362	citytfield	
1362	cosigneremploymentlengthyearsfield	
1362	cosignerformeremployerfield	
1362	cosignerpreviouscitytfield	
1362	cosignercitytfield	
1362	cosignerstreetfield	
1362	stockfield	
1362	cosignerpositionfield	
1362	additionalincomefield	
1362	formeremployertimefield	
1362	employerfield	
1362	cosigneremploymerphonefield	
1362	monthlypaymentfield	
1362	cosignerstatefield	IL
1362	applicationtypefield	
1362	formeremployerstatefield	IL
1362	previouscitytfield	
1362	cosignerzipfield	
1362	cosignerformeremployercityfield	
1362	employmentyearsfield	
1362	statefield	IL
1362	locationfield	
1362	previouszipfield	
1362	zipfield	
1362	employerstatefield	IL
1362	phonefield	17732909650
1362	cosignerpreviouszipfield	
1362	cosignerformeremployerpositionfield	
1362	incomefield	
1362	vehiclefield	
1362	lead-id-field	
1362	formeremployerfield	
1362	cosignerpreviousstatefield	IL
1362	form-name	commentForm
1362	driverlicensefield	
1362	employercitytfield	
1362	cosignerformeremployerstatefield	IL
1362	lastnamefield	Tower
1362	formeremployercityfield	
1362	firstnamefield	Morry
1362	formeremployerpositionfield	
1362	previousstreetfield	
1362	additionalinformationfield	
1362	privacypolicyfield	
1363	cosigneradditionalincomesourcefield	
1363	cosignerphonefield	
1363	cosignerfirstnamefield	
1363	ccosignerlastnamefield	
1363	codriverlicensestatefield	IL
1363	additionalincomesourcefield	
1363	cosigneremailfield	
1363	previousstatefield	IL
1363	cosigneremployerstatefield	IL
1363	cosignermonthlyincomefield	
1363	cosignermonthlypaymentfield	
1363	cosignerpreviousstreetfield	
1363	cosigneremployercityfield	
1363	cosigneremployerfield	
1363	statusnote	
1363	cosignerformeremployertimefield	
1363	cosignerformeremployerphonefield	
1363	driverlicensestatefield	IL
1363	cosigneradditionalincomefield	
1363	cosigneraddressyearstotalfield	
1363	emailfield	hv13@hotmail.com
1363	codriverlicensefield	
1363	cosignerrentorownfield	
1363	formeremployerphonefield	
1363	cosigneremploymentlengthyearsfield	
1361	cosignerdateofbirthfield	f9iJofOY+xmplx6NPEpshvftrcO49ENpqKFTC0b7Hy4=
1362	cosignerssnfield	zK7vW/Yj/IG/52RPzNIX+CfRHpW6HZTOwz9lB5ufCoc=
1363	cosignerformeremployerfield	
1363	cosignerpreviouscitytfield	
1363	cosignercitytfield	
1363	cosignerstreetfield	
1363	stockfield	
1363	cosignerpositionfield	
1363	additionalincomefield	
1363	formeremployertimefield	
1363	cosigneremploymerphonefield	
1363	cosignerstatefield	IL
1363	formeremployerstatefield	IL
1363	previouscitytfield	
1363	cosignerzipfield	
1363	cosignerformeremployercityfield	
1363	locationfield	
1363	previouszipfield	
1363	phonefield	17732909650
1363	cosignerpreviouszipfield	
1363	cosignerformeremployerpositionfield	
1363	vehiclefield	
1363	formeremployerfield	
1363	cosignerpreviousstatefield	IL
1363	form-name	commentForm
1363	cosignerformeremployerstatefield	IL
1363	lastnamefield	Rubio
1363	formeremployercityfield	
1363	firstnamefield	Marco
1363	formeremployerpositionfield	
1363	previousstreetfield	
1363	additionalinformationfield	
1363	streetfield	123 Brick St
1363	addressyearstotalfield	5
1363	rentorownfield	Rent
1363	titlefield	sdfsdf
1363	workphonefield	17732909650
1363	citytfield	sdfsdf
1363	employerfield	werwers
1363	monthlypaymentfield	3242342
1363	applicationtypefield	Individual
1363	employmentyearsfield	5
1363	statefield	CA
1363	zipfield	56546
1363	employerstatefield	CT
1363	incomefield	2342342
1363	lead-id-field	1363
1363	privacypolicyfield	yes
1363	driverlicensefield	sdf3243242
1363	employercitytfield	fsdfsdf
1364	streetfield	
1364	cosigneradditionalincomesourcefield	
1364	addressyearstotalfield	
1364	cosignerphonefield	
1364	cosignerfirstnamefield	
1364	ccosignerlastnamefield	
1364	rentorownfield	
1364	codriverlicensestatefield	IL
1364	additionalincomesourcefield	
1364	cosigneremailfield	
1364	previousstatefield	IL
1364	cosigneremployerstatefield	IL
1364	cosignermonthlyincomefield	
1364	cosignermonthlypaymentfield	
1364	cosignerpreviousstreetfield	
1364	cosigneremployercityfield	
1364	cosigneremployerfield	
1364	statusnote	
1364	cosignerformeremployertimefield	
1364	cosignerformeremployerphonefield	
1364	driverlicensestatefield	IL
1364	cosigneradditionalincomefield	
1364	titlefield	
1364	cosigneraddressyearstotalfield	
1364	emailfield	hv13@hotmail.com
1364	codriverlicensefield	
1364	cosignerrentorownfield	
1364	workphonefield	
1364	formeremployerphonefield	
1364	citytfield	
1364	cosigneremploymentlengthyearsfield	
1364	cosignerformeremployerfield	
1364	cosignerpreviouscitytfield	
1364	cosignercitytfield	
1364	cosignerstreetfield	
1364	stockfield	
1364	cosignerpositionfield	
1364	additionalincomefield	
1364	formeremployertimefield	
1364	employerfield	
1364	cosigneremploymerphonefield	
1364	monthlypaymentfield	
1364	cosignerstatefield	IL
1364	applicationtypefield	
1364	formeremployerstatefield	IL
1364	previouscitytfield	
1364	cosignerzipfield	
1364	cosignerformeremployercityfield	
1364	employmentyearsfield	
1364	statefield	IL
1364	locationfield	
1364	previouszipfield	
1364	zipfield	
1364	employerstatefield	IL
1364	phonefield	17732909650
1364	cosignerpreviouszipfield	
1364	cosignerformeremployerpositionfield	
1364	incomefield	
1364	vehiclefield	
1364	lead-id-field	
1364	formeremployerfield	
1364	cosignerpreviousstatefield	IL
1364	form-name	commentForm
1364	driverlicensefield	
1364	employercitytfield	
1364	cosignerformeremployerstatefield	IL
1364	lastnamefield	Pual
1364	formeremployercityfield	
1364	firstnamefield	Johan
1364	formeremployerpositionfield	
1364	previousstreetfield	
1363	cosignerdateofbirthfield	z/uHO5rp0bwnt7D43U+O8M/Z0DN+swEHdFw53C/Al5Y=
1363	ssnfield	Wu5dPpbOsQ5czsf+e7vfpz9dbk/t/91bVNbtn8jcrao=
1363	datepicker	8obZas/7DUyHcBwo+Tjyl+VHdFzp3O4xdRy1CJKRHnM=
1364	cosignerssnfield	gLPiwDDSQ+uw2ILkxTDdI3I7bDau7HmfI6qVQuds5KQ=
1364	ssnfield	qN33VAQfCXeYxnAs0Sqbw2W2LxSb5e+dpn8TqqP9Z/4=
1364	datepicker	uZ/HVJuFAN5NmA/7p+GESM4EkXvXrCjPnuAt0ND4iz0=
1364	cosignerdateofbirthfield	uaR+wIZbhcnMSMAjSqXw2+EwpNG25C53arpBIMlXWEA=
1364	additionalinformationfield	
1364	privacypolicyfield	
1365	streetfield	
1365	cosigneradditionalincomesourcefield	
1365	addressyearstotalfield	
1365	cosignerphonefield	
1365	cosignerfirstnamefield	
1365	ccosignerlastnamefield	
1365	rentorownfield	
1365	codriverlicensestatefield	IL
1365	additionalincomesourcefield	
1365	cosigneremailfield	
1365	previousstatefield	IL
1365	cosigneremployerstatefield	IL
1365	cosignermonthlyincomefield	
1365	cosignermonthlypaymentfield	
1365	cosignerpreviousstreetfield	
1365	cosigneremployercityfield	
1365	cosigneremployerfield	
1365	statusnote	
1365	cosignerformeremployertimefield	
1365	cosignerformeremployerphonefield	
1365	driverlicensestatefield	IL
1365	cosigneradditionalincomefield	
1365	titlefield	
1365	cosigneraddressyearstotalfield	
1365	emailfield	hv13@hotmail.com
1365	codriverlicensefield	
1365	cosignerrentorownfield	
1365	workphonefield	
1365	formeremployerphonefield	
1365	citytfield	
1365	cosigneremploymentlengthyearsfield	
1365	cosignerformeremployerfield	
1365	cosignerpreviouscitytfield	
1365	cosignercitytfield	
1365	cosignerstreetfield	
1365	stockfield	
1365	cosignerpositionfield	
1365	additionalincomefield	
1365	formeremployertimefield	
1365	employerfield	
1365	cosigneremploymerphonefield	
1365	monthlypaymentfield	
1365	cosignerstatefield	IL
1365	applicationtypefield	
1365	formeremployerstatefield	IL
1365	previouscitytfield	
1365	cosignerzipfield	
1365	cosignerformeremployercityfield	
1365	employmentyearsfield	
1365	statefield	IL
1365	locationfield	
1365	previouszipfield	
1365	zipfield	
1365	employerstatefield	IL
1365	phonefield	17732909650
1365	cosignerpreviouszipfield	
1365	cosignerformeremployerpositionfield	
1365	incomefield	
1365	vehiclefield	
1365	lead-id-field	
1365	formeremployerfield	
1365	cosignerpreviousstatefield	IL
1365	form-name	commentForm
1365	driverlicensefield	
1365	employercitytfield	
1365	cosignerformeremployerstatefield	IL
1365	lastnamefield	Tester
1365	formeremployercityfield	
1365	firstnamefield	Harry
1365	formeremployerpositionfield	
1365	previousstreetfield	
1365	additionalinformationfield	
1365	privacypolicyfield	
1366	streetfield	
1366	cosigneradditionalincomesourcefield	
1366	addressyearstotalfield	
1366	cosignerphonefield	
1366	cosignerfirstnamefield	
1366	ccosignerlastnamefield	
1366	rentorownfield	
1366	codriverlicensestatefield	IL
1366	additionalincomesourcefield	
1366	cosigneremailfield	
1366	previousstatefield	IL
1366	cosigneremployerstatefield	IL
1366	cosignermonthlyincomefield	
1366	cosignermonthlypaymentfield	
1366	cosignerpreviousstreetfield	
1366	cosigneremployercityfield	
1366	cosigneremployerfield	
1366	statusnote	
1366	cosignerformeremployertimefield	
1366	cosignerformeremployerphonefield	
1366	driverlicensestatefield	IL
1366	cosigneradditionalincomefield	
1366	titlefield	
1366	cosigneraddressyearstotalfield	
1366	emailfield	hv13@hotmail.com
1366	codriverlicensefield	
1366	cosignerrentorownfield	
1366	workphonefield	
1366	formeremployerphonefield	
1366	citytfield	
1366	cosigneremploymentlengthyearsfield	
1366	cosignerformeremployerfield	
1366	cosignerpreviouscitytfield	
1366	cosignercitytfield	
1366	cosignerstreetfield	
1366	stockfield	
1366	cosignerpositionfield	
1366	additionalincomefield	
1366	formeremployertimefield	
1366	employerfield	
1366	cosigneremploymerphonefield	
1366	monthlypaymentfield	
1366	cosignerstatefield	IL
1366	applicationtypefield	
1366	formeremployerstatefield	IL
1366	previouscitytfield	
1366	cosignerzipfield	
1366	cosignerformeremployercityfield	
1366	employmentyearsfield	
1366	statefield	IL
1366	locationfield	
1366	previouszipfield	
1366	zipfield	
1366	employerstatefield	IL
1366	phonefield	17732909650
1366	cosignerpreviouszipfield	
1366	cosignerformeremployerpositionfield	
1366	incomefield	
1366	vehiclefield	
1366	lead-id-field	
1366	formeremployerfield	
1366	cosignerpreviousstatefield	IL
1366	form-name	commentForm
1366	driverlicensefield	
1366	employercitytfield	
1366	cosignerformeremployerstatefield	IL
1366	lastnamefield	asdasd
1366	formeremployercityfield	
1366	firstnamefield	asdasd
1366	formeremployerpositionfield	
1366	previousstreetfield	
1366	additionalinformationfield	
1366	privacypolicyfield	
1367	streetfield	
1367	cosigneradditionalincomesourcefield	
1367	addressyearstotalfield	
1367	cosignerphonefield	
1367	cosignerfirstnamefield	
1367	ccosignerlastnamefield	
1367	rentorownfield	
1367	codriverlicensestatefield	IL
1367	additionalincomesourcefield	
1367	cosigneremailfield	
1367	previousstatefield	IL
1367	cosigneremployerstatefield	IL
1367	cosignermonthlyincomefield	
1367	cosignermonthlypaymentfield	
1367	cosignerpreviousstreetfield	
1367	cosigneremployercityfield	
1367	cosigneremployerfield	
1367	statusnote	
1367	cosignerformeremployertimefield	
1367	cosignerformeremployerphonefield	
1367	driverlicensestatefield	IL
1367	cosigneradditionalincomefield	
1367	titlefield	
1367	cosigneraddressyearstotalfield	
1367	emailfield	hv13@hotmail.com
1367	codriverlicensefield	
1367	cosignerrentorownfield	
1367	workphonefield	
1367	formeremployerphonefield	
1367	citytfield	
1367	cosigneremploymentlengthyearsfield	
1367	cosignerformeremployerfield	
1367	cosignerpreviouscitytfield	
1367	cosignercitytfield	
1367	cosignerstreetfield	
1367	stockfield	
1367	cosignerpositionfield	
1367	additionalincomefield	
1367	formeremployertimefield	
1367	employerfield	
1367	cosigneremploymerphonefield	
1367	monthlypaymentfield	
1367	cosignerstatefield	IL
1367	applicationtypefield	
1367	formeremployerstatefield	IL
1367	previouscitytfield	
1367	cosignerzipfield	
1367	cosignerformeremployercityfield	
1367	employmentyearsfield	
1367	statefield	IL
1367	locationfield	
1367	previouszipfield	
1367	zipfield	
1367	employerstatefield	IL
1367	phonefield	17732909650
1367	cosignerpreviouszipfield	
1367	cosignerformeremployerpositionfield	
1367	incomefield	
1367	vehiclefield	
1367	lead-id-field	
1367	formeremployerfield	
1367	cosignerpreviousstatefield	IL
1367	form-name	commentForm
1367	driverlicensefield	
1367	employercitytfield	
1367	cosignerformeremployerstatefield	IL
1367	lastnamefield	McMillian
1367	formeremployercityfield	
1367	firstnamefield	Jason 
1367	formeremployerpositionfield	
1367	previousstreetfield	
1367	additionalinformationfield	
1367	privacypolicyfield	
1368	cosigneradditionalincomesourcefield	
1368	cosignerphonefield	
1368	codriverlicensestatefield	IL
1368	additionalincomesourcefield	
1368	cosigneremailfield	
1368	previousstatefield	IL
1368	cosigneremployerstatefield	IL
1368	cosignermonthlyincomefield	
1368	cosignermonthlypaymentfield	
1368	cosignerpreviousstreetfield	
1368	cosigneremployercityfield	
1368	cosigneremployerfield	
1368	statusnote	
1368	cosignerformeremployertimefield	
1368	cosignerformeremployerphonefield	
1368	driverlicensestatefield	IL
1368	cosigneradditionalincomefield	
1368	cosigneraddressyearstotalfield	
1368	emailfield	hv13@hotmail.com
1368	codriverlicensefield	
1368	cosignerrentorownfield	
1368	formeremployerphonefield	
1368	cosigneremploymentlengthyearsfield	
1368	cosignerformeremployerfield	
1368	cosignerpreviouscitytfield	
1368	cosignercitytfield	
1368	cosignerstreetfield	
1368	stockfield	
1368	cosignerpositionfield	
1368	additionalincomefield	
1368	formeremployertimefield	
1368	cosigneremploymerphonefield	
1367	cosignerssnfield	pd4kXEqImly/mqzY1E0zW6dKpzW2GLgslh3qGVaeYds=
1367	ssnfield	XNTUk8WGff/OV3l3pJs2z339AHaJJzu03ZWg97zvphY=
1367	datepicker	LXNqt3lRWLGv9MQsBtWK5jxIj66w5XvMuQDWne57cu8=
1367	cosignerdateofbirthfield	SZS3mHDAwLNGLRCml784S0PkQ/zi3gcR1laXL0owTBU=
1368	cosignerssnfield	p8Bi7GL1VKicBbIRPiXEXmQwJhieMswKyLeCgoEawsc=
1368	cosignerstatefield	IL
1368	formeremployerstatefield	IL
1368	previouscitytfield	
1368	cosignerzipfield	
1368	cosignerformeremployercityfield	
1368	statefield	IL
1368	locationfield	
1368	previouszipfield	
1368	employerstatefield	IL
1368	phonefield	17732909650
1368	cosignerpreviouszipfield	
1368	cosignerformeremployerpositionfield	
1368	vehiclefield	
1368	formeremployerfield	
1368	cosignerpreviousstatefield	IL
1368	form-name	commentForm
1368	cosignerformeremployerstatefield	IL
1368	lastnamefield	Boy
1368	formeremployercityfield	
1368	firstnamefield	Cow
1368	formeremployerpositionfield	
1368	previousstreetfield	
1368	additionalinformationfield	
1368	streetfield	werwe
1368	addressyearstotalfield	5
1368	cosignerfirstnamefield	sdfsdf
1368	ccosignerlastnamefield	sdfsd
1368	rentorownfield	Rent
1368	titlefield	sdfsdfs
1368	workphonefield	8473123318
1368	citytfield	rewrwe
1368	employerfield	wesrfwerwe
1368	monthlypaymentfield	4353434
1368	applicationtypefield	Joint
1368	employmentyearsfield	5
1368	zipfield	60007
1368	incomefield	435345
1368	lead-id-field	1368
1368	privacypolicyfield	yes
1368	driverlicensefield	fsdfsdf
1368	employercitytfield	sdfsdf
1369	cosigneradditionalincomesourcefield	
1369	cosignerphonefield	
1369	cosignerfirstnamefield	
1369	ccosignerlastnamefield	
1369	codriverlicensestatefield	IL
1369	cosigneremailfield	
1369	previousstatefield	IL
1369	cosigneremployerstatefield	IL
1369	cosignermonthlyincomefield	
1369	cosignermonthlypaymentfield	
1369	cosignerpreviousstreetfield	
1369	cosigneremployercityfield	
1369	cosigneremployerfield	
1369	statusnote	
1369	cosignerformeremployertimefield	
1369	cosignerformeremployerphonefield	
1369	driverlicensestatefield	IL
1369	cosigneradditionalincomefield	
1369	cosigneraddressyearstotalfield	
1369	emailfield	hv13@hotmail.com
1369	codriverlicensefield	
1369	cosignerrentorownfield	
1369	formeremployerphonefield	
1369	cosigneremploymentlengthyearsfield	
1369	cosignerformeremployerfield	
1369	cosignerpreviouscitytfield	
1369	cosignercitytfield	
1369	cosignerstreetfield	
1369	stockfield	
1369	cosignerpositionfield	
1369	formeremployertimefield	
1369	cosigneremploymerphonefield	
1369	cosignerstatefield	IL
1369	formeremployerstatefield	IL
1369	previouscitytfield	
1369	cosignerzipfield	
1369	cosignerformeremployercityfield	
1369	statefield	IL
1369	locationfield	
1369	previouszipfield	
1369	employerstatefield	IL
1369	phonefield	17732909650
1369	cosignerpreviouszipfield	
1369	cosignerformeremployerpositionfield	
1369	vehiclefield	
1369	formeremployerfield	
1369	cosignerpreviousstatefield	IL
1369	form-name	commentForm
1369	cosignerformeremployerstatefield	IL
1369	lastnamefield	Bollard
1369	formeremployercityfield	
1369	firstnamefield	Herro
1369	formeremployerpositionfield	
1369	previousstreetfield	
1369	additionalinformationfield	
1369	streetfield	2123 2321
1369	addressyearstotalfield	5
1369	rentorownfield	Own
1369	additionalincomesourcefield	sdfsdf
1369	titlefield	sdfsdf
1369	workphonefield	17732909650
1369	citytfield	sdasdas
1369	additionalincomefield	234
1369	employerfield	fsdfsd
1369	monthlypaymentfield	5000
1369	applicationtypefield	Individual
1369	employmentyearsfield	5
1369	zipfield	43423
1369	incomefield	43423
1369	lead-id-field	1369
1369	privacypolicyfield	yes
1368	cosignerdateofbirthfield	4nya0wr/6EFBNMMVIOnMVmQ+Ba0CzeIB0IUKfMrCUew=
1368	ssnfield	FkvfSGY93bmL8L+6GGqgnva0gJdd0Sn2mYkSQQhjcK8=
1368	datepicker	FTchUJP0z1HXSTCItUIVHb5xYyoO8s/tg0vzYht5nIc=
1369	cosignerssnfield	k7lBbbCptdRrBYoRlN847VCbIQqJwIqi7TJY2pHx73M=
1369	cosignerdateofbirthfield	O4VwOhRUJQOXM7XBaeWqcJ5MT+1H2Y0NxSVvOryL8VM=
1369	ssnfield	30YE3LqXb2R/Qx8EWKwFSMJJkV6DFVnn7fgiwYVXP4Y=
1369	datepicker	dMe7IppKm4isoOybr82qPtRKyl/Q8rM9tsg2KZbsE+0=
1369	driverlicensefield	dasdas342324
1369	employercitytfield	sdfsdf
1370	cosigneradditionalincomesourcefield	
1370	cosignerphonefield	
1370	cosignerfirstnamefield	
1370	ccosignerlastnamefield	
1370	codriverlicensestatefield	IL
1370	additionalincomesourcefield	
1370	cosigneremailfield	
1370	previousstatefield	IL
1370	cosigneremployerstatefield	IL
1370	cosignermonthlyincomefield	
1370	cosignermonthlypaymentfield	
1370	cosignerpreviousstreetfield	
1370	cosigneremployercityfield	
1370	cosigneremployerfield	
1370	statusnote	
1370	cosignerformeremployertimefield	
1370	cosignerformeremployerphonefield	
1370	driverlicensestatefield	IL
1370	cosigneradditionalincomefield	
1370	cosigneraddressyearstotalfield	
1370	emailfield	hv13@hotmail.com
1370	codriverlicensefield	
1370	cosignerrentorownfield	
1370	formeremployerphonefield	
1370	cosigneremploymentlengthyearsfield	
1370	cosignerformeremployerfield	
1370	cosignerpreviouscitytfield	
1370	cosignercitytfield	
1370	cosignerstreetfield	
1370	stockfield	
1370	cosignerpositionfield	
1370	additionalincomefield	
1370	formeremployertimefield	
1370	cosigneremploymerphonefield	
1370	cosignerstatefield	IL
1370	formeremployerstatefield	IL
1370	previouscitytfield	
1370	cosignerzipfield	
1370	cosignerformeremployercityfield	
1370	statefield	IL
1370	locationfield	
1370	previouszipfield	
1370	employerstatefield	IL
1370	phonefield	17732909650
1370	cosignerpreviouszipfield	
1370	cosignerformeremployerpositionfield	
1370	incomefield	
1370	vehiclefield	
1370	formeremployerfield	
1370	cosignerpreviousstatefield	IL
1370	form-name	commentForm
1370	cosignerformeremployerstatefield	IL
1370	lastnamefield	sdfsdf
1370	formeremployercityfield	
1370	firstnamefield	sdfsd
1370	formeremployerpositionfield	
1370	previousstreetfield	
1370	streetfield	123 Brick St
1370	addressyearstotalfield	5
1370	rentorownfield	Own
1370	titlefield	sdfsdf
1370	workphonefield	7732909650
1370	citytfield	1desfsdf
1370	employerfield	fsdfsd
1370	monthlypaymentfield	43534534
1370	applicationtypefield	Individual
1370	employmentyearsfield	5
1370	zipfield	43324
1370	lead-id-field	1370
1370	privacypolicyfield	yes
1370	driverlicensefield	asdasd43423
1370	employercitytfield	sdfsd
1370	additionalinformationfield	fgdfgdfg
1371	cosigneradditionalincomesourcefield	
1371	cosignerphonefield	
1371	cosignerfirstnamefield	
1371	ccosignerlastnamefield	
1371	codriverlicensestatefield	IL
1371	additionalincomesourcefield	
1371	cosigneremailfield	
1371	previousstatefield	IL
1371	cosigneremployerstatefield	IL
1371	cosignermonthlyincomefield	
1371	cosignermonthlypaymentfield	
1371	cosignerpreviousstreetfield	
1371	cosigneremployercityfield	
1371	cosigneremployerfield	
1371	statusnote	
1371	cosignerformeremployertimefield	
1371	cosignerformeremployerphonefield	
1371	driverlicensestatefield	IL
1371	cosigneradditionalincomefield	
1371	cosigneraddressyearstotalfield	
1371	emailfield	hv13@hotmail.com
1371	codriverlicensefield	
1371	cosignerrentorownfield	
1371	formeremployerphonefield	
1371	cosigneremploymentlengthyearsfield	
1371	cosignerformeremployerfield	
1371	cosignerpreviouscitytfield	
1371	cosignercitytfield	
1371	cosignerstreetfield	
1371	stockfield	
1371	cosignerpositionfield	
1371	additionalincomefield	
1371	streetfield	dasd
1371	addressyearstotalfield	5
1371	rentorownfield	Rent
1371	titlefield	asdasd
1371	workphonefield	17732909650
1371	citytfield	asdas
1370	cosignerssnfield	U1bnCVIlSVdywewFTfctn9Zz9RfRPwOE7Z7RHGbAhEg=
1370	cosignerdateofbirthfield	+4zltlUxvz9N4Vsgb18Nql04KB0a96Qp7wZzrEnHQIk=
1370	ssnfield	K2oo7HVM2QyWq9OJ2bIZafLFxUfTP7iQzEUu8WeK36c=
1370	datepicker	CvmApGuf2oUlrTcxRFFGedsgzJjIbDeyTlMTx+ju76M=
1371	cosignerssnfield	IeATeo/g/zcDYCqjcU+Uj7qof+hhwV1hLnNjfEfelbY=
1371	ssnfield	6fH8GXMZt09+V9mBHb1d3Fe+38mI6gYptDBnQPuGHao=
1371	datepicker	sCTXboViLf57NS7SS9UsSRDGMW8aLZCtXniaoS0/s0M=
1371	formeremployertimefield	
1371	cosigneremploymerphonefield	
1371	cosignerstatefield	IL
1371	formeremployerstatefield	IL
1371	previouscitytfield	
1371	cosignerzipfield	
1371	cosignerformeremployercityfield	
1371	statefield	IL
1371	locationfield	
1371	previouszipfield	
1371	employerstatefield	IL
1371	phonefield	7732909650
1371	cosignerpreviouszipfield	
1371	cosignerformeremployerpositionfield	
1371	incomefield	
1371	vehiclefield	
1371	formeremployerfield	
1371	cosignerpreviousstatefield	IL
1371	form-name	commentForm
1371	cosignerformeremployerstatefield	IL
1371	lastnamefield	dasdas
1371	formeremployercityfield	
1371	firstnamefield	sdas
1371	formeremployerpositionfield	
1371	previousstreetfield	
1371	additionalinformationfield	
1371	employerfield	asdasd
1371	monthlypaymentfield	34534
1371	applicationtypefield	Individual
1371	employmentyearsfield	5
1371	zipfield	60007
1371	lead-id-field	1371
1371	privacypolicyfield	yes
1371	driverlicensefield	fsdfsd423423
1371	employercitytfield	asdasd
1372	cosigneradditionalincomesourcefield	
1372	cosignerphonefield	
1372	cosignerfirstnamefield	
1372	ccosignerlastnamefield	
1372	codriverlicensestatefield	IL
1372	additionalincomesourcefield	
1372	cosigneremailfield	
1372	previousstatefield	IL
1372	cosigneremployerstatefield	IL
1372	cosignermonthlyincomefield	
1372	cosignermonthlypaymentfield	
1372	cosignerpreviousstreetfield	
1372	cosigneremployercityfield	
1372	cosigneremployerfield	
1372	statusnote	
1372	cosignerformeremployertimefield	
1372	cosignerformeremployerphonefield	
1372	driverlicensestatefield	IL
1372	cosigneradditionalincomefield	
1372	cosigneraddressyearstotalfield	
1372	emailfield	hv13@hotmail.com
1372	codriverlicensefield	
1372	cosignerrentorownfield	
1372	formeremployerphonefield	
1372	cosigneremploymentlengthyearsfield	
1372	cosignerformeremployerfield	
1372	cosignerpreviouscitytfield	
1372	cosignercitytfield	
1372	cosignerstreetfield	
1372	stockfield	
1372	cosignerpositionfield	
1372	additionalincomefield	
1372	formeremployertimefield	
1372	cosigneremploymerphonefield	
1372	cosignerstatefield	IL
1372	formeremployerstatefield	IL
1372	previouscitytfield	
1372	cosignerzipfield	
1372	cosignerformeremployercityfield	
1372	statefield	IL
1372	locationfield	
1372	previouszipfield	
1372	employerstatefield	IL
1372	phonefield	7732909650
1372	cosignerpreviouszipfield	
1372	cosignerformeremployerpositionfield	
1372	incomefield	
1372	vehiclefield	
1372	formeremployerfield	
1372	cosignerpreviousstatefield	IL
1372	form-name	commentForm
1372	cosignerformeremployerstatefield	IL
1372	lastnamefield	sdfsdf
1372	formeremployercityfield	
1372	firstnamefield	dsfsdf
1372	formeremployerpositionfield	
1372	previousstreetfield	
1372	additionalinformationfield	
1372	streetfield	wqeqwe
1372	addressyearstotalfield	5
1372	rentorownfield	Rent
1372	titlefield	asdasd
1372	workphonefield	17732909650
1372	citytfield	w
1372	employerfield	adsdasd
1372	monthlypaymentfield	324234
1372	applicationtypefield	Individual
1372	employmentyearsfield	5
1372	zipfield	56546
1372	lead-id-field	1372
1372	privacypolicyfield	yes
1372	driverlicensefield	asdas34234
1372	employercitytfield	asdasd
1373	cosigneradditionalincomesourcefield	
1373	cosignerphonefield	
1373	cosignerfirstnamefield	
1373	ccosignerlastnamefield	
1373	codriverlicensestatefield	IL
1373	streetfield	rewer42342
1373	addressyearstotalfield	5
1373	rentorownfield	Rent
1371	cosignerdateofbirthfield	abk4zv+2fTuHrF73njIOdzt77pPKKwJoNhmFvkPl8PM=
1372	cosignerssnfield	haHHUEEQcXa3zXzfBvCNSkpO+1yz4AcYlfw2f+DLQto=
1372	cosignerdateofbirthfield	1TlUjpPf6nz8AtOWzlCbb1VChlolOjHnnv0Y197MqpA=
1372	ssnfield	V5uEy5DY+i7DtW4mUgOeg4PVXbiLQ77UJAgE1ag8XP4=
1372	datepicker	I/Jc0t4v9UpkgCedTn0IlBoKabN7h9KMfif8gOqL520=
1373	additionalincomesourcefield	
1373	cosignerformeremployerpositionfield	
1373	cosigneremailfield	
1373	previousstatefield	IL
1373	cosigneremployerstatefield	IL
1373	cosignermonthlyincomefield	
1373	cosignermonthlypaymentfield	
1373	cosignerpreviousstreetfield	
1373	cosigneremployerfield	
1373	statusnote	
1373	cosignerformeremployertimefield	
1373	cosignerformeremployerphonefield	
1373	driverlicensestatefield	IL
1373	cosigneradditionalincomefield	
1373	cosigneraddressyearstotalfield	
1373	emailfield	hv13@hotmail.com
1373	codriverlicensefield	
1373	cosignerrentorownfield	
1373	cosigneremployercityfield	
1373	cosigneremploymentlengthyearsfield	
1373	cosignerformeremployerfield	
1373	cosignerpreviouscitytfield	
1373	cosignercitytfield	
1373	cosignerstreetfield	
1373	stockfield	
1373	cosignerpositionfield	
1373	additionalincomefield	
1373	formeremployertimefield	
1373	cosigneremploymerphonefield	
1373	cosignerstatefield	IL
1373	formeremployerstatefield	IL
1373	previouscitytfield	
1373	cosignerzipfield	
1373	cosignerformeremployercityfield	
1373	statefield	IL
1373	locationfield	
1373	previouszipfield	
1373	employerstatefield	IL
1373	phonefield	17732909650
1373	cosignerpreviouszipfield	
1373	formeremployerphonefield	
1373	incomefield	
1373	vehiclefield	
1373	formeremployerfield	
1373	cosignerpreviousstatefield	IL
1373	form-name	commentForm
1373	cosignerformeremployerstatefield	IL
1373	lastnamefield	qwewq
1373	formeremployercityfield	
1373	firstnamefield	qweqwe
1373	formeremployerpositionfield	
1373	previousstreetfield	
1373	additionalinformationfield	
1373	titlefield	sdfsdf
1373	workphonefield	7732909650
1373	citytfield	fsdfsdf
1373	employerfield	dsfsdefs
1373	monthlypaymentfield	342342
1373	applicationtypefield	Individual
1373	employmentyearsfield	5
1373	zipfield	60007
1373	lead-id-field	1373
1373	privacypolicyfield	yes
1373	driverlicensefield	dsfsd324324
1373	employercitytfield	sdfsdf
1374	streetfield	
1374	cosigneradditionalincomesourcefield	
1374	addressyearstotalfield	
1374	cosignerphonefield	
1374	cosignerfirstnamefield	
1374	ccosignerlastnamefield	
1374	rentorownfield	
1374	codriverlicensestatefield	IL
1374	additionalincomesourcefield	
1374	cosignerformeremployerpositionfield	
1374	cosigneremailfield	
1374	previousstatefield	IL
1374	cosigneremployerstatefield	IL
1374	cosignermonthlyincomefield	
1374	cosignermonthlypaymentfield	
1374	cosignerpreviousstreetfield	
1374	cosigneremployerfield	
1374	statusnote	
1374	cosignerformeremployertimefield	
1374	cosignerformeremployerphonefield	
1374	driverlicensestatefield	IL
1374	cosigneradditionalincomefield	
1374	titlefield	
1374	cosigneraddressyearstotalfield	
1374	emailfield	dfdsfer@df.com
1374	codriverlicensefield	
1374	cosignerrentorownfield	
1374	workphonefield	
1374	cosigneremployercityfield	
1374	citytfield	
1374	cosigneremploymentlengthyearsfield	
1374	cosignerformeremployerfield	
1374	cosignerpreviouscitytfield	
1374	cosignercitytfield	
1374	cosignerstreetfield	
1374	stockfield	
1374	cosignerpositionfield	
1374	additionalincomefield	
1374	formeremployertimefield	
1374	employerfield	
1374	cosigneremploymerphonefield	
1374	monthlypaymentfield	
1374	cosignerstatefield	IL
1374	applicationtypefield	
1374	formeremployerstatefield	IL
1374	previouscitytfield	
1374	cosignerzipfield	
1374	cosignerformeremployercityfield	
1374	employmentyearsfield	
1374	statefield	IL
1374	locationfield	
1374	previouszipfield	
1373	cosignerssnfield	4KAfMqRc0MFc7tGdsH58K4Zy1kKmscHsjXXMB+OPEmQ=
1373	cosignerdateofbirthfield	MPDCOhnyuYpr/44gbIwQCJCXwf22CByQ/z34Qdm777Q=
1373	ssnfield	Lk3ovcmsQULUTJreCykr268lisKhy8Eq+2eTvtcKLGA=
1373	datepicker	cGnk+/+j4RVP2EAporo0n8Q4aYMJijqCkYI9sV58f+o=
1374	cosignerssnfield	neNHWrgoCdKmLErH4Bxe/MKu0WS/+c4ltKlHaUxnheQ=
1374	ssnfield	ChreaZnfEWYlYHS1ArU1RtA/agOJfB+P3RBfOcsYXMQ=
1374	datepicker	vCjBRVNz7Iq1q7RET1g1UraYunGgh+RJYocNk55toI8=
1374	zipfield	
1374	employerstatefield	IL
1374	phonefield	7732909650
1374	cosignerpreviouszipfield	
1374	formeremployerphonefield	
1374	incomefield	
1374	vehiclefield	
1374	lead-id-field	
1374	formeremployerfield	
1374	cosignerpreviousstatefield	IL
1374	form-name	commentForm
1374	driverlicensefield	
1374	employercitytfield	
1374	cosignerformeremployerstatefield	IL
1374	lastnamefield	asdasd
1374	formeremployercityfield	
1374	firstnamefield	dasdas
1374	formeremployerpositionfield	
1374	previousstreetfield	
1374	additionalinformationfield	
1374	privacypolicyfield	
1375	cosigneradditionalincomesourcefield	
1375	cosignerphonefield	
1375	cosignerfirstnamefield	
1375	ccosignerlastnamefield	
1375	codriverlicensestatefield	IL
1375	additionalincomesourcefield	
1375	cosigneremailfield	
1375	previousstatefield	IL
1375	cosigneremployerstatefield	IL
1375	cosignermonthlyincomefield	
1375	cosignermonthlypaymentfield	
1375	cosignerpreviousstreetfield	
1375	cosigneremployercityfield	
1375	cosigneremployerfield	
1375	statusnote	
1375	cosignerformeremployertimefield	
1375	cosignerformeremployerphonefield	
1375	driverlicensestatefield	IL
1375	cosigneradditionalincomefield	
1375	cosigneraddressyearstotalfield	
1375	emailfield	hv13@hotmail.com
1375	codriverlicensefield	
1375	cosignerrentorownfield	
1375	formeremployerphonefield	
1375	cosigneremploymentlengthyearsfield	
1375	cosignerformeremployerfield	
1375	cosignerpreviouscitytfield	
1375	cosignercitytfield	
1375	cosignerstreetfield	
1375	stockfield	
1375	cosignerpositionfield	
1375	additionalincomefield	
1375	formeremployertimefield	
1375	cosigneremploymerphonefield	
1375	cosignerstatefield	IL
1375	formeremployerstatefield	IL
1375	previouscitytfield	
1375	cosignerzipfield	
1375	cosignerformeremployercityfield	
1375	statefield	IL
1375	locationfield	
1375	previouszipfield	
1375	employerstatefield	IL
1375	phonefield	7732909650
1375	cosignerpreviouszipfield	
1375	cosignerformeremployerpositionfield	
1375	incomefield	
1375	vehiclefield	
1375	formeremployerfield	
1375	cosignerpreviousstatefield	IL
1375	form-name	commentForm
1375	cosignerformeremployerstatefield	IL
1375	lastnamefield	qweqw
1375	formeremployercityfield	
1375	firstnamefield	eqweqw
1375	formeremployerpositionfield	
1375	previousstreetfield	
1375	additionalinformationfield	
1375	streetfield	sadfsd4234
1375	addressyearstotalfield	5
1375	rentorownfield	Rent
1375	titlefield	sdfsdf
1375	workphonefield	17732909650
1375	citytfield	sdfsdfs
1375	employerfield	dsfsdf
1375	monthlypaymentfield	34543
1375	applicationtypefield	Individual
1375	employmentyearsfield	5
1375	zipfield	56546
1375	lead-id-field	1375
1375	privacypolicyfield	yes
1375	driverlicensefield	fsdf34324
1375	employercitytfield	sdfsdf
1376	cosigneradditionalincomesourcefield	
1376	cosignerphonefield	
1376	cosignerfirstnamefield	
1376	ccosignerlastnamefield	
1376	codriverlicensestatefield	IL
1376	additionalincomesourcefield	
1376	cosigneremailfield	
1376	previousstatefield	IL
1376	cosigneremployerstatefield	IL
1376	cosignermonthlyincomefield	
1376	cosignermonthlypaymentfield	
1376	cosignerpreviousstreetfield	
1376	cosigneremployercityfield	
1376	cosigneremployerfield	
1376	statusnote	
1376	cosignerformeremployertimefield	
1376	cosignerformeremployerphonefield	
1376	driverlicensestatefield	IL
1376	cosigneradditionalincomefield	
1376	streetfield	123 Brick St
1376	addressyearstotalfield	5
1376	rentorownfield	Other
1376	titlefield	Manager
1375	cosignerssnfield	b1SbW7Ls18U5P6b3C1A2z32ljIb88auhwNaPGtg/Ia0=
1375	cosignerdateofbirthfield	Q+zXBoO2L3dzcN5G+IBz5S3/hcL+oO1Y8WAAiMBkzx8=
1375	ssnfield	RACZzHzX5YPHjmT/6nE/iX1FN4+PUmCmBlJmzgVkyqM=
1375	datepicker	Hz+S25ZdnXSX1LmdAZi+xf7eiD8RLvARXSv7Bfs/FVM=
1376	cosignerssnfield	1GkT/WeexzPbnc/L2ar6/W4/vy05DDJ94usir1Kqoe8=
1376	cosigneraddressyearstotalfield	
1376	emailfield	hv13@hotmail.com
1376	codriverlicensefield	
1376	cosignerrentorownfield	
1376	formeremployerphonefield	
1376	cosigneremploymentlengthyearsfield	
1376	cosignerformeremployerfield	
1376	cosignerpreviouscitytfield	
1376	cosignercitytfield	
1376	cosignerstreetfield	
1376	stockfield	
1376	cosignerpositionfield	
1376	additionalincomefield	
1376	formeremployertimefield	
1376	cosigneremploymerphonefield	
1376	cosignerstatefield	IL
1376	formeremployerstatefield	IL
1376	previouscitytfield	
1376	cosignerzipfield	
1376	cosignerformeremployercityfield	
1376	statefield	IL
1376	locationfield	
1376	previouszipfield	
1376	employerstatefield	IL
1376	phonefield	17732909650
1376	cosignerpreviouszipfield	
1376	cosignerformeremployerpositionfield	
1376	vehiclefield	
1376	formeremployerfield	
1376	cosignerpreviousstatefield	IL
1376	form-name	commentForm
1376	cosignerformeremployerstatefield	IL
1376	lastnamefield	Sanders
1376	formeremployercityfield	
1376	firstnamefield	Burt
1376	formeremployerpositionfield	
1376	previousstreetfield	
1376	additionalinformationfield	
1376	workphonefield	17732909650
1376	citytfield	Chicago
1376	employerfield	Hello Kitty
1376	monthlypaymentfield	30000
1376	applicationtypefield	Individual
1376	employmentyearsfield	5
1376	zipfield	60613
1376	incomefield	5000
1376	lead-id-field	1376
1376	privacypolicyfield	yes
1376	driverlicensefield	DF2311234DF
1376	employercitytfield	Boston
1377	cosigneradditionalincomesourcefield	
1377	cosignerphonefield	
1377	cosignerfirstnamefield	
1377	ccosignerlastnamefield	
1377	codriverlicensestatefield	IL
1377	additionalincomesourcefield	
1377	cosigneremailfield	
1377	previousstatefield	IL
1377	cosigneremployerstatefield	IL
1377	cosignermonthlyincomefield	
1377	cosignermonthlypaymentfield	
1377	cosignerpreviousstreetfield	
1377	cosigneremployercityfield	
1377	cosigneremployerfield	
1377	statusnote	
1377	cosignerformeremployertimefield	
1377	cosignerformeremployerphonefield	
1377	driverlicensestatefield	IL
1377	cosigneradditionalincomefield	
1377	cosigneraddressyearstotalfield	
1377	emailfield	hv13@hotmail.com
1377	codriverlicensefield	
1377	cosignerrentorownfield	
1377	formeremployerphonefield	
1377	cosigneremploymentlengthyearsfield	
1377	cosignerformeremployerfield	
1377	cosignerpreviouscitytfield	
1377	cosignercitytfield	
1377	cosignerstreetfield	
1377	stockfield	
1377	cosignerpositionfield	
1377	additionalincomefield	
1377	formeremployertimefield	
1377	cosigneremploymerphonefield	
1377	cosignerstatefield	IL
1377	formeremployerstatefield	IL
1377	previouscitytfield	
1377	cosignerzipfield	
1377	cosignerformeremployercityfield	
1377	statefield	IL
1377	locationfield	
1377	previouszipfield	
1377	employerstatefield	IL
1377	phonefield	17732909650
1377	cosignerpreviouszipfield	
1377	cosignerformeremployerpositionfield	
1377	vehiclefield	
1377	formeremployerfield	
1377	cosignerpreviousstatefield	IL
1377	form-name	commentForm
1377	cosignerformeremployerstatefield	IL
1377	lastnamefield	Reeror
1377	formeremployercityfield	
1377	firstnamefield	Johan
1377	streetfield	123 Brick St
1377	addressyearstotalfield	5
1377	rentorownfield	Rent
1377	titlefield	Manager
1377	workphonefield	17732909650
1377	citytfield	Chicago
1377	employerfield	Monto Club
1377	monthlypaymentfield	12200
1377	applicationtypefield	Individual
1376	cosignerdateofbirthfield	91Fa1xx0u9EIceyp5NF8WP3c5KElkIHlb9NnMJHNQao=
1376	ssnfield	YpEIpjJIgbtalvc2WX0vr5kzPLiz8m/EHTwBjIFEioY=
1376	datepicker	qgLBfwQr6dttntVnh2JnclzIxW9Sy9r6FiWbK83r8pU=
1377	cosignerssnfield	hIvau37innSZxdnm/sUSB98NsHaX1qY/t212GfUejR0=
1377	cosignerdateofbirthfield	Nxc8sRnjASdjNDcNnM/fMeOpHktRWOMgcUjg4xwxkpI=
1377	ssnfield	0GJfmjqPLmojaN0MWS8oFogfKvWCGBQ9a4Xp0L/73Fs=
1377	datepicker	UdhbqmAKX0OiwDS+oHFVyNsB0E2fpUkj2lh9OktfPDQ=
1377	formeremployerpositionfield	
1377	previousstreetfield	
1377	employmentyearsfield	5
1377	zipfield	60007
1377	incomefield	4000
1377	lead-id-field	1377
1377	privacypolicyfield	yes
1377	driverlicensefield	DFK0003245DGF
1377	employercitytfield	Chicago
1377	additionalinformationfield	hello world
1378	streetfield	
1378	cosigneradditionalincomesourcefield	
1378	addressyearstotalfield	
1378	cosignerphonefield	
1378	cosignerfirstnamefield	
1378	ccosignerlastnamefield	
1378	rentorownfield	
1378	codriverlicensestatefield	IL
1378	additionalincomesourcefield	
1378	cosigneremailfield	
1378	previousstatefield	IL
1378	cosigneremployerstatefield	IL
1378	cosignermonthlyincomefield	
1378	cosignermonthlypaymentfield	
1378	cosignerpreviousstreetfield	
1378	cosigneremployercityfield	
1378	cosigneremployerfield	
1378	statusnote	
1378	cosignerformeremployertimefield	
1378	cosignerformeremployerphonefield	
1378	driverlicensestatefield	IL
1378	cosigneradditionalincomefield	
1378	titlefield	
1378	cosigneraddressyearstotalfield	
1378	emailfield	hv13@hotmail.com
1378	codriverlicensefield	
1378	cosignerrentorownfield	
1378	workphonefield	
1378	formeremployerphonefield	
1378	citytfield	
1378	cosigneremploymentlengthyearsfield	
1378	cosignerformeremployerfield	
1378	cosignerpreviouscitytfield	
1378	cosignercitytfield	
1378	cosignerstreetfield	
1378	stockfield	
1378	cosignerpositionfield	
1378	additionalincomefield	
1378	formeremployertimefield	
1378	employerfield	
1378	cosigneremploymerphonefield	
1378	monthlypaymentfield	
1378	cosignerstatefield	IL
1378	applicationtypefield	
1378	formeremployerstatefield	IL
1378	previouscitytfield	
1378	cosignerzipfield	
1378	cosignerformeremployercityfield	
1378	employmentyearsfield	
1378	statefield	IL
1378	locationfield	
1378	previouszipfield	
1378	zipfield	
1378	employerstatefield	IL
1378	phonefield	17732909650
1378	cosignerpreviouszipfield	
1378	cosignerformeremployerpositionfield	
1378	incomefield	
1378	vehiclefield	
1378	lead-id-field	
1378	formeremployerfield	
1378	cosignerpreviousstatefield	IL
1378	form-name	commentForm
1378	driverlicensefield	
1378	employercitytfield	
1378	cosignerformeremployerstatefield	IL
1378	lastnamefield	Baulder
1378	formeremployercityfield	
1378	firstnamefield	Mike
1378	formeremployerpositionfield	
1378	previousstreetfield	
1378	additionalinformationfield	
1378	privacypolicyfield	
1379	streetfield	setse
1379	cosigneradditionalincomesourcefield	
1379	addressyearstotalfield	5+ years
1379	driverlicenseexpirationfield	sets
1379	cosignerphonefield	
1379	cosignerfirstnamefield	
1379	employercityfield	setset
1379	rentorownfield	Rent
1379	codriverlicensestatefield	
1379	employmentyearsfield	5+ years
1379	cosigneremailfield	
1379	previousstatefield	
1379	cosignerpositionfield	
1379	cosigneremployerstatefield	
1379	cosignermonthlyincomefield	
1379	cosignermonthlypaymentfield	
1379	cosignerpreviousstreetfield	
1379	cosigneremployerfield	
1379	statusnote	
1379	cosignerformeremployertimefield	
1379	cosignerformeremployerphonefield	
1379	driverlicensestatefield	ets
1379	cosigneradditionalincomefield	
1379	titlefield	setset
1379	cosigneraddressyearstotalfield	
1379	cosignerlastnamefield	
1379	emailfield	test@test.com
1379	codriverlicensefield	
1379	cosignerrentorownfield	Rent
1379	workphonefield	setse
1379	cosigneremployercityfield	
1379	employerfield	setset
1379	cosigneremploymentlengthyearsfield	
1379	cosignerformeremployerfield	
1379	read-notice[]	I have read and understand your policies, terms, and conditions
1379	cosignerstreetfield	
1379	cosignerworkphonefield	
1379	previouscityfield	
1379	stockfield	
1379	_wpcf7	850
1379	additionalincomefield	
1379	formeremployertimefield	
1379	_wpcf7_container_post	0
1379	monthlypaymentfield	setset
1379	cosignerstatefield	
1378	cosignerssnfield	aSA+GhgH375QurkuVMN38pe8Hh+oWleytrpqTQSYY/k=
1379	formeremployerstatefield	
1379	_wpcf7_unit_tag	wpcf7-f850-o1
1379	formeremployerphonefield	
1379	cosignerzipfield	
1379	cosignerformeremployercityfield	
1379	additionalincomesourcefield	
1379	statefield	etse
1379	locationfield	
1379	codriverlicenseexpirationfield	
1379	vehiclefield	
1379	cityfield	tsets
1379	zipfield	tset
1379	employerstatefield	setset
1379	phonefield	test
1379	cosignerpreviouszipfield	
1379	cosignerformeremployerpositionfield	
1379	incomefield	setset
1379	previouszipfield	
1379	formeremployerfield	
1379	cosignerpreviousstatefield	
1379	cosignerpreviouscityfield	
1379	driverlicensefield	tset
1379	_wpcf7_locale	en_US
1379	_wpcf7_version	5.0
1379	cosignerformeremployerstatefield	
1379	lastnamefield	test
1379	formeremployercityfield	
1379	cosignercityfield	
1379	firstnamefield	tets
1379	formeremployerpositionfield	
1379	previousstreetfield	
1379	additionalinformationfield	
1379	applicationtypefield	
1379	ccosignerlastnamefield	
1379	citytfield	
1379	cosignercitytfield	
1379	cosigneremploymerphonefield	
1379	cosignerpreviouscitytfield	
1379	employercitytfield	
1379	previouscitytfield	
1379	privacypolicyfield	
1380	streetfield	asdf
1380	cosigneradditionalincomesourcefield	
1380	addressyearstotalfield	5+ years
1380	driverlicenseexpirationfield	asdf
1380	cosignerphonefield	
1380	cosignerfirstnamefield	
1380	employercityfield	asdf
1380	rentorownfield	Rent
1380	codriverlicensestatefield	
1380	employmentyearsfield	5+ years
1380	cosigneremailfield	
1380	previousstatefield	
1380	cosignerpositionfield	
1380	cosigneremployerstatefield	
1380	cosignermonthlyincomefield	
1380	cosignermonthlypaymentfield	
1380	cosignerpreviousstreetfield	
1380	cosigneremployerfield	
1380	statusnote	
1380	cosignerformeremployertimefield	
1380	cosignerformeremployerphonefield	
1380	driverlicensestatefield	asdf
1380	cosigneradditionalincomefield	
1380	titlefield	asdf
1380	cosigneraddressyearstotalfield	
1380	cosignerlastnamefield	
1380	emailfield	test@test.com
1380	codriverlicensefield	
1380	cosignerrentorownfield	Rent
1380	workphonefield	asdf
1380	cosigneremployercityfield	
1380	employerfield	asd
1380	cosigneremploymentlengthyearsfield	
1380	cosignerformeremployerfield	
1380	read-notice[]	I have read and understand your policies, terms, and conditions
1380	cosignerstreetfield	
1380	cosignerworkphonefield	
1380	previouscityfield	
1380	stockfield	
1380	_wpcf7	850
1380	additionalincomefield	
1380	formeremployertimefield	
1380	_wpcf7_container_post	0
1380	monthlypaymentfield	asdf
1380	cosignerstatefield	
1380	formeremployerstatefield	
1380	_wpcf7_unit_tag	wpcf7-f850-o1
1380	formeremployerphonefield	
1380	cosignerzipfield	
1380	cosignerformeremployercityfield	
1380	additionalincomesourcefield	
1380	statefield	asdf
1380	locationfield	
1380	codriverlicenseexpirationfield	
1380	vehiclefield	
1380	cityfield	sdf
1380	zipfield	asdf
1380	employerstatefield	asdf
1380	phonefield	dfasdf
1380	cosignerpreviouszipfield	
1380	cosignerformeremployerpositionfield	
1380	incomefield	asdf
1380	previouszipfield	
1380	formeremployerfield	
1380	cosignerpreviousstatefield	
1380	cosignerpreviouscityfield	
1380	driverlicensefield	asdf
1380	_wpcf7_locale	en_US
1380	_wpcf7_version	5.0
1380	cosignerformeremployerstatefield	
1380	lastnamefield	test 2
1380	formeremployercityfield	
1380	cosignercityfield	
1380	firstnamefield	test 2
1380	formeremployerpositionfield	
1380	previousstreetfield	
1380	additionalinformationfield	
1380	applicationtypefield	
1380	ccosignerlastnamefield	
1380	citytfield	
1380	cosignercitytfield	
1380	cosigneremploymerphonefield	
1380	cosignerpreviouscitytfield	
1380	employercitytfield	
1380	previouscitytfield	
1380	privacypolicyfield	
1381	streetfield	123 Street
1381	cosigneradditionalincomesourcefield	??
1381	addressyearstotalfield	1-2 years
1381	driverlicenseexpirationfield	dl01/10
1381	cosignerphonefield	123456789
1381	cosignerfirstnamefield	co first name
1381	employercityfield	ECity
1381	rentorownfield	Own
1381	codriverlicensestatefield	CD
1381	employmentyearsfield	1-2 years
1381	cosigneremailfield	co@mail.com
1381	previousstatefield	PS
1381	cosignerpositionfield	coemp title
1381	cosigneremployerstatefield	coempstate
1381	cosignermonthlyincomefield	1000000
1381	cosignermonthlypaymentfield	none
1381	cosignerpreviousstreetfield	co prev street
1381	cosigneremployerfield	co empl
1381	statusnote	
1381	cosignerformeremployertimefield	1-2 years
1381	cosignerformeremployerphonefield	12341341234
1381	driverlicensestatefield	DL
1381	cosigneradditionalincomefield	100
1381	titlefield	Job Title
1381	cosigneraddressyearstotalfield	3-4 years
1381	cosignerlastnamefield	co last name
1381	emailfield	test@test.com
1381	codriverlicensefield	codl-12345
1381	cosignerrentorownfield	Other
1381	workphonefield	W12-345-6789
1381	cosigneremployercityfield	coemplcity
1381	employerfield	Test Employer
1381	cosigneremploymentlengthyearsfield	Less than 1 year
1381	cosignerformeremployerfield	co prev emp
1381	read-notice[]	I have read and understand your policies, terms, and conditions
1381	cosignerstreetfield	co street
1381	cosignerworkphonefield	coemp12345
1381	previouscityfield	PCity
1381	stockfield	Stock # 123
1381	coapplicant[]	Co-Applicant?
1381	_wpcf7	850
1381	additionalincomefield	no
1381	formeremployertimefield	should be dropdown
1381	_wpcf7_container_post	0
1381	monthlypaymentfield	1000
1381	cosignerstatefield	costate
1381	formeremployerstatefield	PE
1381	_wpcf7_unit_tag	wpcf7-f850-o1
1381	formeremployerphonefield	PE1-234-5678
1381	cosignerzipfield	co123
1381	cosignerformeremployercityfield	co prev emp city
1381	additionalincomesourcefield	none
1381	statefield	ST
1381	locationfield	Dealer Lot 1
1381	codriverlicenseexpirationfield	codl-exp
1381	vehiclefield	Test Vehicle
1381	cityfield	TestCity
1381	zipfield	12345
1381	employerstatefield	ES
1381	phonefield	1234567890
1381	cosignerpreviouszipfield	cop12
1381	cosignerformeremployerpositionfield	co pret title
1381	incomefield	10000
1381	previouszipfield	P1234
1381	formeremployerfield	TESTPE
1381	cosignerpreviousstatefield	co prev state
1381	cosignerpreviouscityfield	co prev cityt
1381	driverlicensefield	dl12345
1381	_wpcf7_locale	en_US
1381	_wpcf7_version	5.0
1381	cosignerformeremployerstatefield	co prev emp state
1381	lastnamefield	LName
1381	formeremployercityfield	PECity
1381	cosignercityfield	cocity
1381	firstnamefield	FName
1381	formeremployerpositionfield	PE Title
1381	previousstreetfield	Prev Street
1381	additionalinformationfield	comments
1381	applicationtypefield	
1381	ccosignerlastnamefield	
1381	citytfield	
1381	cosignercitytfield	
1381	cosigneremploymerphonefield	
1381	cosignerpreviouscitytfield	
1381	employercitytfield	
1381	previouscitytfield	
1381	privacypolicyfield	
1382	streetfield	test
1382	cosigneradditionalincomesourcefield	
1382	addressyearstotalfield	5+ years
1382	cosignerphonefield	
1382	cosigneremployercitytfield	
1382	cosignerfirstnamefield	
1382	ccosignerlastnamefield	co last name
1382	rentorownfield	Rent
1382	codriverlicensestatefield	
1382	employmentyearsfield	3-4 years
1382	cosigneremailfield	
1382	previousstatefield	
1382	cosignerpositionfield	
1382	privacypolicyfield[]	I have read and understand your policies, terms, and conditions
1382	cosignerformeremployerpositionfield	
1382	cosigneremployerstatefield	
1382	cosignermonthlyincomefield	
1382	cosignermonthlypaymentfield	
1382	cosignerpreviousstreetfield	
1382	cosigneremployerfield	
1382	statusnote	
1382	cosignerformeremployertimefield	
1382	cosignerformeremployerphonefield	
1382	driverlicensestatefield	test
1382	cosigneradditionalincomefield	
1382	titlefield	sets
1382	cosigneraddressyearstotalfield	
1382	emailfield	test@test.com
1382	codriverlicensefield	
1382	cosignerrentorownfield	Rent
1382	formeremployercitytfield	
1382	workphonefield	tset
1382	employerfield	test
1382	citytfield	city
1382	cosigneremploymentlengthyearsfield	
1382	cosignerformeremployerfield	
1382	cosignerpreviouscitytfield	
1382	cosignercitytfield	co city
1382	cosignerstreetfield	
1382	cosignerworkphonefield	
1382	stockfield	
1382	_wpcf7	850
1382	formeremployertimefield	
1382	_wpcf7_container_post	0
1382	monthlypaymentfield	test
1382	additionalincomefield	
1382	cosignerstatefield	
1382	formeremployerstatefield	
1382	_wpcf7_unit_tag	wpcf7-f850-o1
1382	previouscitytfield	
1382	cosignerzipfield	
1382	additionalincomesourcefield	
1382	statefield	test
1382	locationfield	
1382	vehiclefield	
1382	zipfield	test
1382	employerstatefield	etse
1382	phonefield	test
1382	cosignerpreviouszipfield	
1382	formeremployerphonefield	
1382	incomefield	set
1382	previouszipfield	
1382	formeremployerfield	
1382	cosignerpreviousstatefield	
1382	cosignerformeremployercitytfield	
1382	driverlicensefield	test
1382	_wpcf7_locale	en_US
1382	_wpcf7_version	5.0
1382	employercitytfield	ets
1382	cosignerformeremployerstatefield	
1382	lastnamefield	test
1382	applicationtypefield[]	Co-Applicant?
1382	firstnamefield	test
1382	formeremployerpositionfield	
1382	previousstreetfield	
1382	additionalinformationfield	
1382	applicationtypefield	
1382	cosigneremployercityfield	
1382	cosigneremploymerphonefield	
1382	cosignerformeremployercityfield	
1382	formeremployercityfield	
1382	privacypolicyfield	
1383	streetfield	asdf
1383	cosigneradditionalincomesourcefield	
1383	addressyearstotalfield	1-2 years
1383	cosignerphonefield	
1383	cosignerfirstnamefield	
1383	ccosignerlastnamefield	
1383	rentorownfield	Rent
1383	codriverlicensestatefield	
1383	employmentyearsfield	5+ years
1383	cosigneremailfield	
1383	previousstatefield	
1383	cosignerpositionfield	
1383	cosigneremployerstatefield	
1383	workphonefield	sdf
1383	cosignermonthlyincomefield	
1383	cosignermonthlypaymentfield	
1383	cosignerpreviousstreetfield	
1383	cosigneremployercityfield	co work city
1383	cosigneremployerfield	
1383	statusnote	
1383	cosignerformeremployertimefield	
1383	cosignerformeremployerphonefield	co prev work phone
1383	driverlicensestatefield	asdf
1383	cosigneradditionalincomefield	
1383	titlefield	asdf
1383	cosigneraddressyearstotalfield	
1383	emailfield	test@test.com
1383	codriverlicensefield	
1383	cosignerrentorownfield	Rent
1383	phonefield	asdf
1383	formeremployerphonefield	
1383	employerfield	asdf
1383	citytfield	asdf
1383	cosigneremploymentlengthyearsfield	Less than 1 year
1383	cosignerformeremployerfield	
1383	cosignerpreviouscitytfield	
1383	cosignercitytfield	
1383	cosignerstreetfield	
1383	stockfield	
1383	_wpcf7	850
1383	formeremployertimefield	
1383	_wpcf7_container_post	0
1383	cosigneremploymerphonefield	co work phone
1383	monthlypaymentfield	asdf
1383	additionalincomefield	
1383	cosignerstatefield	
1383	formeremployerstatefield	
1383	_wpcf7_unit_tag	wpcf7-f850-o1
1383	previouscitytfield	
1383	cosignerzipfield	
1383	cosignerformeremployercityfield	co prev work city
1383	additionalincomesourcefield	
1383	statefield	asdf
1383	locationfield	
1383	vehiclefield	
1383	zipfield	asdf
1383	employerstatefield	asdf
1383	applicationtypefield	Co-Applicant?
1383	cosignerpreviouszipfield	
1383	cosignerformeremployerpositionfield	
1383	incomefield	asdf
1383	previouszipfield	
1383	formeremployerfield	
1383	cosignerpreviousstatefield	
1383	privacypolicyfield	I have read and understand your policies, terms, and conditions
1383	driverlicensefield	asdf
1383	_wpcf7_locale	en_US
1383	_wpcf7_version	5.0
1383	employercitytfield	asdf
1383	cosignerformeremployerstatefield	
1383	lastnamefield	asdfasdf
1383	formeremployercityfield	
1383	firstnamefield	rastsea
1383	formeremployerpositionfield	
1383	previousstreetfield	
1383	additionalinformationfield	
1384	streetfield	a
1384	cosigneradditionalincomesourcefield	
1384	addressyearstotalfield	5+ years
1384	cosignerphonefield	
1384	cosignerfirstnamefield	
1384	ccosignerlastnamefield	
1384	rentorownfield	Rent
1384	codriverlicensestatefield	
1384	employmentyearsfield	5+ years
1384	cosigneremailfield	
1384	previousstatefield	
1384	cosignerpositionfield	
1384	cosigneremployerstatefield	
1384	cosignermonthlyincomefield	
1384	cosignermonthlypaymentfield	
1384	cosignerpreviousstreetfield	
1384	cosigneremployercityfield	
1384	cosigneremployerfield	
1384	statusnote	
1384	cosignerformeremployertimefield	
1384	cosignerformeremployerphonefield	
1384	driverlicensestatefield	a
1384	cosigneradditionalincomefield	
1384	titlefield	a
1384	cosigneraddressyearstotalfield	
1384	emailfield	test@test.com
1384	codriverlicensefield	
1384	cosignerrentorownfield	Rent
1384	workphonefield	a
1384	formeremployerphonefield	
1384	employerfield	a
1384	citytfield	a
1384	cosigneremploymentlengthyearsfield	
1384	cosignerformeremployerfield	
1384	cosignerpreviouscitytfield	
1384	cosignercitytfield	
1384	cosignerstreetfield	
1384	stockfield	
1384	_wpcf7	850
1384	formeremployertimefield	
1384	_wpcf7_container_post	0
1384	cosigneremploymerphonefield	
1384	monthlypaymentfield	a
1384	additionalincomefield	
1384	cosignerstatefield	
1384	formeremployerstatefield	
1384	_wpcf7_unit_tag	wpcf7-f850-o1
1384	previouscitytfield	
1384	cosignerzipfield	
1384	cosignerformeremployercityfield	
1384	additionalincomesourcefield	
1384	statefield	a
1384	locationfield	
1384	vehiclefield	
1384	zipfield	a
1384	employerstatefield	a
1384	phonefield	set
1384	cosignerpreviouszipfield	
1384	cosignerformeremployerpositionfield	
1384	incomefield	a
1384	previouszipfield	
1384	formeremployerfield	
1384	cosignerpreviousstatefield	
1384	privacypolicyfield	I have read and understand your policies, terms, and conditions
1384	driverlicensefield	a
1384	_wpcf7_locale	en_US
1384	_wpcf7_version	5.0
1384	employercitytfield	a
1384	cosignerformeremployerstatefield	
1384	lastnamefield	test
1384	formeremployercityfield	
1384	firstnamefield	test
1384	formeremployerpositionfield	
1384	previousstreetfield	
1384	additionalinformationfield	
1384	applicationtypefield	
1385	cosigneradditionalincomesourcefield	
1385	cosignerphonefield	
1385	cosignerfirstnamefield	
1385	ccosignerlastnamefield	
1385	codriverlicensestatefield	IL
1385	cosigneremailfield	
1385	previousstatefield	IL
1385	cosigneremployerstatefield	IL
1385	cosignermonthlyincomefield	
1385	cosignermonthlypaymentfield	
1385	cosignerpreviousstreetfield	
1385	cosigneremployercityfield	
1385	cosigneremployerfield	
1385	statusnote	
1385	cosignerformeremployertimefield	
1385	cosignerformeremployerphonefield	
1385	driverlicensestatefield	IL
1385	cosigneradditionalincomefield	
1385	cosigneraddressyearstotalfield	
1385	emailfield	hv13@hotmail.com
1385	codriverlicensefield	
1385	cosignerrentorownfield	
1385	formeremployerphonefield	
1385	cosigneremploymentlengthyearsfield	
1385	cosignerformeremployerfield	
1385	cosignerpreviouscitytfield	
1385	cosignercitytfield	
1385	cosignerstreetfield	
1385	stockfield	
1385	cosignerpositionfield	
1385	formeremployertimefield	
1385	cosigneremploymerphonefield	
1385	cosignerstatefield	IL
1385	formeremployerstatefield	IL
1385	previouscitytfield	
1385	cosignerzipfield	
1385	cosignerformeremployercityfield	
1385	statefield	IL
1385	locationfield	
1385	previouszipfield	
1385	employerstatefield	IL
1385	phonefield	17732909650
1385	cosignerpreviouszipfield	
1385	cosignerformeremployerpositionfield	
1385	vehiclefield	
1385	formeremployerfield	
1385	cosignerpreviousstatefield	IL
1385	form-name	commentForm
1384	cosignerssnfield	JzNjrY4iyUHmCAj7XIfcWSrW2g79Y5nk9Hjdz+2YZ4U=
1384	ssnfield	cTWAkezvXUOT4wtYjHtbFwGmHOjr/m4Z18zym5rUOzM=
1384	datepicker	7uOrfDH0QaAgIDB3EEOpO5nAF8GJ+bksH/U4xfS4scQ=
1384	cosignerdateofbirthfield	Epbdt2shG398T4Jgca0u3hBDGXVIjjn9TbLsX99ftBo=
1385	cosignerssnfield	Vm8h+VrTynv5hZ8/zR6C8MOVfd1v7wPXyNohB6Vi4ow=
1385	cosignerdateofbirthfield	/t4OBVD2ryBBgcuodYivxMEUFIAr4lhq+tk648iiy+0=
1385	cosignerformeremployerstatefield	IL
1385	lastnamefield	Vans
1385	formeremployercityfield	
1385	firstnamefield	Bob
1385	formeremployerpositionfield	
1385	previousstreetfield	
1385	additionalinformationfield	
1385	streetfield	rwerwe
1385	addressyearstotalfield	5
1385	rentorownfield	Other
1385	additionalincomesourcefield	456
1385	titlefield	erter
1385	workphonefield	17732909650
1385	citytfield	werwe
1385	additionalincomefield	45645
1385	employerfield	ertert
1385	monthlypaymentfield	45345
1385	applicationtypefield	Individual
1385	employmentyearsfield	5
1385	zipfield	60613
1385	incomefield	564
1385	lead-id-field	1385
1385	privacypolicyfield	yes
1385	driverlicensefield	dsfd2312dssdf
1385	employercitytfield	ertert
1386	streetfield	aasdf
1386	cosigneradditionalincomesourcefield	
1386	addressyearstotalfield	5+ years
1386	cosignerphonefield	
1386	cosignerfirstnamefield	
1386	ccosignerlastnamefield	
1386	rentorownfield	Rent
1386	codriverlicensestatefield	
1386	employmentyearsfield	5+ years
1386	cosigneremailfield	
1386	previousstatefield	
1386	cosignerpositionfield	
1386	cosigneremployerstatefield	
1386	cosignermonthlyincomefield	
1386	cosignermonthlypaymentfield	
1386	cosignerpreviousstreetfield	
1386	cosigneremployercityfield	
1386	cosigneremployerfield	
1386	statusnote	
1386	cosignerformeremployertimefield	
1386	cosignerformeremployerphonefield	
1386	driverlicensestatefield	asdf
1386	cosigneradditionalincomefield	
1386	titlefield	asdf
1386	cosigneraddressyearstotalfield	
1386	emailfield	test@test.com
1386	codriverlicensefield	
1386	cosignerrentorownfield	Rent
1386	workphonefield	asdf
1386	formeremployerphonefield	
1386	employerfield	asdf
1386	citytfield	asdf
1386	cosigneremploymentlengthyearsfield	
1386	cosignerformeremployerfield	
1386	cosignerpreviouscitytfield	
1386	cosignercitytfield	
1386	cosignerstreetfield	
1386	stockfield	
1386	_wpcf7	850
1386	formeremployertimefield	
1386	_wpcf7_container_post	0
1386	cosigneremploymerphonefield	
1386	monthlypaymentfield	asdf
1386	additionalincomefield	
1386	cosignerstatefield	
1386	formeremployerstatefield	
1386	_wpcf7_unit_tag	wpcf7-f850-o1
1386	previouscitytfield	
1386	cosignerzipfield	
1386	cosignerformeremployercityfield	
1386	additionalincomesourcefield	
1386	statefield	asdf
1386	locationfield	
1386	vehiclefield	
1386	zipfield	asdf
1386	employerstatefield	asdf
1386	phonefield	1234567890
1386	cosignerpreviouszipfield	
1386	cosignerformeremployerpositionfield	
1386	incomefield	asdf
1386	previouszipfield	
1386	formeremployerfield	
1386	cosignerpreviousstatefield	
1386	privacypolicyfield	I /WE HAVE READ AND UNDERSTAND THE DEALER’S POLICIES, TERMS, AND CONDITIONS. I / WE HEREBY CERTIFY THAT ALL OF THE INFORMATION ON THIS APPLICATION AND ALL STATEMENTS MADE HEREIN ARE TRUE AND CORRECT AND THAT I/WE AM/ARE THE PERSON(S) ON THE APPLICATION AND NOT A MISREPRESENTATION. THE INFORMATION IS SUBMITTED FOR THE PURPOSES OF OBTAINING CREDIT AND AUTHORIZES THE DEALER TO MAKE SUCH INQUIRIES AS ARE NECESSARY TO OBTAIN CREDIT INFORMATION AND AUTHORIZE MY BANK, SUPPLIERS, AND CREDIT REFERENCES TO RELEASE INFORMATION REGARDING MY ACCOUNT(S).
1386	driverlicensefield	asdf
1386	_wpcf7_locale	en_US
1386	_wpcf7_version	5.0
1386	employercitytfield	asdf
1386	cosignerformeremployerstatefield	
1386	lastnamefield	test
1386	formeremployercityfield	
1386	firstnamefield	test
1386	formeremployerpositionfield	
1386	previousstreetfield	
1386	additionalinformationfield	
1386	applicationtypefield	
1387	streetfield	
1387	cosigneradditionalincomesourcefield	
1387	addressyearstotalfield	
1387	cosignerphonefield	
1387	cosignerfirstnamefield	
1387	ccosignerlastnamefield	
1387	rentorownfield	
1387	codriverlicensestatefield	IL
1387	additionalincomesourcefield	
1387	cosigneremailfield	
1387	previousstatefield	IL
1387	cosigneremployerstatefield	IL
1387	cosignermonthlyincomefield	
1387	cosignermonthlypaymentfield	
1387	cosignerpreviousstreetfield	
1387	cosigneremployercityfield	
1387	cosigneremployerfield	
1387	statusnote	
1387	cosignerformeremployertimefield	
1387	cosignerformeremployerphonefield	
1385	ssnfield	5UuzoEZncHydDQ1ClYisnRNhlIYHwdxNudSUIfW/B4c=
1387	driverlicensestatefield	IL
1387	cosigneradditionalincomefield	
1387	titlefield	
1387	cosigneraddressyearstotalfield	
1387	emailfield	hv13@hotmail.com
1387	codriverlicensefield	
1387	cosignerrentorownfield	
1387	workphonefield	
1387	formeremployerphonefield	
1387	citytfield	
1387	cosigneremploymentlengthyearsfield	
1387	cosignerformeremployerfield	
1387	cosignerpreviouscitytfield	
1387	cosignercitytfield	
1387	cosignerstreetfield	
1387	stockfield	
1387	cosignerpositionfield	
1387	additionalincomefield	
1387	formeremployertimefield	
1387	employerfield	
1387	cosigneremploymerphonefield	
1387	monthlypaymentfield	
1387	cosignerstatefield	IL
1387	applicationtypefield	
1387	formeremployerstatefield	IL
1387	previouscitytfield	
1387	cosignerzipfield	
1387	cosignerformeremployercityfield	
1387	employmentyearsfield	
1387	statefield	IL
1387	locationfield	
1387	previouszipfield	
1387	zipfield	
1387	employerstatefield	IL
1387	phonefield	17732909650
1387	cosignerpreviouszipfield	
1387	cosignerformeremployerpositionfield	
1387	incomefield	
1387	vehiclefield	
1387	lead-id-field	
1387	formeremployerfield	
1387	cosignerpreviousstatefield	IL
1387	form-name	commentForm
1387	driverlicensefield	
1387	employercitytfield	
1387	cosignerformeremployerstatefield	IL
1387	lastnamefield	Test
1387	formeremployercityfield	
1387	firstnamefield	Howard
1387	formeremployerpositionfield	
1387	previousstreetfield	
1387	additionalinformationfield	
1387	privacypolicyfield	
1388	cosigneradditionalincomesourcefield	
1388	cosignerphonefield	
1388	cosignerfirstnamefield	
1388	ccosignerlastnamefield	
1388	codriverlicensestatefield	IL
1388	additionalincomesourcefield	
1388	cosigneremailfield	
1388	previousstatefield	IL
1388	cosigneremployerstatefield	IL
1388	cosignermonthlyincomefield	
1388	cosignermonthlypaymentfield	
1388	cosignerpreviousstreetfield	
1388	cosigneremployercityfield	
1388	cosigneremployerfield	
1388	statusnote	
1388	cosignerformeremployertimefield	
1388	cosignerformeremployerphonefield	
1388	driverlicensestatefield	IL
1388	cosigneradditionalincomefield	
1388	cosigneraddressyearstotalfield	
1388	emailfield	hv13@hotmail.com
1388	codriverlicensefield	
1388	cosignerrentorownfield	
1388	formeremployerphonefield	
1388	cosigneremploymentlengthyearsfield	
1388	cosignerformeremployerfield	
1388	cosignerpreviouscitytfield	
1388	cosignercitytfield	
1388	cosignerstreetfield	
1388	stockfield	433235435
1388	cosignerpositionfield	
1388	additionalincomefield	
1388	formeremployertimefield	
1388	cosigneremploymerphonefield	
1388	cosignerstatefield	IL
1388	formeremployerstatefield	IL
1388	previouscitytfield	
1388	cosignerzipfield	
1388	cosignerformeremployercityfield	
1388	statefield	IL
1388	locationfield	Blue State
1388	previouszipfield	
1388	employerstatefield	IL
1388	phonefield	17732909650
1388	cosignerpreviouszipfield	
1388	cosignerformeremployerpositionfield	
1388	incomefield	
1388	vehiclefield	VB98324
1388	formeremployerfield	
1388	cosignerpreviousstatefield	IL
1388	form-name	commentForm
1388	cosignerformeremployerstatefield	IL
1388	lastnamefield	Solly
1388	formeremployercityfield	
1388	firstnamefield	Mike
1388	formeremployerpositionfield	
1388	previousstreetfield	
1388	streetfield	123 Brick St
1388	addressyearstotalfield	5
1388	rentorownfield	Own
1388	titlefield	dsfsd
1388	workphonefield	17732909650
1388	citytfield	Geortown
1387	cosignerssnfield	WaukfxMyoOVbttGYeUZW6sGMxxXsMRcCNOqscZmQQzI=
1387	ssnfield	Km6OaIAxsxwqrx1K7qIOLESdHbBTiL7BVxuOcRE8Gqg=
1387	datepicker	fXBmmuWUNjOhuIRAVz4R4KOS5RvBGWvBhT22MONXSoQ=
1387	cosignerdateofbirthfield	mrnlSYrtkUJ/UPo6Nz2btORLsZwsABPHyymQZunx7KE=
1388	cosignerssnfield	dW2zfC8BTTsxbjYFsT9v2QEmmlZuEuQK2JciF1WZ8r4=
1388	cosignerdateofbirthfield	rgiFqLgd4xMwR4wNvqxTEqxvjQ9cGcX89PaaelQq4qQ=
1388	employerfield	dsfsdf
1388	monthlypaymentfield	5000
1388	applicationtypefield	Individual
1388	employmentyearsfield	5
1388	zipfield	56546
1388	lead-id-field	1388
1388	privacypolicyfield	yes
1388	driverlicensefield	DFG3245DF
1388	employercitytfield	dsfsdf
1388	additionalinformationfield	sfdsdfsddfs
1389	streetfield	
1389	cosigneradditionalincomesourcefield	
1389	addressyearstotalfield	
1389	cosignerphonefield	
1389	cosignerfirstnamefield	
1389	ccosignerlastnamefield	
1389	rentorownfield	
1389	codriverlicensestatefield	IL
1389	additionalincomesourcefield	
1389	cosigneremailfield	
1389	previousstatefield	IL
1389	cosigneremployerstatefield	IL
1389	cosignermonthlyincomefield	
1389	cosignermonthlypaymentfield	
1389	cosignerpreviousstreetfield	
1389	cosigneremployercityfield	
1389	cosigneremployerfield	
1389	statusnote	
1389	cosignerformeremployertimefield	
1389	cosignerformeremployerphonefield	
1389	driverlicensestatefield	IL
1389	cosigneradditionalincomefield	
1389	titlefield	
1389	cosigneraddressyearstotalfield	
1389	emailfield	hjvermaak@gmail.com
1389	codriverlicensefield	
1389	cosignerrentorownfield	
1389	workphonefield	
1389	formeremployerphonefield	
1389	citytfield	
1389	cosigneremploymentlengthyearsfield	
1389	cosignerformeremployerfield	
1389	cosignerpreviouscitytfield	
1389	cosignercitytfield	
1389	cosignerstreetfield	
1389	stockfield	54ROOO
1389	cosignerpositionfield	
1389	additionalincomefield	
1389	formeremployertimefield	
1389	employerfield	
1389	cosigneremploymerphonefield	
1389	monthlypaymentfield	
1389	cosignerstatefield	IL
1389	applicationtypefield	
1389	formeremployerstatefield	IL
1389	previouscitytfield	
1389	cosignerzipfield	
1389	cosignerformeremployercityfield	
1389	employmentyearsfield	
1389	statefield	IL
1389	locationfield	Chicago
1389	previouszipfield	
1389	zipfield	
1389	employerstatefield	IL
1389	phonefield	17732909650
1389	cosignerpreviouszipfield	
1389	cosignerformeremployerpositionfield	
1389	incomefield	
1389	vehiclefield	RT003423DRF Truck
1389	lead-id-field	
1389	formeremployerfield	
1389	cosignerpreviousstatefield	IL
1389	form-name	commentForm
1389	driverlicensefield	
1389	employercitytfield	
1389	cosignerformeremployerstatefield	IL
1389	lastnamefield	Taller
1389	formeremployercityfield	
1389	firstnamefield	Sue
1389	formeremployerpositionfield	
1389	previousstreetfield	
1389	additionalinformationfield	
1389	privacypolicyfield	
1390	cosigneradditionalincomesourcefield	
1390	cosignerphonefield	
1390	cosignerfirstnamefield	
1390	ccosignerlastnamefield	
1390	codriverlicensestatefield	WV
1390	additionalincomesourcefield	
1390	cosigneremailfield	
1390	previousstatefield	WV
1390	cosigneremployerstatefield	WV
1390	cosignermonthlyincomefield	
1390	cosignermonthlypaymentfield	
1390	cosignerpreviousstreetfield	
1390	cosigneremployercityfield	
1390	cosigneremployerfield	
1390	statusnote	
1390	cosignerformeremployertimefield	
1390	cosignerformeremployerphonefield	
1390	driverlicensestatefield	WV
1390	cosigneradditionalincomefield	
1390	cosigneraddressyearstotalfield	
1390	emailfield	hv13@hotmail.com
1390	codriverlicensefield	
1390	cosignerrentorownfield	
1390	formeremployerphonefield	
1390	cosigneremploymentlengthyearsfield	
1390	cosignerformeremployerfield	
1390	cosignerpreviouscitytfield	
1390	cosignercitytfield	
1390	cosignerstreetfield	
1390	stockfield	
1390	cosignerpositionfield	
1390	additionalincomefield	
1390	formeremployertimefield	
1390	cosigneremploymerphonefield	
1390	cosignerstatefield	WV
1390	formeremployerstatefield	WV
1390	previouscitytfield	
1388	ssnfield	RV9eJYnKQyNp+4qBQv26C2/Nd7I3u6SygmYWpi+IfB0=
1388	datepicker	5p9+w2U19/uNFYP6qE2NahiyHMolMmpxbH1HeWeh9U4=
1389	cosignerssnfield	D/q91vMwVVB72DgkYO9rLiCK2rLBa0WazrDNsXrxS3c=
1389	ssnfield	IfDIGPT0VntSAowhDaRU7Y9P5yzFQ3za09Epr/OwLn8=
1389	datepicker	vxdeNEZ3wGIHDoe8Ib/6nt/QN/eBj4ekNZq4qNDnWyY=
1390	cosignerzipfield	
1390	cosignerformeremployercityfield	
1390	statefield	WV
1390	locationfield	
1390	previouszipfield	
1390	employerstatefield	WV
1390	phonefield	4564565465
1390	cosignerpreviouszipfield	
1390	cosignerformeremployerpositionfield	
1390	vehiclefield	FOL TYRUC HAUL
1390	formeremployerfield	
1390	cosignerpreviousstatefield	WV
1390	form-name	commentForm
1390	cosignerformeremployerstatefield	WV
1390	lastnamefield	Bouwer
1390	formeremployercityfield	
1390	firstnamefield	Mason
1390	formeremployerpositionfield	
1390	previousstreetfield	
1390	streetfield	123 Brick St
1390	addressyearstotalfield	5
1390	rentorownfield	Rent
1390	titlefield	asdasd
1390	workphonefield	17732909650
1390	citytfield	Chicago
1390	employerfield	asdfasd
1390	monthlypaymentfield	40000
1390	applicationtypefield	Individual
1390	employmentyearsfield	5
1390	zipfield	56546
1390	incomefield	5000
1390	lead-id-field	1390
1390	privacypolicyfield	yes
1390	driverlicensefield	SDO342342DFG
1390	employercitytfield	asdasdas
1390	additionalinformationfield	asdasd
1391	streetfield	123 Brick St
1391	cosigneradditionalincomesourcefield	
1391	addressyearstotalfield	5+ years
1391	cosignerphonefield	
1391	cosignerfirstnamefield	
1391	ccosignerlastnamefield	
1391	rentorownfield	Rent
1391	codriverlicensestatefield	
1391	employmentyearsfield	5+ years
1391	cosigneremailfield	
1391	previousstatefield	
1391	cosignerpositionfield	
1391	cosigneremployerstatefield	
1391	cosignermonthlyincomefield	
1391	cosignermonthlypaymentfield	
1391	cosignerpreviousstreetfield	
1391	cosigneremployercityfield	
1391	cosigneremployerfield	
1391	statusnote	
1391	cosignerformeremployertimefield	
1391	cosignerformeremployerphonefield	
1391	driverlicensestatefield	SD 32 ED
1391	cosigneradditionalincomefield	
1391	titlefield	dgfdg
1391	cosigneraddressyearstotalfield	
1391	salesperson	
1391	emailfield	test@test.com
1391	codriverlicensefield	
1391	cosignerrentorownfield	Rent
1391	workphonefield	6786787673
1391	formeremployerphonefield	
1391	employerfield	sdrftsdf
1391	citytfield	sdfsdf
1391	g-recaptcha-response	03AJpayVGZEoNq5Ha_19XNhXhhqunkXviZ2b4XuKN05XDJcqCznEYZt5VjZNBXbeYm1ZFL8CJJ32Kbb4fipP5CHNp5oCWINjdllm-mJsvnsW54kTNrjvQQwXi0Of2kicYKi23dz8GQfFFsakuRhSdJUrW9DWiDydKRtitnad-UBTsPcom-SRcxKYwe2Ku64mZWe7yw-4KnGhj_HNEPfbPByS77ZI63pt8k9GwlZZ3IzMnduPPRAZ4llTt_ELGld71Gj686mb7AfMwr7Km6FIbJwJaPGNUF2mIOEXgWz0Fcwj8g7v3kuC-QvVjGUKU_NT89kBzvpk0msdrtwKO6bi3qr6EVf06ZyaTt1dXfxr7-NERFt1mC7HBRPmCF8DQw8qvOXs0eJwPE7BPi
1391	cosigneremploymentlengthyearsfield	
1391	privacypolicytext	I /WE HAVE READ AND UNDERSTAND THE DEALER’S POLICIES, TERMS, AND CONDITIONS. I / WE HEREBY CERTIFY THAT ALL OF THE INFORMATION ON THIS APPLICATION AND ALL STATEMENTS MADE HEREIN ARE TRUE AND CORRECT AND THAT I/WE AM/ARE THE PERSON(S) ON THE APPLICATION AND NOT A MISREPRESENTATION. THE INFORMATION IS SUBMITTED FOR THE PURPOSES OF OBTAINING CREDIT AND AUTHORIZES THE DEALER TO MAKE SUCH INQUIRIES AS ARE NECESSARY TO OBTAIN CREDIT INFORMATION AND AUTHORIZE MY BANK, SUPPLIERS, AND CREDIT REFERENCES TO RELEASE INFORMATION REGARDING MY ACCOUNT(S).
1391	cosignerformeremployerfield	
1391	cosignerpreviouscitytfield	
1391	cosignercitytfield	
1391	cosignerstreetfield	
1391	stockfield	
1391	_wpcf7	2872
1391	formeremployertimefield	
1391	_wpcf7_container_post	0
1391	cosigneremploymerphonefield	
1391	monthlypaymentfield	50000
1391	additionalincomefield	
1391	cosignerstatefield	
1391	formeremployerstatefield	
1391	_wpcf7_unit_tag	wpcf7-f2872-o1
1391	previouscitytfield	
1391	cosignerzipfield	
1391	cosignerformeremployercityfield	
1391	additionalincomesourcefield	
1391	statefield	sf
1391	vehiclefield	
1391	zipfield	43324
1391	employerstatefield	sf
1391	phonefield	6786787673
1391	cosignerpreviouszipfield	
1391	cosignerformeremployerpositionfield	
1391	incomefield	50000
1391	previouszipfield	
1391	formeremployerfield	
1391	cosignerpreviousstatefield	
1391	privacypolicyfield	Yes
1391	driverlicensefield	WE34232FG
1391	_wpcf7_locale	en_US
1391	_wpcf7_version	5.0.1
1391	employercitytfield	sdfsdf
1391	cosignerformeremployerstatefield	
1390	cosignerdateofbirthfield	bwQCsJM+s52y+ZKXTB41gUjU2/7I65a+D8MwG4mp0RI=
1390	ssnfield	cJgsY/6DGOL88wyUqPbjxJ8inmzbhr4+3vma/TQ9pdk=
1390	datepicker	nKWV+4s5wmZgVql9aD2whBro3Hxm+GlqhM9PhbnoGOg=
1391	cosignerssnfield	RHHkolkAiWJST48pkIkr44jMYzgS6CA8PwNbwt/eBo8=
1391	lastnamefield	test
1391	formeremployercityfield	
1391	firstnamefield	Test
1391	formeremployerpositionfield	
1391	previousstreetfield	
1391	additionalinformationfield	
1391	applicationtypefield	
1391	locationfield	
1392	streetfield	sdfsdsd
1392	cosigneradditionalincomesourcefield	
1392	addressyearstotalfield	5+ years
1392	cosignerphonefield	
1392	cosignerfirstnamefield	
1392	ccosignerlastnamefield	
1392	rentorownfield	Other
1392	codriverlicensestatefield	
1392	employmentyearsfield	5+ years
1392	cosigneremailfield	
1392	previousstatefield	
1392	cosignerpositionfield	
1392	cosigneremployerstatefield	
1392	cosignermonthlyincomefield	
1392	cosignermonthlypaymentfield	
1392	cosignerpreviousstreetfield	
1392	cosigneremployercityfield	
1392	cosigneremployerfield	
1392	statusnote	
1392	cosignerformeremployertimefield	
1392	cosignerformeremployerphonefield	
1392	driverlicensestatefield	sdfsdsdfsdf
1392	cosigneradditionalincomefield	
1392	titlefield	sdfsdfsd
1392	cosigneraddressyearstotalfield	
1392	salesperson	
1392	emailfield	sdas@sdfsd.com
1392	codriverlicensefield	
1392	cosignerrentorownfield	Rent
1392	workphonefield	4534534534
1392	formeremployerphonefield	
1392	employerfield	sdfsdfsd
1392	citytfield	sdfsdfsd
1392	g-recaptcha-response	03AJpayVHBCZqobzIpjWP-r83bVwwwGTELBp8hc7WFAzwJITLmEKVwh3pZPI29SdPE6XXUViiPz03S2udwbdS9w5TXbMN88WgQadh1MrcaZmKrARaHVc-aFj8QCdWR2kUu7VPG2_ecHwg32Ej7OE15ueWULolDe1U_r_EjgPN_OdKvWJ9ABAgRhihpDG6U7-s0hrfEw1e5X37WqSB0dHZGTNf3abIglGm6zxtholP91FEzyw__vDA4oYW1Af4QZGUZ16VEP4xOYLwiWK_cL9Hur66YMulOFsYRGiadzO7wXQQaQ8R8O6SYdi8IhWYxAFO2KSYnHvVtiKGduoMGd6A_jVZun7G-0OSbsKt82lcqYQgAqDIE-naEn2K_8d9RRaokkzd_8K1O8xlkeiZNCWvOn798q8o6ErbjNe_d5m_sZYCU6GP4Fj5uUEs
1392	cosigneremploymentlengthyearsfield	
1392	privacypolicytext	I /WE HAVE READ AND UNDERSTAND THE DEALER’S POLICIES, TERMS, AND CONDITIONS. I / WE HEREBY CERTIFY THAT ALL OF THE INFORMATION ON THIS APPLICATION AND ALL STATEMENTS MADE HEREIN ARE TRUE AND CORRECT AND THAT I/WE AM/ARE THE PERSON(S) ON THE APPLICATION AND NOT A MISREPRESENTATION. THE INFORMATION IS SUBMITTED FOR THE PURPOSES OF OBTAINING CREDIT AND AUTHORIZES THE DEALER TO MAKE SUCH INQUIRIES AS ARE NECESSARY TO OBTAIN CREDIT INFORMATION AND AUTHORIZE MY BANK, SUPPLIERS, AND CREDIT REFERENCES TO RELEASE INFORMATION REGARDING MY ACCOUNT(S).
1392	cosignerformeremployerfield	
1392	cosignerpreviouscitytfield	
1392	cosignercitytfield	
1392	cosignerstreetfield	
1392	stockfield	
1392	_wpcf7	2872
1392	formeremployertimefield	
1392	_wpcf7_container_post	0
1392	cosigneremploymerphonefield	
1392	monthlypaymentfield	23423423
1392	additionalincomefield	
1392	cosignerstatefield	
1392	formeremployerstatefield	
1392	_wpcf7_unit_tag	wpcf7-f2872-o1
1392	previouscitytfield	
1392	cosignerzipfield	
1392	cosignerformeremployercityfield	
1392	additionalincomesourcefield	
1392	statefield	sdfsdf
1392	vehiclefield	
1392	zipfield	543435
1392	employerstatefield	sdfsdfsd
1392	phonefield	fsdfsdfsdfsdf
1392	cosignerpreviouszipfield	
1392	cosignerformeremployerpositionfield	
1392	incomefield	3423423
1392	previouszipfield	
1392	formeremployerfield	
1392	cosignerpreviousstatefield	
1392	privacypolicyfield	Yes
1392	driverlicensefield	dsfsdfsdfsd
1392	_wpcf7_locale	en_US
1392	_wpcf7_version	5.0.1
1392	employercitytfield	sdfsdfsd
1392	cosignerformeremployerstatefield	
1392	lastnamefield	Toddler
1392	formeremployercityfield	
1392	firstnamefield	Ben
1392	formeremployerpositionfield	
1392	previousstreetfield	
1392	additionalinformationfield	
1392	applicationtypefield	
1392	locationfield	
1393	streetfield	sdfsdfsd
1393	cosigneradditionalincomesourcefield	
1393	addressyearstotalfield	5+ years
1393	cosignerphonefield	
1393	cosignerfirstnamefield	
1393	ccosignerlastnamefield	
1393	rentorownfield	Other
1393	codriverlicensestatefield	
1393	employmentyearsfield	5+ years
1393	cosigneremailfield	
1393	previousstatefield	
1393	cosignerpositionfield	
1393	cosigneremployerstatefield	
1393	cosignermonthlyincomefield	
1393	cosignermonthlypaymentfield	
1393	cosignerpreviousstreetfield	
1393	cosigneremployercityfield	
1393	cosigneremployerfield	
1393	statusnote	
1393	cosignerformeremployertimefield	
1393	cosignerformeremployerphonefield	
1393	driverlicensestatefield	sdfsdfsd
1393	cosigneradditionalincomefield	
1393	titlefield	sdfsdf
1393	cosigneraddressyearstotalfield	
1393	salesperson	
1393	emailfield	asdasda@sdfds.copm
1393	codriverlicensefield	
1393	cosignerrentorownfield	Rent
1393	workphonefield	sdfsdfsdfs
1393	formeremployerphonefield	
1393	employerfield	sdfsdf
1393	citytfield	sdfsdfsd
1393	g-recaptcha-response	03AJpayVEuHjrroYjJB5tyxpV6h7HPx6sFxHTMIOL7r2CUWu7tx3gR1-at3nFNRLUmK6FYX7WNftk7GY8i8eeMuDjH2fuzIERyyWU0Lce1hIrDlO6_nMzpxGpkEs8AxuLG5uKwS4Jc9OCZqe6HL_RJdPiaTY1RoJENn1ohR1xnJbCCbFC5dWfo-92_UTBISvpdqrbxBunZ7544pZhHzhnUnIzCNfspr2D7MwTQKDg-mH1NY0RhW1Fq6VGCsVPs_-MBU1gKfXkqgKwTDPvJchQ-KEbO-hZMxTAyiOL6CuSseKNjGqpZpvXL-eNqt1m61E8sJ7LaWBbknasFLya-6a-n89nwu54RBh-Et-O-eYAV4d4WiJRVRjO8sbhBaNIvCmElNQbntddTP9KvGMLPmgPNERb_EHOq4Fft_ZXe3jKYhfJcDx1NtSDuNFuTwp3-BtHEkK7QKomZ-sFu
1393	cosigneremploymentlengthyearsfield	
1393	privacypolicytext	I /WE HAVE READ AND UNDERSTAND THE DEALER’S POLICIES, TERMS, AND CONDITIONS. I / WE HEREBY CERTIFY THAT ALL OF THE INFORMATION ON THIS APPLICATION AND ALL STATEMENTS MADE HEREIN ARE TRUE AND CORRECT AND THAT I/WE AM/ARE THE PERSON(S) ON THE APPLICATION AND NOT A MISREPRESENTATION. THE INFORMATION IS SUBMITTED FOR THE PURPOSES OF OBTAINING CREDIT AND AUTHORIZES THE DEALER TO MAKE SUCH INQUIRIES AS ARE NECESSARY TO OBTAIN CREDIT INFORMATION AND AUTHORIZE MY BANK, SUPPLIERS, AND CREDIT REFERENCES TO RELEASE INFORMATION REGARDING MY ACCOUNT(S).
1393	cosignerformeremployerfield	
1393	cosignerpreviouscitytfield	
1393	cosignercitytfield	
1393	cosignerstreetfield	
1393	stockfield	
1393	_wpcf7	2872
1393	formeremployertimefield	
1393	_wpcf7_container_post	0
1393	cosigneremploymerphonefield	
1393	monthlypaymentfield	sdfsdfs
1393	additionalincomefield	sdfsdf
1393	cosignerstatefield	
1393	formeremployerstatefield	
1393	_wpcf7_unit_tag	wpcf7-f2872-o1
1393	previouscitytfield	
1393	cosignerzipfield	
1393	cosignerformeremployercityfield	
1393	additionalincomesourcefield	sdfsdfsdf
1393	statefield	sdfsdfsd
1393	vehiclefield	
1393	zipfield	sdsfsdfsd
1393	employerstatefield	sdfsdf
1393	phonefield	sdfsdfsdf
1393	cosignerpreviouszipfield	
1393	cosignerformeremployerpositionfield	
1393	incomefield	sdfsdfsd
1393	previouszipfield	
1393	formeremployerfield	
1393	cosignerpreviousstatefield	
1393	privacypolicyfield	Yes
1393	driverlicensefield	sdfsdf
1393	_wpcf7_locale	en_US
1393	_wpcf7_version	5.0.1
1393	employercitytfield	sdfsdf
1393	cosignerformeremployerstatefield	
1393	lastnamefield	sdasd
1393	formeremployercityfield	
1393	firstnamefield	test
1393	formeremployerpositionfield	
1393	previousstreetfield	
1393	additionalinformationfield	
1393	applicationtypefield	
1393	locationfield	
1358	cosignerssnfield	+pWGgUgjSUl4U/+VspHxThFZC0Fvs3j/5ELQPLqOHbY=
1358	ssnfield	1sUx5x6N4jDQQ70IMrDKkeY8FdoKjJ4YLHHx0fKJ8cM=
1358	datepicker	25Wo8leZTV+Ttl32g8Ag1lc/b/wOfMXccjxT6J28A+w=
1358	cosignerdateofbirthfield	XqhDe1Iu/sWdHToR18ES5aguqzd8rS9pZGHaciO5LX0=
1359	cosignerssnfield	IiePojdnHw3nv056ytQWy4fWBXNBplAVpiNo1lq97xg=
1359	ssnfield	hXzSeRSE2R0NIXTRER54dqIsN+maYUNlvrNCJXvPshI=
1359	datepicker	gJWoZ9ubqVrRgmxaolKNLL5lr+vE1fayIZw1HF1uIlQ=
1359	cosignerdateofbirthfield	1CAEBKfhnJ3RybR3ndJe8ovSubezeZ26jZYYH8H8dak=
1360	cosignerssnfield	+yyiWA+HU88yA4kVBL3kEiYr8vaJz6rX11H/iMKSb38=
1360	ssnfield	g/8XEzEkes2t3+R9tcxX8ovF51FFbYdG1Jrt5hKZLug=
1360	datepicker	JcqSps6oM3HBD6dN/CmzYTuVXProoR8hpV0iBDI7qYQ=
1360	cosignerdateofbirthfield	i07vyGG/WxQw/E+hVuzx6QQzBjOUXaRBci1jOeLW9uM=
1361	cosignerssnfield	Ze3eH/WhO0ACHSVmt2MFziiFBnLzhk20mWwXuiD/IpA=
1361	ssnfield	rwFG2UIuDnxyswWrCigEX/3GiahLqDCSWSxT5tAG75Q=
1361	datepicker	6e093eDhf1+dIBK3W1XiEhGGcmiQQMk0si/Pal8QkVg=
1362	ssnfield	ykjAMu3tBS6zfPKzy2jz8ve02IM2e4MJkGRVcZSsDiA=
1362	datepicker	u20f2E1/buPhItBi85VDHQuDS9BQjl0FKkXWXY+WwX0=
1362	cosignerdateofbirthfield	L6eSDGEkSLh9AVW+N047rZk0xPcGB6kkmpOU8p6C2Tk=
1363	cosignerssnfield	dHdYXgDXLO5ps/5Gx9kNfQugoBxADVsj3tGsXU7I8Pk=
1365	cosignerssnfield	SNYccjhs0hxKrXtL2mUhC7L20MslsnpbptBTj1aNgeY=
1365	ssnfield	VXfc2keNQy3+F1LWf1ILriEsy95BTBuFPnbj1ZOMVWI=
1365	datepicker	BeA5X683rja/918XDJjrhhmm56qju/XIh014gj4FUXI=
1365	cosignerdateofbirthfield	7Y5WXVtN0IIUY0gpjiV09ubmwq3Q+zGSQRX4UAaTbWQ=
1366	cosignerssnfield	jWnjwqHMkqZE/bp2b22IaB0AmU+avAzNgfqKZk0lcM8=
1366	ssnfield	8gff2rpkoTy1i6tpZsl1PVlaIQGqntu4Z2ZvYpZ+LDE=
1366	datepicker	JyQMd0dEuO7d3LrRgTQAVxENzllpn0dFLU+2gsQ++cc=
1366	cosignerdateofbirthfield	K1kxX/G2M8rVME+F4AAK5/kmLQnEZQ+H4pDLoCdzhKI=
1374	cosignerdateofbirthfield	7flsSfHQHFngAbLP029o41Tt8ga7+2A6d1ATB9YIREQ=
1378	ssnfield	4Sm9VpxLWKThb8UXXHaxoQd+jNqIYibvb/SR6U5oUZ0=
1378	datepicker	qZc2xi2CQ/lLdpcKseHMDovkuS+F44Jsu0eYAob7sYc=
1378	cosignerdateofbirthfield	i0SSWJi5vKmso6IRxtaFwo1tVlzd7EFTdr1GN3euJdM=
1379	cosignerssnfield	a8d86PMOGRYpIv1ORSlGd+2rDenbHoA2i1Bmz5IpWk0=
1379	ssnfield	2THjrYfWCUskOmyzilN5HbR4rRF3x0IANjlLFwBoUqk=
1379	datepicker	N2eFWDlblXFgDL2KINRmAw1xICw2tftlQqz0yAl8AVo=
1379	cosignerdateofbirthfield	GhL/+Y02MiOsrMovJfU8248U0qCSnHtflBOoroSuGoE=
1380	cosignerssnfield	DMeidtHuX3r04bM/dh+oJ3oDdwn4jGb2NWQAX1Zjt+I=
1380	ssnfield	6OtWXaFZyTPGWERvNEzyK4GyghoklMqGqCNRwgeVdYU=
1380	datepicker	FV2pw7U57V5+fZg+a6nhZr9v6W1iZsNma0nbIJn9iTs=
1380	cosignerdateofbirthfield	psdbSXzVxREwL/mH6n/HIGm3iCaWj9I3t10VBuGahjo=
1394	cosignermonthlypaymentfield	4000
1394	cosigneremployercityfield	werwer
1394	cosigneremployerfield	werwer
1382	cosignerssnfield	4twLRgl+Z8l2OUc9ndQ5t2djYjoW3FreG9RjOffnqwo=
1382	ssnfield	O+tHprAu3MTZKw28msQtI9dwEcfY5mh5sudxMl7f0/8=
1382	datepicker	Gu2+0PJ3zQoJtXjWC/zKRA9RI/GUk0QUHHQUEsC4YjA=
1382	cosignerdateofbirthfield	38PGL/HMJccYRuk0RCdAkxZQAdzbBPkFRNGcYAjeLg0=
1383	cosignerssnfield	RI11SV6eAjGLcG6DK+Do7RO79GbAJ79US+QNCqPXEao=
1383	ssnfield	YOuIa4xNLelzq+FTxgXr+kgGtpkcVvnchKgjDrue8/g=
1383	datepicker	0Sg7R5cU3p5mMlbBhbWXW2aZ+Q49WieDA2pw5yEHBpk=
1383	cosignerdateofbirthfield	ORgCnt5w1elUWDksGox9Iymiett8zJtbdzF3Aq8S2uc=
1385	datepicker	+nxmRA0ygKoyNPy92nvIaqFig5uM5KcA8dRdJSpqnsA=
1386	cosignerssnfield	lm6htduZt4BJXFhjwUwvPnywOrFWxpJ4oygKlFbwIkY=
1386	ssnfield	4sA84qs3FrnXze4d4iQRZy2RJmXOp756KWXQsF8bIxQ=
1386	datepicker	U4whw+YaQkanFtqFA57vYsjYjbJgZ0YlI1nt1E3WtwU=
1386	cosignerdateofbirthfield	miqRDHsHK8Tf84KVolt6XwObHBdYfgkO70mUa6EOSew=
1389	cosignerdateofbirthfield	v5MchqwBfzd9vKvPJq+OYbxMTvwSbv8KsHAYGYoFzic=
1390	cosignerssnfield	CeIZ27E5+Eqz2CcB1DFUbhnatn9NQ7W6GKwDQJnUTuI=
1391	ssnfield	mqJa3gYbS+lkr75GzGTi7LBvVF6EtZCwOx50cyH8XF0=
1391	datepicker	Xy4oBupZvPlP6mgc1UVe0oBDBitV90ZUismRKLtB8q8=
1391	cosignerdateofbirthfield	4BTfzpBwx/wKrjywCQv2rfnoJyIBf+nV2JMNDv7bZG0=
1392	cosignerssnfield	p9zK4T0tao5HJEserjaAdJptCkPd73c1QEO7271YAl8=
1392	ssnfield	s7bKd9cvfh7K7BnI7MzG3N34+uIovgq9Mdi8vyba3s4=
1392	datepicker	CU5zv58fUt6eCAxxEOTPaNqYxIaPQjcUebVF4FU/DoQ=
1392	cosignerdateofbirthfield	yaiJIRv5B/+HE3nCmicqii8ZG+rRCwIMjMb/tCz6tn0=
1393	cosignerssnfield	Ygy/ucAHFh5hDl2kiT3DQY/CRhDugvvb7j5KbJVHWtc=
1393	ssnfield	RlRkLVWNlsn1Mv/Sx2bTO+khX6gbXuTdUkpu6yUf//w=
1393	datepicker	5fsr9NC9J7zP1ryp0WEQ4GjikMVCl0NG+qGmqWAM3MQ=
1393	cosignerdateofbirthfield	MVz1CCyZR94TFiL5HzcdtJyQjUO7HYPZjtBCXJxaDZU=
1394	cosigneradditionalincomesourcefield	
1394	codriverlicensestatefield	IL
1394	additionalincomesourcefield	
1394	previousstatefield	IL
1394	cosigneremployerstatefield	IL
1394	cosignermonthlyincomefield	
1394	cosignerpreviousstreetfield	
1394	statusnote	
1394	cosignerformeremployertimefield	
1394	cosignerformeremployerphonefield	
1394	driverlicensestatefield	IL
1394	cosigneradditionalincomefield	
1394	emailfield	hv13@hotmail.com
1394	formeremployerphonefield	
1394	cosigneremploymentlengthyearsfield	
1394	cosignerformeremployerfield	
1394	cosignerpreviouscitytfield	
1394	stockfield	#0323WE
1394	additionalincomefield	
1394	formeremployertimefield	
1394	cosignerstatefield	IL
1394	formeremployerstatefield	IL
1394	previouscitytfield	
1394	cosignerformeremployercityfield	
1394	statefield	IL
1394	locationfield	Boston
1394	previouszipfield	
1394	employerstatefield	IL
1394	phonefield	17732909650
1394	cosignerpreviouszipfield	
1394	cosignerformeremployerpositionfield	
1394	vehiclefield	Terra
1394	formeremployerfield	
1394	cosignerpreviousstatefield	IL
1394	form-name	commentForm
1394	cosignerformeremployerstatefield	IL
1394	lastnamefield	Prinsloo
1394	formeremployercityfield	
1394	firstnamefield	Boom
1394	formeremployerpositionfield	
1394	previousstreetfield	
1394	additionalinformationfield	
1394	streetfield	123 West
1394	addressyearstotalfield	5
1394	cosignerphonefield	17732909650
1394	cosignerfirstnamefield	John
1394	ccosignerlastnamefield	Turner
1394	rentorownfield	Rent
1394	cosigneremailfield	forma@buyercall.com
1394	titlefield	dfssdfs
1381	cosignerdateofbirthfield	Apfxmutx+m9rJYEAXh/Gy8AdBjht7ABzu/xtbbNP+Mo=
1381	cosignerssnfield	w2gB3d7AcSgVHu+f3KyfJ3bd9jlBEDYfEbngkp4so+E=
1381	datepicker	boXONAc0Mo08PhDfJt4iC8zAqxyDza+PXviyqmE7ZMI=
1381	ssnfield	aZ7rt1mCtvtcFZ/Z7CpDZ/58RT7E/sQB2blHSF8Bbrk=
1394	cosigneraddressyearstotalfield	5
1394	codriverlicensefield	SFG0324EF
1394	cosignerrentorownfield	Own
1394	workphonefield	2343534636
1394	citytfield	Boston
1394	cosignercitytfield	Boston
1394	cosignerstreetfield	43 N sterdioa
1394	cosignerpositionfield	rwerwer
1394	employerfield	Gorndo 
1394	cosigneremploymerphonefield	5345345345
1394	monthlypaymentfield	4000
1394	applicationtypefield	Joint
1394	cosignerzipfield	53423
1394	employmentyearsfield	5
1394	zipfield	50321
1394	incomefield	343232
1394	lead-id-field	1394
1394	privacypolicyfield	yes
1394	driverlicensefield	WE-43345
1394	employercitytfield	sdfsdf
1395	cosigneradditionalincomesourcefield	
1395	codriverlicensestatefield	IL
1395	additionalincomesourcefield	
1395	previousstatefield	IL
1395	cosigneremployerstatefield	IL
1395	cosignermonthlyincomefield	
1395	cosignerpreviousstreetfield	
1395	cosigneremployercityfield	
1395	cosigneremployerfield	
1395	statusnote	
1395	cosignerformeremployertimefield	
1395	cosignerformeremployerphonefield	
1395	driverlicensestatefield	IL
1395	cosigneradditionalincomefield	
1395	emailfield	hv13@hotmail.com
1395	formeremployerphonefield	
1395	cosigneremploymentlengthyearsfield	
1395	cosignerformeremployerfield	
1395	cosignerpreviouscitytfield	
1395	stockfield	003345 
1395	cosignerpositionfield	
1395	additionalincomefield	
1395	formeremployertimefield	
1395	cosigneremploymerphonefield	
1395	cosignerstatefield	IL
1395	formeremployerstatefield	IL
1395	previouscitytfield	
1395	cosignerformeremployercityfield	
1395	statefield	IL
1395	locationfield	Boston 
1395	previouszipfield	
1395	employerstatefield	IL
1395	phonefield	7732979153
1395	cosignerpreviouszipfield	
1395	cosignerformeremployerpositionfield	
1395	incomefield	
1395	vehiclefield	Mazda
1395	formeremployerfield	
1395	cosignerpreviousstatefield	IL
1395	form-name	commentForm
1395	cosignerformeremployerstatefield	IL
1395	lastnamefield	Greenwald
1395	formeremployercityfield	
1395	firstnamefield	Molly
1395	formeremployerpositionfield	
1395	previousstreetfield	
1395	additionalinformationfield	
1395	streetfield	123 West
1395	addressyearstotalfield	5
1395	cosignerphonefield	6786787673
1395	cosignerfirstnamefield	Matty
1395	ccosignerlastnamefield	Jones
1395	rentorownfield	Rent
1395	cosigneremailfield	hv13@hotmail.com
1395	cosignermonthlypaymentfield	4000
1395	cosignerssnfield	tejdNsAt1Sqh9z+anZozdn5PK3FPWtugOXC3DCJtBLM=
1395	titlefield	Manager
1395	cosigneraddressyearstotalfield	5
1395	codriverlicensefield	As345fgh
1395	cosignerrentorownfield	Rent
1395	workphonefield	2343534636
1395	citytfield	Chicago
1395	ssnfield	wXZxNYMul9wBMg+2h7VlZXLRAMFQyPJtNrZZzrVwjOU=
1395	cosignercitytfield	Chicago
1395	cosignerstreetfield	23244 Test
1395	datepicker	99B4pberJ57SKyx9AxTcuePlbm2q7vZZLO5uF+ce5K0=
1395	employerfield	Coke
1395	monthlypaymentfield	4000
1395	applicationtypefield	Joint
1395	cosignerdateofbirthfield	Ho84RCB6rNZ62vfdawNotNoVBh18IvhJB/aGmUeiGbs=
1395	cosignerzipfield	64532
1395	employmentyearsfield	5
1395	zipfield	60613
1395	lead-id-field	1395
1394	cosignerdateofbirthfield	eYEWt/fx7RnP3GPXQDdqnM52S/oY1n6a/6EZ5jfo9ow=
1394	cosignerssnfield	J90Vadl4lFCQl7NbI6XsxrhsrMZdjEWZwYqXVjG4uMA=
1394	datepicker	IdGsEF/bkfSXu02xykoFJhWwniq8jqb1UG0NlEk0mAg=
1394	ssnfield	5wA9tFNXZYat3V7baqLb1KuGDsYcyegaq7Pid4Wu6CI=
1395	privacypolicyfield	yes
1395	driverlicensefield	We563200
1395	employercitytfield	Boston
1396	cosigneradditionalincomesourcefield	
1396	codriverlicensestatefield	IL
1396	additionalincomesourcefield	
1396	previousstatefield	IL
1396	cosigneremployerstatefield	IL
1396	cosignermonthlyincomefield	
1396	cosignermonthlypaymentfield	
1396	cosignerpreviousstreetfield	
1396	cosigneremployercityfield	
1396	cosigneremployerfield	
1396	statusnote	
1396	cosignerformeremployertimefield	
1396	cosignerformeremployerphonefield	
1396	driverlicensestatefield	IL
1396	cosigneradditionalincomefield	
1396	cosigneraddressyearstotalfield	
1396	emailfield	hv13@hotmail.com
1396	codriverlicensefield	
1396	cosignerrentorownfield	
1396	formeremployerphonefield	
1396	cosigneremploymentlengthyearsfield	
1396	cosignerformeremployerfield	
1396	cosignerpreviouscitytfield	
1396	cosignercitytfield	
1396	cosignerstreetfield	
1396	stockfield	
1396	cosignerpositionfield	
1396	additionalincomefield	
1396	formeremployertimefield	
1396	cosigneremploymerphonefield	
1396	cosignerstatefield	IL
1396	formeremployerstatefield	IL
1396	previouscitytfield	
1396	cosignerzipfield	
1396	cosignerformeremployercityfield	
1396	statefield	IL
1396	locationfield	
1396	previouszipfield	
1396	employerstatefield	IL
1396	phonefield	7732909650
1396	cosignerpreviouszipfield	
1396	cosignerformeremployerpositionfield	
1396	incomefield	
1396	vehiclefield	
1396	formeremployerfield	
1396	cosignerpreviousstatefield	IL
1396	form-name	commentForm
1396	cosignerformeremployerstatefield	IL
1396	lastnamefield	Cola
1396	formeremployercityfield	
1396	firstnamefield	Coke
1396	formeremployerpositionfield	
1396	previousstreetfield	
1396	additionalinformationfield	
1396	streetfield	123 Test
1396	addressyearstotalfield	5
1396	cosignerphonefield	8473123318
1396	cosignerfirstnamefield	Matty
1396	ccosignerlastnamefield	Jones
1396	rentorownfield	Rent
1396	cosigneremailfield	dunjastef@gmail.com
1396	cosignerssnfield	6KO07V37akXuxl/T1CSI4OHy/41G4u+egjniWdAwfZk=
1396	titlefield	Vorker
1396	workphonefield	2342343242
1396	citytfield	Boston
1396	ssnfield	9o2Wqwsvi/7MBGOfJPZseJS3rK8gsi9yNGi9sY1KfDk=
1396	datepicker	9J7qHT1A0q0Ozoie4Bg6kkwtRSZ/iw0HuuF6L74E/ME=
1396	employerfield	Cola
1396	monthlypaymentfield	362626
1396	applicationtypefield	Joint
1396	cosignerdateofbirthfield	rLLdU+Vl0V/OUAcSTmzNv3rk3I9UYCzsQUAeqag4iR4=
1396	employmentyearsfield	5
1396	zipfield	56546
1396	lead-id-field	1396
1396	privacypolicyfield	yes
1396	driverlicensefield	Df099w7wsc
1396	employercitytfield	Boston
1397	cosigneradditionalincomesourcefield	
1397	cosignerphonefield	
1397	cosignerfirstnamefield	
1397	ccosignerlastnamefield	
1397	codriverlicensestatefield	
1397	additionalincomesourcefield	
1397	cosigneremailfield	
1397	previousstatefield	
1397	cosigneremployerstatefield	
1397	cosignermonthlyincomefield	
1397	cosignermonthlypaymentfield	
1397	cosignerpreviousstreetfield	
1397	cosigneremployercityfield	
1397	cosigneremployerfield	
1397	statusnote	
1397	cosignerformeremployertimefield	
1397	cosignerformeremployerphonefield	
1397	cosigneradditionalincomefield	
1397	cosigneraddressyearstotalfield	
1397	emailfield	josh@buyercall.com
1397	codriverlicensefield	
1397	cosignerrentorownfield	
1397	streetfield	123 Brick St
1397	addressyearstotalfield	5
1397	rentorownfield	Own
1397	driverlicensestatefield	AR
1397	cosignerssnfield	SWFtzJ9HngYV480CoRUcel30QaGEty+GSl0UTk3MJS0=
1397	titlefield	Manager
1397	formeremployerphonefield	
1397	cosigneremploymentlengthyearsfield	
1397	cosignerformeremployerfield	
1397	cosignerpreviouscitytfield	
1397	cosignercitytfield	
1397	cosignerstreetfield	
1397	stockfield	
1397	cosignerpositionfield	
1397	additionalincomefield	
1397	formeremployertimefield	
1397	cosigneremploymerphonefield	
1397	cosignerstatefield	
1397	formeremployerstatefield	
1397	previouscitytfield	
1397	cosignerzipfield	
1397	cosignerformeremployercityfield	
1397	locationfield	
1397	previouszipfield	
1397	phonefield	773 969 9892
1397	cosignerpreviouszipfield	
1397	cosignerformeremployerpositionfield	
1397	vehiclefield	
1397	formeremployerfield	
1397	cosignerpreviousstatefield	
1397	form-name	commentForm
1397	cosignerformeremployerstatefield	
1397	lastnamefield	Rogers
1397	formeremployercityfield	
1397	firstnamefield	Mike
1397	formeremployerpositionfield	
1397	previousstreetfield	
1397	workphonefield	17732909650
1397	citytfield	Boston
1397	ssnfield	0vJisdHC3J/S15drU6+1vcP8JjgvpP6r/8fQ9htX4Iw=
1397	datepicker	0Wow5PH+zPLC8GF2ULuzTBMFKiOSVTfV1tRk/pOSK5k=
1397	employerfield	McDonals
1397	monthlypaymentfield	4000
1397	applicationtypefield	Individual
1397	cosignerdateofbirthfield	Dnr0o3heOV3/lDGNPQY5kGeLQNRrcWFM6qwj1yDTlkI=
1397	employmentyearsfield	5
1397	statefield	ME
1397	zipfield	56546
1397	employerstatefield	ME
1397	incomefield	4000
1397	lead-id-field	1397
1397	privacypolicyfield	yes
1397	driverlicensefield	RT5432DF
1397	employercitytfield	Boston
1397	additionalinformationfield	howdy
1398	streetfield	
1398	cosigneradditionalincomesourcefield	
1398	addressyearstotalfield	
1398	cosignerphonefield	
1398	cosignerfirstnamefield	
1398	ccosignerlastnamefield	
1398	rentorownfield	Rent
1398	codriverlicensestatefield	
1398	employmentyearsfield	
1398	cosigneremailfield	
1398	previousstatefield	
1398	cosignerpositionfield	
1398	cosigneremployerstatefield	
1398	cosignermonthlyincomefield	
1398	cosignermonthlypaymentfield	
1398	cosignerpreviousstreetfield	
1398	cosigneremployercityfield	
1398	cosigneremployerfield	
1398	statusnote	
1398	cosignerformeremployertimefield	
1398	cosignerformeremployerphonefield	
1398	driverlicensestatefield	
1398	cosigneradditionalincomefield	
1398	cosignerssnfield	MeUQETCtcaafbNxnPC1KmTwlXH98p4Bw1c/1l8IMs18=
1398	titlefield	
1398	cosigneraddressyearstotalfield	
1398	emailfield	
1398	codriverlicensefield	
1398	cosignerrentorownfield	Rent
1398	workphonefield	
1398	formeremployerphonefield	
1398	employerfield	
1398	citytfield	
1398	cosigneremploymentlengthyearsfield	
1398	ssnfield	xflrzcToqSIq8DN2RqLr3Yc0pOLHvOLnWc4aVRnbNkw=
1398	privacypolicytext	I /WE HAVE READ AND UNDERSTAND THE DEALER’S POLICIES, TERMS, AND CONDITIONS. I / WE HEREBY CERTIFY THAT ALL OF THE INFORMATION ON THIS APPLICATION AND ALL STATEMENTS MADE HEREIN ARE TRUE AND CORRECT AND THAT I/WE AM/ARE THE PERSON(S) ON THE APPLICATION AND NOT A MISREPRESENTATION. THE INFORMATION IS SUBMITTED FOR THE PURPOSES OF OBTAINING CREDIT AND AUTHORIZES THE DEALER TO MAKE SUCH INQUIRIES AS ARE NECESSARY TO OBTAIN CREDIT INFORMATION AND AUTHORIZE MY BANK, SUPPLIERS, AND CREDIT REFERENCES TO RELEASE INFORMATION REGARDING MY ACCOUNT(S).
1398	cosignerformeremployerfield	
1398	cosignerpreviouscitytfield	
1398	cosignercitytfield	
1398	cosignerstreetfield	
1398	datepicker	JG3vtdTPkiV9yAFhAEMYJXO9BJ41vpBAZjY+p5Bo928=
1398	stockfield	811060
1398	_wpcf7	2049
1398	formeremployertimefield	
1398	_wpcf7_container_post	0
1398	cosigneremploymerphonefield	
1398	monthlypaymentfield	
1398	additionalincomefield	
1398	cosignerstatefield	
1398	formeremployerstatefield	
1398	_wpcf7_unit_tag	wpcf7-f2049-o4
1398	previouscitytfield	
1398	cosignerdateofbirthfield	g3yQ1WtNl+Ix8WyXkx7WhB+xl7gxJ1xOC3LTPBblXt0=
1398	cosignerzipfield	
1398	cosignerformeremployercityfield	
1398	additionalincomesourcefield	
1398	statefield	
1398	locationfield	
1398	vehiclefield	2018 Keystone Fuzion 429
1398	zipfield	
1398	employerstatefield	
1398	phonefield	
1398	cosignerpreviouszipfield	
1398	cosignerformeremployerpositionfield	
1398	incomefield	
1398	previouszipfield	
1398	formeremployerfield	
1398	cosignerpreviousstatefield	
1398	privacypolicyfield	Yes
1398	driverlicensefield	
1398	_wpcf7_locale	en_US
1398	_wpcf7_version	5.0.1
1398	employercitytfield	
1398	cosignerformeremployerstatefield	
1398	lastnamefield	
1398	formeremployercityfield	
1398	firstnamefield	test
1398	formeremployerpositionfield	
1398	previousstreetfield	
1398	additionalinformationfield	
1398	applicationtypefield	
1399	streetfield	
1399	cosigneradditionalincomesourcefield	
1399	addressyearstotalfield	
1399	cosignerphonefield	
1399	cosignerfirstnamefield	
1399	ccosignerlastnamefield	
1399	rentorownfield	Rent
1399	codriverlicensestatefield	
1399	employmentyearsfield	
1399	cosigneremailfield	
1399	previousstatefield	
1399	cosignerpositionfield	
1399	cosigneremployerstatefield	
1399	cosignermonthlyincomefield	
1399	cosignermonthlypaymentfield	
1399	cosignerpreviousstreetfield	
1399	cosigneremployercityfield	
1399	cosigneremployerfield	
1399	statusnote	
1399	cosignerformeremployertimefield	
1399	cosignerformeremployerphonefield	
1399	driverlicensestatefield	
1399	cosigneradditionalincomefield	
1399	titlefield	
1399	cosigneraddressyearstotalfield	
1399	emailfield	
1399	codriverlicensefield	
1399	cosignerrentorownfield	Rent
1399	workphonefield	
1399	formeremployerphonefield	
1399	employerfield	
1399	citytfield	
1399	cosigneremploymentlengthyearsfield	
1399	privacypolicytext	I /WE HAVE READ AND UNDERSTAND THE DEALER’S POLICIES, TERMS, AND CONDITIONS. I / WE HEREBY CERTIFY THAT ALL OF THE INFORMATION ON THIS APPLICATION AND ALL STATEMENTS MADE HEREIN ARE TRUE AND CORRECT AND THAT I/WE AM/ARE THE PERSON(S) ON THE APPLICATION AND NOT A MISREPRESENTATION. THE INFORMATION IS SUBMITTED FOR THE PURPOSES OF OBTAINING CREDIT AND AUTHORIZES THE DEALER TO MAKE SUCH INQUIRIES AS ARE NECESSARY TO OBTAIN CREDIT INFORMATION AND AUTHORIZE MY BANK, SUPPLIERS, AND CREDIT REFERENCES TO RELEASE INFORMATION REGARDING MY ACCOUNT(S).
1399	cosignerformeremployerfield	
1399	cosignerpreviouscitytfield	
1399	cosignercitytfield	
1399	cosignerstreetfield	
1399	stockfield	811060
1399	_wpcf7	2049
1399	formeremployertimefield	
1399	_wpcf7_container_post	0
1399	cosigneremploymerphonefield	
1399	monthlypaymentfield	
1399	additionalincomefield	
1399	cosignerstatefield	
1399	formeremployerstatefield	
1399	_wpcf7_unit_tag	wpcf7-f2049-o4
1399	previouscitytfield	
1399	cosignerzipfield	
1399	cosignerformeremployercityfield	
1399	additionalincomesourcefield	
1399	statefield	
1399	locationfield	
1399	vehiclefield	2018 Keystone Fuzion 429
1399	zipfield	
1399	employerstatefield	
1399	phonefield	
1399	cosignerpreviouszipfield	
1399	cosignerformeremployerpositionfield	
1399	incomefield	
1399	previouszipfield	
1399	formeremployerfield	
1399	cosignerpreviousstatefield	
1399	privacypolicyfield	Yes
1399	driverlicensefield	
1399	_wpcf7_locale	en_US
1399	_wpcf7_version	5.0.1
1399	employercitytfield	
1399	cosignerformeremployerstatefield	
1399	lastnamefield	
1399	formeremployercityfield	
1399	firstnamefield	
1399	formeremployerpositionfield	
1399	previousstreetfield	
1399	additionalinformationfield	
1399	applicationtypefield	
1400	streetfield	
1400	cosigneradditionalincomesourcefield	
1400	addressyearstotalfield	
1400	cosignerphonefield	
1400	cosignerfirstnamefield	
1400	ccosignerlastnamefield	
1400	rentorownfield	Rent
1400	codriverlicensestatefield	
1400	employmentyearsfield	
1400	cosigneremailfield	
1400	previousstatefield	
1400	cosignerpositionfield	
1400	cosigneremployerstatefield	
1400	cosignermonthlyincomefield	
1400	cosignermonthlypaymentfield	
1400	cosignerpreviousstreetfield	
1400	cosigneremployercityfield	
1400	cosigneremployerfield	
1400	statusnote	
1400	cosignerformeremployertimefield	
1400	cosignerformeremployerphonefield	
1400	driverlicensestatefield	
1400	cosigneradditionalincomefield	
1400	titlefield	
1400	cosigneraddressyearstotalfield	
1400	emailfield	
1400	codriverlicensefield	
1400	cosignerrentorownfield	Rent
1400	workphonefield	
1400	formeremployerphonefield	
1400	employerfield	
1400	citytfield	
1400	cosigneremploymentlengthyearsfield	
1400	privacypolicytext	I /WE HAVE READ AND UNDERSTAND THE DEALER’S POLICIES, TERMS, AND CONDITIONS. I / WE HEREBY CERTIFY THAT ALL OF THE INFORMATION ON THIS APPLICATION AND ALL STATEMENTS MADE HEREIN ARE TRUE AND CORRECT AND THAT I/WE AM/ARE THE PERSON(S) ON THE APPLICATION AND NOT A MISREPRESENTATION. THE INFORMATION IS SUBMITTED FOR THE PURPOSES OF OBTAINING CREDIT AND AUTHORIZES THE DEALER TO MAKE SUCH INQUIRIES AS ARE NECESSARY TO OBTAIN CREDIT INFORMATION AND AUTHORIZE MY BANK, SUPPLIERS, AND CREDIT REFERENCES TO RELEASE INFORMATION REGARDING MY ACCOUNT(S).
1400	cosignerformeremployerfield	
1400	cosignerpreviouscitytfield	
1400	cosignercitytfield	
1400	cosignerstreetfield	
1400	stockfield	A10928T
1400	_wpcf7	2049
1400	formeremployertimefield	
1400	_wpcf7_container_post	0
1400	cosigneremploymerphonefield	
1400	monthlypaymentfield	
1400	additionalincomefield	
1400	cosignerstatefield	
1400	formeremployerstatefield	
1400	_wpcf7_unit_tag	wpcf7-f2049-o4
1400	previouscitytfield	
1400	cosignerzipfield	
1400	cosignerformeremployercityfield	
1400	additionalincomesourcefield	
1400	statefield	
1400	locationfield	
1400	vehiclefield	2014 Thor Motor Coach Challenger 37GT
1400	zipfield	
1400	employerstatefield	
1400	phonefield	
1400	cosignerpreviouszipfield	
1400	cosignerformeremployerpositionfield	
1400	incomefield	
1400	previouszipfield	
1400	formeremployerfield	
1400	cosignerpreviousstatefield	
1400	privacypolicyfield	Yes
1400	driverlicensefield	
1400	_wpcf7_locale	en_US
1400	_wpcf7_version	5.0.1
1400	employercitytfield	
1400	cosignerformeremployerstatefield	
1400	lastnamefield	
1400	formeremployercityfield	
1400	firstnamefield	
1400	formeremployerpositionfield	
1400	previousstreetfield	
1400	additionalinformationfield	
1400	applicationtypefield	
1401	streetfield	
1401	cosigneradditionalincomesourcefield	
1401	addressyearstotalfield	
1401	cosignerphonefield	
1401	cosignerfirstnamefield	
1401	ccosignerlastnamefield	
1401	rentorownfield	Rent
1401	codriverlicensestatefield	
1401	employmentyearsfield	
1401	cosigneremailfield	
1401	previousstatefield	
1401	cosignerpositionfield	
1401	cosigneremployerstatefield	
1401	cosignermonthlyincomefield	
1401	cosignermonthlypaymentfield	
1401	cosignerpreviousstreetfield	
1401	cosigneremployercityfield	
1401	cosigneremployerfield	
1401	statusnote	
1401	cosignerformeremployertimefield	
1401	cosignerformeremployerphonefield	
1401	driverlicensestatefield	
1401	cosigneradditionalincomefield	
1401	cosignerssnfield	VpfcnaDkz68XZnyp/2yB6MztDK3+v/7MmKnbnZwBU18=
1401	titlefield	
1401	cosigneraddressyearstotalfield	
1401	emailfield	
1401	codriverlicensefield	
1401	cosignerrentorownfield	Rent
1401	workphonefield	
1401	formeremployerphonefield	
1401	employerfield	
1401	citytfield	
1401	cosigneremploymentlengthyearsfield	
1401	privacypolicytext	I /WE HAVE READ AND UNDERSTAND THE DEALER’S POLICIES, TERMS, AND CONDITIONS. I / WE HEREBY CERTIFY THAT ALL OF THE INFORMATION ON THIS APPLICATION AND ALL STATEMENTS MADE HEREIN ARE TRUE AND CORRECT AND THAT I/WE AM/ARE THE PERSON(S) ON THE APPLICATION AND NOT A MISREPRESENTATION. THE INFORMATION IS SUBMITTED FOR THE PURPOSES OF OBTAINING CREDIT AND AUTHORIZES THE DEALER TO MAKE SUCH INQUIRIES AS ARE NECESSARY TO OBTAIN CREDIT INFORMATION AND AUTHORIZE MY BANK, SUPPLIERS, AND CREDIT REFERENCES TO RELEASE INFORMATION REGARDING MY ACCOUNT(S).
1401	cosignerformeremployerfield	
1401	cosignerpreviouscitytfield	
1401	cosignercitytfield	
1401	cosignerstreetfield	
1401	datepicker	kY0Hvz29uCNTR8QTY71dQ1mGM3165V1U9ME7w0RLDYY=
1401	stockfield	A10928T
1401	_wpcf7	2049
1401	formeremployertimefield	
1401	_wpcf7_container_post	0
1401	cosigneremploymerphonefield	
1401	monthlypaymentfield	
1401	additionalincomefield	
1401	cosignerstatefield	
1401	formeremployerstatefield	
1401	_wpcf7_unit_tag	wpcf7-f2049-o4
1401	previouscitytfield	
1401	cosignerdateofbirthfield	cz8V5BBA4LiFkv4zuk7tc2Posry6wv29U/YR21QvHFI=
1401	cosignerzipfield	
1401	cosignerformeremployercityfield	
1401	additionalincomesourcefield	
1401	statefield	
1401	ssnfield	123456789
1400	cosignerssnfield	u4VYYZgBsbiriw/TiKfajkKdlTA7kEtHkQ5wEUDRjqCftR/tlmPMC4+qZsFeRHNp0Ngg2PVDZjR8LkYXKon3Nw==
1401	locationfield	
1401	vehiclefield	2014 Thor Motor Coach Challenger 37GT
1401	zipfield	
1401	employerstatefield	
1401	phonefield	
1401	cosignerpreviouszipfield	
1401	cosignerformeremployerpositionfield	
1401	incomefield	
1401	previouszipfield	
1401	formeremployerfield	
1401	cosignerpreviousstatefield	
1401	privacypolicyfield	Yes
1401	driverlicensefield	
1401	_wpcf7_locale	en_US
1401	_wpcf7_version	5.0.1
1401	employercitytfield	
1401	cosignerformeremployerstatefield	
1401	lastnamefield	
1401	formeremployercityfield	
1401	firstnamefield	
1401	formeremployerpositionfield	
1401	previousstreetfield	
1401	additionalinformationfield	
1401	applicationtypefield	
1402	streetfield	
1402	cosigneradditionalincomesourcefield	
1402	addressyearstotalfield	
1402	cosignerphonefield	
1402	cosignerfirstnamefield	
1402	ccosignerlastnamefield	
1402	rentorownfield	Rent
1402	codriverlicensestatefield	
1402	employmentyearsfield	
1402	cosigneremailfield	
1402	previousstatefield	
1402	cosignerpositionfield	
1402	cosigneremployerstatefield	
1402	cosignermonthlyincomefield	
1402	cosignermonthlypaymentfield	
1402	cosignerpreviousstreetfield	
1402	cosigneremployercityfield	
1402	cosigneremployerfield	
1402	statusnote	
1402	cosignerformeremployertimefield	
1402	cosignerformeremployerphonefield	
1402	driverlicensestatefield	
1402	cosigneradditionalincomefield	
1402	cosignerssnfield	gJipqhsy5YxM8o36ZxPnphb7T46tcTl6hW+jWIP5L0U=
1402	titlefield	
1402	cosigneraddressyearstotalfield	
1402	emailfield	
1402	codriverlicensefield	
1402	cosignerrentorownfield	Rent
1402	workphonefield	
1402	formeremployerphonefield	
1402	employerfield	
1402	citytfield	
1402	cosigneremploymentlengthyearsfield	
1402	ssnfield	kKkQQTAUCrsosNg5URlAu0PUI7yLRqFy30TsijgyYUs=
1402	privacypolicytext	I /WE HAVE READ AND UNDERSTAND THE DEALER’S POLICIES, TERMS, AND CONDITIONS. I / WE HEREBY CERTIFY THAT ALL OF THE INFORMATION ON THIS APPLICATION AND ALL STATEMENTS MADE HEREIN ARE TRUE AND CORRECT AND THAT I/WE AM/ARE THE PERSON(S) ON THE APPLICATION AND NOT A MISREPRESENTATION. THE INFORMATION IS SUBMITTED FOR THE PURPOSES OF OBTAINING CREDIT AND AUTHORIZES THE DEALER TO MAKE SUCH INQUIRIES AS ARE NECESSARY TO OBTAIN CREDIT INFORMATION AND AUTHORIZE MY BANK, SUPPLIERS, AND CREDIT REFERENCES TO RELEASE INFORMATION REGARDING MY ACCOUNT(S).
1402	cosignerformeremployerfield	
1402	cosignerpreviouscitytfield	
1402	cosignercitytfield	
1402	cosignerstreetfield	
1402	datepicker	puoqaf209InStQnnvkNe3L5QYyO9FtAP9qObpml4DtM=
1402	stockfield	A10928T
1402	_wpcf7	2049
1402	formeremployertimefield	
1402	_wpcf7_container_post	0
1402	cosigneremploymerphonefield	
1402	monthlypaymentfield	
1402	additionalincomefield	
1402	cosignerstatefield	
1402	formeremployerstatefield	
1402	_wpcf7_unit_tag	wpcf7-f2049-o4
1402	previouscitytfield	
1402	cosignerdateofbirthfield	/6HRnAecjr+VAXbTivuD5ziz0RIak3aXwNM7geFsN74=
1402	cosignerzipfield	
1402	cosignerformeremployercityfield	
1402	additionalincomesourcefield	
1402	statefield	
1402	locationfield	
1402	vehiclefield	2014 Thor Motor Coach Challenger 37GT
1402	zipfield	
1402	employerstatefield	
1402	phonefield	
1402	cosignerpreviouszipfield	
1402	cosignerformeremployerpositionfield	
1402	incomefield	
1402	previouszipfield	
1402	formeremployerfield	
1402	cosignerpreviousstatefield	
1402	privacypolicyfield	Yes
1402	driverlicensefield	
1402	_wpcf7_locale	en_US
1402	_wpcf7_version	5.0.1
1402	employercitytfield	
1402	cosignerformeremployerstatefield	
1402	lastnamefield	
1402	formeremployercityfield	
1402	firstnamefield	
1402	formeremployerpositionfield	
1402	previousstreetfield	
1402	additionalinformationfield	
1402	applicationtypefield	
1403	streetfield	
1403	cosigneradditionalincomesourcefield	
1403	addressyearstotalfield	5+ years
1403	cosignerphonefield	
1403	cosignerfirstnamefield	
1403	ccosignerlastnamefield	
1403	rentorownfield	Rent
1403	codriverlicensestatefield	
1403	employmentyearsfield	1-2 years
1403	cosigneremailfield	
1403	previousstatefield	
1403	cosignerpositionfield	
1403	cosigneremployerstatefield	
1403	cosignermonthlyincomefield	
1403	cosignermonthlypaymentfield	
1403	cosignerpreviousstreetfield	
1403	cosigneremployercityfield	
1403	cosigneremployerfield	
1403	statusnote	
1403	cosignerformeremployertimefield	
1403	cosignerformeremployerphonefield	
1403	driverlicensestatefield	
1403	cosigneradditionalincomefield	
1403	cosignerssnfield	CV8ooQvLu+RbrNAxEbmMJn4cBol+T2EEd3VC0TCpy5Q=
1403	titlefield	
1403	cosigneraddressyearstotalfield	
1403	emailfield	
1403	codriverlicensefield	
1403	cosignerrentorownfield	Rent
1403	workphonefield	
1403	formeremployerphonefield	
1403	employerfield	
1403	citytfield	
1403	cosigneremploymentlengthyearsfield	
1403	ssnfield	Plo9gXtD/+/+wdbg6u12CMoy/l5oB2s3OiBvS/oanOQ=
1403	privacypolicytext	I /WE HAVE READ AND UNDERSTAND THE DEALER’S POLICIES, TERMS, AND CONDITIONS. I / WE HEREBY CERTIFY THAT ALL OF THE INFORMATION ON THIS APPLICATION AND ALL STATEMENTS MADE HEREIN ARE TRUE AND CORRECT AND THAT I/WE AM/ARE THE PERSON(S) ON THE APPLICATION AND NOT A MISREPRESENTATION. THE INFORMATION IS SUBMITTED FOR THE PURPOSES OF OBTAINING CREDIT AND AUTHORIZES THE DEALER TO MAKE SUCH INQUIRIES AS ARE NECESSARY TO OBTAIN CREDIT INFORMATION AND AUTHORIZE MY BANK, SUPPLIERS, AND CREDIT REFERENCES TO RELEASE INFORMATION REGARDING MY ACCOUNT(S).
1403	cosignerformeremployerfield	
1403	cosignerpreviouscitytfield	
1403	cosignercitytfield	
1403	cosignerstreetfield	
1403	datepicker	7s0Cp/XctKrnIK5fgk/+7B3+sDyjPQqtLEwlnqvYL7Q=
1403	stockfield	A10928T
1403	_wpcf7	2049
1403	formeremployertimefield	
1403	_wpcf7_container_post	0
1403	cosigneremploymerphonefield	
1403	monthlypaymentfield	
1403	additionalincomefield	
1403	cosignerstatefield	
1403	formeremployerstatefield	
1403	_wpcf7_unit_tag	wpcf7-f2049-o4
1403	previouscitytfield	
1403	cosignerdateofbirthfield	EUaX6IKBynbHDCl21lq7CP9HoWA/Nf2DUMAUU/M/Of8=
1403	cosignerzipfield	
1403	cosignerformeremployercityfield	
1403	additionalincomesourcefield	
1403	statefield	
1403	locationfield	
1403	vehiclefield	2014 Thor Motor Coach Challenger 37GT
1403	zipfield	
1403	employerstatefield	
1403	phonefield	1234567890
1403	cosignerpreviouszipfield	
1403	cosignerformeremployerpositionfield	
1403	incomefield	1000
1403	previouszipfield	
1403	formeremployerfield	
1403	cosignerpreviousstatefield	
1403	privacypolicyfield	Yes
1403	driverlicensefield	
1403	_wpcf7_locale	en_US
1403	_wpcf7_version	5.0.1
1403	employercitytfield	
1403	cosignerformeremployerstatefield	
1403	lastnamefield	last
1403	formeremployercityfield	
1403	firstnamefield	first
1403	formeremployerpositionfield	
1403	previousstreetfield	
1403	additionalinformationfield	test
1403	applicationtypefield	
1399	cosignerssnfield	Ew44ixERuQDXSfHgd30niwRcsIqNJ5AOf/0lvE9Miq8N0SHhCEt67Ggk150UCby0pPXz8xYAerAM6lyUl35mRA==
1399	ssnfield	oj7fOc1ccBHT2533Fhc/D21Jle7IJMFVaBmYgpzZZD8=
1399	datepicker	yz8rsboEAVaitP0+X4HscsTphrGdVJ++a6gipZtOe+pssQoiS+vyQxJ6uy27QJaqnvXz3D+g5humRLPu8qC2EA==
1399	cosignerdateofbirthfield	rR1vUstsM+378JjdF+T8v9X6ZCse5U6Vmd0xziwng6h6TqQfacPon3dvjl/hHVi78VVAXJFJOMKPIZuPkOWzgQ==
1400	datepicker	hE9YSG3ZZaqV5DY8418FnYpnzy83CPV+kPNMdWWLJyCO5o8Uumq7wwU3WdR9fxf3bUBVNYqyL+fR6yu00UCQ0Q==
1400	cosignerdateofbirthfield	MSeGIlPzwpy0JSs1agVyi2wjUbiB+rG2wsu6bKiTqKjOQoTLozxeqQzN26nQR6eFWO20P7PvVsYoqyQIK2XGuA==
1400	ssnfield	tux4ktUoAIoC5nHkjlBu5nQxEEyfDE/NFWxJdgj6/mY=
1404	cosigneradditionalincomesourcefield	
1404	cosignerphonefield	
1404	cosignerfirstnamefield	
1404	ccosignerlastnamefield	
1404	codriverlicensestatefield	
1404	additionalincomesourcefield	
1404	cosigneremailfield	
1404	previousstatefield	
1404	cosigneremployerstatefield	
1404	cosignermonthlyincomefield	
1404	cosignermonthlypaymentfield	
1404	cosignerpreviousstreetfield	
1404	cosigneremployercityfield	
1404	cosigneremployerfield	
1404	statusnote	
1404	cosignerformeremployertimefield	
1404	cosignerformeremployerphonefield	
1404	cosigneradditionalincomefield	
1404	cosigneraddressyearstotalfield	
1404	emailfield	hv13@hotmail.com
1404	codriverlicensefield	
1404	cosignerrentorownfield	
1404	formeremployerphonefield	
1404	cosigneremploymentlengthyearsfield	
1404	cosignerformeremployerfield	
1404	cosignerpreviouscitytfield	
1404	cosignercitytfield	
1404	cosignerstreetfield	
1404	stockfield	45
1404	cosignerpositionfield	
1404	additionalincomefield	
1404	formeremployertimefield	
1404	cosigneremploymerphonefield	
1404	cosignerstatefield	
1404	formeremployerstatefield	
1404	previouscitytfield	
1404	streetfield	4322 N Clarendon ave
1404	addressyearstotalfield	5
1407	cosignerpreviouszipfield	
1407	cosigneremploymentlengthyearsfield	
1407	ssnfield	MuPlGnTIzzVctVlcZKGboZBcY8xdjsMWFQ2yzhB+uSk=
1409	streetfield	13825 Sunrise Valley Dr
1409	datepicker	M7c4RECvTVYJAfoW6idcoZuJQ6uoPXABwU6GrcO0YcY=
1409	addressyearstotalfield	5
1409	cosignerphonefield	5555555
1409	employmentmonthstotalfield	2
1409	ccosignerlastnamefield	Test
1409	rentorownfield	Rent
1409	codriverlicensestatefield	VA
1404	cosignerzipfield	
1404	cosignerformeremployercityfield	
1404	locationfield	
1404	previouszipfield	
1404	cosignerpreviouszipfield	
1404	cosignerformeremployerpositionfield	
1404	incomefield	
1404	vehiclefield	Blue
1404	formeremployerfield	
1404	cosignerpreviousstatefield	
1404	form-name	commentForm
1404	cosignerformeremployerstatefield	
1404	lastnamefield	Bollon
1404	formeremployercityfield	
1404	firstnamefield	Jizi
1404	formeremployerpositionfield	
1404	previousstreetfield	
1404	additionalinformationfield	
1404	rentorownfield	Other
1404	driverlicensestatefield	AZ
1404	titlefield	werwer
1404	workphonefield	17732909650
1404	citytfield	Chicago
1404	employerfield	rewrw
1404	monthlypaymentfield	5555
1404	applicationtypefield	Joint
1408	addressmonthstotalfield	1
1404	employmentyearsfield	5
1404	statefield	IL
1404	zipfield	60613
1404	employerstatefield	IL
1404	lead-id-field	1404
1404	privacypolicyfield	yes
1404	driverlicensefield	sdfsd123123
1404	employercitytfield	werwer
1404	cosignerdateofbirthfield	lvkaPae7nqEDz+80Zks+VZymtj8G/cFiF8OprJ/Ff0s=
1404	cosignerssnfield	173pGxXc1k1LJoMMuFHxKTVAMfgy06PIPCOB1UQoPhw=
1404	datepicker	ByFbECR2wI2mo1HR35BdZQpA3z9y47c90yrg006s2qQ=
1404	phonefield	17732909650e4
1404	ssnfield	pHN5aHQ+zHLBFk24UpDznZ/q2ahkZ4lQi3CJjYiuMd8=
1405	streetfield	13825 Sunrise Valley Drive, Suite 150
1405	cosigneradditionalincomesourcefield	
1405	addressyearstotalfield	5+ years
1405	cosignerphonefield	
1405	cosignerfirstnamefield	
1405	ccosignerlastnamefield	
1405	rentorownfield	Rent
1405	codriverlicensestatefield	
1405	employmentyearsfield	5+ years
1405	cosigneremailfield	
1405	previousstatefield	
1405	cosignerpositionfield	
1405	cosigneremployerstatefield	
1405	cosignermonthlyincomefield	
1405	cosignermonthlypaymentfield	
1405	cosignerpreviousstreetfield	
1405	cosigneremployercityfield	
1405	cosigneremployerfield	
1405	statusnote	
1405	cosignerformeremployertimefield	
1405	cosignerformeremployerphonefield	
1405	driverlicensestatefield	VIRGINIA
1405	cosigneradditionalincomefield	
1405	cosignerssnfield	O1yj57wTSyQVuuIG4orS5K1IO7S8odtGA9OugmQXKpg=
1405	titlefield	test
1405	cosigneraddressyearstotalfield	
1405	emailfield	shatem@teamvelocitymarketing.com
1405	codriverlicensefield	
1405	cosignerrentorownfield	Rent
1405	workphonefield	7036613350
1405	formeremployerphonefield	
1405	employerfield	test
1405	citytfield	Herndon
1405	cosigneremploymentlengthyearsfield	
1405	ssnfield	PDL1bHTZb7WJRzmbtEcUtwVMXPjHqtEn0paK3uLJ8vE=
1405	cosignerformeremployerfield	
1405	cosignerpreviouscitytfield	
1405	cosignercitytfield	
1405	cosignerstreetfield	
1405	datepicker	dQP9qK3ax5QbeESKKyyp4CVUj0D22TMavydC29rfPrk=
1405	stockfield	test
1405	_wpcf7	850
1405	formeremployertimefield	
1405	_wpcf7_container_post	0
1405	cosigneremploymerphonefield	
1405	monthlypaymentfield	5
1405	additionalincomefield	
1405	cosignerstatefield	
1405	formeremployerstatefield	
1405	_wpcf7_unit_tag	wpcf7-f850-o1
1405	previouscitytfield	
1405	cosignerdateofbirthfield	1LKnoMk1K7ZcC8lkl95C96tVZda+AKnlmak40FuKoZI=
1405	cosignerzipfield	
1405	cosignerformeremployercityfield	
1405	additionalincomesourcefield	
1405	statefield	VIRGINIA
1405	locationfield	test
1405	vehiclefield	2018 Winnebago Forza 38W
1405	zipfield	20171
1405	employerstatefield	VIRGINIA
1405	phonefield	7036613350
1405	cosignerpreviouszipfield	
1405	cosignerformeremployerpositionfield	
1405	incomefield	5
1405	previouszipfield	
1405	formeremployerfield	
1405	cosignerpreviousstatefield	
1408	cosignerformeremployerpositionfield	
1408	incomefield	0
1408	previouszipfield	
1408	formeremployerfield	
1408	cosignerpreviousstatefield	
1408	privacypolicyfield	Yes
1408	driverlicensefield	E55555555
1408	_wpcf7_locale	en_US
1408	_wpcf7_version	5.0.1
1408	employercitytfield	Herndon
1408	cosignerformeremployerstatefield	
1408	lastnamefield	Test
1408	formeremployercityfield	
1408	firstnamefield	TeamV
1408	formeremployerpositionfield	
1408	previousstreetfield	
1408	additionalinformationfield	
1408	applicationtypefield	
1409	additionalincomesourcefield	
1409	cosigneremailfield	cson1@teamvelocitymarketing.com
1409	previousstatefield	VA
1409	cosignerpositionfield	Marketing
1405	privacypolicyfield	I /WE HAVE READ AND UNDERSTAND THE DEALER’S POLICIES, TERMS, AND CONDITIONS. I / WE HEREBY CERTIFY THAT ALL OF THE INFORMATION ON THIS APPLICATION AND ALL STATEMENTS MADE HEREIN ARE TRUE AND CORRECT AND THAT I/WE AM/ARE THE PERSON(S) ON THE APPLICATION AND NOT A MISREPRESENTATION. THE INFORMATION IS SUBMITTED FOR THE PURPOSES OF OBTAINING CREDIT AND AUTHORIZES THE DEALER TO MAKE SUCH INQUIRIES AS ARE NECESSARY TO OBTAIN CREDIT INFORMATION AND AUTHORIZE MY BANK, SUPPLIERS, AND CREDIT REFERENCES TO RELEASE INFORMATION REGARDING MY ACCOUNT(S).
1405	driverlicensefield	55555555
1405	_wpcf7_locale	en_US
1405	_wpcf7_version	5.0
1405	employercitytfield	Herndon
1405	cosignerformeremployerstatefield	
1405	lastnamefield	TEst
1405	formeremployercityfield	
1405	firstnamefield	test
1405	formeremployerpositionfield	
1405	previousstreetfield	
1405	additionalinformationfield	test
1405	applicationtypefield	
1406	streetfield	
1406	cosigneradditionalincomesourcefield	
1406	addressyearstotalfield	
1406	cosignerphonefield	
1406	cosignerfirstnamefield	
1406	ccosignerlastnamefield	
1406	rentorownfield	
1406	codriverlicensestatefield	
1406	additionalincomesourcefield	
1406	cosigneremailfield	
1406	previousstatefield	
1406	cosigneremployerstatefield	
1406	cosignermonthlyincomefield	
1406	cosignermonthlypaymentfield	
1406	cosignerpreviousstreetfield	
1406	cosigneremployercityfield	
1406	cosigneremployerfield	
1406	statusnote	
1406	cosignerformeremployertimefield	
1406	cosignerformeremployerphonefield	
1406	driverlicensestatefield	
1406	cosigneradditionalincomefield	
1406	cosignerssnfield	H2rCzEh54CyRRe9xlY9A/fzpoHUJ+dYwvbaQLDzrjoA=
1406	titlefield	
1406	cosigneraddressyearstotalfield	
1406	emailfield	tom@buyercall.com
1406	codriverlicensefield	
1406	cosignerrentorownfield	
1406	workphonefield	
1406	formeremployerphonefield	
1406	citytfield	
1406	cosigneremploymentlengthyearsfield	
1406	ssnfield	OMR/PBY7nbkTs3YTTFVAawNquye7yOjXEthsiOc6No4=
1406	cosignerformeremployerfield	
1406	cosignerpreviouscitytfield	
1406	cosignercitytfield	
1406	cosignerstreetfield	
1406	datepicker	f194RR9oMA3YStjLOUU0jysuBMFai9L8k0NOP5jIy7U=
1406	stockfield	#ER000434
1406	cosignerpositionfield	
1406	additionalincomefield	
1406	formeremployertimefield	
1406	employerfield	
1406	cosigneremploymerphonefield	
1406	monthlypaymentfield	
1406	cosignerstatefield	
1406	applicationtypefield	
1406	formeremployerstatefield	
1406	previouscitytfield	
1406	cosignerdateofbirthfield	8RM4zJH/vyCknIWiJ7pD9DOrCsdMeR6j9RIQbDuMrAE=
1406	cosignerzipfield	
1406	cosignerformeremployercityfield	
1406	employmentyearsfield	
1406	statefield	
1406	locationfield	Boston, MA
1406	previouszipfield	
1406	zipfield	
1406	employerstatefield	
1406	phonefield	773 969 9892
1406	cosignerpreviouszipfield	
1406	cosignerformeremployerpositionfield	
1406	incomefield	
1406	vehiclefield	Ford F150
1406	lead-id-field	
1406	formeremployerfield	
1406	cosignerpreviousstatefield	
1406	form-name	commentForm
1406	driverlicensefield	
1406	employercitytfield	
1406	cosignerformeremployerstatefield	
1406	lastnamefield	Brady
1406	formeremployercityfield	
1406	firstnamefield	Tom
1406	formeremployerpositionfield	
1406	previousstreetfield	
1406	additionalinformationfield	
1406	privacypolicyfield	
1407	streetfield	13825 Sunrise Valley Dr
1407	cosigneradditionalincomesourcefield	
1407	addressyearstotalfield	7
1407	cosignerphonefield	
1407	cosignerfirstnamefield	
1407	ccosignerlastnamefield	
1407	rentorownfield	Rent
1407	codriverlicensestatefield	
1407	employmentyearsfield	6
1407	cosigneremailfield	
1407	previousstatefield	
1407	cosignerpositionfield	
1407	cosigneremployerstatefield	
1407	cosignermonthlyincomefield	
1407	cosignermonthlypaymentfield	
1407	cosignerpreviousstreetfield	
1407	cosigneremployercityfield	
1407	cosigneremployerfield	
1407	statusnote	
1407	cosignerformeremployertimefield	
1407	cosignerformeremployerphonefield	
1407	driverlicensestatefield	VA
1407	cosigneradditionalincomefield	
1407	cosignerssnfield	+l7qc6NESQ97hojCaYpsiZ8X3HEnkjBOvdJZLI42IyU=
1407	titlefield	Marketing
1407	cosigneraddressyearstotalfield	
1407	emailfield	cson@teamvelocitymarketing.com
1407	codriverlicensefield	
1407	cosignerrentorownfield	Rent
1407	employmentmonthstotalfield	0
1407	workphonefield	5555555
1407	formeremployerphonefield	
1407	employerfield	Team Velocity
1407	citytfield	Herndon
1407	privacypolicytext	I /WE HAVE READ AND UNDERSTAND THE DEALER’S POLICIES, TERMS, AND CONDITIONS. I / WE HEREBY CERTIFY THAT ALL OF THE INFORMATION ON THIS APPLICATION AND ALL STATEMENTS MADE HEREIN ARE TRUE AND CORRECT AND THAT I/WE AM/ARE THE PERSON(S) ON THE APPLICATION AND NOT A MISREPRESENTATION. THE INFORMATION IS SUBMITTED FOR THE PURPOSES OF OBTAINING CREDIT AND AUTHORIZES THE DEALER TO MAKE SUCH INQUIRIES AS ARE NECESSARY TO OBTAIN CREDIT INFORMATION AND AUTHORIZE MY BANK, SUPPLIERS, AND CREDIT REFERENCES TO RELEASE INFORMATION REGARDING MY ACCOUNT(S).
1407	cosignerformeremployerfield	
1407	cosignerpreviouscitytfield	
1407	cosignercitytfield	
1407	cosignerstreetfield	
1407	datepicker	cLfYENNqV5jNfr1UqC4DlQt3SwO4JX1Z5gvXnuDPZMw=
1407	downpaymentfield	3000
1407	stockfield	HP527511A18
1407	_wpcf7	16209
1407	formeremployertimefield	
1407	_wpcf7_container_post	0
1407	cosigneremploymerphonefield	
1407	monthlypaymentfield	0
1407	additionalincomefield	
1407	cosignerstatefield	
1407	formeremployerstatefield	
1407	_wpcf7_unit_tag	wpcf7-f16209-o1
1407	previouscitytfield	
1407	cosignerdateofbirthfield	gg8ITpOeTMagISeNjU3KCnwQTYc7SkMz+cxpSFxd0QA=
1407	cosignerzipfield	
1407	cosignerformeremployercityfield	
1407	additionalincomesourcefield	
1407	statefield	VA
1407	locationfield	5624 Airport Freeway
1407	vehiclefield	2018 Airstream Airstream GRAND TOUR
1407	zipfield	20171
1407	employerstatefield	VA
1407	phonefield	5555555
1407	addressmonthstotalfield	1
1407	cosignerformeremployerpositionfield	
1407	incomefield	0
1407	previouszipfield	
1407	formeremployerfield	
1407	cosignerpreviousstatefield	
1407	privacypolicyfield	Yes
1407	driverlicensefield	E55555555
1407	_wpcf7_locale	en_US
1407	_wpcf7_version	5.0.1
1407	employercitytfield	Herndon
1407	cosignerformeremployerstatefield	
1407	lastnamefield	Test
1407	formeremployercityfield	
1407	firstnamefield	TeamV
1407	formeremployerpositionfield	
1407	previousstreetfield	
1407	additionalinformationfield	
1407	applicationtypefield	
1408	streetfield	13825 Sunrise Valley Dr
1408	cosigneradditionalincomesourcefield	
1408	addressyearstotalfield	5
1408	cosignerphonefield	
1408	cosignerfirstnamefield	
1408	ccosignerlastnamefield	
1408	rentorownfield	Rent
1408	codriverlicensestatefield	
1408	employmentyearsfield	5
1408	cosigneremailfield	
1408	previousstatefield	
1408	cosignerpositionfield	
1408	cosigneremployerstatefield	
1408	cosignermonthlyincomefield	
1408	cosignermonthlypaymentfield	
1408	cosignerpreviousstreetfield	
1408	cosigneremployercityfield	
1408	cosigneremployerfield	
1408	statusnote	
1408	cosignerformeremployertimefield	
1408	cosignerformeremployerphonefield	
1408	driverlicensestatefield	VA
1408	cosigneradditionalincomefield	
1408	cosignerssnfield	aypAcSpKC3+yQC0kXQxhlshSj5LJ15otHpZAOH79Szw=
1408	titlefield	Marketing
1408	cosigneraddressyearstotalfield	
1408	emailfield	cson@teamvelocitymarketing.com
1408	codriverlicensefield	
1408	cosignerrentorownfield	Rent
1408	employmentmonthstotalfield	0
1408	workphonefield	5555555
1408	formeremployerphonefield	
1408	employerfield	Team Velocity
1408	citytfield	Herndon
1408	cosignerpreviouszipfield	
1408	cosigneremploymentlengthyearsfield	
1408	ssnfield	JcmyVWGcNJFnak7++OOuKu5fZlJBoGqJkLVuRRpYjoE=
1408	privacypolicytext	I /WE HAVE READ AND UNDERSTAND THE DEALER’S POLICIES, TERMS, AND CONDITIONS. I / WE HEREBY CERTIFY THAT ALL OF THE INFORMATION ON THIS APPLICATION AND ALL STATEMENTS MADE HEREIN ARE TRUE AND CORRECT AND THAT I/WE AM/ARE THE PERSON(S) ON THE APPLICATION AND NOT A MISREPRESENTATION. THE INFORMATION IS SUBMITTED FOR THE PURPOSES OF OBTAINING CREDIT AND AUTHORIZES THE DEALER TO MAKE SUCH INQUIRIES AS ARE NECESSARY TO OBTAIN CREDIT INFORMATION AND AUTHORIZE MY BANK, SUPPLIERS, AND CREDIT REFERENCES TO RELEASE INFORMATION REGARDING MY ACCOUNT(S).
1408	cosignerformeremployerfield	
1408	cosignerpreviouscitytfield	
1408	cosignercitytfield	
1408	cosignerstreetfield	
1408	datepicker	FGUa8rt8tV6h7wdwPpzQlxCb1deeOk61+tCKA0ayGJ8=
1408	downpaymentfield	3000
1408	stockfield	HP527511A18
1408	_wpcf7	16209
1408	formeremployertimefield	
1408	_wpcf7_container_post	0
1408	cosigneremploymerphonefield	
1408	monthlypaymentfield	0
1408	additionalincomefield	
1408	cosignerstatefield	
1408	formeremployerstatefield	
1408	_wpcf7_unit_tag	wpcf7-f16209-o1
1408	previouscitytfield	
1408	cosignerdateofbirthfield	WSsus98JPCb5JUdsHPPchSUhhd0p5YhY5WjqME6h8jQ=
1408	cosignerzipfield	
1408	cosignerformeremployercityfield	
1408	additionalincomesourcefield	
1408	statefield	VA
1408	locationfield	5624 Airport Freeway
1408	vehiclefield	2018 Airstream Airstream GRAND TOUR
1408	zipfield	20171
1408	employerstatefield	VA
1408	phonefield	5555555
1409	cosigneremployerstatefield	VA
1409	workphonefield	5555555
1409	cosignermonthlyincomefield	0
1409	zipfield	20171
1409	cosignermonthlypaymentfield	0
1409	cosignerpreviousstreetfield	
1409	cosigneremployerfield	Team Velocity
1409	statusnote	
1409	cosignerformeremployertimefield	
1409	cosignerformeremployerphonefield	
1409	driverlicensestatefield	VA
1409	cosigneradditionalincomefield	
1409	cosignerssnfield	PFj0vMD9Ndf86yl5Ai3Zm3n67DXtyUe+1QVsNX2mB/8=
1409	titlefield	Marketing
1409	cosigneraddressyearstotalfield	5+ years
1409	emailfield	cson@teamvelocitymarketing.com
1409	codriverlicensefield	E55555556
1409	cosignerrentorownfield	Rent
1409	cosignerfirstnamefield	CoTeamV
1409	applicationtypefield	Co-Applicant?
1409	cosigneremployercityfield	Herndon
1409	_wpcf7_container_post	0
1409	citytfield	Herndon
1409	addressmonthstotalfield	11
1409	cosigneremploymentlengthyearsfield	5+ years
1409	ssnfield	nrDNhJUQWsDbwjjKEBTeylFkjWySR/c0exHFq6D6/Yc=
1409	privacypolicytext	I /WE HAVE READ AND UNDERSTAND THE DEALER’S POLICIES, TERMS, AND CONDITIONS. I / WE HEREBY CERTIFY THAT ALL OF THE INFORMATION ON THIS APPLICATION AND ALL STATEMENTS MADE HEREIN ARE TRUE AND CORRECT AND THAT I/WE AM/ARE THE PERSON(S) ON THE APPLICATION AND NOT A MISREPRESENTATION. THE INFORMATION IS SUBMITTED FOR THE PURPOSES OF OBTAINING CREDIT AND AUTHORIZES THE DEALER TO MAKE SUCH INQUIRIES AS ARE NECESSARY TO OBTAIN CREDIT INFORMATION AND AUTHORIZE MY BANK, SUPPLIERS, AND CREDIT REFERENCES TO RELEASE INFORMATION REGARDING MY ACCOUNT(S).
1409	cosignerformeremployerfield	
1409	cosignerpreviouscitytfield	
1409	cosignercitytfield	Herndon
1409	cosignerstreetfield	13825 Sunrise Valley Dr
1409	cosigneradditionalincomesourcefield	
1409	downpaymentfield	3000
1409	stockfield	HP527511A18
1409	_wpcf7	16209
1409	additionalincomefield	
1409	formeremployertimefield	
1409	employerfield	Team Velocity
1409	cosigneremploymerphonefield	5555555
1409	monthlypaymentfield	0
1409	cosignerstatefield	VA
1409	formeremployerstatefield	
1409	_wpcf7_unit_tag	wpcf7-f16209-o1
1409	previouscitytfield	
1409	cosignerdateofbirthfield	7qt+lT072N9U6UeYgNRWEFpr5MoeoU9LUvn1ZysxPEI=
1409	cosignerzipfield	20171
1409	cosignerformeremployercityfield	
1409	employmentyearsfield	10
1409	statefield	VA
1409	locationfield	5624 Airport Freeway
1409	vehiclefield	2018 Airstream Airstream GRAND TOUR
1409	formeremployerphonefield	
1409	employerstatefield	VA
1409	phonefield	5555555
1409	cosignerpreviouszipfield	
1409	cosignerformeremployerpositionfield	
1409	incomefield	0
1409	previouszipfield	20171
1409	formeremployerfield	
1409	cosignerpreviousstatefield	
1409	privacypolicyfield	Yes
1409	driverlicensefield	E55555555
1409	_wpcf7_locale	en_US
1409	_wpcf7_version	5.0.1
1409	relationshipfield	Twin Brother
1409	employercitytfield	Herndon
1409	cosignerformeremployerstatefield	
1409	lastnamefield	Test
1409	formeremployercityfield	
1409	firstnamefield	TeamV
1409	formeremployerpositionfield	
1409	previousstreetfield	
1409	additionalinformationfield	
1410	streetfield	13825 Sunrise Valley Dr
1410	datepicker	E4rUOGWREc/qugzgG8zOIhtJC5LlzqWGTlJK9DK27yI=
1410	addressyearstotalfield	1
1410	cosignerphonefield	555-5554
1410	employmentmonthstotalfield	3
1410	ccosignerlastnamefield	Test
1410	rentorownfield	Rent
1410	codriverlicensestatefield	VA
1410	employmentyearsfield	2
1410	cosigneremailfield	cson1@teamvelocitymarketing.com
1410	previousstatefield	VA
1410	cosignerpositionfield	Marketing
1410	cosigneremployerstatefield	VA
1410	workphonefield	555-5552
1410	cosignermonthlyincomefield	3
1410	zipfield	20171
1410	cosignermonthlypaymentfield	2000
1410	cosignerpreviousstreetfield	321 Apple Ct
1410	cosigneremployerfield	Team Velocity
1410	statusnote	
1410	cosignerformeremployertimefield	Less than 1 year
1410	cosignerformeremployerphonefield	5555555
1410	driverlicensestatefield	VA
1410	cosigneradditionalincomefield	4
1410	cosignerssnfield	W0PtjrXCCfnfue1VfCnsUe1c4k750n3olXdevPerOQs=
1410	titlefield	Marketing
1410	cosigneraddressyearstotalfield	Less than 1 year
1410	emailfield	cson@teamvelocitymarketing.com
1410	codriverlicensefield	E55555556
1410	cosignerrentorownfield	Own
1410	cosignerfirstnamefield	TeamVCo
1410	applicationtypefield	Co-Applicant?
1410	cosigneremployercityfield	Herndon
1410	_wpcf7_container_post	0
1410	citytfield	Herndon
1410	addressmonthstotalfield	2
1410	cosigneremploymentlengthyearsfield	Less than 1 year
1410	ssnfield	3CWSzZGQ1GjuKuMfpk0am2QSTBPD+KcZ+LU4oyn+vAY=
1413	codriverlicensefield	
1413	cosignerrentorownfield	
1413	workphonefield	
1413	formeremployerphonefield	
1413	citytfield	
1410	privacypolicytext	I /WE HAVE READ AND UNDERSTAND THE DEALER’S POLICIES, TERMS, AND CONDITIONS. I / WE HEREBY CERTIFY THAT ALL OF THE INFORMATION ON THIS APPLICATION AND ALL STATEMENTS MADE HEREIN ARE TRUE AND CORRECT AND THAT I/WE AM/ARE THE PERSON(S) ON THE APPLICATION AND NOT A MISREPRESENTATION. THE INFORMATION IS SUBMITTED FOR THE PURPOSES OF OBTAINING CREDIT AND AUTHORIZES THE DEALER TO MAKE SUCH INQUIRIES AS ARE NECESSARY TO OBTAIN CREDIT INFORMATION AND AUTHORIZE MY BANK, SUPPLIERS, AND CREDIT REFERENCES TO RELEASE INFORMATION REGARDING MY ACCOUNT(S).
1410	cosignerformeremployerfield	Acme Corp
1410	cosignerpreviouscitytfield	Herndon
1410	cosignercitytfield	Herndon
1410	cosignerstreetfield	123 Maple St
1410	cosigneradditionalincomesourcefield	5
1410	downpaymentfield	3000
1410	stockfield	A1234
1410	_wpcf7	850
1410	additionalincomefield	1
1410	formeremployertimefield	5 years
1410	employerfield	Acme Inc
1410	cosigneremploymerphonefield	5555555
1410	monthlypaymentfield	1000
1410	cosignerstatefield	VA
1410	formeremployerstatefield	VA
1410	_wpcf7_unit_tag	wpcf7-f850-o1
1410	previouscitytfield	Herndon
1410	cosignerdateofbirthfield	f4HiVKQGShHgN/RDcr2vS/b8QJQvv/j54TzJBnu673A=
1410	cosignerzipfield	20171
1410	cosignerformeremployercityfield	Herndon
1410	additionalincomesourcefield	2
1410	statefield	VA
1410	locationfield	Ellensburg
1410	vehiclefield	2018 Airstream Airstream GRAND TOUR
1410	formeremployerphonefield	555-5553
1410	employerstatefield	VA
1410	phonefield	555-5551
1410	cosignerpreviouszipfield	20171
1410	cosignerformeremployerpositionfield	Accounting
1410	incomefield	0
1410	previouszipfield	20171
1410	formeremployerfield	Team Velocity
1410	cosignerpreviousstatefield	VA
1410	privacypolicyfield	Yes
1410	driverlicensefield	E55555555
1410	_wpcf7_locale	en_US
1410	_wpcf7_version	5.0
1410	relationshipfield	Twin Brother
1410	employercitytfield	Herndon
1410	cosignerformeremployerstatefield	VA
1410	lastnamefield	Test
1410	formeremployercityfield	Herndon
1410	firstnamefield	TeamV
1410	formeremployerpositionfield	Sales
1410	previousstreetfield	13825 Sunrise Valley Dr
1410	additionalinformationfield	Testing2
1411	streetfield	13825 Sunrise Valley Dr
1411	cosigneradditionalincomesourcefield	
1411	addressyearstotalfield	5+ years
1411	cosignerphonefield	
1411	cosignerfirstnamefield	
1411	ccosignerlastnamefield	
1411	rentorownfield	Rent
1411	codriverlicensestatefield	
1411	employmentyearsfield	Less than 1 year
1411	cosigneremailfield	
1411	previousstatefield	
1411	cosignerpositionfield	
1411	cosigneremployerstatefield	
1411	cosignermonthlyincomefield	
1411	cosignermonthlypaymentfield	
1411	cosignerpreviousstreetfield	
1411	cosigneremployercityfield	
1411	cosigneremployerfield	
1411	statusnote	
1411	cosignerformeremployertimefield	
1411	cosignerformeremployerphonefield	
1411	driverlicensestatefield	VA
1411	cosigneradditionalincomefield	
1411	cosignerssnfield	13SDwf8Ac3bqaor9QNtSmxYF5rl1ZCKZaBFN9C/F4Z0=
1411	titlefield	Marketing
1411	cosigneraddressyearstotalfield	
1411	emailfield	cson1@teamvelocitymarketing.com
1411	codriverlicensefield	
1411	cosignerrentorownfield	Rent
1411	workphonefield	5555555
1411	formeremployerphonefield	666-6666
1411	employerfield	Team Velocity
1411	citytfield	Herndon
1411	cosigneremploymentlengthyearsfield	
1411	ssnfield	Weu8+gleS3+TvotBAMvZgX7Vr71nBI2lJIgtpk94ssA=
1411	cosignerformeremployerfield	
1411	cosignerpreviouscitytfield	
1411	cosignercitytfield	
1411	cosignerstreetfield	
1411	datepicker	3AU+A+wbLq7CgnAl+vyV+nLCjM2NIvuPsrDQRGp4xYk=
1411	downpaymentfield	3000
1411	stockfield	72930\t
1411	_wpcf7	850
1411	formeremployertimefield	1 year
1411	_wpcf7_container_post	0
1411	cosigneremploymerphonefield	
1411	monthlypaymentfield	1000
1411	additionalincomefield	
1411	cosignerstatefield	
1411	formeremployerstatefield	MD
1411	_wpcf7_unit_tag	wpcf7-f850-o1
1411	previouscitytfield	
1411	cosignerdateofbirthfield	CitEANJyY4/BMgGO2KECbeKr18Us9r0kk/rVm8SEKkM=
1411	cosignerzipfield	
1411	cosignerformeremployercityfield	
1411	additionalincomesourcefield	
1411	statefield	VA
1411	vehiclefield	2006 Porsche 911 Carrera 4S
1411	zipfield	20171
1411	employerstatefield	VA
1411	phonefield	5555555
1411	cosignerpreviouszipfield	
1411	cosignerformeremployerpositionfield	
1411	incomefield	0
1411	previouszipfield	
1411	formeremployerfield	Acme Inc
1411	cosignerpreviousstatefield	
1413	cosigneremploymentlengthyearsfield	
1413	ssnfield	s263URpadU1j0eWoDByWRjtxUDUfDcM8r2Es01ZIjjs=
1413	cosignerformeremployerfield	
1413	cosignerpreviouscitytfield	
1413	cosignercitytfield	
1411	privacypolicyfield	I /WE HAVE READ AND UNDERSTAND THE DEALER’S POLICIES, TERMS, AND CONDITIONS. I / WE HEREBY CERTIFY THAT ALL OF THE INFORMATION ON THIS APPLICATION AND ALL STATEMENTS MADE HEREIN ARE TRUE AND CORRECT AND THAT I/WE AM/ARE THE PERSON(S) ON THE APPLICATION AND NOT A MISREPRESENTATION. THE INFORMATION IS SUBMITTED FOR THE PURPOSES OF OBTAINING CREDIT AND AUTHORIZES THE DEALER TO MAKE SUCH INQUIRIES AS ARE NECESSARY TO OBTAIN CREDIT INFORMATION AND AUTHORIZE MY BANK, SUPPLIERS, AND CREDIT REFERENCES TO RELEASE INFORMATION REGARDING MY ACCOUNT(S).
1411	driverlicensefield	E55555555
1411	_wpcf7_locale	en_US
1411	_wpcf7_version	5.0.2
1411	employercitytfield	Herndon
1411	cosignerformeremployerstatefield	
1411	lastnamefield	Test
1411	formeremployercityfield	Rockville
1411	firstnamefield	TeamV
1411	formeremployerpositionfield	Sales
1411	previousstreetfield	
1411	additionalinformationfield	Test
1411	applicationtypefield	
1411	locationfield	
1412	streetfield	
1412	cosigneradditionalincomesourcefield	
1412	addressyearstotalfield	
1412	cosignerphonefield	
1412	cosignerfirstnamefield	
1412	ccosignerlastnamefield	
1412	rentorownfield	
1412	codriverlicensestatefield	
1412	additionalincomesourcefield	
1412	cosigneremailfield	
1412	previousstatefield	
1412	cosigneremployerstatefield	
1412	cosignermonthlyincomefield	
1412	cosignermonthlypaymentfield	
1412	cosignerpreviousstreetfield	
1412	cosigneremployercityfield	
1412	cosigneremployerfield	
1412	statusnote	
1412	cosignerformeremployertimefield	
1412	cosignerformeremployerphonefield	
1412	driverlicensestatefield	NJ
1412	cosigneradditionalincomefield	
1412	titlefield	
1412	cosigneraddressyearstotalfield	
1412	emailfield	gdfgdfgdfgdf@dsfds.com
1412	codriverlicensefield	
1412	cosignerrentorownfield	
1412	workphonefield	
1412	formeremployerphonefield	
1412	citytfield	
1412	cosigneremploymentlengthyearsfield	
1412	cosignerformeremployerfield	
1412	cosignerpreviouscitytfield	
1412	cosignercitytfield	
1412	cosignerstreetfield	
1412	stockfield	
1412	cosignerpositionfield	
1412	additionalincomefield	
1412	formeremployertimefield	
1412	employerfield	
1412	cosigneremploymerphonefield	
1412	monthlypaymentfield	
1412	cosignerstatefield	
1412	applicationtypefield	
1412	formeremployerstatefield	
1412	previouscitytfield	
1412	cosignerzipfield	
1412	cosignerformeremployercityfield	
1412	employmentyearsfield	
1412	statefield	
1412	previouszipfield	
1412	zipfield	
1412	employerstatefield	
1412	phonefield	6786787673
1412	cosignerpreviouszipfield	
1412	cosignerformeremployerpositionfield	
1412	incomefield	
1412	vehiclefield	
1412	formeremployerfield	
1412	cosignerpreviousstatefield	
1412	form-name	commentForm
1412	driverlicensefield	
1412	employercitytfield	
1412	cosignerformeremployerstatefield	
1412	lastnamefield	Borne
1412	formeremployercityfield	
1412	firstnamefield	Goldy
1412	formeremployerpositionfield	
1412	previousstreetfield	
1412	additionalinformationfield	
1412	privacypolicyfield	
1412	cosignerssnfield	qLfV11WzKoldHtF05WfsysstDtxwapNeWs238vT9iP4=
1412	ssnfield	KfRyIFMO+dstfemxwqKQl2PDQ6r7y1kPWrixpWNzNlo=
1412	datepicker	lP1vzo2sKIZDfTU+e3QfbB1r5PBtk0ftbiwAFQxm6PQ=
1412	cosignerdateofbirthfield	rsCEkzde1dthfHrYVflqRvC7OPfaRUzb32f50lyNJbw=
1412	locationfield	Ashland KY
1412	lead-id-field	1412
1413	streetfield	
1413	cosigneradditionalincomesourcefield	
1413	addressyearstotalfield	
1413	cosignerphonefield	
1413	cosignerfirstnamefield	
1413	ccosignerlastnamefield	
1413	rentorownfield	
1413	codriverlicensestatefield	
1413	additionalincomesourcefield	
1413	cosigneremailfield	
1413	previousstatefield	
1413	cosigneremployerstatefield	
1413	cosignermonthlyincomefield	
1413	cosignermonthlypaymentfield	
1413	cosignerpreviousstreetfield	
1413	cosigneremployercityfield	
1413	cosigneremployerfield	
1413	statusnote	
1413	cosignerformeremployertimefield	
1413	cosignerformeremployerphonefield	
1413	driverlicensestatefield	NJ
1413	cosigneradditionalincomefield	
1413	cosignerssnfield	IFa1K/WRurPB9Tk3vObEOHH2S9qC+wTdrLtxkOM5VpI=
1413	titlefield	
1413	cosigneraddressyearstotalfield	
1413	emailfield	gdfgdfgdfgdf@dsfds.com
1413	cosignerstreetfield	
1413	datepicker	hoOBQIMbbBADWZL1yfvaVeJQ+j/A5t0pKlRKMN6Zqvg=
1413	stockfield	
1413	cosignerpositionfield	
1413	additionalincomefield	
1413	formeremployertimefield	
1413	employerfield	
1413	cosigneremploymerphonefield	
1413	monthlypaymentfield	
1413	cosignerstatefield	
1413	applicationtypefield	
1413	formeremployerstatefield	
1413	previouscitytfield	
1413	cosignerdateofbirthfield	4tdwO2rDeGZ5OmVBLqWi2xL6fzaECeSoix1yz404EWI=
1413	cosignerzipfield	
1413	cosignerformeremployercityfield	
1413	employmentyearsfield	
1413	statefield	
1413	locationfield	Lexington KY
1413	previouszipfield	
1413	zipfield	
1413	employerstatefield	
1413	phonefield	6786787673
1413	cosignerpreviouszipfield	
1413	cosignerformeremployerpositionfield	
1413	incomefield	
1413	vehiclefield	
1413	lead-id-field	
1413	formeremployerfield	
1413	cosignerpreviousstatefield	
1413	form-name	commentForm
1413	driverlicensefield	
1413	employercitytfield	
1413	cosignerformeremployerstatefield	
1413	lastnamefield	fdsfsdfs
1413	formeremployercityfield	
1413	firstnamefield	dsrsdfsdf
1413	formeremployerpositionfield	
1413	previousstreetfield	
1413	additionalinformationfield	
1413	privacypolicyfield	
1414	cosigneradditionalincomesourcefield	
1414	cosignerphonefield	
1414	cosignerfirstnamefield	
1414	ccosignerlastnamefield	
1414	additionalincomesourcefield	
1414	cosigneremailfield	
1414	previousstatefield	
1414	cosigneremployerstatefield	
1414	cosignermonthlyincomefield	
1414	cosignermonthlypaymentfield	
1414	cosignerpreviousstreetfield	
1414	cosigneremployercityfield	
1414	cosigneremployerfield	
1414	statusnote	
1414	cosignerformeremployertimefield	
1414	cosignerformeremployerphonefield	
1414	driverlicensestatefield	NJ
1414	cosigneradditionalincomefield	
1414	cosigneraddressyearstotalfield	
1414	emailfield	gdfgdfgdfgdf@dsfds.com
1414	codriverlicensefield	
1414	cosignerrentorownfield	
1414	formeremployerphonefield	
1414	cosigneremploymentlengthyearsfield	
1414	cosignerformeremployerfield	
1414	cosignerpreviouscitytfield	
1414	cosignercitytfield	
1414	cosignerstreetfield	
1414	stockfield	
1414	cosignerpositionfield	
1414	additionalincomefield	
1414	formeremployertimefield	
1414	cosigneremploymerphonefield	
1414	cosignerstatefield	
1414	formeremployerstatefield	
1414	previouscitytfield	
1414	cosignerzipfield	
1414	cosignerformeremployercityfield	
1414	locationfield	
1414	previouszipfield	
1414	phonefield	6786787673
1414	cosignerpreviouszipfield	
1414	cosignerformeremployerpositionfield	
1414	incomefield	
1414	vehiclefield	
1414	formeremployerfield	
1414	cosignerpreviousstatefield	
1414	form-name	commentForm
1414	cosignerformeremployerstatefield	
1414	lastnamefield	Jones
1414	formeremployercityfield	
1414	firstnamefield	Bobby
1414	formeremployerpositionfield	
1414	previousstreetfield	
1414	additionalinformationfield	
1414	streetfield	123 Brick St
1414	addressyearstotalfield	5
1414	rentorownfield	Other
1414	codriverlicensestatefield	FL
1414	cosignerssnfield	FG5CSMLzFab8jHHMthMmwXVIobB2kxt3IlGZQYAslH8=
1414	titlefield	asdasd
1414	workphonefield	7732909650
1414	citytfield	London
1414	ssnfield	Y6nLggDIy64XmkVHt5/Ip/KZ0inVym1EN3aBzmNErao=
1414	datepicker	62qhmQV9rCWqz799OvB/rSK+bHuTvP6OE6XgRfOYs4o=
1414	employerfield	Hello Kitty
1414	monthlypaymentfield	10000
1414	applicationtypefield	Individual
1414	cosignerdateofbirthfield	K5x83Rva6WfBpdss7O3x/lLHZ+NtGe66RGbLn/HKn58=
1414	employmentyearsfield	5
1414	statefield	FL
1414	zipfield	90432
1414	employerstatefield	AK
1414	lead-id-field	1414
1414	privacypolicyfield	yes
1414	driverlicensefield	w3244rwer
1414	employercitytfield	Lexington
1415	cosigneradditionalincomesourcefield	
1415	cosignerphonefield	
1415	cosignerfirstnamefield	
1415	ccosignerlastnamefield	
1415	additionalincomesourcefield	
1415	cosigneremailfield	
1415	cosigneremployerstatefield	
1415	cosignermonthlyincomefield	
1415	cosignermonthlypaymentfield	
1415	cosignerpreviousstreetfield	
1415	cosigneremployercityfield	
1415	cosigneremployerfield	
1415	statusnote	
1415	cosignerformeremployertimefield	
1415	cosignerformeremployerphonefield	
1415	driverlicensestatefield	IL
1415	cosigneradditionalincomefield	
1415	cosigneraddressyearstotalfield	
1415	emailfield	hvermaak@asds.com
1415	codriverlicensefield	
1415	cosignerrentorownfield	
1415	formeremployerphonefield	
1415	cosigneremploymentlengthyearsfield	
1415	cosignerformeremployerfield	
1415	cosignerpreviouscitytfield	
1415	cosignercitytfield	
1415	cosignerstreetfield	
1415	stockfield	
1415	cosignerpositionfield	
1415	additionalincomefield	
1415	formeremployertimefield	
1415	cosigneremploymerphonefield	
1415	formeremployerstatefield	
1415	previouscitytfield	
1415	cosignerzipfield	
1415	cosignerformeremployercityfield	
1415	previouszipfield	
1415	phonefield	2343534636
1415	cosignerpreviouszipfield	
1415	cosignerformeremployerpositionfield	
1415	incomefield	
1415	vehiclefield	
1415	formeremployerfield	
1415	form-name	commentForm
1415	cosignerformeremployerstatefield	
1415	lastnamefield	Dalton
1415	formeremployercityfield	
1415	firstnamefield	Mike
1415	formeremployerpositionfield	
1415	previousstreetfield	
1415	additionalinformationfield	
1416	streetfield	14 Star Ave
1416	cosigneradditionalincomesourcefield	Investments
1416	addressyearstotalfield	0-1
1416	cosignerphonefield	8473123318
1415	locationfield	Ashland KY
1415	lead-id-field	1415
1415	streetfield	123 West
1415	addressyearstotalfield	5
1415	rentorownfield	Other
1415	codriverlicensestatefield	IL
1415	previousstatefield	FL
1415	cosignerssnfield	iFp6Iy5DNS7q/5olIANpawhCR9kAqGjxb0gvmx1IZGI=
1415	titlefield	asdasd
1415	workphonefield	2243423332
1415	citytfield	Misnter
1415	ssnfield	Ha1WMcDnwozJH32ggPBejqmLjJSg3vcpa6hbunCiAe8=
1415	datepicker	dQypeTd1uN0aWyWUdjr3eBnde4ZEinq+zatw7GguSN4=
1415	employerfield	Hello Kitty
1415	monthlypaymentfield	10000
1415	cosignerstatefield	FL
1415	applicationtypefield	Individual
1415	cosignerdateofbirthfield	VbIznaRVgQAk8XtomJyT0HpsgL/BScr9Lx5GTE0ob/M=
1415	employmentyearsfield	5
1415	statefield	IL
1415	zipfield	64532
1415	employerstatefield	FL
1415	cosignerpreviousstatefield	FL
1415	privacypolicyfield	yes
1415	driverlicensefield	dsfwerer
1415	employercitytfield	London
1416	cosignerfirstnamefield	Mary
1416	ccosignerlastnamefield	Hilton
1416	rentorownfield	Own
1416	codriverlicensestatefield	AL
1416	additionalincomesourcefield	Rental
1416	cosigneremailfield	support@buyercall.com
1416	previousstatefield	CO
1416	cosigneremployerstatefield	CA
1416	cosignermonthlyincomefield	4000
1416	cosignermonthlypaymentfield	2000
1416	cosignerpreviousstreetfield	565 Downtown St
1416	cosigneremployercityfield	Los Angeles
1416	statusnote	
1416	emailfield	admin@buyercall.com
1416	stockfield	00433
1416	locationfield	Barryville
1416	phonefield	7732909650
1416	vehiclefield	Shuttle Star 4
1416	lastnamefield	Hilton
1416	firstnamefield	Barry
1416	cosigneremployerfield	Shoprite
1416	cosignerformeremployertimefield	1-2
1416	cosignerformeremployerphonefield	4567774448
1416	driverlicensestatefield	FL
1416	cosigneradditionalincomefield	1000
1417	streetfield	123 Main St
1416	titlefield	Analyst Programmer
1416	cosigneraddressyearstotalfield	0-1
1416	codriverlicensefield	DL002134-WE
1416	cosignerrentorownfield	Lease
1416	workphonefield	7739994440
1416	formeremployerphonefield	4329994441
1416	citytfield	Boulder
1416	cosigneremploymentlengthyearsfield	0-1
1417	cosigneradditionalincomesourcefield	Investments
1416	cosignerformeremployerfield	Checkers
1416	cosignerpreviouscitytfield	Chicago
1416	cosignercitytfield	Salt Lake City
1416	cosignerstreetfield	14 Friend Lane
1417	addressyearstotalfield	0-1
1416	cosignerpositionfield	Cleaner
1416	additionalincomefield	3000
1416	formeremployertimefield	0-1
1416	employerfield	Birk & Mortor
1416	cosigneremploymerphonefield	5544449991
1416	monthlypaymentfield	4000
1416	cosignerstatefield	UT
1416	applicationtypefield	Joint
1416	formeremployerstatefield	NY
1416	previouscitytfield	Denver
1417	cosignerphonefield	7732909545
1416	cosignerzipfield	45002
1416	cosignerformeremployercityfield	Seattle
1416	employmentyearsfield	0-1
1416	statefield	CO
1416	previouszipfield	67000
1416	zipfield	75004
1416	employerstatefield	IL
1416	cosignerpreviouszipfield	60640
1416	cosignerformeremployerpositionfield	Cleaner
1416	incomefield	3500
1416	lead-id-field	1416
1416	formeremployerfield	State Farm
1416	cosignerpreviousstatefield	IL
1416	privacypolicyfield	yes
1416	driverlicensefield	SDF00323DF
1416	employercitytfield	Chicago
1416	cosignerformeremployerstatefield	WA
1416	formeremployercityfield	New York
1416	formeremployerpositionfield	Programmer
1416	previousstreetfield	34 Main St
1417	cosignerfirstnamefield	Donna
1416	additionalinformationfield	I want a finance rate of 5%. I don't want to be group with other sellers, I'm special.
1416	cosignerdateofbirthfield	u96vVcoZ4SxEmVwosx1pW9kbmTf6BYGjvH7rPre1ffVpzJzXMo6Qefq4+yqQW/GV9VyphHviuUjauQTanUVQzw==
1416	cosignerssnfield	I38wu35EqYvbTukPb6cXqi35uyi2RorF/Dx1VK0pkHZbNcYyU5dOvP1koOyKrkIThU7H0F9YyP/ETXGqllohLQ==
1416	datepicker	hPeUixI1jSP5W+NuyeJO6ZWa2DXwVlfeDTN64lgbZv0Ac/QWcOTGsgvNUmdcHQobpb6JlCwNechAYiyh25CLKg==
1416	ssnfield	8tnyvhOp8K3xVIjXJWBy5DswzSfG3NUsfMrZlIdUxT2NGRPNW309vPOfyi9OLe8EH20M4cIN5tbGaHQPiEBtVw==
1417	statusnote	
1417	emailfield	support@buyercall.com
1417	stockfield	A000345
1417	ccosignerlastnamefield	Miller
1417	rentorownfield	Rent
1417	codriverlicensestatefield	AR
1417	citytfield	Boston
1417	locationfield	Downtown Depo
1417	phonefield	7732909651
1417	vehiclefield	X-Track 4000
1417	lastnamefield	Schiller
1417	firstnamefield	Patrick
1417	additionalincomesourcefield	Rent
1417	cosigneremailfield	donna@buyercall.com
1417	previousstatefield	WA
1417	cosigneremployerstatefield	IL
1417	cosignermonthlyincomefield	4320
1417	cosignermonthlypaymentfield	3400
1417	cosignerpreviousstreetfield	10 Downtown Ave
1417	cosigneremployercityfield	Chicago
1417	cosigneremployerfield	Ford
1417	cosignerformeremployertimefield	3-4
1417	cosignerformeremployerphonefield	2249096543
1417	cosigneradditionalincomefield	1000
1417	cosignerssnfield	ewPgM04SVOUKUiy0483vimu/K8io0NZfOf84yfFmepM=
1417	titlefield	Accountant
1417	cosigneraddressyearstotalfield	0-1
1417	codriverlicensefield	DL0004342-R
1417	cosignerrentorownfield	Lease
1417	workphonefield	7732909650
1417	formeremployerphonefield	8479098432
1417	cosigneremploymentlengthyearsfield	0-1
1417	ssnfield	V3RHo+6cfkumDLZmTItzWCCzXytBJv9936scM5gkBSk=
1417	cosignerformeremployerfield	Kia
1417	cosignerpreviouscitytfield	Seattle 
1417	cosignercitytfield	Chicago
1417	cosignerstreetfield	123 A Boat Rd
1417	datepicker	r13xr+ExF3jd3NOkJXdy87yad9CmjC9tc9PJG57UoqI=
1417	cosignerpositionfield	Sales Person
1417	additionalincomefield	1000
1417	formeremployertimefield	0-1
1417	employerfield	Cadbury
1417	cosigneremploymerphonefield	8439095432
1417	monthlypaymentfield	4000
1417	cosignerstatefield	IL
1417	applicationtypefield	Joint
1417	formeremployerstatefield	WA
1417	previouscitytfield	Seattle
1417	cosignerdateofbirthfield	TuCBbtvUd4Q4fzatTJhLe2CHA4dpG9hHtPVMQPdveMM=
1417	cosignerzipfield	60640
1417	cosignerformeremployercityfield	Sales Person
1417	employmentyearsfield	0-1
1417	statefield	MA
1417	previouszipfield	98103
1417	zipfield	50432
1417	employerstatefield	IL
1417	cosignerpreviouszipfield	98108
1417	cosignerformeremployerpositionfield	Seattle
1417	incomefield	4000
1417	lead-id-field	1417
1417	formeremployerfield	Nestle
1417	cosignerpreviousstatefield	WA
1417	privacypolicyfield	yes
1417	driverlicensefield	DL0095423-W
1417	employercitytfield	Chicago
1417	cosignerformeremployerstatefield	WA
1417	formeremployercityfield	Seattle
1417	formeremployerpositionfield	Accountant
1417	previousstreetfield	34 Tree Ave
1417	additionalinformationfield	I would like a rate of 5% if possible
1418	streetfield	123 Main Road
1417	driverlicensestatefield	WA
1418	statusnote	
1418	emailfield	susicoho@mailinator.net
1418	stockfield	005423
1418	cosigneradditionalincomesourcefield	Rent
1418	addressyearstotalfield	1-2
1418	cosignerphonefield	7859383316
1418	cosignerfirstnamefield	Ulysses
1418	ccosignerlastnamefield	Ramsey
1418	rentorownfield	Other
1418	codriverlicensestatefield	NH
1418	additionalincomesourcefield	Investments
1418	cosigneremailfield	qagasoto@mailinator.net
1418	previousstatefield	IL
1418	cosigneremployerstatefield	IL
1418	cosignermonthlyincomefield	4000
1418	cosignermonthlypaymentfield	6000
1418	cosignerpreviousstreetfield	Blue Horizon 34
1418	cosigneremployercityfield	Chicago
1418	cosigneremployerfield	Apple
1418	cosignerformeremployertimefield	0-1
1418	locationfield	Dallas Downtown
1418	phonefield	+19668343680
1418	vehiclefield	Xplorer Freedom 4
1418	lastnamefield	Ross
1418	firstnamefield	Simone
1418	cosignerformeremployerphonefield	7732909650
1418	cosigneradditionalincomefield	100
1418	cosignerssnfield	tkSAuWjI10LVehCIPxeRZCpNUvy4OJbNseXekAkirfE=
1418	titlefield	Chocolate Manager
1418	cosigneraddressyearstotalfield	0-1
1418	codriverlicensefield	DF00234FG
1418	cosignerrentorownfield	Own
1418	workphonefield	898-9979187
1418	formeremployerphonefield	3123445543
1418	citytfield	Seattle
1418	cosigneremploymentlengthyearsfield	1-2
1418	ssnfield	GXIqgnrZtUHZdFsLLTTJJXT3nbYj86OCyV3I4ZMD61A=
1418	cosignerformeremployerfield	Mars
1418	cosignerpreviouscitytfield	Chicago
1418	cosignercitytfield	Seattle
1418	cosignerstreetfield	34 Strand Road
1418	datepicker	+AKEo63foRxCA4nxWNnLsKsdVvMEAiDyz0JluCAJPvA=
1418	cosignerpositionfield	Sales
1418	additionalincomefield	1000
1418	formeremployertimefield	0-1
1418	employerfield	Cadbury
1418	cosigneremploymerphonefield	3123282440
1418	monthlypaymentfield	3
1418	cosignerstatefield	WA
1418	applicationtypefield	Joint
1418	formeremployerstatefield	IL
1418	previouscitytfield	Chicago
1418	cosignerdateofbirthfield	Vh7LTWQGRX0nBM5wYWnwusYy0lsoQPGdP25KwcDVUEQ=
1418	cosignerzipfield	98107
1418	cosignerformeremployercityfield	Seattle
1418	employmentyearsfield	1-2
1418	statefield	WA
1418	previouszipfield	60613
1418	zipfield	94549
1418	employerstatefield	NY
1418	cosignerpreviouszipfield	60613
1418	cosignerformeremployerpositionfield	Sales
1418	incomefield	5000
1418	lead-id-field	1418
1418	formeremployerfield	Nestle
1418	cosignerpreviousstatefield	IL
1418	privacypolicyfield	yes
1418	driverlicensefield	DF000432112
1418	employercitytfield	New York
1418	cosignerformeremployerstatefield	WA
1418	formeremployercityfield	Chicago
1418	formeremployerpositionfield	60640
1418	previousstreetfield	Blue Horizon 43
1418	additionalinformationfield	Sed molestias quos qui excepturi pariatur Debitis ut pariatur Cumque occaecat occaecat eiusmod dolor
1418	driverlicensestatefield	WA
1419	streetfield	
1419	cosigneradditionalincomesourcefield	
1419	addressyearstotalfield	
1419	cosignerphonefield	
1419	cosignerfirstnamefield	
1419	ccosignerlastnamefield	
1419	rentorownfield	
1419	codriverlicensestatefield	
1419	additionalincomesourcefield	
1419	cosigneremailfield	
1419	previousstatefield	
1419	cosigneremployerstatefield	
1419	cosignermonthlyincomefield	
1419	cosignermonthlypaymentfield	
1419	cosignerpreviousstreetfield	
1419	cosigneremployercityfield	
1419	cosigneremployerfield	
1419	statusnote	
1419	cosignerformeremployertimefield	
1419	cosignerformeremployerphonefield	
1419	driverlicensestatefield	WA
1419	cosigneradditionalincomefield	
1419	cosignerssnfield	qniIG2V9sbLrrx12imetUyGlFvB1ijnMJKUmKVB3m+A=
1419	titlefield	
1419	cosigneraddressyearstotalfield	
1419	emailfield	hv13@hotmail.com
1419	codriverlicensefield	
1419	cosignerrentorownfield	
1419	workphonefield	
1419	formeremployerphonefield	
1419	citytfield	
1419	cosigneremploymentlengthyearsfield	
1419	ssnfield	oNdvRaXEU+E/HtnAEpFx/yzw5mvt65kiM5rMaYMG82Y=
1419	cosignerformeremployerfield	
1419	cosignerpreviouscitytfield	
1419	cosignercitytfield	
1419	cosignerstreetfield	
1419	datepicker	EbyTCyx0tZ7yMBSxebhnx6YGawr8k7I1UzoRsexpUiQ=
1419	stockfield	
1419	cosignerpositionfield	
1419	additionalincomefield	
1419	formeremployertimefield	
1419	employerfield	
1419	cosigneremploymerphonefield	
1419	monthlypaymentfield	
1419	cosignerstatefield	
1419	applicationtypefield	
1419	formeremployerstatefield	
1419	previouscitytfield	
1419	cosignerdateofbirthfield	kh/NWBBvAm4fCbVQZysdS3LCT1vkI+U8fgSCpXzJ+uU=
1419	cosignerzipfield	
1419	cosignerformeremployercityfield	
1419	employmentyearsfield	
1419	statefield	
1419	locationfield	
1419	previouszipfield	
1419	zipfield	
1419	employerstatefield	
1419	phonefield	7742320094
1419	cosignerpreviouszipfield	
1419	cosignerformeremployerpositionfield	
1419	incomefield	
1419	vehiclefield	
1419	lead-id-field	
1419	formeremployerfield	
1419	cosignerpreviousstatefield	
1419	driverlicensefield	
1419	employercitytfield	
1419	cosignerformeremployerstatefield	
1419	lastnamefield	Jones
1419	formeremployercityfield	
1419	firstnamefield	Johan
1419	formeremployerpositionfield	
1419	previousstreetfield	
1419	additionalinformationfield	
1419	privacypolicyfield	
1420	streetfield	
1420	cosigneradditionalincomesourcefield	
1420	addressyearstotalfield	
1420	cosignerphonefield	
1420	cosignerfirstnamefield	
1420	ccosignerlastnamefield	
1420	rentorownfield	
1420	codriverlicensestatefield	
1420	additionalincomesourcefield	
1420	cosigneremailfield	
1420	previousstatefield	
1420	cosigneremployerstatefield	
1420	cosignermonthlyincomefield	
1420	cosignermonthlypaymentfield	
1420	cosignerpreviousstreetfield	
1420	cosigneremployercityfield	
1420	cosigneremployerfield	
1420	statusnote	
1420	cosignerformeremployertimefield	
1420	cosignerformeremployerphonefield	
1420	driverlicensestatefield	
1420	cosigneradditionalincomefield	
1420	cosignerssnfield	LxCd/2V5EMMTzy9p0pNvqAN1PCMqCzNxcKlgz6Yk0gI=
1420	titlefield	
1420	cosigneraddressyearstotalfield	
1420	emailfield	tom@buyercall.com
1420	codriverlicensefield	
1420	cosignerrentorownfield	
1420	workphonefield	
1420	formeremployerphonefield	
1420	citytfield	
1420	cosigneremploymentlengthyearsfield	
1420	ssnfield	RRF02gjAj4gm119g+I15YPT6E6f99ojDrP/irTe0JSI=
1420	cosignerformeremployerfield	
1420	cosignerpreviouscitytfield	
1420	cosignercitytfield	
1420	cosignerstreetfield	
1420	datepicker	ygV3E7VdsGcwMSx/sNunjreP6DHW22a9PLja9tIeliI=
1420	stockfield	0034
1420	cosignerpositionfield	
1420	additionalincomefield	
1420	formeremployertimefield	
1420	employerfield	
1420	cosigneremploymerphonefield	
1420	monthlypaymentfield	
1420	cosignerstatefield	
1420	applicationtypefield	
1420	formeremployerstatefield	
1420	previouscitytfield	
1420	cosignerdateofbirthfield	BcgL/pR/+UnfylNk9lUfxnPF+sbhFdpdbuXV847m1cM=
1420	cosignerzipfield	
1420	cosignerformeremployercityfield	
1420	employmentyearsfield	
1420	statefield	
1420	locationfield	Bellington
1420	previouszipfield	
1420	zipfield	
1420	employerstatefield	
1420	phonefield	7734094321
1420	cosignerpreviouszipfield	
1420	cosignerformeremployerpositionfield	
1420	incomefield	
1420	vehiclefield	Toyota
1420	lead-id-field	
1420	formeremployerfield	
1420	cosignerpreviousstatefield	
1420	driverlicensefield	
1420	employercitytfield	
1420	cosignerformeremployerstatefield	
1420	lastnamefield	Tom
1420	formeremployercityfield	
1420	firstnamefield	Ben
1420	formeremployerpositionfield	
1420	previousstreetfield	
1420	additionalinformationfield	
1420	privacypolicyfield	
1421	emailfield	test@buyercall.com
1421	lastnamefield	Rob
1421	phonefield	7743432211
1421	firstnamefield	Bob
1421	additionalincomefield	
1421	additionalincomesourcefield	
1421	additionalinformationfield	
1421	addressyearstotalfield	
1421	applicationtypefield	
1421	ccosignerlastnamefield	
1421	citytfield	
1421	codriverlicensefield	
1421	codriverlicensestatefield	
1421	cosigneradditionalincomefield	
1421	cosigneradditionalincomesourcefield	
1421	cosigneraddressyearstotalfield	
1421	cosignercitytfield	
1421	cosignerdateofbirthfield	
1421	cosigneremailfield	
1421	cosigneremployercityfield	
1421	cosigneremployerfield	
1421	cosigneremployerstatefield	
1421	cosigneremploymentlengthyearsfield	
1421	cosigneremploymerphonefield	
1421	cosignerfirstnamefield	
1421	cosignerformeremployercityfield	
1421	cosignerformeremployerfield	
1421	cosignerformeremployerphonefield	
1421	cosignerformeremployerpositionfield	
1421	cosignerformeremployerstatefield	
1421	cosignerformeremployertimefield	
1421	cosignermonthlyincomefield	
1421	cosignermonthlypaymentfield	
1421	cosignerphonefield	
1421	cosignerpositionfield	
1421	cosignerpreviouscitytfield	
1421	cosignerpreviousstatefield	
1421	cosignerpreviousstreetfield	
1421	cosignerpreviouszipfield	
1421	cosignerrentorownfield	
1421	cosignerssnfield	
1421	cosignerstatefield	
1421	cosignerstreetfield	
1421	cosignerzipfield	
1421	driverlicensefield	
1421	driverlicensestatefield	
1421	employercitytfield	
1421	employerfield	
1421	employerstatefield	
1421	employmentyearsfield	
1421	formeremployercityfield	
1421	formeremployerfield	
1421	formeremployerphonefield	
1421	formeremployerpositionfield	
1421	formeremployerstatefield	
1421	formeremployertimefield	
1421	locationfield	
1421	monthlypaymentfield	
1421	previouscitytfield	
1421	previousstatefield	
1421	previousstreetfield	
1421	previouszipfield	
1421	rentorownfield	
1421	ssnfield	
1421	statusnote	
1421	stockfield	
1421	titlefield	
1421	vehiclefield	
1421	workphonefield	
1421	datepicker	MLD0t5ZNWnb0N3y1y0Rw24H/V42qbQmEc7cHfI0oAzg=
1421	streetfield	19 W 24th St
1421	incomefield	30000
1421	statefield	NY
1421	lead-id-field	1421
1421	privacypolicyfield	yes
1421	cumemberfield	fRxdwea8LUZb1zp/ndjMTd/NmveRCafd1Nn/7Vpn7Bs=
1421	cityfield	New York
1421	zipfield	10010-3203
1421	repfield	I'm not sure
1422	datepicker	CnGLeo85tky2QkDs2aXI62CFk1VVMAXAsYpv43UxWP4=
1422	cumemberfield	cT3oUw8P5hHrv+8o7GMudm0ukiuborXXNN/FZxvhDuw=
1422	incomefield	
1422	emailfield	test@buyercall.com
1422	statefield	
1422	lead-id-field	
1422	lastnamefield	Jones
1422	cityfield	
1422	zipfield	
1422	streetfield	
1422	phonefield	7732898543
1422	firstnamefield	Mike
1422	repfield	
1422	additionalincomefield	
1422	additionalincomesourcefield	
1422	additionalinformationfield	
1422	addressyearstotalfield	
1422	applicationtypefield	
1422	ccosignerlastnamefield	
1422	citytfield	
1422	codriverlicensefield	
1422	codriverlicensestatefield	
1422	cosigneradditionalincomefield	
1422	cosigneradditionalincomesourcefield	
1422	cosigneraddressyearstotalfield	
1422	cosignercitytfield	
1422	cosignerdateofbirthfield	
1422	cosigneremailfield	
1422	cosigneremployercityfield	
1422	cosigneremployerfield	
1422	cosigneremployerstatefield	
1422	cosigneremploymentlengthyearsfield	
1422	cosigneremploymerphonefield	
1422	cosignerfirstnamefield	
1422	cosignerformeremployercityfield	
1422	cosignerformeremployerfield	
1422	cosignerformeremployerphonefield	
1422	cosignerformeremployerpositionfield	
1422	cosignerformeremployerstatefield	
1422	cosignerformeremployertimefield	
1422	cosignermonthlyincomefield	
1422	cosignermonthlypaymentfield	
1422	cosignerphonefield	
1422	cosignerpositionfield	
1422	cosignerpreviouscitytfield	
1422	cosignerpreviousstatefield	
1422	cosignerpreviousstreetfield	
1422	cosignerpreviouszipfield	
1422	cosignerrentorownfield	
1422	cosignerssnfield	
1422	cosignerstatefield	
1422	cosignerstreetfield	
1422	cosignerzipfield	
1422	driverlicensefield	
1422	driverlicensestatefield	
1422	employercitytfield	
1422	employerfield	
1422	employerstatefield	
1422	employmentyearsfield	
1422	formeremployercityfield	
1422	formeremployerfield	
1422	formeremployerphonefield	
1422	formeremployerpositionfield	
1422	formeremployerstatefield	
1422	formeremployertimefield	
1422	locationfield	
1422	monthlypaymentfield	
1422	previouscitytfield	
1422	previousstatefield	
1422	previousstreetfield	
1422	previouszipfield	
1422	privacypolicyfield	
1422	rentorownfield	
1422	ssnfield	
1422	statusnote	
1422	stockfield	
1422	titlefield	
1422	vehiclefield	
1422	workphonefield	
1423	cosigneradditionalincomesourcefield	
1423	cosignerphonefield	
1423	cosignerfirstnamefield	
1423	ccosignerlastnamefield	
1423	codriverlicensestatefield	
1423	cosigneremailfield	
1423	previousstatefield	
1423	cosigneremployerstatefield	
1423	cosignermonthlyincomefield	
1423	cosignermonthlypaymentfield	
1423	cosignerpreviousstreetfield	
1423	cosigneremployercityfield	
1423	cosigneremployerfield	
1423	statusnote	
1423	cosignerformeremployertimefield	
1423	cosignerformeremployerphonefield	
1423	cosigneradditionalincomefield	
1423	cosigneraddressyearstotalfield	
1423	emailfield	mikew@buyercall.com
1423	codriverlicensefield	
1423	cosignerrentorownfield	
1423	formeremployerphonefield	
1423	cosigneremploymentlengthyearsfield	
1423	cosignerformeremployerfield	
1423	cosignerpreviouscitytfield	
1423	cosignercitytfield	
1423	cosignerstreetfield	
1423	stockfield	00400323
1423	cosignerpositionfield	
1423	formeremployertimefield	
1423	cosigneremploymerphonefield	
1423	cosignerstatefield	
1423	formeremployerstatefield	
1423	previouscitytfield	
1423	cosignerzipfield	
1423	cosignerformeremployercityfield	
1423	locationfield	Lexington VA
1423	previouszipfield	
1423	phonefield	8083443412
1423	cosignerpreviouszipfield	
1423	cosignerformeremployerpositionfield	
1423	vehiclefield	Toyota RV
1423	formeremployerfield	
1423	cosignerpreviousstatefield	
1423	cosignerformeremployerstatefield	
1423	lastnamefield	Williams
1423	formeremployercityfield	
1423	firstnamefield	Barry
1423	formeremployerpositionfield	
1423	previousstreetfield	
1423	streetfield	151 Sterling Lake Dr
1423	addressyearstotalfield	5
1423	rentorownfield	Rent
1423	additionalincomesourcefield	Investment
1423	driverlicensestatefield	FL
1423	cosignerssnfield	iBt3S0QAXFtsD87lncc9KJzvYCaGX+cF9ZJa9PXSH2M=
1423	titlefield	Supervisor
1423	workphonefield	8032223421
1423	citytfield	Lexington
1423	ssnfield	Ax+NY95BJ4/VwNdtBWKPpHLu0OxeDyRdn2YyYLYFXX0=
1423	datepicker	cHaW3eQGCwXPDUIrV+waf0xl/LGXnrHv83NIofQotXM=
1423	additionalincomefield	1000
1423	employerfield	Mann Trucks
1423	monthlypaymentfield	1000
1423	applicationtypefield	Individual
1423	cosignerdateofbirthfield	NCw5N/oc448MuTT8OBd8cKvVTTUtt7xpQ/cGqvDui/U=
1423	employmentyearsfield	5
1423	statefield	AL
1423	zipfield	29072
1423	employerstatefield	AK
1423	incomefield	3000
1423	lead-id-field	1423
1423	privacypolicyfield	yes
1423	driverlicensefield	DL0002344WL
1423	employercitytfield	Lexington
1423	additionalinformationfield	This is a test to see how it goes.
1424	cosigneradditionalincomesourcefield	
1424	cosignerphonefield	
1424	cosignerfirstnamefield	
1424	ccosignerlastnamefield	
1424	cosigneremailfield	
1424	cosigneremployerstatefield	
1424	cosignermonthlyincomefield	
1424	cosignermonthlypaymentfield	
1424	cosignerpreviousstreetfield	
1424	cosigneremployercityfield	
1424	cosigneremployerfield	
1424	statusnote	
1424	cosignerformeremployertimefield	
1424	cosignerformeremployerphonefield	
1424	driverlicensestatefield	WA
1424	cosigneradditionalincomefield	
1424	cosigneraddressyearstotalfield	
1424	streetfield	151 Sterling Lake Dr
1424	addressyearstotalfield	5
1424	rentorownfield	Other
1424	codriverlicensestatefield	WA
1424	additionalincomesourcefield	Investment
1424	previousstatefield	WA
1424	cosignerssnfield	C81Nhq2hGAahwgAt80ZngNx/DbKwceSrmUj/7lEz7Cg=
1424	titlefield	Analyst Programmer
1424	emailfield	hv13@hotmail.com
1424	codriverlicensefield	
1424	cosignerrentorownfield	
1424	formeremployerphonefield	
1424	cosigneremploymentlengthyearsfield	
1424	cosignerformeremployerfield	
1424	cosignerpreviouscitytfield	
1424	cosignercitytfield	
1424	cosignerstreetfield	
1424	stockfield	
1424	cosignerpositionfield	
1424	formeremployertimefield	
1424	cosigneremploymerphonefield	
1424	formeremployerstatefield	
1424	previouscitytfield	
1424	cosignerzipfield	
1424	cosignerformeremployercityfield	
1424	locationfield	
1424	previouszipfield	
1424	phonefield	7732909650
1424	cosignerpreviouszipfield	
1424	cosignerformeremployerpositionfield	
1424	vehiclefield	
1424	formeremployerfield	
1424	cosignerformeremployerstatefield	
1424	lastnamefield	Lock
1424	formeremployercityfield	
1424	firstnamefield	Cody
1424	formeremployerpositionfield	
1424	previousstreetfield	
1424	additionalinformationfield	
1424	workphonefield	7732909650
1424	citytfield	Lexington
1424	ssnfield	GQmoAgQCzDgKuO+4Uh2kVkaNKHLd/+xsZnFFXkWeV3w=
1424	datepicker	YeFUwEiUZuGOJrvRDCCPgf/v5iBvgz48VSfzfLrFQIQ=
1424	additionalincomefield	1000
1424	employerfield	Cadbudy
1424	monthlypaymentfield	555
1424	cosignerstatefield	WA
1424	applicationtypefield	Individual
1424	cosignerdateofbirthfield	uP6s9N1kTJlVxZG+cZk+TtqRUWNbwvB+GJy2HVW9+tc=
1424	employmentyearsfield	5
1424	statefield	AZ
1424	zipfield	29072
1424	employerstatefield	AZ
1424	incomefield	30000
1424	lead-id-field	1424
1424	cosignerpreviousstatefield	WA
1424	privacypolicyfield	yes
1424	driverlicensefield	fgdgdfg534534534
1424	employercitytfield	Lexington
1425	cosigneradditionalincomesourcefield	
1425	cosignerphonefield	
1425	cosignerfirstnamefield	
1425	ccosignerlastnamefield	
1425	cosigneremailfield	
1425	cosigneremployerstatefield	
1425	cosignermonthlyincomefield	
1425	cosignermonthlypaymentfield	
1425	cosignerpreviousstreetfield	
1425	cosigneremployercityfield	
1425	cosigneremployerfield	
1425	statusnote	
1425	cosignerformeremployertimefield	
1425	cosignerformeremployerphonefield	
1425	driverlicensestatefield	WA
1425	cosigneradditionalincomefield	
1425	cosigneraddressyearstotalfield	
1425	emailfield	hv13@hotmail.com
1425	codriverlicensefield	
1425	cosignerrentorownfield	
1425	formeremployerphonefield	
1425	cosigneremploymentlengthyearsfield	
1425	cosignerformeremployerfield	
1425	cosignerpreviouscitytfield	
1425	cosignercitytfield	
1425	cosignerstreetfield	
1425	stockfield	
1425	cosignerpositionfield	
1425	formeremployertimefield	
1425	cosigneremploymerphonefield	
1425	formeremployerstatefield	
1425	previouscitytfield	
1425	cosignerzipfield	
1425	cosignerformeremployercityfield	
1425	locationfield	
1425	previouszipfield	
1425	phonefield	7732909650
1425	cosignerpreviouszipfield	
1425	cosignerformeremployerpositionfield	
1425	streetfield	151 Sterling Lake Dr
1425	addressyearstotalfield	5
1425	rentorownfield	Other
1425	codriverlicensestatefield	WA
1425	additionalincomesourcefield	Investment
1425	previousstatefield	WA
1425	cosignerssnfield	ihkpC3C9p0P2G5IfDWezbCazf/WeSTm51GVHgpoHdt8=
1425	titlefield	Accountant
1425	workphonefield	7732909650
1425	citytfield	Lexington
1425	ssnfield	sjgalw84rh6lhH5ZePHJ2tLIm9NCmPAKJlzgtC3eHQs=
1425	datepicker	GVRuYL//veJ/ZEkY4JSzMWJEiX2KVwci2ovVlCCHQks=
1425	additionalincomefield	3000
1425	employerfield	Mann Trucks
1425	monthlypaymentfield	44343
1425	cosignerstatefield	WA
1425	employmentyearsfield	5
1425	vehiclefield	
1425	formeremployerfield	
1425	cosignerformeremployerstatefield	
1425	lastnamefield	toller
1425	formeremployercityfield	
1425	firstnamefield	Sally
1425	formeremployerpositionfield	
1425	previousstreetfield	
1425	additionalinformationfield	
1425	applicationtypefield	Individual
1425	cosignerdateofbirthfield	1H9pGll7aF+aRCMuvbk8J7pdIAbsLFXg1aMWHwDGOUA=
1425	statefield	AR
1425	zipfield	29072
1425	employerstatefield	WA
1425	incomefield	30000
1425	lead-id-field	1425
1425	cosignerpreviousstatefield	WA
1425	privacypolicyfield	yes
1425	driverlicensefield	fsdfs32343dsfsdf
1425	employercitytfield	Lexington
1426	cosigneradditionalincomesourcefield	
1426	cosignerphonefield	
1426	cosignerfirstnamefield	
1426	ccosignerlastnamefield	
1426	cosigneremailfield	
1426	cosigneremployerstatefield	
1426	cosignermonthlyincomefield	
1426	cosignermonthlypaymentfield	
1426	cosignerpreviousstreetfield	
1426	cosigneremployercityfield	
1426	cosigneremployerfield	
1426	statusnote	
1426	cosignerformeremployertimefield	
1426	cosignerformeremployerphonefield	
1426	driverlicensestatefield	WA
1426	cosigneradditionalincomefield	
1426	cosigneraddressyearstotalfield	
1426	emailfield	hv13@hotmail.com
1426	codriverlicensefield	
1426	cosignerrentorownfield	
1426	formeremployerphonefield	
1426	cosigneremploymentlengthyearsfield	
1426	cosignerformeremployerfield	
1426	cosignerpreviouscitytfield	
1426	cosignercitytfield	
1426	cosignerstreetfield	
1426	stockfield	
1426	cosignerpositionfield	
1426	formeremployertimefield	
1426	cosigneremploymerphonefield	
1426	formeremployerstatefield	
1426	previouscitytfield	
1426	cosignerzipfield	
1426	cosignerformeremployercityfield	
1426	locationfield	
1426	previouszipfield	
1426	phonefield	7732909650
1426	cosignerpreviouszipfield	
1426	cosignerformeremployerpositionfield	
1426	vehiclefield	
1426	formeremployerfield	
1426	cosignerformeremployerstatefield	
1426	lastnamefield	Vermaak
1426	formeremployercityfield	
1426	firstnamefield	Harry
1426	formeremployerpositionfield	
1426	previousstreetfield	
1426	additionalinformationfield	
1426	streetfield	151 Sterling Lake Dr
1426	addressyearstotalfield	5
1426	rentorownfield	Other
1426	codriverlicensestatefield	WA
1426	additionalincomesourcefield	Investment
1426	previousstatefield	WA
1426	cosignerssnfield	4FnrTKnuc1IMIujGpYwqZm492nS74My+HhdfQOYyI8s=
1426	titlefield	Analyst Programmer
1426	workphonefield	7732909650
1426	citytfield	Lexington
1426	ssnfield	7MPqhhRrbg5X8o2mgbCUJbxSLwe0LVlpETEUU9qAOmg=
1426	datepicker	51Zg8DU2+GxxuLipRkRUQ47mTIDwlnYtWzlXrW/zcv4=
1426	additionalincomefield	3000
1426	employerfield	Mann Trucks
1426	monthlypaymentfield	40000
1426	cosignerstatefield	WA
1426	applicationtypefield	Individual
1426	cosignerdateofbirthfield	TXxVDbBo/G414N9D3WgDOXoSwJlSsW/YvM5rH8mID1I=
1426	employmentyearsfield	5
1426	statefield	AR
1426	zipfield	29072
1426	employerstatefield	AR
1426	incomefield	30000
1426	lead-id-field	1426
1426	cosignerpreviousstatefield	WA
1426	privacypolicyfield	yes
1426	driverlicensefield	sdfsdf324234wer
1426	employercitytfield	Lexington
1427	cosigneradditionalincomesourcefield	
1427	cosignerphonefield	
1427	cosignerfirstnamefield	
1427	ccosignerlastnamefield	
1427	cosigneremailfield	
1427	cosigneremployerstatefield	
1427	cosignermonthlyincomefield	
1427	cosignermonthlypaymentfield	
1427	cosignerpreviousstreetfield	
1427	cosigneremployercityfield	
1427	cosigneremployerfield	
1427	statusnote	
1427	cosignerformeremployertimefield	
1427	cosignerformeremployerphonefield	
1427	driverlicensestatefield	WA
1427	cosigneradditionalincomefield	
1427	cosigneraddressyearstotalfield	
1427	emailfield	hv13@hotmail.com
1427	codriverlicensefield	
1427	cosignerrentorownfield	
1427	formeremployerphonefield	
1427	cosigneremploymentlengthyearsfield	
1427	cosignerformeremployerfield	
1427	cosignerpreviouscitytfield	
1427	cosignercitytfield	
1427	cosignerstreetfield	
1427	stockfield	
1427	cosignerpositionfield	
1427	formeremployertimefield	
1427	cosigneremploymerphonefield	
1427	formeremployerstatefield	
1427	previouscitytfield	
1427	cosignerzipfield	
1427	cosignerformeremployercityfield	
1427	locationfield	
1427	previouszipfield	
1427	phonefield	7732909650
1427	cosignerpreviouszipfield	
1427	cosignerformeremployerpositionfield	
1427	vehiclefield	
1427	formeremployerfield	
1427	cosignerformeremployerstatefield	
1427	lastnamefield	Ferrel
1427	formeremployercityfield	
1427	firstnamefield	Cody
1427	formeremployerpositionfield	
1427	previousstreetfield	
1427	additionalinformationfield	
1427	streetfield	151 Sterling Lake Dr
1427	addressyearstotalfield	5
1427	rentorownfield	Other
1427	codriverlicensestatefield	WA
1427	additionalincomesourcefield	Investment
1427	previousstatefield	WA
1427	cosignerssnfield	LBSdDUdvSgypMZpDbwIPFNH4rpRmjtV5Qvc43tfCEEE=
1427	titlefield	Analyst Programmer
1427	workphonefield	7732909650
1427	citytfield	Lexington
1427	ssnfield	Eedei2SaZyMhl97IKUP9ecxtODIHmJt8HLK5WqglJLk=
1427	datepicker	xqjTA34eh7zC3jscd+HtNKoksgvb57v/PL4yNvq2kyE=
1427	additionalincomefield	3000
1427	employerfield	Mann Trucks
1427	monthlypaymentfield	1000
1427	cosignerstatefield	WA
1427	applicationtypefield	Individual
1427	cosignerdateofbirthfield	EjMXc3qx0ZXQox2Ri7be6NG20fTSarPpdq8yuyMbpLA=
1427	employmentyearsfield	5
1427	statefield	CA
1427	zipfield	29072
1427	employerstatefield	CA
1427	incomefield	5000
1427	lead-id-field	1427
1427	cosignerpreviousstatefield	WA
1427	privacypolicyfield	yes
1427	driverlicensefield	DFL00003244WS
1427	employercitytfield	Lexington
1428	streetfield	
1428	cosigneradditionalincomesourcefield	
1428	addressyearstotalfield	
1428	cosignerphonefield	
1428	cosignerfirstnamefield	
1428	ccosignerlastnamefield	
1428	rentorownfield	
1428	codriverlicensestatefield	
1428	additionalincomesourcefield	
1428	cosigneremailfield	
1428	previousstatefield	
1428	cosigneremployerstatefield	
1428	cosignermonthlyincomefield	
1428	cosignermonthlypaymentfield	
1428	cosignerpreviousstreetfield	
1428	cosigneremployercityfield	
1428	cosigneremployerfield	
1428	statusnote	
1428	cosignerformeremployertimefield	
1428	cosignerformeremployerphonefield	
1428	driverlicensestatefield	WA
1428	cosigneradditionalincomefield	
1428	cosignerssnfield	Qs5L1KKEAP1zU8dE2oxIXLkk1S0x3cvGu54DC7wla5M=
1428	titlefield	
1428	cosigneraddressyearstotalfield	
1428	emailfield	hv13@hotmail.com
1428	codriverlicensefield	
1428	cosignerrentorownfield	
1428	workphonefield	
1428	formeremployerphonefield	
1428	citytfield	
1428	cosigneremploymentlengthyearsfield	
1428	ssnfield	u4O/aNE4spXsDaqUHNIzLS8ch6TNb+UxTGhYpagJBUw=
1428	cosignerformeremployerfield	
1428	cosignerpreviouscitytfield	
1428	cosignercitytfield	
1428	cosignerstreetfield	
1428	datepicker	gMHB0JCGjO1dEy+vmFIGqyQsFSfQqnvd4wiui8ZnXlA=
1428	stockfield	
1428	cosignerpositionfield	
1428	additionalincomefield	
1428	formeremployertimefield	
1428	employerfield	
1428	cosigneremploymerphonefield	
1428	monthlypaymentfield	
1428	cosignerstatefield	
1428	applicationtypefield	
1428	formeremployerstatefield	
1428	previouscitytfield	
1428	cosignerdateofbirthfield	/whCaOGydNC27m6sMdOfRycIDYXG34tVculsTOLMH6w=
1428	cosignerzipfield	
1428	cosignerformeremployercityfield	
1428	employmentyearsfield	
1428	statefield	
1428	locationfield	
1428	previouszipfield	
1428	zipfield	
1428	employerstatefield	
1428	phonefield	7732909650
1428	cosignerpreviouszipfield	
1428	cosignerformeremployerpositionfield	
1428	incomefield	
1428	vehiclefield	
1428	lead-id-field	
1428	formeremployerfield	
1428	cosignerpreviousstatefield	
1428	driverlicensefield	
1428	employercitytfield	
1428	cosignerformeremployerstatefield	
1428	lastnamefield	Holland
1428	formeremployercityfield	
1428	firstnamefield	Shaun
1428	formeremployerpositionfield	
1428	previousstreetfield	
1428	additionalinformationfield	
1428	privacypolicyfield	
1429	cosigneradditionalincomesourcefield	
1429	cosignerphonefield	
1429	cosignerfirstnamefield	
1429	ccosignerlastnamefield	
1429	additionalincomesourcefield	
1429	cosigneremailfield	
1429	cosigneremployerstatefield	
1429	cosignermonthlyincomefield	
1429	cosignermonthlypaymentfield	
1429	cosignerpreviousstreetfield	
1429	cosigneremployercityfield	
1429	cosigneremployerfield	
1429	statusnote	
1429	cosignerformeremployertimefield	
1429	cosignerformeremployerphonefield	
1429	driverlicensestatefield	WA
1429	cosigneradditionalincomefield	
1429	cosigneraddressyearstotalfield	
1429	emailfield	hv13@hotmail.com
1429	codriverlicensefield	
1429	cosignerrentorownfield	
1429	formeremployerphonefield	
1429	cosigneremploymentlengthyearsfield	
1429	cosignerformeremployerfield	
1429	cosignerpreviouscitytfield	
1429	cosignercitytfield	
1429	cosignerstreetfield	
1429	stockfield	
1429	cosignerpositionfield	
1429	formeremployertimefield	
1429	cosigneremploymerphonefield	
1429	formeremployerstatefield	
1429	previouscitytfield	
1429	cosignerzipfield	
1429	cosignerformeremployercityfield	
1429	locationfield	
1429	previouszipfield	
1429	phonefield	7732909650
1429	cosignerpreviouszipfield	
1429	cosignerformeremployerpositionfield	
1429	vehiclefield	
1429	formeremployerfield	
1429	cosignerformeremployerstatefield	
1429	lastnamefield	Moore
1429	formeremployercityfield	
1429	firstnamefield	Frank
1429	formeremployerpositionfield	
1429	previousstreetfield	
1429	additionalinformationfield	
1429	streetfield	151 Sterling Lake Dr
1429	addressyearstotalfield	5
1429	rentorownfield	Other
1429	codriverlicensestatefield	WA
1429	previousstatefield	WA
1429	cosignerssnfield	PmLf59i/YNlSd6Y3BQWk6N7u2of+NFvXgQp+Oy3sezQ=
1429	titlefield	Analyst Programmer
1429	workphonefield	7732909650
1429	citytfield	Lexington
1429	ssnfield	QPQybpv9LSqEWe5dKO2VtHWslh0tSErMAazOBFTXmHE=
1429	datepicker	bd5WWfC31uV1pLrFF59EidDHI1YHRyCbF2PgRIqJYsU=
1429	additionalincomefield	3000
1429	employerfield	Mann Trucks
1429	monthlypaymentfield	50000
1429	cosignerstatefield	WA
1429	applicationtypefield	Individual
1429	cosignerdateofbirthfield	wORsFeoJ3Xm+P6tZxbZ3fBDahSrjVogGd4it2jTiVnk=
1429	employmentyearsfield	5
1429	statefield	AR
1429	zipfield	29072
1429	employerstatefield	AZ
1429	incomefield	30000
1429	lead-id-field	1429
1429	cosignerpreviousstatefield	WA
1429	privacypolicyfield	yes
1429	driverlicensefield	DL000345WR
1429	employercitytfield	Lexington
1430	cosigneradditionalincomesourcefield	
1430	cosignerphonefield	
1430	cosignerfirstnamefield	
1430	ccosignerlastnamefield	
1430	cosigneremailfield	
1430	cosigneremployerstatefield	
1430	cosignermonthlyincomefield	
1430	cosignermonthlypaymentfield	
1430	streetfield	151 Sterling Lake Dr
1430	addressyearstotalfield	5
1430	rentorownfield	Rent
1430	codriverlicensestatefield	WA
1430	additionalincomesourcefield	Investment
1430	previousstatefield	WA
1430	cosignerpreviousstreetfield	
1430	cosigneremployercityfield	
1430	cosigneremployerfield	
1430	statusnote	
1430	cosignerformeremployertimefield	
1430	cosignerformeremployerphonefield	
1430	driverlicensestatefield	WA
1430	cosigneradditionalincomefield	
1430	cosigneraddressyearstotalfield	
1430	emailfield	hv13@hotmail.com
1430	codriverlicensefield	
1430	cosignerrentorownfield	
1430	formeremployerphonefield	
1430	cosigneremploymentlengthyearsfield	
1430	cosignerformeremployerfield	
1430	cosignerpreviouscitytfield	
1430	cosignercitytfield	
1430	cosignerstreetfield	
1430	stockfield	
1430	cosignerpositionfield	
1430	formeremployertimefield	
1430	cosigneremploymerphonefield	
1430	formeremployerstatefield	
1430	previouscitytfield	
1430	cosignerzipfield	
1430	cosignerformeremployercityfield	
1430	locationfield	
1430	previouszipfield	
1430	phonefield	8478084432
1430	cosignerpreviouszipfield	
1430	cosignerformeremployerpositionfield	
1430	vehiclefield	
1430	formeremployerfield	
1430	cosignerformeremployerstatefield	
1430	lastnamefield	bolla
1430	formeremployercityfield	
1430	firstnamefield	morne
1430	formeremployerpositionfield	
1430	previousstreetfield	
1430	additionalinformationfield	
1430	cosignerssnfield	QWy/gWi6DBdMWwZgS7nXKOdbEDJcXC/w9QtvUthP8qw=
1430	titlefield	Accountant
1430	workphonefield	7732909650
1430	citytfield	Lexington
1430	ssnfield	sDb/VFBCpEEuUbZpPA4BBZGoKtShboU5tSQZUzkLLr4=
1430	datepicker	tSSjNmFtnh7aup/QzNhVNlg7jI9fhMuhDV208RI9ETY=
1430	additionalincomefield	1000
1430	employerfield	Mann Trucks
1430	monthlypaymentfield	4000
1430	cosignerstatefield	WA
1430	applicationtypefield	Individual
1430	cosignerdateofbirthfield	4dCVf5hRvnuIc77DtgWvElIyIucpI+c0TLGUHZuDy5Y=
1430	employmentyearsfield	5
1430	statefield	CO
1430	zipfield	29072
1430	employerstatefield	WA
1430	incomefield	30000
1430	lead-id-field	1430
1430	cosignerpreviousstatefield	WA
1430	privacypolicyfield	yes
1430	driverlicensefield	DF00345RTG
1430	employercitytfield	Seattle
1431	cosigneradditionalincomesourcefield	
1431	cosignerphonefield	
1431	cosignerfirstnamefield	
1431	ccosignerlastnamefield	
1431	cosigneremailfield	
1431	cosigneremployerstatefield	
1431	cosignermonthlyincomefield	
1431	cosignermonthlypaymentfield	
1431	cosignerpreviousstreetfield	
1431	cosigneremployercityfield	
1431	cosigneremployerfield	
1431	statusnote	
1431	cosignerformeremployertimefield	
1431	cosignerformeremployerphonefield	
1431	cosigneradditionalincomefield	
1431	cosigneraddressyearstotalfield	
1431	emailfield	harry@buyercall.com
1431	codriverlicensefield	
1431	cosignerrentorownfield	
1431	formeremployerphonefield	
1431	cosigneremploymentlengthyearsfield	
1431	cosignerformeremployerfield	
1431	cosignerpreviouscitytfield	
1431	cosignercitytfield	
1431	cosignerstreetfield	
1431	stockfield	
1431	cosignerpositionfield	
1431	formeremployertimefield	
1431	cosigneremploymerphonefield	
1431	formeremployerstatefield	
1431	streetfield	151 Sterling Lake Dr
1431	addressyearstotalfield	5
1431	rentorownfield	Other
1431	codriverlicensestatefield	WA
1431	additionalincomesourcefield	Investment
1431	previousstatefield	WA
1431	driverlicensestatefield	DE
1431	cosignerssnfield	N6qYYlSZaTETfzjzgpf4XUh9HdNN0696C6WLrLJi1ms=
1431	titlefield	Analyst Programmer
1431	workphonefield	7732909650
1431	citytfield	Lexington
1431	ssnfield	NHqQTldnPQ0cXAWj1BP5JwPMd7xlmve0ikMjxgV6T4w=
1431	datepicker	JLl/xf+UvdCbu8z7sT5vUs8eqAZE/1CKOuiPwaVHO9A=
1431	additionalincomefield	3000
1431	employerfield	Mann Trucks
1431	monthlypaymentfield	5000
1431	cosignerstatefield	WA
1431	applicationtypefield	Individual
1431	previouscitytfield	
1431	cosignerzipfield	
1431	cosignerformeremployercityfield	
1431	locationfield	
1431	previouszipfield	
1431	phonefield	7732909650
1431	cosignerpreviouszipfield	
1431	cosignerformeremployerpositionfield	
1431	vehiclefield	
1431	formeremployerfield	
1431	cosignerformeremployerstatefield	
1431	lastnamefield	Versveld
1431	formeremployercityfield	
1431	firstnamefield	Bobby
1431	formeremployerpositionfield	
1431	previousstreetfield	
1431	additionalinformationfield	
1431	cosignerdateofbirthfield	l1E8WfjoBs+X13PI8opum2S9839CKBTjHe+Cp7V5cZs=
1431	employmentyearsfield	5
1431	statefield	CT
1431	zipfield	29072
1431	employerstatefield	AZ
1431	incomefield	30000
1431	lead-id-field	1431
1431	cosignerpreviousstatefield	WA
1431	privacypolicyfield	yes
1431	driverlicensefield	FG0034234DFG
1431	employercitytfield	Lexington
1432	cosigneradditionalincomesourcefield	
1432	cosignerphonefield	
1432	cosignerfirstnamefield	
1432	ccosignerlastnamefield	
1432	cosigneremailfield	
1432	cosigneremployerstatefield	
1432	cosignermonthlyincomefield	
1432	cosignermonthlypaymentfield	
1432	cosignerpreviousstreetfield	
1432	cosigneremployercityfield	
1432	cosigneremployerfield	
1432	statusnote	
1432	cosignerformeremployertimefield	
1432	cosignerformeremployerphonefield	
1432	driverlicensestatefield	WA
1432	cosigneradditionalincomefield	
1432	cosigneraddressyearstotalfield	
1432	emailfield	hv13@hotmail.com
1432	codriverlicensefield	
1432	cosignerrentorownfield	
1432	formeremployerphonefield	
1432	cosigneremploymentlengthyearsfield	
1432	cosignerformeremployerfield	
1432	cosignerpreviouscitytfield	
1432	cosignercitytfield	
1432	cosignerstreetfield	
1432	stockfield	
1432	cosignerpositionfield	
1432	formeremployertimefield	
1432	cosigneremploymerphonefield	
1432	formeremployerstatefield	
1432	previouscitytfield	
1432	cosignerzipfield	
1432	cosignerformeremployercityfield	
1432	locationfield	
1432	previouszipfield	
1432	phonefield	7732909650
1432	cosignerpreviouszipfield	
1432	cosignerformeremployerpositionfield	
1432	vehiclefield	
1432	formeremployerfield	
1432	cosignerformeremployerstatefield	
1432	lastnamefield	Meyer
1432	formeremployercityfield	
1432	firstnamefield	Freddie
1432	formeremployerpositionfield	
1432	previousstreetfield	
1432	additionalinformationfield	
1432	streetfield	151 Sterling Lake Dr
1432	addressyearstotalfield	5
1432	rentorownfield	Other
1432	codriverlicensestatefield	WA
1432	additionalincomesourcefield	Investment
1432	previousstatefield	WA
1432	cosignerssnfield	4r59lB0dPmJ1I/Kt+HFxyz7OaLruG7UT8tH8qJWidb0=
1432	titlefield	Analyst Programmer
1432	workphonefield	7732909650
1432	citytfield	Lexington
1432	ssnfield	JJQwxIVXsjqH2G4gfTFk+cFsMXv8qCoknNsjWeg6ZBc=
1432	datepicker	k7+oy4U3RnJtUc220VNWRzgZBaweUcK1ZDtbCMFmL9o=
1432	additionalincomefield	3000
1432	employerfield	Mann Trucks
1432	monthlypaymentfield	5000
1432	cosignerstatefield	WA
1432	applicationtypefield	Individual
1432	cosignerdateofbirthfield	qQX0+ilj01Vpb/jNxDLm+ihBU17bYpzMXXZ3v5rBnPw=
1432	employmentyearsfield	5
1432	statefield	CT
1432	zipfield	29072
1432	employerstatefield	CO
1432	incomefield	30000
1432	lead-id-field	1432
1432	cosignerpreviousstatefield	WA
1432	privacypolicyfield	yes
1432	driverlicensefield	FG324234DFG
1432	employercitytfield	Lexington
1433	cosigneradditionalincomesourcefield	
1433	cosignerphonefield	
1433	cosignerfirstnamefield	
1433	ccosignerlastnamefield	
1433	cosigneremailfield	
1433	cosigneremployerstatefield	
1433	cosignermonthlyincomefield	
1433	cosignermonthlypaymentfield	
1433	cosignerpreviousstreetfield	
1433	cosigneremployercityfield	
1433	cosigneremployerfield	
1433	statusnote	
1433	cosignerformeremployertimefield	
1433	cosignerformeremployerphonefield	
1433	driverlicensestatefield	WA
1433	cosigneradditionalincomefield	
1433	cosigneraddressyearstotalfield	
1433	emailfield	hjvermaak@gmail.com
1433	codriverlicensefield	
1433	cosignerrentorownfield	
1433	formeremployerphonefield	
1433	cosigneremploymentlengthyearsfield	
1433	cosignerformeremployerfield	
1433	cosignerpreviouscitytfield	
1433	cosignercitytfield	
1433	cosignerstreetfield	
1433	stockfield	
1433	cosignerpositionfield	
1433	formeremployertimefield	
1433	cosigneremploymerphonefield	
1433	formeremployerstatefield	
1433	previouscitytfield	
1433	cosignerzipfield	
1433	cosignerformeremployercityfield	
1433	locationfield	
1433	previouszipfield	
1433	phonefield	7732909650
1433	cosignerpreviouszipfield	
1433	cosignerformeremployerpositionfield	
1433	vehiclefield	
1433	formeremployerfield	
1433	cosignerformeremployerstatefield	
1433	lastnamefield	Fallon
1433	formeremployercityfield	
1433	firstnamefield	Mark
1433	formeremployerpositionfield	
1433	previousstreetfield	
1433	streetfield	151 Sterling Lake Dr
1433	addressyearstotalfield	5
1433	rentorownfield	Other
1433	codriverlicensestatefield	WA
1433	additionalincomesourcefield	Investment
1433	previousstatefield	WA
1433	cosignerssnfield	tmGsRWALowKGHmJZVnjvk8TftlTU8IpqmVz5DFAFhMw=
1433	titlefield	Analyst Programmer
1433	workphonefield	7732909650
1433	citytfield	Lexington
1433	ssnfield	AR+wKyNwRP74ibHzS4PFC0M2H/neu1hVzzQ3SZd5i0Y=
1433	datepicker	h1C4t3Y1kYJ67snNI4qQjnSSATfZ8TRaO4prwzvPwTw=
1433	additionalincomefield	3000
1433	employerfield	Mann Trucks
1433	monthlypaymentfield	4000
1433	cosignerstatefield	WA
1433	applicationtypefield	Individual
1433	cosignerdateofbirthfield	3bHkbC+dsLD4ghzzqFcMPtyW+9xhT/3SoUedHUCCepw=
1433	employmentyearsfield	5
1433	statefield	CT
1433	zipfield	29072
1433	employerstatefield	AZ
1433	incomefield	3000
1433	lead-id-field	1433
1433	cosignerpreviousstatefield	WA
1433	privacypolicyfield	yes
1433	driverlicensefield	DFK000345RT
1433	employercitytfield	Lexington
1433	additionalinformationfield	none
1434	cosigneradditionalincomesourcefield	
1434	cosignerphonefield	
1434	cosignerfirstnamefield	
1434	ccosignerlastnamefield	
1434	cosigneremailfield	
1434	cosigneremployerstatefield	
1434	cosignermonthlyincomefield	
1434	cosignermonthlypaymentfield	
1434	cosignerpreviousstreetfield	
1434	cosigneremployercityfield	
1434	cosigneremployerfield	
1434	statusnote	
1434	cosignerformeremployertimefield	
1434	cosignerformeremployerphonefield	
1434	driverlicensestatefield	WA
1434	cosigneradditionalincomefield	
1434	cosigneraddressyearstotalfield	
1434	streetfield	45 NW 61nd ST
1434	addressyearstotalfield	5
1434	rentorownfield	Rent
1434	codriverlicensestatefield	WA
1434	additionalincomesourcefield	Investment
1434	previousstatefield	WA
1434	cosignerssnfield	zOx0GKULf4zwyCgoW5iM+QIb1dxhKnliq3guWQyDtwk=
1434	titlefield	Analyst Programmer
1434	emailfield	hjvermaak@gmail.com
1434	codriverlicensefield	
1434	cosignerrentorownfield	
1434	formeremployerphonefield	
1434	cosigneremploymentlengthyearsfield	
1434	cosignerformeremployerfield	
1434	cosignerpreviouscitytfield	
1434	cosignercitytfield	
1434	cosignerstreetfield	
1434	stockfield	
1434	cosignerpositionfield	
1434	formeremployertimefield	
1434	cosigneremploymerphonefield	
1434	formeremployerstatefield	
1434	previouscitytfield	
1434	cosignerzipfield	
1434	cosignerformeremployercityfield	
1434	locationfield	
1434	previouszipfield	
1434	phonefield	7732909650
1434	cosignerpreviouszipfield	
1434	cosignerformeremployerpositionfield	
1434	vehiclefield	
1434	formeremployerfield	
1434	cosignerformeremployerstatefield	
1434	lastnamefield	Bolly
1434	formeremployercityfield	
1434	firstnamefield	Matt
1434	formeremployerpositionfield	
1434	previousstreetfield	
1434	workphonefield	7732909650
1434	citytfield	Seattle
1434	ssnfield	2AKjsfp2IZMcUbUTNKe7a+lLJ/7yt+xvfW0pqwXzm3M=
1434	datepicker	q5mgqiXCRWeKuSpTiOizjsGp+omsA/yVzkUdaRxWBZU=
1434	additionalincomefield	3000
1434	employerfield	Mann Trucks
1434	monthlypaymentfield	5000
1434	cosignerstatefield	WA
1434	applicationtypefield	Individual
1434	cosignerdateofbirthfield	CykcM1KDaKeAerILMdsSbTUhbA7JcU/PsgN+tgxKZ8g=
1434	employmentyearsfield	5
1434	statefield	WA
1434	zipfield	98107
1434	employerstatefield	AZ
1434	incomefield	30000
1434	lead-id-field	1434
1434	cosignerpreviousstatefield	WA
1434	privacypolicyfield	yes
1434	driverlicensefield	DFG0002131234
1434	employercitytfield	Lexington
1434	additionalinformationfield	none
1435	cosigneradditionalincomesourcefield	
1435	cosignerphonefield	
1435	cosignerfirstnamefield	
1435	ccosignerlastnamefield	
1435	cosigneremailfield	
1435	cosigneremployerstatefield	
1435	cosignermonthlyincomefield	
1435	cosignermonthlypaymentfield	
1435	cosignerpreviousstreetfield	
1435	cosigneremployercityfield	
1435	cosigneremployerfield	
1435	statusnote	
1435	cosignerformeremployertimefield	
1435	cosignerformeremployerphonefield	
1435	driverlicensestatefield	WA
1435	cosigneradditionalincomefield	
1435	cosigneraddressyearstotalfield	
1435	emailfield	hjvermaak@gmail.com
1435	codriverlicensefield	
1435	cosignerrentorownfield	
1435	formeremployerphonefield	
1435	cosigneremploymentlengthyearsfield	
1435	cosignerformeremployerfield	
1435	cosignerpreviouscitytfield	
1435	cosignercitytfield	
1435	cosignerstreetfield	
1435	stockfield	
1435	cosignerpositionfield	
1435	formeremployertimefield	
1435	cosigneremploymerphonefield	
1435	formeremployerstatefield	
1435	previouscitytfield	
1435	cosignerzipfield	
1435	cosignerformeremployercityfield	
1435	locationfield	
1435	previouszipfield	
1435	phonefield	7732909650
1435	cosignerpreviouszipfield	
1435	cosignerformeremployerpositionfield	
1435	streetfield	151 Sterling Lake Dr
1435	addressyearstotalfield	5
1435	rentorownfield	Rent
1435	codriverlicensestatefield	WA
1435	additionalincomesourcefield	Investment
1435	previousstatefield	WA
1435	cosignerssnfield	m+F1+1Q7MNHMrfK5lplJ2NpC5Nf4d/sTZMxoF5xbdMM=
1435	titlefield	Analyst Programmer
1435	workphonefield	7732909650
1435	citytfield	Lexington
1435	ssnfield	Aq1Fl3l/jnrQQtKLLgO5n6MXAJIFcggn6JL50R6dkaM=
1435	datepicker	k0ay4TDNigCw02826zBbMF76xO4nxUt3t0eh91gjj4U=
1435	additionalincomefield	3000
1435	employerfield	Cadbudy
1435	monthlypaymentfield	5000
1435	cosignerstatefield	WA
1435	applicationtypefield	Individual
1435	vehiclefield	
1435	formeremployerfield	
1435	cosignerformeremployerstatefield	
1435	lastnamefield	Miller
1435	formeremployercityfield	
1435	firstnamefield	body
1435	formeremployerpositionfield	
1435	previousstreetfield	
1435	cosignerdateofbirthfield	HQukzKIQikhRwtdTWflYs4a40XLd9GaAnqD4yhb/EtM=
1435	employmentyearsfield	5
1435	statefield	CA
1435	zipfield	29072
1435	employerstatefield	AZ
1435	incomefield	30000
1435	lead-id-field	1435
1435	cosignerpreviousstatefield	WA
1435	privacypolicyfield	yes
1435	driverlicensefield	WOL003456
1435	employercitytfield	Lexington
1435	additionalinformationfield	none
1436	cosigneradditionalincomesourcefield	
1436	cosignerphonefield	
1436	cosignerfirstnamefield	
1436	ccosignerlastnamefield	
1436	codriverlicensestatefield	
1436	cosigneremailfield	
1436	previousstatefield	
1436	cosigneremployerstatefield	
1436	cosignermonthlyincomefield	
1436	cosignermonthlypaymentfield	
1436	cosignerpreviousstreetfield	
1436	cosigneremployercityfield	
1436	cosigneremployerfield	
1436	statusnote	
1436	cosignerformeremployertimefield	
1436	cosignerformeremployerphonefield	
1436	cosigneradditionalincomefield	
1436	cosigneraddressyearstotalfield	
1436	emailfield	test@buyercall.com
1436	codriverlicensefield	
1436	cosignerrentorownfield	
1436	formeremployerphonefield	
1436	cosigneremploymentlengthyearsfield	
1436	cosignerformeremployerfield	
1436	cosignerpreviouscitytfield	
1436	cosignercitytfield	
1436	cosignerstreetfield	
1436	stockfield	
1436	cosignerpositionfield	
1436	formeremployertimefield	
1436	cosigneremploymerphonefield	
1436	cosignerstatefield	
1436	formeremployerstatefield	
1436	previouscitytfield	
1436	cosignerzipfield	
1436	cosignerformeremployercityfield	
1436	locationfield	Ashland KY
1436	previouszipfield	
1436	phonefield	7739699892
1436	cosignerpreviouszipfield	
1436	cosignerformeremployerpositionfield	
1436	vehiclefield	
1436	formeremployerfield	
1436	cosignerpreviousstatefield	
1436	cosignerformeremployerstatefield	
1436	lastnamefield	Tester
1436	formeremployercityfield	
1436	firstnamefield	Tony
1436	formeremployerpositionfield	
1436	previousstreetfield	
1436	cosignermiddlenamefield	
1436	middlenamefield	
1436	repfield	
1436	streetfield	123 Sterlinh
1436	addressyearstotalfield	5
1436	rentorownfield	Other
1436	additionalincomesourcefield	Investment
1436	driverlicensestatefield	AK
1436	cosignerssnfield	8dvgqUxSyvBSEVucF+wxS2gwgAgpTaxmUKmwu51neVw=
1436	titlefield	Analyst Programmer
1436	workphonefield	7739994440
1436	citytfield	Buffalo
1436	ssnfield	fVr6oNyuCxCfAiMbClHGv9rOa5JsPyC/q/D11Vpschc=
1436	datepicker	a4vi8vwpBgD4pi8Mogf2NXWKV9dcbiwtqYqfO91v2K8=
1436	additionalincomefield	3000
1436	employerfield	Mann Trucks
1436	monthlypaymentfield	5000
1436	applicationtypefield	Individual
1436	cosignerdateofbirthfield	x7SpNCo9yux7w0/U2HLYLKxJMBFepgJk26ToLkzDeoA=
1436	employmentyearsfield	5
1436	statefield	NE
1436	zipfield	60623
1436	employerstatefield	AR
1436	incomefield	3000
1436	lead-id-field	1436
1436	privacypolicyfield	yes
1436	driverlicensefield	DL003445FG
1436	employercitytfield	Lexington
1436	additionalinformationfield	No comment
1437	emailfield	support@buyercall.com
1437	lastnamefield	Hancock
1437	phonefield	7739699892
1437	firstnamefield	Barry
1437	datepicker	A5f9v15pRgZaENx9aSCavq6O/WMPIutEHVH7DwVGyGA=
1437	streetfield	123 Main ST
1437	incomefield	4000
1437	statefield	IL
1437	lead-id-field	1437
1437	privacypolicyfield	yes
1437	cumemberfield	qOr2qcYtDtxuR+heX50M0D0lZV9UoBne698mJvuBsDw=
1437	cityfield	Chicago
1437	zipfield	60613
1437	repfield	Lachelle Campbell
1438	emailfield	support@buyercall.com
1438	lastnamefield	Hancock
1438	phonefield	7739699893
1438	firstnamefield	Matt
1438	datepicker	C8RVHIImVK8egbo6AcXTV3jd/jRo72ipuqxkr9Pc6LM=
1438	streetfield	123 Main ST
1438	incomefield	5000
1438	statefield	AZ
1438	lead-id-field	1438
1438	privacypolicyfield	yes
1438	cumemberfield	RaMQWNyLxUp0kkx4PGiNT/hpb/rT76FkXBxPpRzlo8c=
1438	cityfield	Chicago
1438	zipfield	98102
1438	repfield	Jesus Torres
1439	cosigneradditionalincomesourcefield	
1439	cosignerphonefield	
1439	cosignerfirstnamefield	
1439	ccosignerlastnamefield	
1439	additionalincomesourcefield	
1439	cosigneremailfield	
1439	previousstatefield	
1439	cosigneremployerstatefield	
1439	cosignermonthlyincomefield	
1439	cosignermonthlypaymentfield	
1439	cosignerpreviousstreetfield	
1439	cosigneremployercityfield	
1439	cosigneremployerfield	
1439	statusnote	
1439	cosignerformeremployertimefield	
1439	cosignerformeremployerphonefield	
1439	cosigneradditionalincomefield	
1439	cosigneraddressyearstotalfield	
1439	emailfield	george@buyercall.com
1439	codriverlicensefield	
1439	cosignerrentorownfield	
1439	formeremployerphonefield	
1439	cosigneremploymentlengthyearsfield	
1439	cosignerformeremployerfield	
1439	cosignerpreviouscitytfield	
1439	cosignercitytfield	
1439	cosignerstreetfield	
1439	stockfield	
1439	cosignerpositionfield	
1439	additionalincomefield	
1439	formeremployertimefield	
1439	cosigneremploymerphonefield	
1439	cosignerstatefield	
1439	formeremployerstatefield	
1439	previouscitytfield	
1439	cosignerzipfield	
1439	cosignerformeremployercityfield	
1439	locationfield	Lexington
1439	previouszipfield	
1439	phonefield	8479009875
1439	cosignerpreviouszipfield	
1439	cosignerformeremployerpositionfield	
1439	vehiclefield	TwinCab 7000
1439	formeremployerfield	
1439	cosignerpreviousstatefield	
1439	cosignerformeremployerstatefield	
1439	lastnamefield	Bush
1439	formeremployercityfield	
1439	firstnamefield	George 
1439	formeremployerpositionfield	
1439	previousstreetfield	
1439	additionalinformationfield	
1439	streetfield	2612 NW 62nd ST
1439	addressyearstotalfield	5
1439	rentorownfield	Other
1439	codriverlicensestatefield	WA
1439	driverlicensestatefield	DE
1439	cosignerssnfield	BfmtOKaqNlmJJdd7LFDe4SwgsAPR6kZdjEFfCbGOnqg=
1439	titlefield	Manager
1439	workphonefield	2303454333
1439	citytfield	Seattle
1439	ssnfield	YfJb13Q7p4FYL0xhMQLUCLsPM9U+S52iFEEEVYCexMs=
1439	datepicker	+rSw/Zm2tkdGRgSGI/d1Cyggb6MOR29J5anACbi8lRA=
1439	employerfield	Mann Trucks
1439	monthlypaymentfield	50000
1439	applicationtypefield	Individual
1439	cosignerdateofbirthfield	8HiOl/s3aycrRCWUJx24jdKHhbsz6lrVVXeHt6vF2h0=
1439	employmentyearsfield	5
1439	statefield	WA
1439	zipfield	98107
1439	employerstatefield	MI
1439	incomefield	4000
1439	lead-id-field	1439
1439	privacypolicyfield	yes
1439	driverlicensefield	WL00345435FGH
1439	employercitytfield	Detroit
1440	datepicker	rjftniT1MD8ZYVdoGoG7cqGAU/J8dTI+9lev3+bjcLU=
1440	cumemberfield	wAOOqOIzh0JZlxrGTzc0adATMjtwCN4qHp1j0DQ2loY=
1440	incomefield	
1440	emailfield	7063066714
1440	statefield	
1440	lead-id-field	
1440	lastnamefield	Kelly
1440	cityfield	
1440	zipfield	
1440	streetfield	
1440	phonefield	monicakelly56@hotmail.com
1440	firstnamefield	Monica
1440	repfield	
1440	privacypolicyfield	
1441	datepicker	2cLOUSAEiku/8QcAl5jPLY5siGMfjfGAMnqK2Vj2L4Q=
1441	cumemberfield	04bcfI7GXFxTBqBJ1ngDIQtmk9zcdmZOMzNsi3sIIvk=
1441	incomefield	
1441	emailfield	7063066714
1441	statefield	
1441	lead-id-field	
1441	lastnamefield	Kelly
1441	cityfield	
1441	zipfield	
1441	streetfield	
1441	phonefield	monicakelly56@hotmail.com
1441	firstnamefield	Monica
1441	repfield	
1441	privacypolicyfield	
1442	datepicker	ToqrEteybA5rqmxJpSHeDNfezBYSu7z0uZeppBVkktg=
1442	cumemberfield	vR9IQicYEp8rYbAbVP/yqmOf4BZP0YeIJEAZJmL6/j4=
1442	incomefield	
1442	emailfield	7063066714
1442	statefield	
1442	lead-id-field	
1442	lastnamefield	Kelly
1442	cityfield	
1442	zipfield	
1442	streetfield	
1442	phonefield	monicakelly56@hotmail.com
1442	firstnamefield	Monica
1442	repfield	
1442	privacypolicyfield	
1443	streetfield	
1443	cosigneradditionalincomesourcefield	
1443	addressyearstotalfield	
1443	cosignerphonefield	
1443	cosignerfirstnamefield	
1443	ccosignerlastnamefield	
1443	rentorownfield	
1443	codriverlicensestatefield	
1443	additionalincomesourcefield	
1443	cosigneremailfield	
1443	previousstatefield	
1443	cosigneremployerstatefield	
1443	cosignermonthlyincomefield	
1443	cosignermonthlypaymentfield	
1443	cosignerpreviousstreetfield	
1443	cosigneremployercityfield	
1443	cosigneremployerfield	
1443	statusnote	
1443	cosignerformeremployertimefield	
1443	cosignerformeremployerphonefield	
1443	driverlicensestatefield	
1443	cosigneradditionalincomefield	
1443	cosignerssnfield	PKVur93/r4vpZVIbQSv6Cmai9uFRyngYFOoNKsZQoVc=
1443	titlefield	
1443	cosigneraddressyearstotalfield	
1443	emailfield	78953233222
1443	codriverlicensefield	
1443	cosignerrentorownfield	
1443	workphonefield	
1443	formeremployerphonefield	
1443	citytfield	
1443	cosigneremploymentlengthyearsfield	
1443	ssnfield	s+bFXYyFRipqgwdlyno6Ly7gtscExoLicqIUN9PK6m8=
1443	cosignerformeremployerfield	
1443	cosignerpreviouscitytfield	
1443	cosignercitytfield	
1443	cosignerstreetfield	
1443	datepicker	wrRTjrNWwZjerlExzAOi6GY3nRIJYvkqO8/aa1uk+HQ=
1443	stockfield	
1443	cosignerpositionfield	
1443	additionalincomefield	
1443	formeremployertimefield	
1443	employerfield	
1443	cosigneremploymerphonefield	
1443	monthlypaymentfield	
1443	cosignerstatefield	
1443	applicationtypefield	
1443	formeremployerstatefield	
1443	previouscitytfield	
1443	cosignerdateofbirthfield	1AZXIbcq8/3K4EyQxNh5eX5ZNDqGI5NGTkjHZcgv2T0=
1443	cosignerzipfield	
1443	cosignerformeremployercityfield	
1443	employmentyearsfield	
1443	statefield	
1443	locationfield	
1443	previouszipfield	
1443	zipfield	
1443	employerstatefield	
1443	phonefield	hv13@hotmail.com
1443	cosignerpreviouszipfield	
1443	cosignerformeremployerpositionfield	
1443	incomefield	
1443	vehiclefield	
1443	lead-id-field	
1443	formeremployerfield	
1443	cosignerpreviousstatefield	
1443	driverlicensefield	
1443	employercitytfield	
1443	cosignerformeremployerstatefield	
1443	lastnamefield	McMann
1443	formeremployercityfield	
1443	firstnamefield	John
1443	formeremployerpositionfield	
1443	previousstreetfield	
1443	additionalinformationfield	
1443	privacypolicyfield	
1444	datepicker	eaEoDhe49SgNX3DKgCwiVHuc99YHGowzNbJ53aGCqA8=
1444	cumemberfield	YQSAJe+Np0t1TkcA5IUCoEm8RWLTyGBtYCfffK/wx7E=
1444	incomefield	
1444	emailfield	6763323232
1444	statefield	
1444	lead-id-field	
1444	lastnamefield	Hancock
1444	cityfield	
1444	zipfield	
1444	streetfield	
1444	phonefield	hv13@hotmail,con
1444	firstnamefield	Matt
1444	repfield	
1444	privacypolicyfield	
1445	datepicker	lDivORF54ppzoQzrnx4b87ZEGCNFHbuhPhVdB1IrvQA=
1445	cumemberfield	YV18xXsyPJRMvjpw7aZjzFu9PxITXwaa3dmvyw+lJSQ=
1445	incomefield	
1445	emailfield	7732909650
1445	statefield	
1445	lead-id-field	
1445	lastnamefield	Hancock
1445	cityfield	
1445	zipfield	
1445	streetfield	
1445	phonefield	hv13@hotmail,com
1445	firstnamefield	Barry
1445	repfield	
1445	privacypolicyfield	
1446	datepicker	/T86Z1XPhnG+4u0C6yIsKhws9qk8XkYkNwEA7lFH210=
1446	cumemberfield	cfzZ/ryhRtg5DAKW9YeaDrsCrodVmQiZEhUBNnON4Sg=
1446	incomefield	
1446	emailfield	77324404352
1446	statefield	
1446	lead-id-field	
1446	lastnamefield	Hancock
1446	cityfield	
1446	zipfield	
1446	streetfield	
1446	phonefield	hv13@hitnaukc,on
1446	firstnamefield	Matt
1446	repfield	
1446	privacypolicyfield	
1447	datepicker	KuRJTpBEv02tpNPUkUj40DZt35RQJjq4OzZ7EpVOLqY=
1447	cumemberfield	+CvGVLqdc1uXlqKx5SzEeZyV2OQho1/o9qnsgeL/Ct4=
1447	incomefield	
1447	emailfield	77323390912
1447	statefield	
1447	lead-id-field	
1447	lastnamefield	Hancock
1447	cityfield	
1447	zipfield	
1447	streetfield	
1447	phonefield	hv2FG.o 
1447	firstnamefield	Barry
1447	repfield	
1447	privacypolicyfield	
1448	datepicker	9JPxwOxJsPy2Rg4nCL+U1Py9/hlp4ialvj7onaP8lBc=
1448	cumemberfield	N4g0I/vVYhSqmIEkahdr4+bCMIIwweWO/4gcspWCWOQ=
1448	incomefield	
1448	emailfield	support@buyercall.com
1448	statefield	
1448	lead-id-field	
1448	lastnamefield	Hancock
1448	cityfield	
1448	zipfield	
1448	streetfield	
1448	phonefield	7739699892
1448	firstnamefield	Barry
1448	repfield	
1448	privacypolicyfield	
1449	datepicker	IiqdhsqoLv5m9gPFES+FC8B6eGNdu7Z8lQRgw+tetj0=
1449	cumemberfield	Qz0YeR8c9Lg/YkcXonBLvruqyqgks4JBVF23Kl+lXO4=
1449	incomefield	
1449	emailfield	
1449	statefield	
1449	lead-id-field	
1449	lastnamefield	
1449	cityfield	
1449	zipfield	
1449	streetfield	
1449	phonefield	
1449	firstnamefield	
1449	repfield	
1449	privacypolicyfield	
1450	datepicker	UKggJtv6nLSKDHZoxE3bFvRhDZ2COAZ/V7v3kijmFoM=
1450	cumemberfield	+WaJK+ekUyVa3r3ghjykRw7Wp8G1tkYBrnqDWf7BvUQ=
1450	incomefield	
1450	emailfield	support@buyercall.com
1450	statefield	
1450	lead-id-field	
1450	lastnamefield	Hancock
1450	cityfield	
1450	zipfield	
1450	streetfield	
1450	phonefield	7739699892
1450	firstnamefield	Barry
1450	repfield	
1450	privacypolicyfield	
1451	emailfield	hv13@hotmail.com
1451	lastnamefield	Vermaak
1451	phonefield	7739699892
1451	firstnamefield	Matt
1451	datepicker	PNuZGlzonZ+oZKPMVPjbteNcfjoGdgFywWDPNidlxS8=
1451	streetfield	123 Main ST
1451	incomefield	5000
1451	statefield	ID
1451	lead-id-field	1451
1451	privacypolicyfield	yes
1451	cumemberfield	CUsjooqSzAnxXRseDATtG5Ok5yBx6RMp8D46S1cn7wY=
1451	cityfield	Chicago
1451	zipfield	98102
1451	repfield	Jesus Torres
1452	emailfield	support@buyercall.com
1452	lastnamefield	Hancock
1452	phonefield	7739699892
1452	firstnamefield	Matt
1452	datepicker	C0nOncd/McuIsiXy8H7gepAu1AQGYNwGXGJ/KamMLPc=
1452	streetfield	123 Main ST
1452	incomefield	3000
1452	statefield	KS
1452	lead-id-field	1452
1452	privacypolicyfield	yes
1452	cumemberfield	KTkMP5Ygmp4U9A6Ybupb8cKI+69m2mbhql6J+k13qvI=
1452	cityfield	Chicago
1452	zipfield	98102
1452	repfield	Jesus Torres
1453	emailfield	support@buyercall.com
1453	lastnamefield	Hancock
1453	phonefield	7739699892
1453	firstnamefield	Barry
1453	datepicker	eRjJuum9sq8jc5wJ8kToShIKAx2Yg1gLAH0NbVNR4gY=
1453	streetfield	123 Main ST
1453	incomefield	4000
1453	statefield	KY
1453	lead-id-field	1453
1453	privacypolicyfield	yes
1453	cumemberfield	//vC2hmEPjUEn9deQ4l22481rlgImyZns/jCYUtsAIw=
1453	cityfield	Chicago
1453	zipfield	98103
1453	repfield	Ulises Villada
1454	emailfield	hv13@hotmail.com
1454	lastnamefield	Jones
1454	phonefield	7739699892
1454	firstnamefield	Matt
1454	datepicker	OwQyJNappK5QkMp6HnaH5r/edeCSDCcg3/Vz9FmaOF0=
1454	streetfield	123 Main ST
1454	incomefield	3000
1454	statefield	KY
1454	lead-id-field	1454
1454	privacypolicyfield	yes
1454	cumemberfield	hn0QhOVpojtKb92tcgPb51UXEHyqPspLeP4kvgU+SAg=
1454	cityfield	Chicago
1454	zipfield	60613
1454	repfield	Anthony Staples
1455	emailfield	test@test.com
1455	lastnamefield	test
1455	phonefield	7739699892
1455	firstnamefield	test
1455	datepicker	FFGzQk41BlboTmqDMmENVUoakISIGJlGws2dwrt7rN4=
1455	streetfield	151 Sterling Lake Dr
1455	incomefield	300
1455	statefield	IN
1455	lead-id-field	1455
1455	privacypolicyfield	yes
1455	cumemberfield	kSDmFZHvxzNqm2V+Zki1ABGyxz5b3kPUfZWgBV91FOI=
1455	cityfield	Lexington
1455	zipfield	29072
1455	repfield	None of the above
1456	cosigneradditionalincomesourcefield	
1456	cosignerphonefield	
1456	cosignerfirstnamefield	
1456	ccosignerlastnamefield	
1456	additionalincomesourcefield	
1456	cosigneremailfield	
1456	cosigneremployerstatefield	
1456	cosignermonthlyincomefield	
1456	cosignermonthlypaymentfield	
1456	cosignerpreviousstreetfield	
1456	cosigneremployercityfield	
1456	cosigneremployerfield	
1456	statusnote	
1456	cosignerformeremployertimefield	
1456	cosignerformeremployerphonefield	
1456	driverlicensestatefield	WA
1456	cosigneradditionalincomefield	
1456	cosigneraddressyearstotalfield	
1456	emailfield	hv13@hotmail.com
1456	codriverlicensefield	
1456	cosignerrentorownfield	
1456	formeremployerphonefield	
1456	cosigneremploymentlengthyearsfield	
1456	cosignerformeremployerfield	
1456	cosignerpreviouscitytfield	
1456	cosignercitytfield	
1456	cosignerstreetfield	
1456	stockfield	
1456	cosignerpositionfield	
1456	formeremployertimefield	
1456	cosigneremploymerphonefield	
1456	formeremployerstatefield	
1456	previouscitytfield	
1456	cosignerzipfield	
1456	cosignerformeremployercityfield	
1456	locationfield	Seattle
1456	previouszipfield	
1456	phonefield	7732909650
1456	cosignerpreviouszipfield	
1456	cosignerformeremployerpositionfield	
1456	vehiclefield	
1456	formeremployerfield	
1456	cosignerformeremployerstatefield	
1456	lastnamefield	Keen
1456	formeremployercityfield	
1456	firstnamefield	Perry
1456	formeremployerpositionfield	
1456	previousstreetfield	
1456	streetfield	151 Sterling Lake Dr
1456	addressyearstotalfield	5
1456	rentorownfield	Other
1456	codriverlicensestatefield	WA
1456	previousstatefield	WA
1456	cosignerssnfield	ShctGsd6F2lSKMpfmQepk+XYjDg1Aucg2AtL3aOlxuo=
1456	titlefield	Analyst Programmer
1456	workphonefield	7732909650
1456	citytfield	Lexington
1456	ssnfield	S85Zvg4MaJmhKCABKkkBw5Mxgk0DLjDB8eKZZZeGG+E=
1456	datepicker	Y8jIXeNfCL3usJ1QfYnZVPdEvVccxZKmOs0T7CLof1Q=
1456	additionalincomefield	3000
1456	employerfield	Cadbudy
1456	monthlypaymentfield	5000
1456	cosignerstatefield	WA
1456	applicationtypefield	Individual
1456	cosignerdateofbirthfield	inQiUojYowuWe/Cqz9WvVn18R2Q17hXGcip4x7GEF2o=
1456	employmentyearsfield	5
1456	statefield	DE
1456	zipfield	29072
1456	employerstatefield	CA
1456	incomefield	5000
1456	lead-id-field	1456
1456	cosignerpreviousstatefield	WA
1456	privacypolicyfield	yes
1456	driverlicensefield	FG0003456RFGH
1456	employercitytfield	Lexington
1456	additionalinformationfield	None
1457	cosigneradditionalincomesourcefield	
1457	cosignerphonefield	
1457	cosignerfirstnamefield	
1457	ccosignerlastnamefield	
1457	cosigneremailfield	
1457	cosigneremployerstatefield	
1457	cosignermonthlyincomefield	
1457	cosignermonthlypaymentfield	
1457	cosignerpreviousstreetfield	
1457	cosigneremployercityfield	
1457	cosigneremployerfield	
1457	statusnote	
1457	cosignerformeremployertimefield	
1457	cosignerformeremployerphonefield	
1457	cosigneradditionalincomefield	
1457	cosigneraddressyearstotalfield	
1457	emailfield	hot@mail.com
1457	codriverlicensefield	
1457	cosignerrentorownfield	
1457	formeremployerphonefield	
1457	cosigneremploymentlengthyearsfield	
1457	cosignerformeremployerfield	
1457	cosignerpreviouscitytfield	
1457	cosignercitytfield	
1457	cosignerstreetfield	
1457	streetfield	151 Sterling Lake Dr
1457	addressyearstotalfield	5
1457	rentorownfield	Other
1457	codriverlicensestatefield	WA
1457	additionalincomesourcefield	Investment
1457	previousstatefield	WA
1457	driverlicensestatefield	AR
1457	cosignerssnfield	MHC9pyFg2thL8RplBZYAFGg4vRi9RTvEspOTB5PTuvY=
1457	titlefield	Accountant
1457	workphonefield	7732909650
1457	citytfield	Lexington
1457	ssnfield	Qb4iy3K2xwwM0FDh1EyI3FcGC9382xLz+xOWtZigcYI=
1459	cosignerformeremployerphonefield	
1459	driverlicensestatefield	
1459	cosigneradditionalincomefield	
1459	cosignerssnfield	KgIZv/5T6udFaha/xnsNRdleA3Yk0ffF60t/ELs+oWc=
1459	titlefield	
1459	cosigneraddressyearstotalfield	
1459	emailfield	support@buyercall.com
1459	codriverlicensefield	
1459	cosignerrentorownfield	
1459	previouscitytfield	
1459	workphonefield	
1459	cosigneremployercityfield	
1459	citytfield	
1459	maritalstatusfield	
1459	middlenamefield	
1459	cosigneremploymentlengthyearsfield	
1459	ssnfield	f8J7nO0kHnYXq4RuV1TAEaeg0u2n7+aZCNLky6NTEts=
1459	cosignerformeremployerfield	
1459	cosignerpreviouscitytfield	
1459	cosignercitytfield	
1457	stockfield	
1457	cosignerpositionfield	
1457	formeremployertimefield	
1457	cosigneremploymerphonefield	
1457	formeremployerstatefield	
1457	previouscitytfield	
1457	cosignerzipfield	
1457	cosignerformeremployercityfield	
1457	locationfield	
1457	previouszipfield	
1457	phonefield	4567073332
1457	cosignerpreviouszipfield	
1457	cosignerformeremployerpositionfield	
1457	vehiclefield	
1457	formeremployerfield	
1457	cosignerformeremployerstatefield	
1457	lastnamefield	Blake
1457	formeremployercityfield	
1457	firstnamefield	Cody
1457	formeremployerpositionfield	
1457	previousstreetfield	
1457	datepicker	I/LZIp5kNkl9ztaf22Op1jUVB8ZDMjK1y8kDixe5lCo=
1457	additionalincomefield	3000
1457	employerfield	Mann Trucks
1457	monthlypaymentfield	5000
1457	cosignerstatefield	WA
1457	applicationtypefield	Individual
1457	cosignerdateofbirthfield	WdNrGqlNMrq80brwzKQ17qdQq7zXyseKBsco0aI/rxA=
1457	employmentyearsfield	5
1457	statefield	CO
1457	zipfield	29072
1457	employerstatefield	CO
1457	incomefield	5000
1457	lead-id-field	1457
1457	cosignerpreviousstatefield	WA
1457	privacypolicyfield	yes
1457	driverlicensefield	DFG000345WRF
1457	employercitytfield	Lexington
1457	additionalinformationfield	none
1458	streetfield	
1458	cosigneradditionalincomesourcefield	
1458	addressyearstotalfield	
1458	cosignerphonefield	
1458	cosignerfirstnamefield	
1458	ccosignerlastnamefield	
1458	rentorownfield	
1458	codriverlicensestatefield	
1458	additionalincomesourcefield	
1458	cosigneremailfield	
1458	previousstatefield	
1458	cosigneremployerstatefield	
1458	cosignermonthlyincomefield	
1458	cosignermonthlypaymentfield	
1458	cosignerpreviousstreetfield	
1458	cosigneremployercityfield	
1458	cosigneremployerfield	
1458	statusnote	
1458	cosignerformeremployertimefield	
1458	cosignerformeremployerphonefield	
1458	driverlicensestatefield	
1458	cosigneradditionalincomefield	
1458	cosignerssnfield	hmX00tCAR34aJ7duTff5or+Jut5nKQj9QTgRT3BSrcc=
1458	titlefield	
1458	cosigneraddressyearstotalfield	
1458	emailfield	support@buyercall.com
1458	codriverlicensefield	
1458	cosignerrentorownfield	
1458	workphonefield	
1458	formeremployerphonefield	
1458	citytfield	
1458	middlenamefield	g
1458	cosigneremploymentlengthyearsfield	
1458	ssnfield	9DrmeX3yBVy23pXxsTqC6RmErJ/2FkIm52ppd/6cVRg=
1458	cosignerformeremployerfield	
1458	cosignerpreviouscitytfield	
1458	cosignercitytfield	
1458	cosignerstreetfield	
1458	datepicker	M35BkLmoNVe/MoriYvPUof4gmQ4MKIxD8pdIMvMY5Kg=
1458	cosignerpositionfield	
1458	additionalincomefield	
1458	formeremployertimefield	
1458	employerfield	
1458	cosigneremploymerphonefield	
1458	monthlypaymentfield	
1458	cosignerstatefield	
1458	applicationtypefield	
1458	formeremployerstatefield	
1458	previouscitytfield	
1458	cosignerdateofbirthfield	uvwPyTviPDUiJFJCE8HaRtLbRKhUKfAwPt7iCXt3/ro=
1458	cosignerzipfield	
1458	cosignerformeremployercityfield	
1458	employmentyearsfield	
1458	statefield	
1458	zipfield	
1458	employerstatefield	
1458	phonefield	7739699892
1458	cosignerpreviouszipfield	
1458	cosignerformeremployerpositionfield	
1458	incomefield	
1458	previouszipfield	
1458	lead-id-field	
1458	formeremployerfield	
1458	cosignerpreviousstatefield	
1458	driverlicensefield	
1458	cosignermiddlenamefield	
1458	employercitytfield	
1458	cosignerformeremployerstatefield	
1458	lastnamefield	Hancock
1458	formeremployercityfield	
1458	firstnamefield	John
1458	formeremployerpositionfield	
1458	previousstreetfield	
1458	additionalinformationfield	
1459	streetfield	
1459	cosigneradditionalincomesourcefield	
1459	addressyearstotalfield	
1459	cosignerphonefield	
1459	dependentsfield	
1459	cosignerfirstnamefield	
1459	ccosignerlastnamefield	
1459	rentorownfield	
1459	codriverlicensestatefield	
1459	additionalincomesourcefield	
1459	cosigneremailfield	
1459	previousstatefield	
1459	cosigneremployerstatefield	
1459	mobilephonefield	
1459	cosignermonthlyincomefield	
1459	cosignermonthlypaymentfield	
1459	cosignerpreviousstreetfield	
1459	cosigneremployerfield	
1459	statusnote	
1459	cosignerformeremployertimefield	
1459	cosignerstreetfield	
1459	datepicker	56IRaYPE7aazrmilsD2xQrQomyPfjMDkdaFZ5PAPOtE=
1459	cosignerpositionfield	
1459	additionalincomefield	
1459	formeremployertimefield	
1459	employerfield	
1459	cosigneremploymerphonefield	
1459	monthlypaymentfield	
1459	cosignerstatefield	
1459	applicationtypefield	
1459	formeremployerstatefield	
1459	formeremployerphonefield	
1459	cosignerdateofbirthfield	uVFIcD1idrlSQl8BtRndwuH3FBKV5WTtWzUpm8K9Nz8=
1459	cosignerzipfield	
1459	cosignerformeremployercityfield	
1459	employmentyearsfield	
1459	statefield	
1459	zipfield	
1459	employerstatefield	
1459	phonefield	7732909650
1459	cosignerpreviouszipfield	
1459	cosignerformeremployerpositionfield	
1459	incomefield	
1459	previouszipfield	
1459	lead-id-field	
1459	formeremployerfield	
1459	cosignerpreviousstatefield	
1459	driverlicensefield	
1459	phonebillfield	
1459	dependentagesfield	
1459	cosignermiddlenamefield	
1459	employercitytfield	
1459	cosignerformeremployerstatefield	
1459	lastnamefield	Hancock
1459	formeremployercityfield	
1459	firstnamefield	John
1459	formeremployerpositionfield	
1459	previousstreetfield	
1459	additionalinformationfield	
1459	addressmonthstotalfield	
1459	countyfield	
1459	employeraddressfield	
1459	employerzipfield	
1459	employmentmonthsfield	
1459	formeremployerleavereasonfield	
1459	formeremployertimemonthsfield	
1459	hourlypayfield	
1459	hoursworkedfield	
1459	landlordfield	
1459	landlordphonefield	
1459	maintenancepaymentfield	
1459	payperiodfield	
1459	previousaddressmonthstotalfield	
1459	previousaddressyearstotalfield	
1459	townshipfield	
1460	streetfield	
1460	datepicker	PmKtKvT8rtWCOXiLOS19yfD+qFnkzrQ6U7eLR8EFiEM=
1460	addressyearstotalfield	
1460	cosignerphonefield	
1460	dependentsfield	
1460	cosignerfirstnamefield	
1460	ccosignerlastnamefield	
1460	rentorownfield	
1460	codriverlicensestatefield	
1460	employmentyearsfield	
1460	cosigneremailfield	
1460	previousstatefield	
1460	additionalinformationfield	
1460	cosigneremployerstatefield	
1460	mobilephonefield	
1460	workphonefield	
1460	cosignermonthlyincomefield	
1460	zipfield	
1460	cosignermonthlypaymentfield	
1460	cosignerpreviousstreetfield	
1460	cosigneremployerfield	
1460	statusnote	
1460	cosignerformeremployertimefield	
1460	cosignerformeremployerphonefield	
1460	driverlicensestatefield	
1460	cosigneradditionalincomefield	
1460	cosignerssnfield	hwxUt+O4bDFo6eORd6tXXGpv636YTbSUJQS80kh71to=
1460	titlefield	
1460	cosigneraddressyearstotalfield	
1460	citytfield	
1460	emailfield	hv13@hotmail.com
1460	codriverlicensefield	
1460	cosignerrentorownfield	
1460	phonefield	7739699892
1460	cosigneremployercityfield	
1460	cosignerphonebillfield	
1460	maritalstatusfield	
1460	middlenamefield	
1460	cosigneremploymentlengthyearsfield	
1460	ssnfield	ZPYim+gntWuxc/pTeFMZ9kDemdXQ3+RoIwqMMMYLYGw=
1460	cosignerformeremployerfield	
1460	cosignerpreviouscitytfield	
1460	cosignercitytfield	
1460	cosignerstreetfield	
1460	cosigneradditionalincomesourcefield	
1460	cosignerpositionfield	
1460	additionalincomefield	
1460	formeremployertimefield	
1460	employerfield	
1460	cosigneremploymerphonefield	
1460	monthlypaymentfield	
1460	cosignerstatefield	
1460	formeremployerstatefield	
1460	previouscitytfield	
1460	cosignerdateofbirthfield	+/CA70ETgHRpV9yoHIa2QuTtN8UVPUjIneHyQDqxE2I=
1460	cosignermobilephonefield	
1460	cosignerzipfield	
1460	cosignerformeremployercityfield	
1460	additionalincomesourcefield	
1460	statefield	
1460	cosignermaritalstatusfield	
1460	formeremployerphonefield	
1460	employerstatefield	
1460	applicationtypefield	
1460	cosignerpreviouszipfield	
1460	cosignerformeremployerpositionfield	
1460	incomefield	
1460	previouszipfield	
1460	lead-id-field	
1460	formeremployerfield	
1460	cosignerpreviousstatefield	
1460	cosignerdependentagesfield	
1460	driverlicensefield	
1460	phonebillfield	
1460	dependentagesfield	
1460	cosignermiddlenamefield	
1460	employercitytfield	
1460	cosignerformeremployerstatefield	
1460	lastnamefield	Miller
1460	formeremployercityfield	
1460	firstnamefield	Patt
1460	formeremployerpositionfield	
1460	previousstreetfield	
1460	cosignerdependentsfield	
1460	addressmonthstotalfield	
1460	countyfield	
1460	employeraddressfield	
1460	employerzipfield	
1460	employmentmonthsfield	
1460	formeremployerleavereasonfield	
1460	formeremployertimemonthsfield	
1460	hourlypayfield	
1460	hoursworkedfield	
1460	landlordfield	
1460	landlordphonefield	
1460	maintenancepaymentfield	
1460	payperiodfield	
1460	previousaddressmonthstotalfield	
1460	previousaddressyearstotalfield	
1460	townshipfield	
1461	streetfield	
1461	datepicker	YGyiQCu2ou26xRQ2skbRmIXjO42lA21g543KVzhmKB8=
1461	addressyearstotalfield	
1461	cosignerphonefield	
1461	dependentsfield	
1461	cosignerfirstnamefield	
1461	ccosignerlastnamefield	
1461	rentorownfield	
1461	codriverlicensestatefield	
1461	employmentyearsfield	
1461	cosigneremailfield	
1461	driverlicensefield	
1461	previousstatefield	
1461	cosigneremployerstatefield	
1461	mobilephonefield	
1461	workphonefield	
1461	cosignermonthlyincomefield	
1461	zipfield	
1461	cosignermonthlypaymentfield	
1461	cosignerpreviousstreetfield	
1461	cosignerdependentsfield	
1461	cosigneremployerfield	
1461	statusnote	
1461	cosignerformeremployertimefield	
1461	cosignerformeremployerphonefield	
1461	driverlicensestatefield	
1461	cosigneradditionalincomefield	
1461	cosignerssnfield	49Ygob94gMTdtz5G/thmuEBo5HmdkDdp4iUZmXrwL6g=
1461	titlefield	
1461	cosigneraddressyearstotalfield	
1461	citytfield	
1461	emailfield	hv13@hotmail.com
1461	codriverlicensefield	
1461	cosignerrentorownfield	
1461	phonefield	7739699892
1461	cosigneremployercityfield	
1461	cosignerphonebillfield	
1461	landlordfield	
1461	maritalstatusfield	
1461	middlenamefield	
1461	cosigneremploymentlengthyearsfield	
1461	ssnfield	PoLTFd1e2z7QCnbQuX/8lNUJTD3EZR3u1xnGg9mKjnA=
1461	cosignerformeremployerfield	
1461	cosignerpreviouscitytfield	
1461	cosignercitytfield	
1461	addressmonthstotalfield	
1461	cosignerstreetfield	
1461	cosigneradditionalincomesourcefield	
1461	cosignerpositionfield	
1461	additionalincomefield	
1461	formeremployertimefield	
1461	employerfield	
1461	cosigneremploymerphonefield	
1461	monthlypaymentfield	
1461	cosignerstatefield	
1461	formeremployerstatefield	
1461	previouscitytfield	
1461	cosignerdateofbirthfield	kc9psiyhEu/i/L5c3S+sA+nAxQXC5EbmjDHCzTjCC4E=
1461	cosignermobilephonefield	
1461	cosignerzipfield	
1461	cosignerformeremployercityfield	
1461	additionalincomesourcefield	
1461	statefield	
1461	cosignermaritalstatusfield	
1461	formeremployerphonefield	
1461	employerstatefield	
1461	landlordphonefield	
1461	applicationtypefield	
1461	cosignerpreviouszipfield	
1461	cosignerformeremployerpositionfield	
1461	incomefield	
1461	previouszipfield	
1461	lead-id-field	
1461	formeremployerfield	
1461	cosignerpreviousstatefield	
1461	cosignerdependentagesfield	
1461	countyfield	
1461	townshipfield	
1461	phonebillfield	
1461	dependentagesfield	
1461	cosignermiddlenamefield	
1461	employercitytfield	
1461	cosignerformeremployerstatefield	
1461	lastnamefield	Hancock
1461	formeremployercityfield	
1461	firstnamefield	John
1461	formeremployerpositionfield	
1461	previousstreetfield	
1461	additionalinformationfield	
1461	employeraddressfield	
1461	employerzipfield	
1461	employmentmonthsfield	
1461	formeremployerleavereasonfield	
1461	formeremployertimemonthsfield	
1461	hourlypayfield	
1461	hoursworkedfield	
1461	maintenancepaymentfield	
1461	payperiodfield	
1461	previousaddressmonthstotalfield	
1461	previousaddressyearstotalfield	
1462	streetfield	
1462	datepicker	DW8dEJEnlJOMf0kTEKBGayJoHuxAxbKCt56rlKrB8H0=
1462	addressyearstotalfield	
1462	cosignerphonefield	
1462	cosignerpreviousaddressyearstotalfield	
1462	dependentsfield	
1462	cosignerfirstnamefield	
1462	ccosignerlastnamefield	
1462	rentorownfield	
1462	codriverlicensestatefield	
1462	additionalincomesourcefield	
1462	cosigneremailfield	
1462	driverlicensefield	
1462	previousstatefield	
1462	cosigneremployerstatefield	
1462	mobilephonefield	
1462	workphonefield	
1462	cosignermonthlyincomefield	
1462	zipfield	
1462	cosignermonthlypaymentfield	
1462	cosignerpreviousstreetfield	
1462	cosignerdependentsfield	
1462	cosigneremployerfield	
1462	statusnote	
1462	cosignerformeremployertimefield	
1462	cosignerlandlordphonefield	
1462	driverlicensestatefield	
1462	cosigneradditionalincomefield	
1462	cosignerssnfield	SKCkF8cxesYfASE4Jqq9MSWnlxBo5nke2+1YyU5XH7I=
1462	titlefield	
1462	cosigneraddressyearstotalfield	
1462	citytfield	
1462	emailfield	hv13@hotmail.com
1462	codriverlicensefield	
1462	cosignerrentorownfield	
1462	previousaddressyearstotalfield	
1462	phonefield	7739699892
1462	cosigneremployercityfield	
1462	cosignerphonebillfield	
1462	landlordfield	
1462	maritalstatusfield	
1462	middlenamefield	
1462	cosigneremploymentlengthyearsfield	
1462	ssnfield	xBQQNVy8JLMiqapWOhd6VIBmim2iF1UbIzNX121Sg30=
1462	cosignerformeremployerfield	
1462	cosignerpreviouscitytfield	
1462	cosignercitytfield	
1462	addressmonthstotalfield	
1462	cosignerstreetfield	
1462	cosigneradditionalincomesourcefield	
1462	previousaddressmonthstotalfield	
1462	cosignerpositionfield	
1462	additionalincomefield	
1462	formeremployertimefield	
1462	employerfield	
1462	cosigneremploymerphonefield	
1462	monthlypaymentfield	
1462	cosignerstatefield	
1462	cosignerformeremployerphonefield	
1462	cosignerlandlordfield	
1462	formeremployerstatefield	
1462	previouscitytfield	
1462	cosignerdateofbirthfield	R/D/W5BPvxTlr92c0hLapR6nStyvUdsH00M00PKkRB8=
1462	cosignermobilephonefield	
1462	cosignerzipfield	
1462	cosignerformeremployercityfield	
1462	employmentyearsfield	
1462	statefield	
1462	cosignermaritalstatusfield	
1462	cosignertownshipfield	
1462	cosigneraddressmonthstotalfield	
1462	formeremployerphonefield	
1462	employerstatefield	
1462	landlordphonefield	
1462	applicationtypefield	
1462	cosignerpreviouszipfield	
1462	cosignerformeremployerpositionfield	
1462	incomefield	
1462	previouszipfield	
1462	lead-id-field	
1462	formeremployerfield	
1462	cosignerpreviousstatefield	
1462	cosignerdependentagesfield	
1462	cosignercountyfield	
1462	countyfield	
1462	townshipfield	
1462	cosignerpreviousaddressmonthstotalfield	
1462	phonebillfield	
1462	dependentagesfield	
1462	cosignermiddlenamefield	
1462	employercitytfield	
1462	cosignerformeremployerstatefield	
1462	lastnamefield	Hancock
1462	formeremployercityfield	
1462	firstnamefield	Barry
1462	formeremployerpositionfield	
1462	previousstreetfield	
1462	additionalinformationfield	
1462	employeraddressfield	
1462	employerzipfield	
1462	employmentmonthsfield	
1462	formeremployerleavereasonfield	
1462	formeremployertimemonthsfield	
1462	hourlypayfield	
1462	hoursworkedfield	
1462	maintenancepaymentfield	
1462	payperiodfield	
1463	streetfield	
1463	datepicker	2bthVaZDyXxsD3iSRGcXdGB4M0QpZBS7gBuMvjc3rzo=
1463	addressyearstotalfield	
1463	cosignerphonefield	
1463	cosignerpreviousaddressyearstotalfield	
1463	dependentsfield	
1463	cosignerfirstnamefield	
1463	ccosignerlastnamefield	
1463	rentorownfield	
1463	codriverlicensestatefield	
1463	additionalincomesourcefield	
1463	cosigneremailfield	
1463	driverlicensefield	
1463	previousstatefield	
1463	cosigneremployerstatefield	
1463	mobilephonefield	
1463	workphonefield	
1463	cosignermonthlyincomefield	
1463	zipfield	
1463	cosignermonthlypaymentfield	
1463	cosignerpreviousstreetfield	
1463	cosignerdependentsfield	
1463	cosigneremployerfield	
1463	statusnote	
1463	cosignerformeremployertimefield	
1463	cosignerlandlordphonefield	
1463	driverlicensestatefield	
1463	cosigneradditionalincomefield	
1463	cosignerssnfield	M6+C1Eg9SES7Rg05CE3ew1Fl5aetHb5oYrGfvtt56zo=
1463	titlefield	
1463	cosigneraddressyearstotalfield	
1463	citytfield	
1463	emailfield	hv13@hotmail.com
1463	codriverlicensefield	
1463	cosignerrentorownfield	
1463	previousaddressyearstotalfield	
1463	phonefield	7739699892
1463	cosigneremployercityfield	
1463	cosignerphonebillfield	
1463	landlordfield	
1463	maritalstatusfield	
1463	middlenamefield	
1463	cosigneremploymentlengthyearsfield	
1463	ssnfield	ERsnoyI4o0QPe7/K+Fnn7AMUKCcyiyyoxX7jhqQ9qvA=
1463	cosignerformeremployerfield	
1463	cosignerpreviouscitytfield	
1463	cosignercitytfield	
1463	addressmonthstotalfield	
1463	cosignerstreetfield	
1463	cosigneradditionalincomesourcefield	
1463	previousaddressmonthstotalfield	
1463	cosignerpositionfield	
1463	additionalincomefield	
1463	formeremployertimefield	
1463	employerfield	
1463	cosigneremploymerphonefield	
1463	monthlypaymentfield	
1463	cosignerstatefield	
1463	cosignerformeremployerphonefield	
1463	cosignerlandlordfield	
1463	formeremployerstatefield	
1463	previouscitytfield	
1463	cosignerdateofbirthfield	Ebi+n2Xffsg1HBZVY9IEEYfoefygl0pkmI9RNaYso8A=
1463	cosignermobilephonefield	
1463	cosignerzipfield	
1463	cosignerformeremployercityfield	
1463	employmentyearsfield	
1463	statefield	
1463	cosignermaritalstatusfield	
1463	cosignertownshipfield	
1463	cosigneraddressmonthstotalfield	
1463	formeremployerphonefield	
1463	employerstatefield	
1463	landlordphonefield	
1463	applicationtypefield	
1463	cosignerpreviouszipfield	
1463	cosignerformeremployerpositionfield	
1463	incomefield	
1463	previouszipfield	
1463	lead-id-field	
1463	formeremployerfield	
1463	cosignerpreviousstatefield	
1463	cosignerdependentagesfield	
1463	cosignercountyfield	
1463	countyfield	
1463	townshipfield	
1463	cosignerpreviousaddressmonthstotalfield	
1463	phonebillfield	
1463	dependentagesfield	
1463	cosignermiddlenamefield	
1463	employercitytfield	
1463	cosignerformeremployerstatefield	
1463	lastnamefield	Hancock
1463	formeremployercityfield	
1463	firstnamefield	Matt
1463	formeremployerpositionfield	
1463	previousstreetfield	
1463	additionalinformationfield	
1463	employeraddressfield	
1463	employerzipfield	
1463	employmentmonthsfield	
1463	formeremployerleavereasonfield	
1463	formeremployertimemonthsfield	
1463	hourlypayfield	
1463	hoursworkedfield	
1463	maintenancepaymentfield	
1463	payperiodfield	
1464	streetfield	
1464	datepicker	yMvhwIKQ6pmgezaFSIhdK8UcSp6k9tvRImYIVk8ACdE=
1464	addressyearstotalfield	
1464	cosignerphonefield	
1464	cosignerpreviousaddressyearstotalfield	
1464	dependentsfield	
1464	cosignerfirstnamefield	
1464	ccosignerlastnamefield	
1464	rentorownfield	
1464	codriverlicensestatefield	
1464	employmentmonthsfield	
1464	employmentyearsfield	
1464	cosigneremailfield	
1464	driverlicensefield	
1464	previousstatefield	
1464	hoursworkedfield	
1464	cosigneremployerstatefield	
1464	mobilephonefield	
1464	employeraddressfield	
1464	workphonefield	
1464	cosignermonthlyincomefield	
1464	zipfield	
1464	cosignermonthlypaymentfield	
1464	cosignerpreviousstreetfield	
1464	cosignerdependentsfield	
1464	hourlypayfield	
1464	cosigneremployerfield	
1464	statusnote	
1464	cosignerformeremployertimefield	
1464	cosignerlandlordphonefield	
1464	driverlicensestatefield	
1464	cosigneradditionalincomefield	
1464	cosignerssnfield	m+0m7XR6JLBEje7rwC4D9rE94WsTXhFhTxf5asOKi+A=
1464	titlefield	
1464	cosigneraddressyearstotalfield	
1464	citytfield	
1464	emailfield	hv13@hotmail.com
1464	codriverlicensefield	
1464	cosignerrentorownfield	
1464	previousaddressyearstotalfield	
1464	phonefield	7739699892
1464	cosigneremployercityfield	
1464	cosignerphonebillfield	
1464	landlordfield	
1464	maritalstatusfield	
1464	middlenamefield	
1464	cosigneremploymentlengthyearsfield	
1464	ssnfield	g8lYzD50V6lCsC8/OHiCXL/q1O5UrjhqkUAv7bQAFy8=
1464	formeremployerleavereasonfield	
1464	cosignerformeremployerfield	
1464	cosignerpreviouscitytfield	
1464	cosignercitytfield	
1464	addressmonthstotalfield	
1464	cosignerstreetfield	
1464	cosigneradditionalincomesourcefield	
1464	previousaddressmonthstotalfield	
1464	cosignerpositionfield	
1464	formeremployertimefield	
1464	dependentagesfield	
1464	employerfield	
1464	cosigneremploymerphonefield	
1464	monthlypaymentfield	
1464	cosignerstatefield	
1464	cosignerformeremployerphonefield	
1464	cosignerlandlordfield	
1464	previouscitytfield	
1464	cosignerdateofbirthfield	qM3K/N/lBO0FukAaYenrHsDCuqqLhNy0bXhPVPVoKhI=
1464	cosignermobilephonefield	
1464	cosignerzipfield	
1464	cosignerformeremployercityfield	
1464	statefield	
1464	cosignermaritalstatusfield	
1464	cosignertownshipfield	
1464	cosigneraddressmonthstotalfield	
1464	formeremployerphonefield	
1464	employerstatefield	
1464	landlordphonefield	
1464	applicationtypefield	
1464	cosignerpreviouszipfield	
1464	cosignerformeremployerpositionfield	
1464	incomefield	
1464	previouszipfield	
1464	lead-id-field	
1464	formeremployerfield	
1464	cosignerpreviousstatefield	
1464	cosignerdependentagesfield	
1464	cosignercountyfield	
1464	countyfield	
1464	townshipfield	
1464	formeremployertimemonthsfield	
1464	cosignerpreviousaddressmonthstotalfield	
1464	phonebillfield	
1464	payperiodfield	
1464	cosignermiddlenamefield	
1464	employercitytfield	
1464	cosignerformeremployerstatefield	
1464	lastnamefield	Hancock
1464	employerzipfield	
1464	firstnamefield	John
1464	formeremployerpositionfield	
1464	previousstreetfield	
1464	additionalinformationfield	
1464	additionalincomefield	
1464	additionalincomesourcefield	
1464	maintenancepaymentfield	
1465	streetfield	
1465	datepicker	yNPlgsDG6SJZzNwlrNiejmI36jTwkBhqNbMZ0FQJbwE=
1465	addressyearstotalfield	
1465	cosignerphonefield	
1465	cosignerpreviousaddressyearstotalfield	
1465	dependentsfield	
1465	cosignerfirstnamefield	
1465	ccosignerlastnamefield	
1465	rentorownfield	
1465	codriverlicensestatefield	
1465	employmentmonthsfield	
1465	employmentyearsfield	
1465	cosigneremailfield	
1465	driverlicensefield	
1465	previousstatefield	
1465	hoursworkedfield	
1465	cosigneremployerstatefield	
1465	mobilephonefield	
1465	employeraddressfield	
1465	workphonefield	
1465	cosignermonthlyincomefield	
1465	zipfield	
1465	cosignermonthlypaymentfield	
1465	cosignerpreviousstreetfield	
1465	cosignerdependentsfield	
1465	hourlypayfield	
1465	cosigneremployerfield	
1465	statusnote	
1465	cosignerformeremployertimefield	
1465	cosignerlandlordphonefield	
1465	driverlicensestatefield	
1465	cosigneradditionalincomefield	
1465	cosignerssnfield	wXlUKBUNqDPZf+KFCPjYsRZqMWup8LP5l+TYaPyOvts=
1465	titlefield	
1465	cosigneraddressyearstotalfield	
1465	citytfield	
1465	emailfield	hv13@hotmail.com
1465	codriverlicensefield	
1465	cosignerrentorownfield	
1465	previousaddressyearstotalfield	
1465	phonefield	7739699892
1465	cosigneremployercityfield	
1465	cosignerphonebillfield	
1465	landlordfield	
1465	maritalstatusfield	
1465	middlenamefield	
1465	cosigneremploymentlengthyearsfield	
1465	ssnfield	hoijRKh+9PnNY3R7jBM7FUQMlMkv4v46GuGCNK0/M9I=
1465	formeremployerleavereasonfield	
1465	cosignerformeremployerfield	
1465	cosignerpreviouscitytfield	
1465	cosignercitytfield	
1465	addressmonthstotalfield	
1465	cosignerstreetfield	
1465	cosigneradditionalincomesourcefield	
1465	previousaddressmonthstotalfield	
1465	cosignerpositionfield	
1465	formeremployertimefield	
1465	dependentagesfield	
1465	employerfield	
1465	cosigneremploymerphonefield	
1465	monthlypaymentfield	
1465	cosignerstatefield	
1465	cosignerformeremployerphonefield	
1465	cosignerlandlordfield	
1465	previouscitytfield	
1465	cosignerdateofbirthfield	mhpRn2DqYfCmJx6sSQEpScOYUaZGVO7XM2B9QNoc5ks=
1465	cosignermobilephonefield	
1465	cosignerzipfield	
1465	cosignerformeremployercityfield	
1465	statefield	
1465	cosignermaritalstatusfield	
1465	cosignertownshipfield	
1465	cosigneraddressmonthstotalfield	
1465	formeremployerphonefield	
1465	employerstatefield	
1465	landlordphonefield	
1465	applicationtypefield	
1465	cosignerpreviouszipfield	
1465	cosignerformeremployerpositionfield	
1465	incomefield	
1465	previouszipfield	
1465	lead-id-field	
1465	formeremployerfield	
1465	cosignerpreviousstatefield	
1465	cosignerdependentagesfield	
1465	cosignercountyfield	
1465	countyfield	
1465	townshipfield	
1465	formeremployertimemonthsfield	
1465	cosignerpreviousaddressmonthstotalfield	
1465	phonebillfield	
1465	payperiodfield	
1465	cosignermiddlenamefield	
1465	employercitytfield	
1465	cosignerformeremployerstatefield	
1465	lastnamefield	Hancock
1465	employerzipfield	
1465	firstnamefield	Matt
1465	formeremployerpositionfield	
1465	previousstreetfield	
1465	additionalinformationfield	
1465	additionalincomefield	
1465	additionalincomesourcefield	
1465	maintenancepaymentfield	
1466	streetfield	
1466	addressyearstotalfield	
1466	cosignerphonefield	
1466	cosignerpreviousaddressyearstotalfield	
1466	dependentsfield	
1466	cosignerfirstnamefield	
1466	ccosignerlastnamefield	
1466	rentorownfield	
1466	codriverlicensestatefield	
1466	employmentmonthsfield	
1466	employmentyearsfield	
1466	cosigneremailfield	
1466	driverlicensefield	
1466	previousstatefield	
1466	hoursworkedfield	
1466	cosigneremployerstatefield	
1466	mobilephonefield	
1466	employeraddressfield	
1466	workphonefield	
1466	cosignermonthlyincomefield	
1466	zipfield	
1466	cosignermonthlypaymentfield	
1466	cosignerpreviousstreetfield	
1466	cosignerdependentsfield	
1466	hourlypayfield	
1466	cosigneremployerfield	
1466	statusnote	
1466	cosignerformeremployertimefield	
1466	cosignerlandlordphonefield	
1466	driverlicensestatefield	
1466	statefield	
1466	cosignerssnfield	zmoFvW1RQpTwPZ3z4TVLtCCdg6fgR+Q4zhtE6vu9/+E=
1466	titlefield	
1466	cosignerformeremployerleavereasonfield	
1466	cosigneraddressyearstotalfield	
1466	citytfield	
1466	emailfield	hv13@hotmail.com
1466	codriverlicensefield	
1466	cosignerrentorownfield	
1466	previousaddressyearstotalfield	
1466	cosigneremploymentmonthsfield	
1466	phonefield	7739699892
1466	cosigneremployercityfield	
1466	cosignerphonebillfield	
1466	landlordfield	
1466	maritalstatusfield	
1466	middlenamefield	
1466	cosigneremploymentlengthyearsfield	
1466	cosigneremployeraddressfield	
1466	ssnfield	kcudIyLxSUNST+k+H6rGJ1VLmQAqxv03ZwwPp3JGruc=
1466	formeremployerleavereasonfield	
1466	cosignerpayperiodfield	
1466	cosignerformeremployerfield	
1466	cosignerpreviouscitytfield	
1466	cosignercitytfield	
1466	addressmonthstotalfield	
1466	cosignerstreetfield	
1466	datepicker	DBNh7IX1ZpFkeHGw+hHCFv+iMOBM5t+IWmVXD6kaRg4=
1466	previousaddressmonthstotalfield	
1466	cosignerhourlypayfield	
1466	cosignerpositionfield	
1466	cosignerhoursworkedfield	
1466	formeremployertimefield	
1466	dependentagesfield	
1466	employerfield	
1466	cosigneremploymerphonefield	
1466	monthlypaymentfield	
1466	cosignerstatefield	
1466	cosigneremployerzipfield	
1466	cosignerformeremployerphonefield	
1466	cosignerlandlordfield	
1466	previouscitytfield	
1466	cosignerdateofbirthfield	bMwegP6NXWwATCTcslauKzBiw1n39thlUwndZ9MO6/k=
1466	cosignermobilephonefield	
1466	cosignerzipfield	
1466	cosignermaritalstatusfield	
1466	cosignertownshipfield	
1466	cosigneraddressmonthstotalfield	
1466	formeremployerphonefield	
1466	employerstatefield	
1466	landlordphonefield	
1466	applicationtypefield	
1466	cosignerpreviouszipfield	
1466	cosignerformeremployerpositionfield	
1466	incomefield	
1466	previouszipfield	
1466	lead-id-field	
1466	formeremployerfield	
1466	cosignerpreviousstatefield	
1466	cosignerdependentagesfield	
1466	cosignercountyfield	
1466	countyfield	
1466	townshipfield	
1466	formeremployertimemonthsfield	
1466	cosignerpreviousaddressmonthstotalfield	
1466	phonebillfield	
1466	cosignerformeremployertimemonthsfield	
1466	payperiodfield	
1466	cosignermiddlenamefield	
1466	employercitytfield	
1466	lastnamefield	Hancock
1466	employerzipfield	
1466	firstnamefield	John
1466	formeremployerpositionfield	
1466	previousstreetfield	
1466	additionalinformationfield	
1466	additionalincomefield	
1466	additionalincomesourcefield	
1466	maintenancepaymentfield	
1467	streetfield	
1467	addressyearstotalfield	
1467	cosignerphonefield	
1467	cosignerpreviousaddressyearstotalfield	
1467	dependentsfield	
1467	cosignerfirstnamefield	
1467	ccosignerlastnamefield	
1467	rentorownfield	
1467	codriverlicensestatefield	
1467	employmentmonthsfield	
1467	employmentyearsfield	
1467	cosigneremailfield	
1467	driverlicensefield	
1467	previousstatefield	
1467	hoursworkedfield	
1467	cosigneremployerstatefield	
1467	mobilephonefield	
1467	employeraddressfield	
1467	workphonefield	
1467	cosignermonthlyincomefield	
1467	zipfield	
1467	cosignermonthlypaymentfield	
1467	cosignerpreviousstreetfield	
1467	cosignerdependentsfield	
1467	hourlypayfield	
1467	cosigneremployerfield	
1467	statusnote	
1467	cosignerformeremployertimefield	
1467	cosignerlandlordphonefield	
1467	driverlicensestatefield	
1467	statefield	
1467	cosignerssnfield	9/ajoSsfs/A+sjuhLLx5Xdp8rWpFF4NJuQdfmdJXV7Y=
1467	titlefield	
1467	cosignerformeremployerleavereasonfield	
1467	cosigneraddressyearstotalfield	
1467	citytfield	
1467	emailfield	hv13@hotmail.com
1467	codriverlicensefield	
1467	cosignerrentorownfield	
1467	previousaddressyearstotalfield	
1467	cosigneremploymentmonthsfield	
1467	phonefield	7739699892
1467	cosigneremployercityfield	
1467	cosignerphonebillfield	
1467	landlordfield	
1467	maritalstatusfield	
1467	middlenamefield	
1467	cosigneremploymentlengthyearsfield	
1467	cosigneremployeraddressfield	
1467	ssnfield	Y9i4rK72oE7KCqINqdZJc6P7gj67NkSj+60HqHQUQ1Q=
1467	formeremployerleavereasonfield	
1467	childsupportagesfield	
1467	cosignerpayperiodfield	
1467	cosignerformeremployerfield	
1467	cosignerpreviouscitytfield	
1467	cosignercitytfield	
1467	addressmonthstotalfield	
1467	cosignerstreetfield	
1467	datepicker	jPIa74CaEEZkQZtogKR7AOD72Va4xXxLrxTDm1htQ7o=
1467	previousaddressmonthstotalfield	
1467	cosignerhourlypayfield	
1467	cosignerpositionfield	
1467	cosignerhoursworkedfield	
1467	formeremployertimefield	
1467	dependentagesfield	
1467	employerfield	
1467	cosigneremploymerphonefield	
1467	monthlypaymentfield	
1467	cosignerstatefield	
1467	cosigneremployerzipfield	
1467	cosignerformeremployerphonefield	
1467	cosignerlandlordfield	
1467	previouscitytfield	
1467	cosignerdateofbirthfield	yVSv6/GWIA4VD7e7eYDWNlTyyLK7j3IwWmpmc61wFbE=
1467	cosignermobilephonefield	
1467	cosignerzipfield	
1467	cosignermaritalstatusfield	
1467	cosignertownshipfield	
1467	cosigneraddressmonthstotalfield	
1467	formeremployerphonefield	
1467	employerstatefield	
1467	landlordphonefield	
1467	applicationtypefield	
1467	cosignerpreviouszipfield	
1467	cosignerformeremployerpositionfield	
1467	incomefield	
1467	previouszipfield	
1467	lead-id-field	
1467	formeremployerfield	
1467	cosignerpreviousstatefield	
1467	cosignerdependentagesfield	
1467	cosignercountyfield	
1467	maintenancepaymentfield	
1467	countyfield	
1467	townshipfield	
1467	formeremployertimemonthsfield	
1467	cosignerpreviousaddressmonthstotalfield	
1467	phonebillfield	
1467	cosignerformeremployertimemonthsfield	
1467	payperiodfield	
1467	cosignermiddlenamefield	
1467	employercitytfield	
1467	lastnamefield	ASA
1467	employerzipfield	
1467	firstnamefield	dsadas
1467	formeremployerpositionfield	
1467	previousstreetfield	
1467	additionalinformationfield	
1467	additionalincomefield	
1467	additionalincomesourcefield	
1468	streetfield	
1468	addressyearstotalfield	
1468	bankruptcydischargedatefield	
1468	cosignerphonefield	
1468	cosignerpreviousaddressyearstotalfield	
1468	bankruptcychapterfield	
1468	dependentsfield	
1468	cosignerfirstnamefield	
1468	ccosignerlastnamefield	
1468	rentorownfield	
1468	codriverlicensestatefield	
1468	employmentmonthsfield	
1468	employmentyearsfield	
1468	cosigneremailfield	
1468	driverlicensefield	
1468	previousstatefield	
1468	hoursworkedfield	
1468	cosigneremployerstatefield	
1468	mobilephonefield	
1468	employeraddressfield	
1468	workphonefield	
1468	cosignermonthlyincomefield	
1468	zipfield	
1468	cosignermonthlypaymentfield	
1468	cosignerpreviousstreetfield	
1468	cosignerdependentsfield	
1468	hourlypayfield	
1468	cosigneremployerfield	
1468	statusnote	
1468	cosignerformeremployertimefield	
1468	cosignerlandlordphonefield	
1468	driverlicensestatefield	
1468	statefield	
1468	cosignerssnfield	mTVh7k0DVFSgqwYuwjAzR62uC7nzCNVIBRFINnREdes=
1468	titlefield	
1468	cosignerformeremployerleavereasonfield	
1468	cosigneraddressyearstotalfield	
1468	citytfield	
1468	emailfield	hv13@hotmail.com
1468	codriverlicensefield	
1468	cosignerrentorownfield	
1468	previousaddressyearstotalfield	
1468	cosigneremploymentmonthsfield	
1468	phonefield	7739699892
1468	cosigneremployercityfield	
1468	cosignerphonebillfield	
1468	landlordfield	
1468	maritalstatusfield	
1468	middlenamefield	
1468	cosigneremploymentlengthyearsfield	
1468	cosigneremployeraddressfield	
1468	ssnfield	NnxtiN7wQTqgCjac/y414JUn+Z4aPpcbvgDOdDdB3Js=
1468	formeremployerleavereasonfield	
1468	childsupportagesfield	
1468	cosignerpayperiodfield	
1468	cosignerformeremployerfield	
1468	cosignerpreviouscitytfield	
1468	cosignercitytfield	
1468	addressmonthstotalfield	
1468	cosignerstreetfield	
1468	datepicker	EFB5HsJrzfKCraSp80nSgynkyxwuSFDA838Z+Oary5A=
1468	previousaddressmonthstotalfield	
1468	cosignerhourlypayfield	
1468	bankruptcyfield	
1468	cosignerpositionfield	
1468	cosignerhoursworkedfield	
1468	formeremployertimefield	
1468	dependentagesfield	
1468	employerfield	
1468	cosigneremploymerphonefield	
1468	monthlypaymentfield	
1468	cosignerstatefield	
1468	cosigneremployerzipfield	
1468	cosignerformeremployerphonefield	
1468	cosignerlandlordfield	
1468	previouscitytfield	
1468	cosignerdateofbirthfield	grpLJ1bZWwXkUwA+Yvs/6GZXBk3svryreSs+gIIZzyM=
1468	cosignermobilephonefield	
1468	cosignerzipfield	
1468	cosignermaritalstatusfield	
1468	cosignertownshipfield	
1468	cosigneraddressmonthstotalfield	
1468	formeremployerphonefield	
1468	employerstatefield	
1468	landlordphonefield	
1468	applicationtypefield	
1468	cosignerpreviouszipfield	
1468	cosignerformeremployerpositionfield	
1468	incomefield	
1468	previouszipfield	
1468	lead-id-field	
1468	formeremployerfield	
1468	cosignerpreviousstatefield	
1468	cosignerdependentagesfield	
1468	cosignercountyfield	
1468	maintenancepaymentfield	
1468	countyfield	
1468	townshipfield	
1468	formeremployertimemonthsfield	
1468	cosignerpreviousaddressmonthstotalfield	
1468	phonebillfield	
1468	cosignerformeremployertimemonthsfield	
1468	payperiodfield	
1468	cosignermiddlenamefield	
1468	employercitytfield	
1468	lastnamefield	Hancock
1468	employerzipfield	
1468	firstnamefield	Barry
1468	formeremployerpositionfield	
1468	previousstreetfield	
1468	additionalinformationfield	
1468	additionalincomefield	
1468	additionalincomesourcefield	
1469	emailfield	support@buyercall.com
1469	phonefield	7739699892
1469	lastnamefield	Parker
1469	cosignerchildsupportagesfield	
1469	statusnote	
1469	middlenamefield	J.
1469	cosignermiddlenamefield	
1469	firstnamefield	Peter
1469	streetfield	123 Main ST
1469	addressyearstotalfield	0-1
1469	bankruptcydischargedatefield	05-06-2014
1469	cosignerpreviousaddressyearstotalfield	3
1469	dependentsfield	1
1469	cosignerrepossessionfield	Yes
1469	rentorownfield	Rent
1469	employmentmonthsfield	8
1469	cosigneremailfield	hv@hotmail.com
1469	cosignerphonefield	7732909650
1469	hoursworkedfield	20
1469	mobilephonefield	7739699892
1469	cosignermonthlyincomefield	4320
1469	cosignerdownpaymentfield	1000
1469	cosignerdependentsfield	2
1469	hourlypayfield	4
1469	cosignerbankruptcychapterfield	Chapter 13
1469	cosignerformeremployertimefield	3
1469	cosigneradditionalincomefield	300
1469	cosignerssnfield	WbtNPkNAr+08ekyYU3vT6auVF2Dn4MtvWzcW8LKlz3w=
1469	titlefield	Analyst Programmer
1469	cosigneraddressyearstotalfield	3
1469	citytfield	Seattle
1469	codriverlicensefield	DFGDFG45363
1469	cosignerrentorownfield	Rent
1469	cosigneremploymentmonthsfield	10
1469	cabletvpaymentfield	400
1469	cosignerphonebillfield	H. Howard
1469	landlordfield	J. Board
1469	maritalstatusfield	Married
1469	cosigneremploymentlengthyearsfield	3
1469	cosignerpayperiodfield	monthly
1469	cosignerformeremployerfield	Toolset Inc
1469	cosignercitytfield	Colorado
1469	cosigneradditionalincomesourcefield	Investments
1469	previousaddressmonthstotalfield	9
1469	downpaymentfield	4000
1469	cosignerhourlypayfield	3
1469	cosignerpositionfield	Sales Person
1469	employerfield	Mann Trucks
1469	savingbalancefield	45006
1469	cosignerstatefield	CA
1469	incomefield	5000
1469	cosignerlandlordfield	G. Fields
1469	previouscitytfield	Colorado
1469	cosignerdateofbirthfield	fJ8+3URiZULdARHW4s1zcWdz5ExyHh++mHmze3X4oAk=
1469	repossessiontypefield	Vehicle
1469	cosignerzipfield	60453
1469	employmentyearsfield	3
1469	cosignermaritalstatusfield	Married
1469	cosignertownshipfield	Chicago
1469	cosignerbankcityfield	Seattle
1469	cosigneraddressmonthstotalfield	4
1469	landlordphonefield	8743332312
1469	applicationtypefield	Joint
1469	cosignerpreviouszipfield	98017
1469	cosignerformeremployerpositionfield	Accountant
1469	cosignerrepossessiontypefield	Merchandise
1469	cosigneramountowedfield	2000
1469	previouszipfield	56095
1469	lead-id-field	1469
1469	repossessiondatefield	11-12-1930
1469	formeremployerfield	State Farm
1469	cosignerpreviousstatefield	WA
1469	cosignerdependentagesfield	12, 6
1469	cosignercountyfield	Cook
1469	banknamefield	Chase Bank
1469	countyfield	Ballard
1469	townshipfield	Seattle
1469	cosignerpreviousaddressmonthstotalfield	9
1469	cosignerstreetfield	23 Main Lane 
1469	payperiodfield	weekly
1469	cosignerpriorvehiclecreditborrowedfield	3000
1469	employercitytfield	Lexington
1469	cosignerbanknamefield	US Bank
1469	previousstreetfield	45 Main Road St
1469	cosignerrepossessiondatefield	02-27-1972
1469	bankruptcychapterfield	Chapter 11
1469	cosignerfirstnamefield	Mary
1469	cosignercheckingbalancefield	2000
1469	cosignerutilitiespaymentfield	200
1469	codriverlicensestatefield	CA
1469	cosignerloanwithwhomfield	Forrow Narrow
1469	loanwithwhomfield	Land Bank
1469	previousstatefield	CO
1469	additionalincomesourcefield	Rental income
1469	cosigneremployerstatefield	ID
1469	employeraddressfield	151 Sterling Lake Dr
1469	utilitiespaymentfield	400
1469	cosignerpreviousstreetfield	67 Jumer St
1469	cosigneremployerfield	Shoprite
1469	cosignerlandlordphonefield	8479095456
1469	cosignermonthlypaymentfield	3000
1469	statefield	CO
1469	cosignerformeremployerleavereasonfield	Fired
1469	ccosignerlastnamefield	Blade
1469	workphonefield	7732909650
1469	cosigneremployercityfield	Buffalo
1469	cosignermaintenancepaymentfield	Yes
1469	cosigneremployeraddressfield	45 Main ST Flow
1469	ssnfield	Pl7c13SLUuXIKRsjQoALkDkqWmHK2t8M2XtzXzGh/WQ=
1469	childsupportagesfield	4
1469	formeremployerleavereasonfield	Better paying job
1469	formeremployertimemonthsfield	6
1469	cosignerpreviouscitytfield	Seattle
1469	cosignerchildcarepaymentfield	2300
1469	cosignerbankruptcydischargedatefield	07-04-2016
1469	amountowedfield	3000
1469	checkingbalancefield	3452
1469	datepicker	V9JgiNsMTBPDs0uFUn4bejnrXz5cFXAMxQiNAGHh1b0=
1469	bankruptcyfield	Yes
1469	cosignerhoursworkedfield	3
1469	cosignersavingbalancefield	2340
1469	formeremployertimefield	3
1469	dependentagesfield	12
1469	cosigneremploymerphonefield	7732909653
1469	monthlypaymentfield	2000
1469	additionalincomefield	2000
1469	cosigneremployerzipfield	45095
1469	cosignerformeremployerphonefield	7439094432
1469	driverlicensestatefield	IL
1469	formeremployerphonefield	3123445543
1469	cosignermobilephonefield	7732909653
1469	childcarepaymentfield	120
1469	maintenancepaymentfield	Yes
1469	priorvehiclecreditborrowedfield	4000
1469	zipfield	98102
1469	employerstatefield	AK
1469	repossessionfield	Yes
1469	addressmonthstotalfield	8
1469	cosignercabletvpaymentfield	200
1469	bankcityfield	Chicago
1469	privacypolicyfield	yes
1469	driverlicensefield	DF000324FGH
1469	previousaddressyearstotalfield	2
1469	phonebillfield	M. Bell
1469	formeremployerpositionfield	Accountant
1469	cosignerformeremployertimemonthsfield	9
1469	cosignerbankruptcyfield	Yes
1469	employerzipfield	60612
1469	additionalinformationfield	I want the cheapest deal
1470	streetfield	
1470	addressyearstotalfield	
1470	bankruptcydischargedatefield	
1470	cosignerpreviousaddressyearstotalfield	
1470	dependentsfield	
1470	cosignerrepossessionfield	
1470	rentorownfield	
1470	employmentmonthsfield	
1470	cosigneremailfield	
1470	cosignerphonefield	
1470	hoursworkedfield	
1470	mobilephonefield	
1470	cosignermonthlyincomefield	
1470	cosignerdownpaymentfield	
1470	cosignerdependentsfield	
1470	hourlypayfield	
1470	cosignerbankruptcychapterfield	
1470	cosignerformeremployertimefield	
1470	cosigneradditionalincomefield	
1470	cosignerssnfield	2mJtHS/8P5tCapFOSNbsdmaP2860eQLv7EZPlBJcxzs=
1470	titlefield	
1470	cosigneraddressyearstotalfield	
1470	citytfield	
1470	emailfield	support@buyercall.com
1470	codriverlicensefield	
1470	cosignerrentorownfield	
1470	cosigneremploymentmonthsfield	
1470	phonefield	7739699892
1470	cabletvpaymentfield	
1470	cosignerphonebillfield	
1470	landlordfield	
1470	maritalstatusfield	
1470	cosigneremploymentlengthyearsfield	
1470	cosignerpayperiodfield	
1470	cosignerformeremployerfield	
1470	cosignercitytfield	
1471	citytfield	
1470	cosigneradditionalincomesourcefield	
1470	previousaddressmonthstotalfield	
1470	downpaymentfield	
1470	cosignerhourlypayfield	
1470	cosignerpositionfield	
1470	employerfield	
1470	savingbalancefield	
1470	cosignerstatefield	
1470	incomefield	
1470	cosignerlandlordfield	
1470	previouscitytfield	
1470	cosignerdateofbirthfield	Sh1Xmbo5xOUyhuZ9P1j/bcMCKvCt00yBX9KrbUeCRTg=
1470	repossessiontypefield	
1470	cosignerzipfield	
1470	employmentyearsfield	
1470	cosignermaritalstatusfield	
1470	cosignertownshipfield	
1470	cosignerbankcityfield	
1470	cosigneraddressmonthstotalfield	
1470	landlordphonefield	
1470	applicationtypefield	
1470	cosignerpreviouszipfield	
1470	cosignerformeremployerpositionfield	
1470	cosignerrepossessiontypefield	
1470	cosigneramountowedfield	
1470	previouszipfield	
1470	lead-id-field	
1470	repossessiondatefield	
1470	formeremployerfield	
1470	cosignerpreviousstatefield	
1470	cosignerdependentagesfield	
1470	cosignercountyfield	
1470	banknamefield	
1470	countyfield	
1470	townshipfield	
1470	cosignerpreviousaddressmonthstotalfield	
1470	cosignerstreetfield	
1470	payperiodfield	
1470	cosignerpriorvehiclecreditborrowedfield	
1470	employercitytfield	
1470	lastnamefield	Homes
1470	cosignerbanknamefield	
1470	previousstreetfield	
1470	cosignerrepossessiondatefield	
1470	bankruptcychapterfield	
1470	cosignerchildsupportagesfield	
1470	cosignerfirstnamefield	
1470	cosignercheckingbalancefield	
1470	cosignerutilitiespaymentfield	
1470	codriverlicensestatefield	
1470	cosignerloanwithwhomfield	
1470	loanwithwhomfield	
1470	previousstatefield	
1470	additionalincomesourcefield	
1470	cosigneremployerstatefield	
1470	employeraddressfield	
1470	utilitiespaymentfield	
1470	cosignerpreviousstreetfield	
1470	cosigneremployerfield	
1470	statusnote	
1470	cosignerlandlordphonefield	
1470	cosignermonthlypaymentfield	
1470	statefield	
1470	cosignerformeremployerleavereasonfield	
1470	ccosignerlastnamefield	
1470	workphonefield	
1470	cosigneremployercityfield	
1470	cosignermaintenancepaymentfield	
1470	cosigneremployeraddressfield	
1470	middlenamefield	
1470	ssnfield	XfhAaoPqRxSY/dStHrdxAhkpPwRNnQx8VopPamFtIH8=
1470	childsupportagesfield	
1470	formeremployerleavereasonfield	
1470	formeremployertimemonthsfield	
1470	cosignerpreviouscitytfield	
1470	cosignerchildcarepaymentfield	
1470	cosignerbankruptcydischargedatefield	
1470	amountowedfield	
1470	checkingbalancefield	
1470	datepicker	H37ERqNOgXKtRGnCyfJIOuKjrs+LQuspk0X9dW6Uj9I=
1470	bankruptcyfield	
1470	cosignerhoursworkedfield	
1470	cosignersavingbalancefield	
1470	formeremployertimefield	
1470	dependentagesfield	
1470	cosigneremploymerphonefield	
1470	monthlypaymentfield	
1470	additionalincomefield	
1470	cosigneremployerzipfield	
1470	cosignerformeremployerphonefield	
1470	driverlicensestatefield	
1470	formeremployerphonefield	
1470	cosignermobilephonefield	
1470	childcarepaymentfield	
1470	maintenancepaymentfield	
1470	priorvehiclecreditborrowedfield	
1470	zipfield	
1470	employerstatefield	
1470	repossessionfield	
1470	addressmonthstotalfield	
1470	cosignercabletvpaymentfield	
1470	bankcityfield	
1470	driverlicensefield	
1470	previousaddressyearstotalfield	
1470	phonebillfield	
1470	formeremployerpositionfield	
1470	cosignerformeremployertimemonthsfield	
1470	cosignermiddlenamefield	
1470	cosignerbankruptcyfield	
1470	employerzipfield	
1470	firstnamefield	Blake
1470	additionalinformationfield	
1471	streetfield	
1471	addressyearstotalfield	
1471	bankruptcydischargedatefield	
1471	cosignerpreviousaddressyearstotalfield	
1471	dependentsfield	
1471	cosignerrepossessionfield	
1471	rentorownfield	
1471	employmentmonthsfield	
1471	cosigneremailfield	
1471	cosignerphonefield	
1471	hoursworkedfield	
1471	mobilephonefield	
1471	cosignermonthlyincomefield	
1471	cosignerdownpaymentfield	
1471	cosignerdependentsfield	
1471	hourlypayfield	
1471	cosignerbankruptcychapterfield	
1471	cosignerformeremployertimefield	
1471	cosigneradditionalincomefield	
1471	cosignerssnfield	1G4mFmBMgup0uuQNjZCJr+V+GVrP7ikg9PrwkTeruvY=
1471	titlefield	
1471	cosigneraddressyearstotalfield	
1471	emailfield	support@buyercall.com
1471	codriverlicensefield	
1471	cosignerrentorownfield	
1471	cosigneremploymentmonthsfield	
1471	phonefield	7739699892
1471	cabletvpaymentfield	
1471	cosignerphonebillfield	
1471	landlordfield	
1471	maritalstatusfield	
1471	cosigneremploymentlengthyearsfield	
1471	cosignerpayperiodfield	
1471	cosignerformeremployerfield	
1471	cosignercitytfield	
1471	cosigneradditionalincomesourcefield	
1471	previousaddressmonthstotalfield	
1471	downpaymentfield	
1471	cosignerhourlypayfield	
1471	cosignerpositionfield	
1471	employerfield	
1471	savingbalancefield	
1471	cosignerstatefield	
1471	incomefield	
1471	cosignerlandlordfield	
1471	previouscitytfield	
1471	cosignerdateofbirthfield	rSFax99NOyFAUXqelJW9W+HvnVExt8LAxyjsVDpKSUI=
1471	repossessiontypefield	
1471	cosignerzipfield	
1471	employmentyearsfield	
1471	cosignermaritalstatusfield	
1471	cosignertownshipfield	
1471	cosignerbankcityfield	
1471	cosigneraddressmonthstotalfield	
1471	landlordphonefield	
1471	applicationtypefield	
1471	cosignerpreviouszipfield	
1471	cosignerformeremployerpositionfield	
1471	cosignerrepossessiontypefield	
1471	cosigneramountowedfield	
1471	previouszipfield	
1471	lead-id-field	
1471	repossessiondatefield	
1471	formeremployerfield	
1471	cosignerpreviousstatefield	
1471	cosignerdependentagesfield	
1471	cosignercountyfield	
1471	banknamefield	
1471	countyfield	
1471	townshipfield	
1471	cosignerpreviousaddressmonthstotalfield	
1471	cosignerstreetfield	
1471	payperiodfield	
1471	cosignerpriorvehiclecreditborrowedfield	
1471	employercitytfield	
1471	lastnamefield	sdfsd
1471	cosignerbanknamefield	
1471	previousstreetfield	
1471	cosignerrepossessiondatefield	
1471	bankruptcychapterfield	
1471	cosignerchildsupportagesfield	
1471	cosignerfirstnamefield	
1471	cosignercheckingbalancefield	
1471	cosignerutilitiespaymentfield	
1471	codriverlicensestatefield	
1471	cosignerloanwithwhomfield	
1471	loanwithwhomfield	
1471	previousstatefield	
1471	additionalincomesourcefield	
1471	cosigneremployerstatefield	
1471	employeraddressfield	
1471	utilitiespaymentfield	
1471	cosignerpreviousstreetfield	
1471	cosigneremployerfield	
1471	statusnote	
1471	cosignerlandlordphonefield	
1471	cosignermonthlypaymentfield	
1471	statefield	
1471	cosignerformeremployerleavereasonfield	
1471	ccosignerlastnamefield	
1471	workphonefield	
1471	cosigneremployercityfield	
1471	cosignermaintenancepaymentfield	
1471	cosigneremployeraddressfield	
1471	middlenamefield	
1471	ssnfield	Ebg4OrHpetDDb5J+Q2ah1+8jzLyOh/MiHbRVFarOIUM=
1471	childsupportagesfield	
1471	formeremployerleavereasonfield	
1471	formeremployertimemonthsfield	
1471	cosignerpreviouscitytfield	
1471	cosignerchildcarepaymentfield	
1471	cosignerbankruptcydischargedatefield	
1471	amountowedfield	
1471	checkingbalancefield	
1471	datepicker	utsu0NZnRRqD9ekr7evf0gOG6tpdIHAf6MUJm0/n1c8=
1471	bankruptcyfield	
1471	cosignerhoursworkedfield	
1471	cosignersavingbalancefield	
1471	formeremployertimefield	
1471	dependentagesfield	
1471	cosigneremploymerphonefield	
1471	monthlypaymentfield	
1471	additionalincomefield	
1471	cosigneremployerzipfield	
1471	cosignerformeremployerphonefield	
1471	driverlicensestatefield	
1471	formeremployerphonefield	
1471	cosignermobilephonefield	
1471	childcarepaymentfield	
1471	maintenancepaymentfield	
1471	priorvehiclecreditborrowedfield	
1471	zipfield	
1471	employerstatefield	
1471	repossessionfield	
1471	addressmonthstotalfield	
1471	cosignercabletvpaymentfield	
1471	bankcityfield	
1471	driverlicensefield	
1471	previousaddressyearstotalfield	
1471	phonebillfield	
1471	formeremployerpositionfield	
1471	cosignerformeremployertimemonthsfield	
1471	cosignermiddlenamefield	
1471	cosignerbankruptcyfield	
1471	employerzipfield	
1471	firstnamefield	dsfsdf
1471	additionalinformationfield	
1472	streetfield	
1472	addressyearstotalfield	
1472	bankruptcydischargedatefield	
1472	cosignerpreviousaddressyearstotalfield	
1472	dependentsfield	
1472	cosignerrepossessionfield	
1472	rentorownfield	
1472	employmentmonthsfield	
1472	cosigneremailfield	
1472	cosignerphonefield	
1472	hoursworkedfield	
1472	mobilephonefield	
1472	cosignermonthlyincomefield	
1472	cosignerdownpaymentfield	
1472	cosignerdependentsfield	
1472	hourlypayfield	
1472	cosignerbankruptcychapterfield	
1472	cosignerformeremployertimefield	
1472	cosigneradditionalincomefield	
1472	cosignerssnfield	DrweteRxeY6ZUZFtxGR0HtM2CtF1AxoGk1HSAAtfAto=
1472	titlefield	
1472	cosigneraddressyearstotalfield	
1472	citytfield	
1472	emailfield	support@buyercall.com
1472	codriverlicensefield	
1472	cosignerrentorownfield	
1472	cosigneremploymentmonthsfield	
1472	phonefield	7739699892
1472	cabletvpaymentfield	
1472	cosignerphonebillfield	
1472	landlordfield	
1472	maritalstatusfield	
1472	cosigneremploymentlengthyearsfield	
1472	cosignerpayperiodfield	
1472	cosignerformeremployerfield	
1472	cosignercitytfield	
1472	cosigneradditionalincomesourcefield	
1472	previousaddressmonthstotalfield	
1472	downpaymentfield	
1472	cosignerhourlypayfield	
1472	cosignerpositionfield	
1472	employerfield	
1472	savingbalancefield	
1472	cosignerstatefield	
1472	incomefield	
1472	cosignerlandlordfield	
1472	previouscitytfield	
1472	cosignerdateofbirthfield	qYz6ljQj/R4XuPlkIbV8rxssimUPYJRgLQd7MyfpRz4=
1472	repossessiontypefield	
1472	cosignerzipfield	
1472	employmentyearsfield	
1472	cosignermaritalstatusfield	
1472	cosignertownshipfield	
1472	cosignerbankcityfield	
1472	cosigneraddressmonthstotalfield	
1472	landlordphonefield	
1472	applicationtypefield	
1472	cosignerpreviouszipfield	
1472	cosignerformeremployerpositionfield	
1472	cosignerrepossessiontypefield	
1472	cosigneramountowedfield	
1472	previouszipfield	
1472	lead-id-field	
1472	repossessiondatefield	
1472	formeremployerfield	
1472	cosignerpreviousstatefield	
1472	cosignerdependentagesfield	
1472	cosignercountyfield	
1472	banknamefield	
1472	countyfield	
1472	townshipfield	
1472	cosignerpreviousaddressmonthstotalfield	
1472	cosignerstreetfield	
1472	payperiodfield	
1472	cosignerpriorvehiclecreditborrowedfield	
1472	employercitytfield	
1472	lastnamefield	asd
1472	cosignerbanknamefield	
1472	previousstreetfield	
1472	cosignerrepossessiondatefield	
1472	bankruptcychapterfield	
1472	cosignerchildsupportagesfield	
1472	cosignerfirstnamefield	
1472	cosignercheckingbalancefield	
1472	cosignerutilitiespaymentfield	
1472	codriverlicensestatefield	
1472	cosignerloanwithwhomfield	
1472	loanwithwhomfield	
1472	previousstatefield	
1472	additionalincomesourcefield	
1472	cosigneremployerstatefield	
1472	employeraddressfield	
1472	utilitiespaymentfield	
1472	cosignerpreviousstreetfield	
1472	cosigneremployerfield	
1472	statusnote	
1472	cosignerlandlordphonefield	
1472	cosignermonthlypaymentfield	
1472	statefield	
1472	cosignerformeremployerleavereasonfield	
1472	ccosignerlastnamefield	
1472	workphonefield	
1472	cosigneremployercityfield	
1472	cosignermaintenancepaymentfield	
1472	cosigneremployeraddressfield	
1472	middlenamefield	asd
1472	ssnfield	47KH31FNdN4nXsuGHtID29NkvKWPFUGlAym2QCjCryQ=
1472	childsupportagesfield	
1472	formeremployerleavereasonfield	
1472	formeremployertimemonthsfield	
1472	cosignerpreviouscitytfield	
1472	cosignerchildcarepaymentfield	
1472	cosignerbankruptcydischargedatefield	
1472	amountowedfield	
1472	checkingbalancefield	
1472	datepicker	mQ99Pj7A1BgShrOy2Nv9Pd6TRjaZS8Loboi41uZiz24=
1472	bankruptcyfield	
1472	cosignerhoursworkedfield	
1472	cosignersavingbalancefield	
1472	formeremployertimefield	
1472	dependentagesfield	
1472	cosigneremploymerphonefield	
1472	monthlypaymentfield	
1472	additionalincomefield	
1472	cosigneremployerzipfield	
1472	cosignerformeremployerphonefield	
1472	driverlicensestatefield	
1472	formeremployerphonefield	
1472	cosignermobilephonefield	
1472	childcarepaymentfield	
1472	maintenancepaymentfield	
1472	priorvehiclecreditborrowedfield	
1472	zipfield	
1472	employerstatefield	
1472	repossessionfield	
1472	addressmonthstotalfield	
1472	cosignercabletvpaymentfield	
1472	bankcityfield	
1472	driverlicensefield	
1472	previousaddressyearstotalfield	
1472	phonebillfield	
1472	formeremployerpositionfield	
1473	formeremployerphonefield	
1472	cosignerformeremployertimemonthsfield	
1472	cosignermiddlenamefield	
1472	cosignerbankruptcyfield	
1472	employerzipfield	
1472	firstnamefield	sad
1472	additionalinformationfield	
1473	cosignerpreviousaddressyearstotalfield	
1473	cosignerrepossessionfield	
1473	cosigneremailfield	
1473	cosignerphonefield	
1473	cosignermonthlyincomefield	
1473	cosignerdownpaymentfield	
1473	cosignerdependentsfield	
1473	cosignerbankruptcychapterfield	
1473	cosignerformeremployertimefield	
1473	cosigneradditionalincomefield	
1473	cosigneraddressyearstotalfield	
1473	emailfield	rsmrywillis106@yahoo.com
1473	codriverlicensefield	
1473	cosignerrentorownfield	
1473	cosigneremploymentmonthsfield	
1473	phonefield	4042365394
1473	cosignerphonebillfield	
1473	cosigneremploymentlengthyearsfield	
1473	cosignerpayperiodfield	
1473	cosignerformeremployerfield	
1473	cosignercitytfield	
1473	cosigneradditionalincomesourcefield	
1473	cosignerhourlypayfield	
1473	cosignerpositionfield	
1473	cosignerstatefield	
1473	cosignerlandlordfield	
1473	cosignerzipfield	
1473	cosignermaritalstatusfield	
1473	cosignertownshipfield	
1473	cosignerbankcityfield	
1473	cosigneraddressmonthstotalfield	
1473	cosignerpreviouszipfield	
1473	cosignerformeremployerpositionfield	
1473	cosignerrepossessiontypefield	
1473	cosigneramountowedfield	
1473	formeremployerfield	
1473	cosignerpreviousstatefield	
1473	cosignerdependentagesfield	
1473	cosignercountyfield	
1473	cosignerpreviousaddressmonthstotalfield	
1473	cosignerstreetfield	
1473	cosignerpriorvehiclecreditborrowedfield	
1473	lastnamefield	Willis
1473	cosignerbanknamefield	
1473	cosignerrepossessiondatefield	
1473	cosignerchildsupportagesfield	
1473	cosignerfirstnamefield	
1473	cosignercheckingbalancefield	
1473	cosignerutilitiespaymentfield	
1473	codriverlicensestatefield	
1473	cosignerloanwithwhomfield	
1473	cosigneremployerstatefield	
1473	cosignerpreviousstreetfield	
1473	cosigneremployerfield	
1473	statusnote	
1473	cosignerlandlordphonefield	
1473	cosignermonthlypaymentfield	
1473	cosignerformeremployerleavereasonfield	
1473	ccosignerlastnamefield	
1473	cosigneremployercityfield	
1473	cosignermaintenancepaymentfield	
1473	cosigneremployeraddressfield	
1473	middlenamefield	
1473	childsupportagesfield	
1473	formeremployerleavereasonfield	
1473	formeremployertimemonthsfield	
1473	cosignerpreviouscitytfield	
1473	cosignerchildcarepaymentfield	
1473	cosignerbankruptcydischargedatefield	
1473	cosignerhoursworkedfield	
1473	cosignersavingbalancefield	
1473	formeremployertimefield	
1473	cosigneremploymerphonefield	
1473	cosigneremployerzipfield	
1473	cosignerformeremployerphonefield	
1473	cosignermobilephonefield	
1473	cosignercabletvpaymentfield	
1473	formeremployerpositionfield	
1473	cosignerformeremployertimemonthsfield	
1473	cosignermiddlenamefield	
1473	cosignerbankruptcyfield	
1473	firstnamefield	Rosemary
1473	additionalinformationfield	
1473	streetfield	2718 oxford drive
1473	addressyearstotalfield	0-1
1473	bankruptcydischargedatefield	03-18-2015
1473	dependentsfield	1
1473	rentorownfield	Other
1473	employmentmonthsfield	0
1473	hoursworkedfield	35
1473	mobilephonefield	4042365394
1473	hourlypayfield	13
1473	cosignerssnfield	pmeaqXC0hQn8Nnj2lgtY8CFeeD0be7PjW9ew2Fak5Bw=
1473	titlefield	custodian
1473	citytfield	Gainesville
1473	cabletvpaymentfield	0
1473	landlordfield	Christopher Willis
1473	maritalstatusfield	Unmarried
1473	previousaddressmonthstotalfield	3
1473	downpaymentfield	400
1473	employerfield	Ga Tech
1473	savingbalancefield	0
1473	incomefield	1318
1473	previouscitytfield	Atlanta 
1473	cosignerdateofbirthfield	SNqjht0TmacDmmaA4xQ0eo+CzYIEKcpBGqzaKv5tUAM=
1473	repossessiontypefield	Vehicle
1473	employmentyearsfield	5
1473	landlordphonefield	4042596762
1473	applicationtypefield	Individual
1473	previouszipfield	30316
1473	lead-id-field	1473
1473	repossessiondatefield	07-01-2016
1473	banknamefield	0
1473	countyfield	Fulton
1473	townshipfield	Atlanta
1473	payperiodfield	bi-weekly
1473	employercitytfield	Atlanta 
1473	previousstreetfield	2141 Vineyard walk
1473	bankruptcychapterfield	Chapter 7
1473	loanwithwhomfield	0
1473	previousstatefield	GA
1473	additionalincomesourcefield	0
1473	employeraddressfield	North Avenue NW
1473	utilitiespaymentfield	0
1473	statefield	GA
1473	workphonefield	4048941439
1473	ssnfield	+2bzcYopfzW2wjAcKuduFmhRB6BrtHcgZQKTblEWFXk=
1473	amountowedfield	0
1473	checkingbalancefield	0
1473	datepicker	IJiV7H2zYv+1/RX6kEMWxuhM2PFVOcz/GAOXi1ruUKA=
1473	bankruptcyfield	Yes
1473	dependentagesfield	10
1473	monthlypaymentfield	450
1473	additionalincomefield	0
1473	driverlicensestatefield	GA
1473	childcarepaymentfield	0
1473	maintenancepaymentfield	No
1473	priorvehiclecreditborrowedfield	0
1473	zipfield	30354
1473	employerstatefield	GA
1473	repossessionfield	Yes
1473	addressmonthstotalfield	1
1473	bankcityfield	0
1473	privacypolicyfield	yes
1473	driverlicensefield	053405659
1473	previousaddressyearstotalfield	3
1473	phonebillfield	Rosemary Willis
1473	employerzipfield	30332
1474	streetfield	
1474	addressyearstotalfield	
1474	bankruptcydischargedatefield	
1474	cosignerpreviousaddressyearstotalfield	
1474	dependentsfield	
1474	cosignerrepossessionfield	
1474	rentorownfield	
1474	employmentmonthsfield	
1474	cosigneremailfield	
1474	cosignerphonefield	
1474	hoursworkedfield	
1474	mobilephonefield	
1474	cosignermonthlyincomefield	
1474	cosignerdownpaymentfield	
1474	cosignerdependentsfield	
1474	hourlypayfield	
1474	cosignerbankruptcychapterfield	
1474	cosignerformeremployertimefield	
1474	cosigneradditionalincomefield	
1474	cosignerssnfield	w/drj/AFYnJOIN/lHWS2/Ul1ghwyBKK6VD0V0ZnG7RM=
1474	titlefield	
1474	cosigneraddressyearstotalfield	
1474	citytfield	
1474	emailfield	steveneu@live.com
1474	codriverlicensefield	
1474	cosignerrentorownfield	
1474	cosigneremploymentmonthsfield	
1474	phonefield	803-546-2731
1474	cabletvpaymentfield	
1474	cosignerphonebillfield	
1474	landlordfield	
1474	maritalstatusfield	
1474	cosigneremploymentlengthyearsfield	
1474	cosignerpayperiodfield	
1474	cosignerformeremployerfield	
1474	cosignercitytfield	
1474	cosigneradditionalincomesourcefield	
1474	previousaddressmonthstotalfield	
1474	downpaymentfield	
1474	cosignerhourlypayfield	
1474	cosignerpositionfield	
1474	employerfield	
1474	savingbalancefield	
1474	cosignerstatefield	
1474	incomefield	
1474	cosignerlandlordfield	
1474	previouscitytfield	
1475	cosigneremploymentlengthyearsfield	
1475	cosignerpayperiodfield	
1475	cosignerformeremployerfield	
1475	cosignercitytfield	
1475	cosigneradditionalincomesourcefield	
1475	previousaddressmonthstotalfield	
1475	cosignerhourlypayfield	
1475	cosignerpositionfield	
1474	cosignerdateofbirthfield	a84AlP3kaDQwLsLGEvU3aZ4lJBtjtF4P6F1pG0KmCC4=
1474	repossessiontypefield	
1474	cosignerzipfield	
1474	employmentyearsfield	
1474	cosignermaritalstatusfield	
1474	cosignertownshipfield	
1474	cosignerbankcityfield	
1474	cosigneraddressmonthstotalfield	
1474	landlordphonefield	
1474	applicationtypefield	
1474	cosignerpreviouszipfield	
1474	cosignerformeremployerpositionfield	
1474	cosignerrepossessiontypefield	
1474	cosigneramountowedfield	
1474	previouszipfield	
1474	lead-id-field	
1474	repossessiondatefield	
1474	formeremployerfield	
1474	cosignerpreviousstatefield	
1474	cosignerdependentagesfield	
1474	cosignercountyfield	
1474	banknamefield	
1474	countyfield	
1474	townshipfield	
1474	cosignerpreviousaddressmonthstotalfield	
1474	cosignerstreetfield	
1474	payperiodfield	
1474	cosignerpriorvehiclecreditborrowedfield	
1474	employercitytfield	
1474	lastnamefield	Neu
1474	cosignerbanknamefield	
1474	previousstreetfield	
1474	cosignerrepossessiondatefield	
1474	bankruptcychapterfield	
1474	cosignerchildsupportagesfield	
1474	cosignerfirstnamefield	
1474	cosignercheckingbalancefield	
1474	cosignerutilitiespaymentfield	
1474	codriverlicensestatefield	
1474	cosignerloanwithwhomfield	
1474	loanwithwhomfield	
1474	previousstatefield	
1474	additionalincomesourcefield	
1474	cosigneremployerstatefield	
1474	employeraddressfield	
1474	utilitiespaymentfield	
1474	cosignerpreviousstreetfield	
1474	cosigneremployerfield	
1474	statusnote	
1474	cosignerlandlordphonefield	
1474	cosignermonthlypaymentfield	
1474	statefield	
1474	cosignerformeremployerleavereasonfield	
1474	ccosignerlastnamefield	
1474	workphonefield	
1474	cosigneremployercityfield	
1474	cosignermaintenancepaymentfield	
1474	cosigneremployeraddressfield	
1474	middlenamefield	
1474	ssnfield	jzWcb1vhxu0BteOs7gY18DRwPCGp4HerBf4V9cnEA78=
1474	childsupportagesfield	
1474	formeremployerleavereasonfield	
1474	formeremployertimemonthsfield	
1474	cosignerpreviouscitytfield	
1474	cosignerchildcarepaymentfield	
1474	cosignerbankruptcydischargedatefield	
1474	amountowedfield	
1474	checkingbalancefield	
1474	datepicker	N4LHPbNabTM4MpdsSXSzPmrCRLoyLyPxxMGtrlsihrE=
1474	bankruptcyfield	
1474	cosignerhoursworkedfield	
1474	cosignersavingbalancefield	
1474	formeremployertimefield	
1474	dependentagesfield	
1474	cosigneremploymerphonefield	
1474	monthlypaymentfield	
1474	additionalincomefield	
1474	cosigneremployerzipfield	
1474	cosignerformeremployerphonefield	
1474	driverlicensestatefield	
1474	formeremployerphonefield	
1474	cosignermobilephonefield	
1474	childcarepaymentfield	
1474	maintenancepaymentfield	
1474	priorvehiclecreditborrowedfield	
1474	zipfield	
1474	employerstatefield	
1474	repossessionfield	
1474	addressmonthstotalfield	
1474	cosignercabletvpaymentfield	
1474	bankcityfield	
1474	driverlicensefield	
1474	previousaddressyearstotalfield	
1474	phonebillfield	
1474	formeremployerpositionfield	
1474	cosignerformeremployertimemonthsfield	
1474	cosignermiddlenamefield	
1474	cosignerbankruptcyfield	
1474	employerzipfield	
1474	firstnamefield	Steve
1474	additionalinformationfield	
1475	bankruptcydischargedatefield	
1475	cosignerpreviousaddressyearstotalfield	
1475	cosignerrepossessionfield	
1475	cosigneremailfield	
1475	cosignerphonefield	
1475	cosignerdownpaymentfield	
1475	cosignerdependentsfield	
1475	cosignerbankruptcychapterfield	
1475	repfield	
1475	cosignerformeremployertimefield	
1475	cosigneradditionalincomefield	
1475	cosigneraddressyearstotalfield	
1475	emailfield	testing@buyercall.com
1475	codriverlicensefield	
1475	cosignerrentorownfield	
1475	cosigneremploymentmonthsfield	
1475	phonefield	7735649987
1475	cosignerphonebillfield	
1475	cosignermonthlyincomefield	5000
1475	cosignerstatefield	
1475	cosignerlandlordfield	
1475	previouscitytfield	
1475	cosignerzipfield	
1475	cosignermaritalstatusfield	
1475	cosignertownshipfield	
1475	cosignerbankcityfield	
1475	cosigneraddressmonthstotalfield	
1475	cosignerpreviouszipfield	
1475	cosignerformeremployerpositionfield	
1475	cosignerrepossessiontypefield	
1475	cosigneramountowedfield	
1475	previouszipfield	
1475	formeremployerfield	
1475	cosignerpreviousstatefield	
1475	cosignerdependentagesfield	
1475	cosignercountyfield	
1475	cosignerpreviousaddressmonthstotalfield	
1475	cosignerstreetfield	
1475	cosignerpriorvehiclecreditborrowedfield	
1475	lastnamefield	Stewart
1475	cosignerbanknamefield	
1475	previousstreetfield	
1475	cosignerrepossessiondatefield	
1475	bankruptcychapterfield	
1475	cosignerchildsupportagesfield	
1475	cosignerfirstnamefield	
1475	cosignercheckingbalancefield	
1475	cosignerutilitiespaymentfield	
1475	codriverlicensestatefield	
1475	cosignerloanwithwhomfield	
1475	previousstatefield	
1475	dealerlotfield	L1
1475	cosigneremployerstatefield	
1475	cosignerpreviousstreetfield	
1475	cosigneremployerfield	
1475	statusnote	
1475	cosignerlandlordphonefield	
1475	cosignermonthlypaymentfield	
1475	cosignerformeremployerleavereasonfield	
1475	ccosignerlastnamefield	
1475	cosigneremployercityfield	
1475	cosignermaintenancepaymentfield	
1475	cosigneremployeraddressfield	
1475	middlenamefield	Saul
1475	childsupportagesfield	
1475	formeremployerleavereasonfield	
1475	formeremployertimemonthsfield	
1475	cosignerpreviouscitytfield	
1475	cosignerchildcarepaymentfield	
1475	cosignerbankruptcydischargedatefield	
1475	cosignerhoursworkedfield	
1475	cosignersavingbalancefield	
1475	formeremployertimefield	
1475	cosigneremploymerphonefield	
1475	cosigneremployerzipfield	
1475	cosignerformeremployerphonefield	
1475	formeremployerphonefield	
1475	cosignermobilephonefield	
1475	cosignercabletvpaymentfield	
1475	previousaddressyearstotalfield	
1475	formeremployerpositionfield	
1475	cosignerformeremployertimemonthsfield	
1475	cosignermiddlenamefield	
1475	cosignerbankruptcyfield	
1475	firstnamefield	Mark
1475	streetfield	123 Main ST
1475	addressyearstotalfield	5
1475	dependentsfield	4
1475	rentorownfield	Rent
1475	employmentmonthsfield	11
1475	hoursworkedfield	4
1475	mobilephonefield	7732985456
1475	hourlypayfield	5
1475	cosignerssnfield	9QIcVnxCAGQvCIEhVVfw/IwI74MvT1U4WYpA63mNy+I=
1475	titlefield	Manager
1475	citytfield	Lexington
1475	cabletvpaymentfield	400
1475	landlordfield	Fred Connor
1475	maritalstatusfield	Unmarried
1475	downpaymentfield	2000
1475	employerfield	Cadbudy
1475	savingbalancefield	5000
1475	incomefield	5000
1475	cosignerdateofbirthfield	l44OZcDpoFcrSu5W4fAoZ55C0Gz6NWnuC+yS5YRHgbs=
1475	repossessiontypefield	Merchandise
1475	loanwithwhomfield	Land Bank
1475	landlordphonefield	7732985431
1475	applicationtypefield	Individual
1475	lead-id-field	1475
1475	repossessiondatefield	11-09-2012
1475	banknamefield	Chase Bank
1475	countyfield	Cook
1475	townshipfield	Cook
1475	payperiodfield	Weekly
1475	employercitytfield	Chicago
1475	additionalincomesourcefield	Investments
1475	employeraddressfield	54 Roadline Rd
1475	utilitiespaymentfield	400
1475	statefield	AR
1475	workphonefield	6533422233
1475	ssnfield	3HmcnHOvG8HdicA9X7WsJc8gNLAs1pLvxZjuO9jddJQ=
1475	amountowedfield	3000
1475	checkingbalancefield	5000
1475	datepicker	aBrLM2tS35b8JNMRdLQv4f0CaX1cQFydO2gEFskdzAE=
1475	bankruptcyfield	No
1475	dependentagesfield	44
1475	monthlypaymentfield	5000
1475	additionalincomefield	3000
1475	employmentyearsfield	5
1475	driverlicensestatefield	HI
1475	childcarepaymentfield	5000
1475	maintenancepaymentfield	No
1475	priorvehiclecreditborrowedfield	4000
1475	zipfield	29072
1475	employerstatefield	CA
1475	repossessionfield	Yes
1475	addressmonthstotalfield	11
1475	bankcityfield	Chicago
1475	privacypolicyfield	yes
1475	driverlicensefield	DFK00324234DF
1475	phonebillfield	Harry Harrison
1475	employerzipfield	50525
1475	additionalinformationfield	None
1476	cosignerpreviousaddressyearstotalfield	
1476	cosignerrepossessionfield	
1476	cosigneremailfield	
1476	cosignerphonefield	
1476	cosignermonthlyincomefield	
1476	cosignerdownpaymentfield	
1476	cosignerdependentsfield	
1476	cosignerbankruptcychapterfield	
1476	cosignerformeremployertimefield	
1476	cosigneradditionalincomefield	
1476	cosigneraddressyearstotalfield	
1476	emailfield	Fred@buyercall.com
1476	codriverlicensefield	
1476	cosignerrentorownfield	
1476	cosigneremploymentmonthsfield	
1476	phonefield	2245439906
1476	cosignerphonebillfield	
1476	cosigneremploymentlengthyearsfield	
1476	cosignerpayperiodfield	
1476	cosignerformeremployerfield	
1476	cosignercitytfield	
1476	cosigneradditionalincomesourcefield	
1476	previousaddressmonthstotalfield	
1476	cosignerhourlypayfield	
1476	cosignerpositionfield	
1476	cosignerstatefield	
1476	cosignerlandlordfield	
1476	previouscitytfield	
1476	repossessiontypefield	
1476	cosignerzipfield	
1476	cosignermaritalstatusfield	
1476	cosignertownshipfield	
1476	cosignerbankcityfield	
1476	cosigneraddressmonthstotalfield	
1476	cosignerpreviouszipfield	
1476	cosignerformeremployerpositionfield	
1476	cosignerrepossessiontypefield	
1476	cosigneramountowedfield	
1476	previouszipfield	
1476	repossessiondatefield	
1476	formeremployerfield	
1476	cosignerpreviousstatefield	
1476	cosignerdependentagesfield	
1476	cosignercountyfield	
1476	cosignerpreviousaddressmonthstotalfield	
1476	cosignerstreetfield	
1476	cosignerpriorvehiclecreditborrowedfield	
1476	lastnamefield	Walton
1476	cosignerbanknamefield	
1476	previousstreetfield	
1476	cosignerrepossessiondatefield	
1476	cosignerchildsupportagesfield	
1476	cosignerfirstnamefield	
1476	cosignercheckingbalancefield	
1476	cosignerutilitiespaymentfield	
1476	codriverlicensestatefield	
1476	cosignerloanwithwhomfield	
1476	previousstatefield	
1476	dealerlotfield	L1
1476	cosigneremployerstatefield	
1476	cosignerpreviousstreetfield	
1476	cosigneremployerfield	
1476	statusnote	
1476	cosignerlandlordphonefield	
1476	cosignermonthlypaymentfield	
1476	cosignerformeremployerleavereasonfield	
1476	ccosignerlastnamefield	
1476	repfield	John McGill
1476	cosigneremployercityfield	
1476	cosignermaintenancepaymentfield	
1476	cosigneremployeraddressfield	
1476	middlenamefield	Sean
1476	childsupportagesfield	
1476	formeremployerleavereasonfield	
1476	formeremployertimemonthsfield	
1476	cosignerpreviouscitytfield	
1476	cosignerchildcarepaymentfield	
1476	cosignerbankruptcydischargedatefield	
1476	cosignerhoursworkedfield	
1476	cosignersavingbalancefield	
1476	formeremployertimefield	
1476	cosigneremploymerphonefield	
1476	cosigneremployerzipfield	
1476	cosignerformeremployerphonefield	
1476	formeremployerphonefield	
1476	cosignermobilephonefield	
1476	cosignercabletvpaymentfield	
1476	previousaddressyearstotalfield	
1476	formeremployerpositionfield	
1476	cosignerformeremployertimemonthsfield	
1476	cosignermiddlenamefield	
1476	cosignerbankruptcyfield	
1476	firstnamefield	Fred
1476	streetfield	23 Main St
1476	addressyearstotalfield	5
1476	bankruptcydischargedatefield	06-07-2014
1476	dependentsfield	4
1476	rentorownfield	Rent
1476	employmentmonthsfield	7
1476	hoursworkedfield	5
1476	mobilephonefield	2246753035
1476	hourlypayfield	500
1476	cosignerssnfield	NimmVjCwb4cLVXOfxXvOoIg0cQSdNvvjdOzqFdXBm90=
1476	titlefield	Welder manager
1476	citytfield	Chicago
1476	cabletvpaymentfield	100
1476	landlordfield	Cody Connor
1476	maritalstatusfield	Unmarried
1476	downpaymentfield	3450
1476	employerfield	Sincerest limited
1476	savingbalancefield	23987
1476	incomefield	4000
1476	cosignerdateofbirthfield	KWtcUMxivrsH66gWut8acE3yIfX3sngfFdoJ7oJVOeE=
1476	loanwithwhomfield	Senior Living Credit Union
1476	landlordphonefield	2247658799
1476	applicationtypefield	Individual
1476	lead-id-field	1476
1476	banknamefield	Chase Bank
1476	countyfield	Cook
1476	townshipfield	Cook
1476	payperiodfield	Weekly
1476	employercitytfield	Chicago
1476	bankruptcychapterfield	Chapter 13
1476	additionalincomesourcefield	Investments
1476	employeraddressfield	134 Sunlane Rd
1476	utilitiespaymentfield	127
1476	statefield	IL
1476	workphonefield	2248765508
1476	ssnfield	qcgodkDTrqAou0dNQLGunjjwROYNJKQXDXJGhVzuA3k=
1476	amountowedfield	3400
1476	checkingbalancefield	1254
1476	datepicker	vdmgvtUFeiouu1Vf/iFiU0kVFpHXHuSfQ+jL9yrwIFY=
1476	bankruptcyfield	Yes
1476	dependentagesfield	14,11,3,8
1476	monthlypaymentfield	400
1476	additionalincomefield	234
1476	employmentyearsfield	5
1476	driverlicensestatefield	CO
1476	childcarepaymentfield	0
1476	maintenancepaymentfield	No
1476	priorvehiclecreditborrowedfield	4000
1476	zipfield	60649
1476	employerstatefield	IL
1476	repossessionfield	No
1476	addressmonthstotalfield	6
1476	bankcityfield	Chicago
1476	privacypolicyfield	yes
1476	driverlicensefield	Sd957274
1476	phonebillfield	Fred Scott
1476	employerzipfield	60540
1476	additionalinformationfield	No comments 
1477	cosignerbankruptcychapterfield	
1477	repfield	
1477	streetfield	54 Main ST
1477	addressyearstotalfield	3
1477	bankruptcydischargedatefield	06-07-2014
1477	cosignerpreviousaddressyearstotalfield	3
1477	dependentsfield	4
1477	cosignerrepossessionfield	No
1477	rentorownfield	Rent
1477	employmentmonthsfield	4
1477	cosigneremailfield	Mary@buyercall.com
1477	cosignerphonefield	7658976655
1477	hoursworkedfield	40
1477	mobilephonefield	5678984556
1477	cosignermonthlyincomefield	4000
1477	cosignerdownpaymentfield	0
1477	cosignerdependentsfield	0
1477	hourlypayfield	40
1477	cosignerformeremployertimefield	3
1477	cosigneradditionalincomefield	0
1477	cosignerssnfield	lBHgLCo3l1ill2T4hhyCOoynuODwLJJDzEnBMD6Og1g=
1477	titlefield	Handy man
1477	cosigneraddressyearstotalfield	3
1477	emailfield	Steven@buyercall.com
1477	phonefield	3123344567
1477	cosignerrepossessiontypefield	
1477	lastnamefield	Flint
1477	cosignerrepossessiondatefield	
1477	dealerlotfield	L1
1477	statusnote	
1477	middlenamefield	Gary
1477	childsupportagesfield	
1477	cosignerbankruptcydischargedatefield	
1477	firstnamefield	Steven 
1477	citytfield	Chicago
1477	codriverlicensefield	DFG462949BMB
1477	cosignerrentorownfield	Rent
1477	cosigneremploymentmonthsfield	5
1477	cabletvpaymentfield	100
1477	cosignerphonebillfield	Fred meyer
1477	landlordfield	Ted bundy
1477	maritalstatusfield	Married
1477	cosigneremploymentlengthyearsfield	3
1477	cosignerpayperiodfield	Weekly
1477	cosignerformeremployerfield	Corner barkery
1477	cosignercitytfield	Chicago
1477	cosigneradditionalincomesourcefield	None
1477	previousaddressmonthstotalfield	6
1477	downpaymentfield	5009
1477	cosignerhourlypayfield	4
1477	cosignerpositionfield	Onwner
1477	employerfield	Mercury Store
1477	savingbalancefield	23400
1477	cosignerstatefield	IL
1477	incomefield	4000
1477	cosignerlandlordfield	Ted bundy
1477	previouscitytfield	Chicago
1477	cosignerdateofbirthfield	QHTmar5zy2FXz4bUDI7no88dHiimt0oyMSru2j45S44=
1477	repossessiontypefield	Vehicle
1477	cosignerzipfield	60513
1477	loanwithwhomfield	Stew Brew
1477	cosignermaritalstatusfield	Unmarried
1477	cosignertownshipfield	Cook
1477	cosignerbankcityfield	Chicago
1477	cosigneraddressmonthstotalfield	4
1477	landlordphonefield	5358873321
1477	applicationtypefield	Joint
1477	cosignerpreviouszipfield	60613
1477	cosignerformeremployerpositionfield	Baker
1477	cosigneramountowedfield	300
1477	previouszipfield	60513
1477	lead-id-field	1477
1477	repossessiondatefield	06-06-2014
1477	formeremployerfield	Man trucks
1477	cosignerpreviousstatefield	CO
1477	cosignerdependentagesfield	0
1477	cosignercountyfield	Cook
1477	banknamefield	Fred Bank
1477	countyfield	Cook
1477	townshipfield	Cook
1477	cosignerpreviousaddressmonthstotalfield	6
1477	cosignerstreetfield	43 Main St
1477	payperiodfield	Weekly
1477	cosignerpriorvehiclecreditborrowedfield	4000
1477	employercitytfield	Chicago
1477	cosignerbanknamefield	Volt bank
1477	previousstreetfield	34 pretty st
1477	bankruptcychapterfield	Chapter 11
1477	cosignerchildsupportagesfield	6
1477	cosignerfirstnamefield	Mary
1477	cosignercheckingbalancefield	4000
1477	cosignerutilitiespaymentfield	0
1477	codriverlicensestatefield	CT
1477	cosignerloanwithwhomfield	Hd cooler
1477	additionalincomesourcefield	Investments
1477	previousstatefield	DE
1477	cosigneremployerstatefield	CT
1477	employeraddressfield	23244 Test
1477	utilitiespaymentfield	300
1477	cosignerpreviousstreetfield	234 main st
1477	cosigneremployerfield	Mary Cookies
1477	cosignerlandlordphonefield	5369875432
1477	cosignermonthlypaymentfield	4000
1477	statefield	IL
1477	cosignerformeremployerleavereasonfield	Start own businesz
1477	ccosignerlastnamefield	Stewart
1477	workphonefield	2342342342
1477	cosigneremployercityfield	Chicago
1477	cosignermaintenancepaymentfield	Yes
1477	cosigneremployeraddressfield	54 Sterling road
1477	ssnfield	U6M8Kua9xLbxE7Na2RWRh1JiAPW31js30O/hzN2FePY=
1477	formeremployerleavereasonfield	More money
1477	formeremployertimemonthsfield	5
1477	cosignerpreviouscitytfield	Chicago
1477	cosignerchildcarepaymentfield	0
1477	amountowedfield	2000
1477	checkingbalancefield	3000
1477	datepicker	SMnrNiYS1GDo0jtfGJOqhdc7JLGQoqqwKidbzGEZAgI=
1477	bankruptcyfield	Yes
1477	cosignerhoursworkedfield	40
1477	cosignersavingbalancefield	2389
1477	formeremployertimefield	3
1477	dependentagesfield	12, 3, 5
1477	cosigneremploymerphonefield	3216753322
1477	monthlypaymentfield	4000
1477	additionalincomefield	200
1477	cosigneremployerzipfield	50645
1477	employmentyearsfield	3
1477	cosignerformeremployerphonefield	3216548877
1477	driverlicensestatefield	CT
1477	formeremployerphonefield	7732890865
1477	cosignermobilephonefield	5469954532
1477	childcarepaymentfield	0
1477	maintenancepaymentfield	No
1477	priorvehiclecreditborrowedfield	4000
1477	zipfield	60513
1477	employerstatefield	IL
1477	repossessionfield	Yes
1477	addressmonthstotalfield	5
1477	cosignercabletvpaymentfield	0
1477	bankcityfield	Chicago
1477	privacypolicyfield	yes
1477	driverlicensefield	DFG09547VBN
1477	previousaddressyearstotalfield	3
1477	phonebillfield	Fred meyers
1477	formeremployerpositionfield	Handy man
1477	cosignerformeremployertimemonthsfield	5
1477	cosignermiddlenamefield	Jane
1477	cosignerbankruptcyfield	No
1477	employerzipfield	60613
1477	additionalinformationfield	Nothing to say
1478	cosigneradditionalincomesourcefield	
1478	cosignerphonefield	
1478	cosignerfirstnamefield	
1478	ccosignerlastnamefield	
1478	cosigneremailfield	
1478	cosigneremployerstatefield	
1478	cosignermonthlyincomefield	
1478	cosignermonthlypaymentfield	
1478	cosignerpreviousstreetfield	
1478	cosigneremployercityfield	
1478	cosigneremployerfield	
1478	statusnote	
1478	cosignerformeremployertimefield	
1478	cosignerformeremployerphonefield	
1478	driverlicensestatefield	WA
1478	cosigneradditionalincomefield	
1478	cosigneraddressyearstotalfield	
1478	emailfield	hv13@hotmail.com
1478	codriverlicensefield	
1478	cosignerrentorownfield	
1478	formeremployerphonefield	
1478	cosigneremploymentlengthyearsfield	
1478	cosignerformeremployerfield	
1478	cosignerpreviouscitytfield	
1478	cosignercitytfield	
1478	cosignerstreetfield	
1478	stockfield	0005463
1478	cosignerpositionfield	
1478	formeremployertimefield	
1478	cosigneremploymerphonefield	
1478	formeremployerstatefield	
1478	previouscitytfield	
1478	cosignerzipfield	
1478	cosignerformeremployercityfield	
1478	locationfield	Bedford
1478	previouszipfield	
1478	phonefield	7732909650
1478	cosignerpreviouszipfield	
1478	cosignerformeremployerpositionfield	
1478	vehiclefield	Toyota
1478	formeremployerfield	
1478	cosignerformeremployerstatefield	
1478	lastnamefield	Thomas
1478	formeremployercityfield	
1478	firstnamefield	Brad
1478	formeremployerpositionfield	
1478	previousstreetfield	
1478	streetfield	151 Sterling Lake Dr
1478	addressyearstotalfield	5
1478	rentorownfield	Rent
1478	codriverlicensestatefield	WA
1478	additionalincomesourcefield	Investment
1478	previousstatefield	WA
1478	cosignerssnfield	E0IOy9l4gIKWxc8OqxI7SJJgcdb0Lm4IQCNMzoq7G+s=
1478	titlefield	Analyst Programmer
1478	workphonefield	7732909650
1478	citytfield	Lexington
1478	ssnfield	SvEHb8Y1MtFaBQTfAkG+rH52AY6XFyks8cGJIZlA2AI=
1478	datepicker	1OXhO10BSx1tFBZzTy+Q2SlrDqMdWrUzOrTpwKwp7EY=
1478	additionalincomefield	5000
1478	employerfield	Mann Trucks
1478	monthlypaymentfield	40000
1478	cosignerstatefield	WA
1478	applicationtypefield	Individual
1478	cosignerdateofbirthfield	dJYD/7XEbyq7uAGnbe83+9F4+AJw3BHGR6DBmJGNObQ=
1478	employmentyearsfield	5
1478	statefield	AK
1478	zipfield	29072
1478	employerstatefield	AZ
1478	incomefield	65999
1478	lead-id-field	1478
1478	cosignerpreviousstatefield	WA
1478	privacypolicyfield	yes
1478	driverlicensefield	FGFHsdfgdfgdfg
1478	employercitytfield	Chicago
1478	additionalinformationfield	none
1479	bankruptcydischargedatefield	
1479	cosignerpreviousaddressyearstotalfield	
1479	cosignerrepossessionfield	
1479	cosigneremailfield	
1479	cosignerphonefield	
1479	cosignermonthlyincomefield	
1479	cosignerdownpaymentfield	
1479	cosignerdependentsfield	
1479	cosignerbankruptcychapterfield	
1479	repfield	
1479	cosignerformeremployertimefield	
1479	cosigneradditionalincomefield	
1479	cosigneraddressyearstotalfield	
1479	emailfield	hv34@hotmail.com
1479	codriverlicensefield	
1479	cosignerrentorownfield	
1479	cosigneremploymentmonthsfield	
1479	phonefield	7739699892
1479	cosignerphonebillfield	
1479	cosigneremploymentlengthyearsfield	
1479	cosignerpayperiodfield	
1479	cosignerformeremployerfield	
1479	cosignercitytfield	
1479	cosigneradditionalincomesourcefield	
1479	previousaddressmonthstotalfield	
1479	cosignerhourlypayfield	
1479	streetfield	123 Main ST
1479	addressyearstotalfield	5
1479	dependentsfield	4
1479	rentorownfield	Rent
1479	employmentmonthsfield	10
1479	hoursworkedfield	5
1479	mobilephonefield	7734565433
1479	hourlypayfield	5
1479	cosignerssnfield	cMGDTaW4d51+liqxJbiWSjSF6KgK4rSKf7YXODhGFZQ=
1479	titlefield	Analyst Programmer
1479	citytfield	Seattle
1479	cabletvpaymentfield	400
1479	landlordfield	Barry
1479	maritalstatusfield	Unmarried
1479	downpaymentfield	4000
1479	cosignerpositionfield	
1479	cosignerstatefield	
1479	cosignerlandlordfield	
1479	previouscitytfield	
1479	repossessiontypefield	
1479	cosignerzipfield	
1479	cosignermaritalstatusfield	
1479	cosignertownshipfield	
1479	cosignerbankcityfield	
1479	cosigneraddressmonthstotalfield	
1479	cosignerpreviouszipfield	
1479	cosignerformeremployerpositionfield	
1479	cosignerrepossessiontypefield	
1479	cosigneramountowedfield	
1479	previouszipfield	
1479	repossessiondatefield	
1479	formeremployerfield	
1479	cosignerpreviousstatefield	
1479	cosignerdependentagesfield	
1479	cosignercountyfield	
1479	cosignerpreviousaddressmonthstotalfield	
1479	cosignerstreetfield	
1479	cosignerpriorvehiclecreditborrowedfield	
1479	lastnamefield	Ballard
1479	cosignerbanknamefield	
1479	previousstreetfield	
1479	cosignerrepossessiondatefield	
1479	bankruptcychapterfield	
1479	cosignerchildsupportagesfield	
1479	cosignerfirstnamefield	
1479	cosignercheckingbalancefield	
1479	cosignerutilitiespaymentfield	
1479	codriverlicensestatefield	
1479	cosignerloanwithwhomfield	
1479	previousstatefield	
1479	dealerlotfield	L01
1479	cosigneremployerstatefield	
1479	cosignerpreviousstreetfield	
1479	cosigneremployerfield	
1479	statusnote	
1479	cosignerlandlordphonefield	
1479	cosignermonthlypaymentfield	
1479	cosignerformeremployerleavereasonfield	
1479	ccosignerlastnamefield	
1479	cosigneremployercityfield	
1479	cosignermaintenancepaymentfield	
1479	cosigneremployeraddressfield	
1479	middlenamefield	B
1479	childsupportagesfield	
1479	formeremployerleavereasonfield	
1479	formeremployertimemonthsfield	
1479	cosignerpreviouscitytfield	
1479	cosignerchildcarepaymentfield	
1479	cosignerbankruptcydischargedatefield	
1479	cosignerhoursworkedfield	
1479	cosignersavingbalancefield	
1479	formeremployertimefield	
1479	cosigneremploymerphonefield	
1479	cosigneremployerzipfield	
1479	cosignerformeremployerphonefield	
1479	formeremployerphonefield	
1479	cosignermobilephonefield	
1479	cosignercabletvpaymentfield	
1479	previousaddressyearstotalfield	
1479	formeremployerpositionfield	
1479	cosignerformeremployertimemonthsfield	
1479	cosignermiddlenamefield	
1479	cosignerbankruptcyfield	
1479	firstnamefield	Joan
1479	employerfield	Cadbudy
1479	savingbalancefield	45006
1479	incomefield	5000
1479	cosignerdateofbirthfield	O88SORP64Ur8t3sHxT6D/XlMH9F+bR6TamD9gqSn8g4=
1479	loanwithwhomfield	Land Bank
1479	landlordphonefield	6432221123
1479	applicationtypefield	Individual
1479	lead-id-field	1479
1479	banknamefield	Chase Bank
1479	countyfield	Cook
1479	townshipfield	Cook
1479	payperiodfield	weekly
1479	employercitytfield	Lexington
1479	additionalincomesourcefield	Investment
1479	employeraddressfield	151 Sterling Lake Dr
1479	utilitiespaymentfield	400
1479	statefield	AR
1479	workphonefield	7739994440
1479	ssnfield	Wa9dnAjeWkzOmHGCAtX9SAAb45eqq/kkT9zABfQFmv4=
1479	amountowedfield	3000
1479	checkingbalancefield	3452
1479	datepicker	GeAMiNq0CmnhXnBIGv9+Oeh3FE6ZwoCirJJ+4zZrtIs=
1479	bankruptcyfield	No
1479	dependentagesfield	44
1479	monthlypaymentfield	5000
1479	additionalincomefield	3000
1479	employmentyearsfield	5
1479	driverlicensestatefield	AR
1479	childcarepaymentfield	5000
1479	maintenancepaymentfield	No
1479	priorvehiclecreditborrowedfield	4000
1479	zipfield	98103
1479	employerstatefield	HI
1479	repossessionfield	No
1479	addressmonthstotalfield	2
1479	bankcityfield	Chicago
1479	privacypolicyfield	yes
1479	driverlicensefield	DFG034234FG
1479	phonebillfield	Mark Jones
1479	employerzipfield	65323
1479	additionalinformationfield	none
1480	streetfield	
1480	addressyearstotalfield	
1480	bankruptcydischargedatefield	
1480	cosignerpreviousaddressyearstotalfield	
1480	dependentsfield	
1480	cosignerrepossessionfield	
1480	rentorownfield	
1480	employmentmonthsfield	
1480	cosigneremailfield	
1480	cosignerphonefield	
1480	hoursworkedfield	
1480	mobilephonefield	
1480	cosignermonthlyincomefield	
1480	cosignerdownpaymentfield	
1480	cosignerdependentsfield	
1480	hourlypayfield	
1480	cosignerbankruptcychapterfield	
1480	repfield	
1480	cosignerformeremployertimefield	
1480	cosigneradditionalincomefield	
1480	cosignerssnfield	ldqsHpA7e+cxtanQOMrFbL/NvmMFMHqRz7aEQCObTq8=
1480	titlefield	
1480	cosigneraddressyearstotalfield	
1480	citytfield	
1480	emailfield	hello@buyercall.com
1480	codriverlicensefield	
1480	cosignerrentorownfield	
1480	cosigneremploymentmonthsfield	
1480	phonefield	8483123318
1480	cabletvpaymentfield	
1480	cosignerphonebillfield	
1480	landlordfield	
1480	maritalstatusfield	
1480	cosigneremploymentlengthyearsfield	
1480	cosignerpayperiodfield	
1480	cosignerformeremployerfield	
1480	cosignercitytfield	
1480	cosigneradditionalincomesourcefield	
1480	previousaddressmonthstotalfield	
1480	downpaymentfield	
1480	cosignerhourlypayfield	
1480	cosignerpositionfield	
1480	employerfield	
1480	savingbalancefield	
1480	cosignerstatefield	
1480	incomefield	
1480	cosignerlandlordfield	
1480	previouscitytfield	
1480	cosignerdateofbirthfield	ljUudCep0F+AaA2WrBv6AuGZIRCfIXl4ao5U/+Q5IW4=
1480	repossessiontypefield	
1480	cosignerzipfield	
1480	loanwithwhomfield	
1480	cosignermaritalstatusfield	
1480	cosignertownshipfield	
1480	cosignerbankcityfield	
1480	cosigneraddressmonthstotalfield	
1480	landlordphonefield	
1480	applicationtypefield	
1480	cosignerpreviouszipfield	
1480	cosignerformeremployerpositionfield	
1480	cosignerrepossessiontypefield	
1480	cosigneramountowedfield	
1480	previouszipfield	
1480	lead-id-field	
1480	repossessiondatefield	
1480	formeremployerfield	
1480	cosignerpreviousstatefield	
1480	cosignerdependentagesfield	
1480	cosignercountyfield	
1480	banknamefield	
1480	countyfield	
1480	townshipfield	
1480	cosignerpreviousaddressmonthstotalfield	
1480	cosignerstreetfield	
1480	payperiodfield	
1480	cosignerpriorvehiclecreditborrowedfield	
1480	employercitytfield	
1480	lastnamefield	Barry
1480	cosignerbanknamefield	
1480	previousstreetfield	
1480	cosignerrepossessiondatefield	
1480	bankruptcychapterfield	
1480	cosignerchildsupportagesfield	
1480	cosignerfirstnamefield	
1480	cosignercheckingbalancefield	
1480	cosignerutilitiespaymentfield	
1480	codriverlicensestatefield	
1480	cosignerloanwithwhomfield	
1480	additionalincomesourcefield	
1480	previousstatefield	
1480	dealerlotfield	L01
1480	cosigneremployerstatefield	
1480	employeraddressfield	
1480	utilitiespaymentfield	
1480	cosignerpreviousstreetfield	
1480	cosigneremployerfield	
1480	statusnote	
1480	cosignerlandlordphonefield	
1480	cosignermonthlypaymentfield	
1480	statefield	
1480	cosignerformeremployerleavereasonfield	
1480	ccosignerlastnamefield	
1480	workphonefield	
1480	cosigneremployercityfield	
1480	cosignermaintenancepaymentfield	
1480	cosigneremployeraddressfield	
1480	middlenamefield	k
1480	ssnfield	0Ph6vbLALcH7jLuAVQqOB8vzSw4zXUPhZNHbzpiXn14=
1480	childsupportagesfield	
1480	formeremployerleavereasonfield	
1480	formeremployertimemonthsfield	
1480	cosignerpreviouscitytfield	
1480	cosignerchildcarepaymentfield	
1480	cosignerbankruptcydischargedatefield	
1480	amountowedfield	
1480	checkingbalancefield	
1480	datepicker	bTDloICJhB3MzxYfZm6LvC4rS+RkK1f1on5TNtoa90g=
1480	bankruptcyfield	
1480	cosignerhoursworkedfield	
1480	cosignersavingbalancefield	
1480	formeremployertimefield	
1480	dependentagesfield	
1480	cosigneremploymerphonefield	
1480	monthlypaymentfield	
1480	additionalincomefield	
1480	cosigneremployerzipfield	
1480	employmentyearsfield	
1480	cosignerformeremployerphonefield	
1480	driverlicensestatefield	
1480	formeremployerphonefield	
1480	cosignermobilephonefield	
1480	childcarepaymentfield	
1480	maintenancepaymentfield	
1480	priorvehiclecreditborrowedfield	
1480	zipfield	
1480	employerstatefield	
1480	repossessionfield	
1480	addressmonthstotalfield	
1480	cosignercabletvpaymentfield	
1480	bankcityfield	
1480	driverlicensefield	
1480	previousaddressyearstotalfield	
1480	phonebillfield	
1480	formeremployerpositionfield	
1480	cosignerformeremployertimemonthsfield	
1480	cosignermiddlenamefield	
1480	cosignerbankruptcyfield	
1480	employerzipfield	
1480	firstnamefield	John
1480	additionalinformationfield	
1480	privacypolicyfield	
1481	streetfield	
1481	addressyearstotalfield	
1481	bankruptcydischargedatefield	
1481	cosignerpreviousaddressyearstotalfield	
1481	dependentsfield	
1481	cosignerrepossessionfield	
1481	rentorownfield	
1481	employmentmonthsfield	
1481	cosigneremailfield	
1481	cosignerphonefield	
1481	hoursworkedfield	
1481	mobilephonefield	
1481	cosignermonthlyincomefield	
1481	cosignerdownpaymentfield	
1481	cosignerdependentsfield	
1481	hourlypayfield	
1481	cosignerbankruptcychapterfield	
1481	repfield	
1481	cosignerformeremployertimefield	
1481	cosigneradditionalincomefield	
1481	cosignerssnfield	VXHzDLuRVOdmLy7DtY6kFwtl7rPIpjKj27NhIqUFwf4=
1481	titlefield	
1481	cosigneraddressyearstotalfield	
1481	citytfield	
1481	emailfield	hv13@hotmail.com
1481	codriverlicensefield	
1481	cosignerrentorownfield	
1481	cosigneremploymentmonthsfield	
1481	phonefield	7739699892
1481	cabletvpaymentfield	
1481	cosignerphonebillfield	
1481	landlordfield	
1481	maritalstatusfield	
1481	cosigneremploymentlengthyearsfield	
1481	cosignerpayperiodfield	
1481	cosignerformeremployerfield	
1481	cosignercitytfield	
1481	cosigneradditionalincomesourcefield	
1481	previousaddressmonthstotalfield	
1481	downpaymentfield	
1481	cosignerhourlypayfield	
1481	cosignerpositionfield	
1481	employerfield	
1481	savingbalancefield	
1481	cosignerstatefield	
1481	incomefield	
1481	cosignerlandlordfield	
1481	previouscitytfield	
1481	cosignerdateofbirthfield	upJHbjRRx9NcGjXm6pLmmJygRmXyU8ArTxJFJ2b0T88=
1481	repossessiontypefield	
1481	cosignerzipfield	
1481	loanwithwhomfield	
1481	cosignermaritalstatusfield	
1481	cosignertownshipfield	
1481	cosignerbankcityfield	
1481	cosigneraddressmonthstotalfield	
1481	landlordphonefield	
1481	applicationtypefield	
1481	cosignerpreviouszipfield	
1481	cosignerformeremployerpositionfield	
1481	cosignerrepossessiontypefield	
1481	cosigneramountowedfield	
1481	previouszipfield	
1481	lead-id-field	
1481	repossessiondatefield	
1481	formeremployerfield	
1481	cosignerpreviousstatefield	
1481	cosignerdependentagesfield	
1481	cosignercountyfield	
1481	banknamefield	
1481	countyfield	
1481	townshipfield	
1481	cosignerpreviousaddressmonthstotalfield	
1481	cosignerstreetfield	
1481	payperiodfield	
1481	cosignerpriorvehiclecreditborrowedfield	
1481	employercitytfield	
1481	lastnamefield	Hancock
1481	cosignerbanknamefield	
1481	previousstreetfield	
1481	cosignerrepossessiondatefield	
1481	bankruptcychapterfield	
1481	cosignerchildsupportagesfield	
1481	cosignerfirstnamefield	
1481	cosignercheckingbalancefield	
1481	cosignerutilitiespaymentfield	
1481	codriverlicensestatefield	
1481	cosignerloanwithwhomfield	
1481	additionalincomesourcefield	
1481	previousstatefield	
1481	dealerlotfield	L01
1481	cosigneremployerstatefield	
1481	employeraddressfield	
1481	utilitiespaymentfield	
1481	cosignerpreviousstreetfield	
1481	cosigneremployerfield	
1481	statusnote	
1481	cosignerlandlordphonefield	
1481	cosignermonthlypaymentfield	
1481	statefield	
1481	cosignerformeremployerleavereasonfield	
1481	ccosignerlastnamefield	
1481	workphonefield	
1481	cosigneremployercityfield	
1481	cosignermaintenancepaymentfield	
1481	cosigneremployeraddressfield	
1481	middlenamefield	m
1481	ssnfield	FGrxEWoH0e7EPXmrG/h5cLXnshV0kz2zdDymL4CrNZg=
1481	childsupportagesfield	
1481	formeremployerleavereasonfield	
1481	formeremployertimemonthsfield	
1481	cosignerpreviouscitytfield	
1481	cosignerchildcarepaymentfield	
1481	cosignerbankruptcydischargedatefield	
1481	amountowedfield	
1481	checkingbalancefield	
1481	datepicker	qu0AolnZtsO4wPxNdvT0Z1L8vV3abHoDkTZZquG8ScQ=
1481	bankruptcyfield	
1481	cosignerhoursworkedfield	
1481	cosignersavingbalancefield	
1481	formeremployertimefield	
1481	dependentagesfield	
1481	cosigneremploymerphonefield	
1481	monthlypaymentfield	
1481	additionalincomefield	
1481	cosigneremployerzipfield	
1481	employmentyearsfield	
1481	cosignerformeremployerphonefield	
1481	driverlicensestatefield	
1481	formeremployerphonefield	
1481	cosignermobilephonefield	
1481	childcarepaymentfield	
1481	maintenancepaymentfield	
1481	priorvehiclecreditborrowedfield	
1481	zipfield	
1481	employerstatefield	
1481	repossessionfield	
1481	addressmonthstotalfield	
1481	cosignercabletvpaymentfield	
1481	bankcityfield	
1481	driverlicensefield	
1481	previousaddressyearstotalfield	
1481	phonebillfield	
1481	formeremployerpositionfield	
1481	cosignerformeremployertimemonthsfield	
1481	cosignermiddlenamefield	
1481	cosignerbankruptcyfield	
1481	employerzipfield	
1481	firstnamefield	Barry
1481	additionalinformationfield	
1481	privacypolicyfield	
1482	bankruptcydischargedatefield	
1482	cosignerpreviousaddressyearstotalfield	
1482	hoursworkedfield	
1482	cosignerbankruptcychapterfield	
1482	repfield	
1482	cosignerformeremployertimefield	
1482	cosigneradditionalincomefield	
1482	emailfield	hv13@hotmail.com
1482	codriverlicensefield	
1482	phonefield	7739699892
1482	cabletvpaymentfield	
1482	cosignerphonebillfield	
1482	cosignerpayperiodfield	
1482	cosignerformeremployerfield	
1482	cosigneradditionalincomesourcefield	
1482	previousaddressmonthstotalfield	
1482	previouscitytfield	
1482	repossessiontypefield	
1482	loanwithwhomfield	
1482	cosignertownshipfield	
1482	cosignerpreviouszipfield	
1482	cosignerformeremployerpositionfield	
1482	cosignerrepossessiontypefield	
1482	cosigneramountowedfield	
1482	previouszipfield	
1482	repossessiondatefield	
1482	formeremployerfield	
1482	cosignerpreviousstatefield	
1482	cosignerdependentagesfield	
1482	cosignercountyfield	
1482	countyfield	
1482	townshipfield	
1482	cosignerpreviousaddressmonthstotalfield	
1482	payperiodfield	
1482	cosignerpriorvehiclecreditborrowedfield	
1482	lastnamefield	Pardon
1482	formeremployerpositionfield	
1482	previousstreetfield	
1482	cosignerrepossessiondatefield	
1482	bankruptcychapterfield	
1482	cosignerchildsupportagesfield	
1482	cosignerutilitiespaymentfield	
1482	cosignerloanwithwhomfield	
1482	additionalincomesourcefield	
1482	previousstatefield	
1482	dealerlotfield	L01
1482	utilitiespaymentfield	
1482	cosignerpreviousstreetfield	
1482	statusnote	
1482	cosignerformeremployerleavereasonfield	
1482	middlenamefield	Gene
1482	childsupportagesfield	
1482	formeremployerleavereasonfield	
1482	formeremployertimemonthsfield	
1482	cosignerpreviouscitytfield	
1482	cosignerchildcarepaymentfield	
1482	cosignerbankruptcydischargedatefield	
1482	amountowedfield	
1482	cosignerhoursworkedfield	
1482	formeremployertimefield	
1482	dependentagesfield	
1482	additionalincomefield	
1482	cosigneremployerzipfield	
1482	cosignerformeremployerphonefield	
1482	formeremployerphonefield	
1482	childcarepaymentfield	
1482	priorvehiclecreditborrowedfield	
1482	driverlicensefield	
1482	previousaddressyearstotalfield	
1482	phonebillfield	
1482	cosignercabletvpaymentfield	
1482	cosignerformeremployertimemonthsfield	
1482	cosignermiddlenamefield	
1482	employerzipfield	
1482	firstnamefield	Sue
1482	additionalinformationfield	
1482	bankcityfield	
1482	banknamefield	
1482	checkingbalancefield	
1482	cosignerbankcityfield	
1482	cosignerbanknamefield	
1482	cosignercheckingbalancefield	
1482	cosignersavingbalancefield	
1482	savingbalancefield	
1482	streetfield	123 Main ST
1482	addressyearstotalfield	5
1482	dependentsfield	1
1482	cosignerrepossessionfield	No
1482	rentorownfield	Rent
1482	employmentmonthsfield	10
1482	cosigneremailfield	harry@buyercall.com
1482	cosignerphonefield	7732985403
1482	mobilephonefield	7732909650
1482	cosignermonthlyincomefield	60000
1482	cosignerdownpaymentfield	1000
1482	cosignerdependentsfield	1
1482	hourlypayfield	500
1482	cosignerssnfield	xkGDEcNGqfzMJnScIg8UUKnFiKrgWFHZDJi2tWjghLQ=
1482	titlefield	Accountant
1482	cosigneraddressyearstotalfield	5
1482	citytfield	Seattle
1482	cosignerrentorownfield	Own
1482	cosigneremploymentmonthsfield	10
1482	landlordfield	B Jones
1482	maritalstatusfield	Legally Seperated
1482	cosigneremploymentlengthyearsfield	5
1482	cosignercitytfield	Chicago
1482	downpaymentfield	4000
1482	cosignerhourlypayfield	500
1482	cosignerpositionfield	Cleaner
1482	employerfield	Mann Trucks
1482	cosignerstatefield	AZ
1482	incomefield	30000
1482	cosignerlandlordfield	Barry White
1482	cosignerdateofbirthfield	1VFFgsw2hIoJeFex22PXaAfpDLL7n2VOAuU7IYw44cU=
1482	cosignerzipfield	60613
1482	cosignermaritalstatusfield	Unmarried
1482	cosigneraddressmonthstotalfield	9
1482	landlordphonefield	7732985432
1482	applicationtypefield	Joint
1482	lead-id-field	1482
1482	employercitytfield	Lexington
1482	cosignerfirstnamefield	Barry
1482	codriverlicensestatefield	CO
1482	cosigneremployerstatefield	AK
1482	employeraddressfield	151 Sterling Lake Dr
1482	cosigneremployerfield	Shoprite
1482	cosignerlandlordphonefield	7633322123
1482	cosignermonthlypaymentfield	600000
1482	statefield	AR
1482	ccosignerlastnamefield	Jones
1482	workphonefield	7739994440
1482	cosigneremployercityfield	Chicago
1482	cosignermaintenancepaymentfield	No
1482	cosigneremployeraddressfield	123 Main ST
1482	ssnfield	k7BwZqJ6F7KFAE9hEebc2g6nDRUQ6gTKzZZNlrVn7yo=
1482	cosignerstreetfield	123 Perd Roard
1482	datepicker	hh5CPkkvfUWOoQ/ufImLY45zFQIVPZEq7guAnmShCIQ=
1482	bankruptcyfield	No
1482	cosigneremploymerphonefield	7763233343
1482	monthlypaymentfield	4000
1482	employmentyearsfield	5
1482	driverlicensestatefield	AR
1482	cosignermobilephonefield	7732985432
1482	zipfield	98102
1482	maintenancepaymentfield	No
1482	employerstatefield	FL
1482	repossessionfield	No
1482	addressmonthstotalfield	10
1482	privacypolicyfield	yes
1482	cosignerbankruptcyfield	No
1483	cosigneradditionalincomesourcefield	
1483	cosignerphonefield	
1483	cosignerfirstnamefield	
1483	ccosignerlastnamefield	
1483	codriverlicensestatefield	
1483	cosigneremailfield	
1483	previousstatefield	
1483	cosigneremployerstatefield	
1483	cosignermonthlyincomefield	
1483	cosignermonthlypaymentfield	
1483	cosignerpreviousstreetfield	
1483	cosigneremployercityfield	
1483	cosigneremployerfield	
1483	statusnote	
1483	cosignerformeremployertimefield	
1483	cosignerformeremployerphonefield	
1483	cosigneradditionalincomefield	
1483	cosigneraddressyearstotalfield	
1483	emailfield	test@test.com
1483	codriverlicensefield	
1483	cosignerrentorownfield	
1483	formeremployerphonefield	
1483	cosigneremploymentlengthyearsfield	
1483	cosignerformeremployerfield	
1483	cosignerpreviouscitytfield	
1483	cosignercitytfield	
1483	cosignerstreetfield	
1483	stockfield	test
1483	cosignerpositionfield	
1483	formeremployertimefield	
1483	cosigneremploymerphonefield	
1483	cosignerstatefield	
1483	formeremployerstatefield	
1483	previouscitytfield	
1483	cosignerzipfield	
1483	cosignerformeremployercityfield	
1483	locationfield	test
1483	previouszipfield	
1483	phonefield	7739699892
1483	cosignerpreviouszipfield	
1483	cosignerformeremployerpositionfield	
1483	vehiclefield	test
1483	formeremployerfield	
1483	cosignerpreviousstatefield	
1483	cosignerformeremployerstatefield	
1483	lastnamefield	test
1483	formeremployercityfield	
1483	firstnamefield	test 
1483	formeremployerpositionfield	
1483	previousstreetfield	
1483	middlenamefield	
1483	cosignermiddlenamefield	
1483	repfield	
1483	employeraddressfield	
1483	streetfield	test 
1483	addressyearstotalfield	5
1483	rentorownfield	Rent
1483	additionalincomesourcefield	Investment
1483	driverlicensestatefield	GA
1483	cosignerssnfield	J8GidjSh9gSP00EaV6P543PYL+PUPM6Rj9uYkmgWLFI=
1483	titlefield	test 
1483	workphonefield	7739994440
1483	citytfield	test 
1483	ssnfield	RSaGsCDZOq3VYWqD97ozgHc/rbnEKyWrO2e3Tn8N6GI=
1483	datepicker	E5Py+fiMiMnoCyHwyAQdFS+KV3DqA81bJU/V3oRQPUE=
1483	additionalincomefield	3000
1483	employerfield	test 
1483	monthlypaymentfield	5000
1483	applicationtypefield	Individual
1483	cosignerdateofbirthfield	90ThgZ9H365AZuCF6NnefZ6Zl/EvCWjg9gh6iQw2og4=
1483	employmentyearsfield	5
1483	statefield	AK
1483	zipfield	29072
1483	employerstatefield	AZ
1483	incomefield	30000
1483	lead-id-field	1483
1483	privacypolicyfield	yes
1483	driverlicensefield	test 
1483	employercitytfield	test 
1483	additionalinformationfield	test 
\.


--
-- Data for Name: form_leads; Type: TABLE DATA; Schema: public; Owner: -
--

COPY form_leads (id, form_id, created_on, updated_on, external_api_lead_id, email_sent, partnership_account_id, contact_id) FROM stdin;
1359	20	2018-02-21 03:22:19.283227+00	2018-02-21 03:22:19.28326+00	\N	f	4	3652
1360	20	2018-02-22 02:11:43.351382+00	2018-02-22 02:11:43.351418+00	\N	f	4	3652
1361	20	2018-02-22 02:19:04.475658+00	2018-02-22 02:19:04.475691+00	\N	f	4	3652
1362	20	2018-02-22 02:24:07.639918+00	2018-02-22 02:24:07.710375+00	\N	t	4	3652
1363	20	2018-02-22 02:42:37.997881+00	2018-02-22 02:42:39.340323+00	\N	t	4	3652
1364	20	2018-02-22 02:53:46.509347+00	2018-02-22 02:53:47.788886+00	\N	t	4	3652
1365	20	2018-02-25 18:22:46.675173+00	2018-02-25 18:22:46.675249+00	\N	f	4	3652
1412	20	2018-07-26 22:39:38.119485+00	2018-07-26 22:40:10.860777+00	\N	f	4	1219
1366	20	2018-02-25 18:24:47.586591+00	2018-02-25 18:24:47.586617+00	\N	f	4	3652
1367	20	2018-02-25 19:30:12.713753+00	2018-02-25 19:30:14.11403+00	\N	t	4	3652
1368	20	2018-02-25 19:40:49.507172+00	2018-02-25 19:40:49.799409+00	\N	t	4	3652
1369	20	2018-02-28 20:37:57.523008+00	2018-02-28 20:37:57.876356+00	\N	t	4	3652
1413	20	2018-07-26 22:42:20.092923+00	2018-07-26 22:42:20.138744+00	\N	f	4	1219
1370	20	2018-03-07 21:01:27.812841+00	2018-03-07 21:01:28.177088+00	\N	t	4	3652
1371	20	2018-03-07 21:06:04.021818+00	2018-03-07 21:06:04.238328+00	\N	t	4	3652
1372	20	2018-03-07 21:08:52.492098+00	2018-03-07 21:08:52.691153+00	\N	t	4	3652
1373	20	2018-03-07 21:10:51.063986+00	2018-03-07 21:10:51.291846+00	\N	t	4	3652
1414	20	2018-07-26 22:49:07.720243+00	2018-07-26 22:50:20.948269+00	\N	t	4	1219
1374	20	2018-03-07 21:13:06.440553+00	2018-03-07 21:13:07.893955+00	\N	t	4	3652
1375	20	2018-03-07 21:14:44.629608+00	2018-03-07 21:14:46.06918+00	\N	t	4	3652
1376	20	2018-03-08 16:22:47.31917+00	2018-03-08 16:22:48.756783+00	\N	t	4	3652
1377	20	2018-03-08 16:33:09.339124+00	2018-03-08 16:35:01.058416+00	\N	t	4	3652
1378	20	2018-03-08 17:56:32.376335+00	2018-03-08 17:56:32.376364+00	\N	f	4	3652
1415	20	2018-07-26 22:51:07.974176+00	2018-07-26 22:52:43.224725+00	\N	t	4	4194
1379	20	2018-03-08 19:11:18.725914+00	2018-03-08 19:11:18.725944+00	\N	f	4	3664
1380	20	2018-03-08 19:21:56.048136+00	2018-03-08 19:21:57.428334+00	\N	t	4	2555
1381	20	2018-03-08 19:28:32.71259+00	2018-03-08 19:28:32.959827+00	\N	t	4	3804
1382	20	2018-03-08 19:36:35.140346+00	2018-03-08 19:36:35.363558+00	\N	t	4	3664
1383	20	2018-03-08 19:44:27.565428+00	2018-03-08 19:44:27.764005+00	\N	t	4	3292
1424	20	2019-03-01 02:36:03.246995+00	2019-03-01 02:36:45.951872+00	\N	t	4	3652
1384	20	2018-03-08 19:47:24.51916+00	2018-03-08 19:47:24.749537+00	\N	t	4	1971
1416	20	2018-11-05 16:43:25.727084+00	2018-11-05 16:50:19.290298+00	\N	t	4	3652
1385	20	2018-03-09 05:18:19.360446+00	2018-03-09 05:19:11.458937+00	\N	t	4	3652
1386	20	2018-03-09 15:17:49.944522+00	2018-03-09 15:17:51.308367+00	\N	t	4	3804
1387	20	2018-04-20 14:22:04.054867+00	2018-04-20 14:22:05.396291+00	\N	t	4	3652
1388	20	2018-04-22 17:55:59.121722+00	2018-04-22 17:56:00.403791+00	\N	t	4	3652
1417	20	2018-11-07 03:09:15.829708+00	2018-11-07 03:14:59.514667+00	\N	t	4	4195
1389	20	2018-04-22 18:02:04.845641+00	2018-04-22 18:02:06.107347+00	\N	t	4	3652
1390	20	2018-04-22 18:03:38.033275+00	2018-04-22 18:05:54.150917+00	\N	t	4	2732
1391	20	2018-04-25 15:27:33.77221+00	2018-04-25 15:27:35.311332+00	\N	t	4	1219
1392	20	2018-04-25 15:59:47.831108+00	2018-04-25 15:59:48.073638+00	\N	t	4	3976
1418	20	2018-11-20 18:05:00.401726+00	2018-11-20 18:10:39.481102+00	\N	t	4	4196
1393	20	2018-04-26 20:14:38.916903+00	2018-04-26 20:14:39.243559+00	\N	t	4	624
1394	20	2018-04-28 04:39:00.903349+00	2018-04-28 04:42:57.011028+00	\N	t	4	3652
1419	20	2018-12-12 22:16:42.885595+00	2018-12-12 22:16:42.948542+00	\N	f	4	4197
1395	20	2018-04-28 18:16:50.92199+00	2018-04-28 18:24:51.213655+00	\N	t	4	3978
1396	20	2018-04-29 21:32:58.256745+00	2018-04-29 21:35:57.691782+00	\N	t	4	3652
1420	20	2019-01-02 18:07:04.525994+00	2019-01-02 18:07:04.589172+00	\N	f	4	4198
1397	20	2018-05-02 19:27:15.328591+00	2018-05-02 19:28:34.355026+00	\N	t	4	3801
1403	20	2018-05-02 20:55:12.949462+00	2018-05-02 20:55:13.16189+00	\N	t	4	3804
1398	20	2018-05-02 20:30:33.690123+00	2018-05-02 20:30:34.939516+00	\N	t	4	\N
1399	20	2018-05-02 20:47:30.700756+00	2018-05-02 20:47:33.114538+00	\N	t	4	\N
1400	20	2018-05-02 20:50:25.419704+00	2018-05-02 20:50:26.773465+00	\N	t	4	\N
1401	20	2018-05-02 20:52:47.998407+00	2018-05-02 20:52:48.233541+00	\N	t	4	\N
1402	20	2018-05-02 20:53:29.414253+00	2018-05-02 20:53:30.765783+00	\N	t	4	\N
1358	20	2018-02-21 03:20:05.956613+00	2018-02-21 03:20:05.956644+00	\N	f	4	3652
1404	20	2018-05-13 22:49:22.941157+00	2018-05-13 22:50:32.322509+00	\N	t	4	1030
1421	20	2019-01-02 18:20:02.63892+00	2019-01-02 18:23:55.379428+00	\N	t	4	4199
1405	20	2018-05-23 15:11:38.155497+00	2018-05-23 15:11:39.826516+00	\N	t	4	898
1406	20	2018-05-23 19:00:56.427334+00	2018-05-23 19:00:56.427357+00	\N	f	4	3801
1407	20	2018-06-07 17:15:20.978703+00	2018-06-07 17:15:21.534226+00	\N	t	4	146
1422	20	2019-01-02 18:26:58.507184+00	2019-01-02 18:26:58.558158+00	\N	f	4	4200
1408	20	2018-06-07 17:22:30.174688+00	2018-06-07 17:22:30.731964+00	\N	t	4	146
1409	20	2018-06-07 17:39:21.98595+00	2018-06-07 17:39:23.648248+00	\N	t	4	146
1410	20	2018-06-08 14:40:04.743011+00	2018-06-08 14:40:06.35458+00	\N	t	4	1807
1425	20	2019-03-01 02:37:40.441917+00	2019-03-01 02:38:20.955366+00	\N	t	4	3652
1411	20	2018-06-13 18:31:35.133501+00	2018-06-13 18:31:35.45873+00	\N	t	4	146
1423	20	2019-03-01 01:47:36.900054+00	2019-03-01 01:49:33.521347+00	\N	t	4	4201
1426	20	2019-03-01 02:40:09.482453+00	2019-03-01 02:40:55.764893+00	\N	t	4	3652
1431	20	2019-03-02 00:58:08.329108+00	2019-03-02 00:58:52.932642+00	\N	t	4	3652
1427	20	2019-03-02 00:40:57.952838+00	2019-03-02 00:42:05.994606+00	\N	t	4	3652
1428	20	2019-03-02 00:43:08.250214+00	2019-03-02 00:43:10.377885+00	\N	t	4	3652
1429	20	2019-03-02 00:47:40.804057+00	2019-03-02 00:48:45.767431+00	\N	t	4	3652
1430	20	2019-03-02 00:50:29.360979+00	2019-03-02 00:51:13.14622+00	\N	t	4	4202
1432	20	2019-03-02 01:01:21.128177+00	2019-03-02 01:02:02.790779+00	\N	t	4	3652
1439	20	2019-04-11 21:59:08.412391+00	2019-04-11 22:01:18.083367+00	\N	t	4	4204
1433	20	2019-03-03 17:41:30.268788+00	2019-03-03 17:42:21.218667+00	\N	t	4	3652
1436	21	2019-03-07 16:59:58.185862+00	2019-03-07 17:03:04.212649+00	\N	t	4	3801
1434	20	2019-03-03 17:50:59.492622+00	2019-03-03 17:51:55.270689+00	\N	t	4	3652
1435	20	2019-03-03 19:38:06.290604+00	2019-03-03 19:39:22.59592+00	\N	t	4	3652
1440	22	2019-04-13 14:14:48.843869+00	2019-04-13 14:14:48.843894+00	\N	f	4	\N
1437	22	2019-04-07 20:21:18.073252+00	2019-04-07 20:22:06.574658+00	\N	t	4	3801
1441	22	2019-04-13 14:14:50.009645+00	2019-04-13 14:14:50.009663+00	\N	f	4	\N
1438	22	2019-04-07 20:25:15.892907+00	2019-04-07 20:26:42.25573+00	\N	t	4	4203
1446	22	2019-04-13 14:54:57.741475+00	2019-04-13 14:54:57.775836+00	\N	f	4	4208
1442	22	2019-04-13 14:14:50.403382+00	2019-04-13 14:14:50.403402+00	\N	f	4	\N
1443	20	2019-04-13 14:18:07.628453+00	2019-04-13 14:18:07.681155+00	\N	f	4	4205
1444	22	2019-04-13 14:45:39.197349+00	2019-04-13 14:45:39.242706+00	\N	f	4	4206
1445	22	2019-04-13 14:50:13.200862+00	2019-04-13 14:50:13.231012+00	\N	f	4	4207
1447	22	2019-04-13 14:56:11.727479+00	2019-04-13 14:56:11.754846+00	\N	f	4	4209
1448	22	2019-04-13 15:43:08.163794+00	2019-04-13 15:43:08.189885+00	\N	f	4	3801
1449	22	2019-04-13 15:44:05.977595+00	2019-04-13 15:44:06.00677+00	\N	f	4	1695
1450	22	2019-04-13 15:46:20.745591+00	2019-04-13 15:46:20.77444+00	\N	f	4	3801
1451	22	2019-04-13 15:47:47.700244+00	2019-04-13 15:48:21.21803+00	\N	t	4	3801
1452	22	2019-04-14 01:24:09.660443+00	2019-04-14 01:24:39.7593+00	\N	t	4	3801
1453	22	2019-04-15 15:37:38.215803+00	2019-04-15 15:41:21.832087+00	\N	t	4	3801
1454	22	2019-04-15 15:44:48.57795+00	2019-04-15 15:46:37.49017+00	\N	t	4	3801
1455	22	2019-04-18 21:09:37.639164+00	2019-04-18 21:10:11.863385+00	\N	t	4	3801
1456	20	2019-05-23 23:00:00.740981+00	2019-05-23 23:00:52.395818+00	\N	t	4	3652
1457	20	2019-05-23 23:02:20.376013+00	2019-05-23 23:03:16.973975+00	\N	t	4	4212
1458	23	2019-07-23 22:00:48.136625+00	2019-07-23 22:00:49.29911+00	\N	f	4	3801
1459	23	2019-07-23 22:40:41.077409+00	2019-07-23 22:40:41.135282+00	\N	f	4	3652
1460	23	2019-07-23 22:55:59.41337+00	2019-07-23 22:55:59.472105+00	\N	f	4	3801
1461	23	2019-07-24 00:36:18.456982+00	2019-07-24 00:36:18.521572+00	\N	f	4	3801
1462	23	2019-07-24 01:01:58.734493+00	2019-07-24 01:01:58.876724+00	\N	f	4	3801
1463	23	2019-07-24 18:28:08.203746+00	2019-07-24 18:28:08.283931+00	\N	f	4	3801
1464	23	2019-07-24 19:20:22.446121+00	2019-07-24 19:20:22.512772+00	\N	f	4	3801
1465	23	2019-07-24 19:41:22.801956+00	2019-07-24 19:41:22.862473+00	\N	f	4	3801
1466	23	2019-07-25 01:45:44.045307+00	2019-07-25 01:45:44.105345+00	\N	f	4	3801
1467	23	2019-07-25 16:15:05.028111+00	2019-07-25 16:15:05.09532+00	\N	f	4	3801
1468	23	2019-07-25 17:35:57.71471+00	2019-07-25 17:35:57.777841+00	\N	f	4	3801
1469	23	2019-07-26 19:15:15.606999+00	2019-07-26 19:33:09.536141+00	\N	t	4	3801
1470	23	2019-07-26 23:25:53.887395+00	2019-07-26 23:25:53.966925+00	\N	f	4	3801
1471	23	2019-07-26 23:30:18.103572+00	2019-07-26 23:30:18.185207+00	\N	f	4	3801
1472	23	2019-07-26 23:31:25.352478+00	2019-07-26 23:31:25.43458+00	\N	f	4	3801
1473	23	2019-08-22 14:03:59.453815+00	2019-08-22 14:43:41.739096+00	\N	t	4	4213
1474	23	2019-09-19 17:17:36.830947+00	2019-09-19 17:17:37.220057+00	\N	f	4	4214
1476	24	2019-10-01 21:09:30.127264+00	2019-10-01 21:15:14.00254+00	19100121151178	t	4	4216
1475	24	2019-10-01 20:38:58.61833+00	2019-10-01 21:42:17.904137+00	19100121421576	t	4	4215
1477	24	2019-10-02 01:13:21.801955+00	2019-10-02 01:24:28.569941+00	19100201242517	t	4	4217
1478	20	2019-10-02 02:48:54.409008+00	2019-10-02 02:50:09.674431+00	\N	t	4	3652
1479	24	2019-10-04 16:13:41.823289+00	2019-10-04 16:16:04.206349+00	19100416160735	t	4	3801
1480	24	2019-10-17 19:49:44.194728+00	2019-10-17 19:49:44.366264+00	\N	f	4	4218
1481	24	2019-10-17 19:52:43.173379+00	2019-10-17 19:52:43.300993+00	\N	f	4	3801
1482	24	2019-10-18 05:12:12.316398+00	2019-10-18 05:22:43.214262+00	19101805224540	t	4	3801
1483	28	2019-10-22 16:07:44.292132+00	2019-10-22 16:09:03.9241+00	\N	t	34	4219
\.


--
-- Name: form_leads_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('form_leads_id_seq', 1483, true);


--
-- Data for Name: form_logs; Type: TABLE DATA; Schema: public; Owner: -
--

COPY form_logs (posted_on, id, form_id, form_lead_id, status, description) FROM stdin;
2019-10-01 20:42:56.194358+00	1	24	1475	failed	Error retrieving token.
2019-10-01 21:15:14.013151+00	2	24	1476	success	The form lead has been sent successfully to Auto Master Systems
2019-10-01 21:42:17.912533+00	3	24	1475	success	The form lead has been sent successfully to Auto Master Systems
2019-10-01 21:49:29.72273+00	4	20	1439	failed	Lot ID not provided.
2019-10-02 01:24:28.584068+00	5	24	1477	success	The form lead has been sent successfully to Auto Master SystemsThe Dealer Apps ID is: 19100201242517
2019-10-04 16:16:04.218023+00	6	24	1479	success	The form lead has been sent successfully to Auto Master SystemsThe Dealer Apps ID is: 19100416160735
2019-10-18 05:22:43.229542+00	7	24	1482	success	The form lead has been sent successfully to Auto Master SystemsThe Dealer Apps ID is: 19101805224540
\.


--
-- Name: form_logs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('form_logs_id_seq', 7, true);


--
-- Data for Name: holdmusic; Type: TABLE DATA; Schema: public; Owner: -
--

COPY holdmusic (id, created_on, updated_on, uuid, filename, partnership_account_id, url) FROM stdin;
1	2018-01-02 16:56:00.306215+00	2018-01-02 16:56:00.918077+00	d2a61e3c-83d2-4a66-aceb-937ac31ca0e7	Check Out The Mother.mp3	4	https://buyercall-test-hold-music.s3.amazonaws.com/d2a61e3c-83d2-4a66-aceb-937ac31ca0e7
2	2018-03-20 00:15:31.097159+00	2018-03-20 00:15:31.750116+00	567a6033-5b19-4b41-9c0d-4ba8dd693a12	LydiaMendozaLosBesosDeMiNegraNew.mp3	4	https://buyercall-test-hold-music.s3.amazonaws.com/567a6033-5b19-4b41-9c0d-4ba8dd693a12
3	2018-03-20 00:31:57.323269+00	2018-03-20 00:31:57.622897+00	c72d9750-eb8f-4c3e-b4bc-b8d8789a9efc	Check Out The Mother.mp3	4	https://buyercall-test-hold-music.s3.amazonaws.com/c72d9750-eb8f-4c3e-b4bc-b8d8789a9efc
4	2018-03-20 00:40:00.278347+00	2018-03-20 00:40:00.699159+00	e782a0ca-6398-4db0-a76c-28072ff3e657	EdMeeker-TakeMeOutToTheBallGame-remastered.mp3	4	https://buyercall-test-hold-music.s3.amazonaws.com/e782a0ca-6398-4db0-a76c-28072ff3e657
5	2018-03-20 02:51:42.362413+00	2018-03-20 02:51:43.011067+00	ec882f35-d979-46b1-bb0f-a59f1e3761a3	LydiaMendozaLosBesosDeMiNegraNew.mp3	4	https://buyercall-test-hold-music.s3.amazonaws.com/ec882f35-d979-46b1-bb0f-a59f1e3761a3
6	2018-03-20 03:04:45.41571+00	2018-03-20 03:04:45.691711+00	fe7a6d25-87a2-4aeb-8592-0a243565f173	EdMeeker-TakeMeOutToTheBallGame-remastered.mp3	4	https://buyercall-test-hold-music.s3.amazonaws.com/fe7a6d25-87a2-4aeb-8592-0a243565f173
7	2018-03-20 04:00:56.048046+00	2018-03-20 04:00:56.594168+00	6b6a5c86-102e-436d-bedd-e1aeb384def8	EdMeeker-TakeMeOutToTheBallGame-remastered.mp3	28	https://buyercall-test-hold-music.s3.amazonaws.com/6b6a5c86-102e-436d-bedd-e1aeb384def8
8	2018-03-21 13:15:30.439646+00	2018-03-21 13:15:30.968201+00	8457a71f-6feb-4734-8706-80663747b71e	this_is_harry.mp3	28	https://buyercall-test-hold-music.s3.amazonaws.com/8457a71f-6feb-4734-8706-80663747b71e
9	2018-03-26 00:06:06.279874+00	2018-03-26 00:06:07.012001+00	7228f27c-436f-4aca-b566-59a179f0f8af	EdMeeker-TakeMeOutToTheBallGame-remastered.mp3	28	https://buyercall-test-hold-music.s3.amazonaws.com/7228f27c-436f-4aca-b566-59a179f0f8af
\.


--
-- Name: holdmusic_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('holdmusic_id_seq', 9, true);


--
-- Data for Name: invoices; Type: TABLE DATA; Schema: public; Owner: -
--

COPY invoices (created_on, updated_on, id, plan, receipt_number, description, period_start_on, period_end_on, currency, tax, tax_percent, total, credit_card_id, partnership_account_id, partnership_id) FROM stdin;
\.


--
-- Name: invoices_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('invoices_id_seq', 1, true);


--
-- Data for Name: issues; Type: TABLE DATA; Schema: public; Owner: -
--

COPY issues (created_on, updated_on, id, status, label, email, question, partnership_account_id, partnership_id) FROM stdin;
2018-02-25 19:44:02.162486+00	2018-02-25 19:44:02.162524+00	2	unread	login	harry4@buyercall.com	hello world	4	1
2019-04-14 00:55:47.913981+00	2019-04-14 00:59:21.385765+00	3	contacted	request	harry@buyercall.com	Hello I just want to test this please!	4	1
\.


--
-- Name: issues_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('issues_id_seq', 3, true);


--
-- Data for Name: lead_notes; Type: TABLE DATA; Schema: public; Owner: -
--

COPY lead_notes (created_on, updated_on, id, user_id, lead_id, text, is_enabled) FROM stdin;
2017-01-27 21:12:23.813393+00	\N	1	4	1559	CCB LVM RF 8-17-16	t
2016-05-25 16:27:39.345911+00	\N	2	4	154	Boyd Massey	t
2016-05-25 16:36:04.663392+00	\N	3	4	144	270k unable to refinance	t
2016-05-25 16:40:37.271819+00	\N	4	4	145	Left Message\r\n	t
2016-05-25 17:12:41.551243+00	\N	5	4	167	Doctors office.	t
2016-05-25 16:47:38.916867+00	\N	6	4	156	Left message 5.25.16	t
2016-05-25 17:00:15.434514+00	\N	7	4	159	Closed 5.25.16	t
2016-05-25 17:17:29.170322+00	\N	8	4	179	Left Messge 5.25.16	t
2016-05-25 18:21:19.217457+00	\N	9	4	160	VM Not set up. unable to leave message	t
2016-05-25 18:10:53.180617+00	\N	10	4	186	LM 5.25.16	t
2016-05-25 18:15:15.079902+00	\N	11	4	191	Jeannie Blanko - submitted app	t
2016-05-25 18:25:20.810743+00	\N	12	4	185	Edwards Tel #	t
2016-05-25 18:27:33.023035+00	\N	13	4	192	wrong #	t
2016-05-25 16:31:23.600549+00	\N	14	4	155	Said he would call back. In meeting	t
2016-08-08 16:33:20.84504+00	\N	15	4	1215	8.8.16 Autopay\r\n	t
2016-05-25 16:44:48.650711+00	\N	16	4	153	Mail box full. Cannot leave message.	t
2016-05-25 18:24:00.595132+00	\N	17	4	182	Dara Shelton going online	t
2016-05-25 18:31:07.22972+00	\N	18	4	146	Wants to finance a new car	t
2016-07-08 19:15:19.271388+00	\N	19	4	831	Calling back to do the app	t
2016-08-29 21:11:00.718892+00	\N	20	4	1810	8.9.16 sent to autopay	t
2016-05-31 16:25:19.351167+00	\N	21	4	272	LM 5.31.16	t
2016-05-31 17:46:17.728562+00	\N	22	4	286	filling out app when I called back. 5.31.16	t
2016-05-31 18:30:57.50753+00	\N	23	4	289	customer hung  up 5.31.16	t
2016-05-31 19:52:31.09934+00	\N	24	4	299	spam	t
2016-06-01 13:17:46.684785+00	\N	25	4	303	LM 6.1.16 Sarah Buckley	t
2016-08-17 21:02:39.055983+00	\N	26	4	1392	8.10.16 sent to CU\r\n8.17.16 sent to autopay	t
2016-06-01 19:43:09.147026+00	\N	27	4	328	Lois Mills	t
2016-06-01 21:18:35.288285+00	\N	28	4	330	Yolanda Jackson. LM 6.1.16	t
2016-08-22 11:53:21.980551+00	\N	29	4	1635	8.22.16 sent to autopay	t
2016-06-01 21:42:42.649646+00	\N	30	4	332	Jacob Burris	t
2016-06-01 17:26:28.25577+00	\N	31	4	314	Lynda Maxwell	t
2016-06-02 21:14:26.423891+00	\N	32	4	353	LM 6.2.16\r\n	t
2016-06-02 13:03:39.180994+00	\N	33	4	336	spam	t
2016-08-12 21:04:19.011176+00	\N	34	4	901	CCB Inform they have autos refinance with someone else now RF 8-12-16	t
2016-08-24 16:31:42.983418+00	\N	35	4	1703	8.24.16 sent to autopay	t
2016-06-01 17:57:33.235177+00	\N	36	4	318	questions on app	t
2016-06-02 14:23:23.700894+00	\N	37	4	335	going online tonight	t
2017-01-27 21:12:23.813076+00	\N	38	4	1394	CCB to check status of completing online app. 8-10-16 RF	t
2016-07-20 15:45:48.07608+00	\N	39	4	876	client called wanting to get more info on her loan, also she wanted to see if she was approved or not.  She also said Mark left her a voicemail. Contact number: 972-689-5620	t
2016-06-01 19:16:44.66422+00	\N	40	4	326	spam	t
2016-06-03 14:39:12.638166+00	\N	41	4	363	513-235-8208	t
2016-06-07 13:33:38.927622+00	\N	42	4	390	781-724-1889	t
2016-08-23 17:06:04.46843+00	\N	43	4	1677	8.23.16 sent to cu	t
2016-06-13 21:22:51.792868+00	\N	44	4	405	ring no answer	t
2016-06-13 21:23:12.197859+00	\N	45	4	406	ring no answer\r\n	t
2016-06-27 14:39:07.460574+00	\N	46	4	468	going online	t
2016-06-27 14:41:48.350549+00	\N	47	4	469	LM 	t
2016-06-27 14:44:06.105348+00	\N	48	4	472	Rude\r\n	t
2016-06-27 14:51:39.907031+00	\N	49	4	459	LM	t
2016-06-27 14:57:36.975636+00	\N	50	4	460	Going to the branch	t
2016-06-27 15:07:31.241859+00	\N	51	4	477	LM	t
2016-06-27 15:09:37.972031+00	\N	52	4	478	LM	t
2016-06-27 18:38:51.050514+00	\N	53	4	533	614-204-0877 cell	t
2016-06-27 15:51:18.628067+00	\N	54	4	490	LM	t
2016-06-27 15:59:45.006454+00	\N	55	4	493	330-518-2614\r\nco signor for son	t
2016-06-27 15:01:17.338979+00	\N	56	4	463	No answer	t
2016-06-27 20:41:08.194688+00	\N	57	4	546	LM	t
2016-06-27 18:57:47.254648+00	\N	58	4	542	Business number	t
2016-06-28 17:09:39.210917+00	\N	59	4	584	SPOKE TO NANCY AT NEWTOWN FALLS	t
2016-08-10 16:01:42.651215+00	\N	60	4	987	Cust. cant take on any more credit obligations. he has just refinance is house and says he just don't want his credit pulled anymore. 8-9-16 RF	t
2016-08-12 18:14:18.427255+00	\N	61	4	1398	8.10.16 sent to autopay	t
2016-06-29 18:41:48.516825+00	\N	62	4	658	330-360-2062	t
2016-06-29 15:22:40.008704+00	\N	63	4	631	LM 	t
2016-07-05 16:57:55.682252+00	\N	64	4	745	Declined LTV	t
2016-04-21 21:55:13.252712+00	\N	65	2	27	Need to follow!	t
2016-08-08 18:54:54.128484+00	\N	66	4	1098	Cb no answer LVM	t
2016-05-25 17:04:30.503361+00	\N	67	4	161	Left message - 5.25.16	t
2016-05-25 17:14:58.354506+00	\N	68	4	168	This is an Ashland CU Number	t
2016-05-25 17:15:20.517931+00	\N	69	4	169	This is an Ashland CU Number	t
2016-05-25 18:16:26.475258+00	\N	70	4	199	David McKibbin	t
2016-05-25 18:28:34.615745+00	\N	71	4	188	my #. Testing DID	t
2016-06-01 16:58:10.936246+00	\N	72	4	308	app sent	t
2016-06-14 11:50:15.706705+00	\N	73	4	413	Sent App	t
2016-06-14 11:50:33.243276+00	\N	74	4	412	Sent App	t
2016-06-27 15:48:40.693493+00	\N	75	4	501	LM	t
2016-08-25 13:27:22.962121+00	\N	76	4	1762	8.25.16 sent to CU.	t
2016-08-17 21:17:25.344041+00	\N	77	4	1565	8.17.16 sent to cu	t
2016-08-16 19:31:15.016135+00	\N	78	4	1263	Call customer and LM	t
2016-08-11 12:20:49.474101+00	\N	79	4	1403	8.11.16 sent to autopay	t
2016-08-22 14:22:04.486094+00	\N	80	4	1637	8.22.16 CU is calling to set appointment	t
2016-08-16 19:29:29.725565+00	\N	81	4	1180	8.16.16 sent to autopay	t
2016-08-10 16:39:34.241669+00	\N	82	4	1261	8.10.16 sent to autopay	t
2017-01-27 21:12:23.812525+00	\N	83	4	1173	LVM 8-10-16 RF	t
2016-08-03 21:26:19.649416+00	\N	84	4	1187	8.3.16 - has not been approved yet,\r\n	t
2016-08-12 16:33:26.818107+00	\N	85	4	1217	Customer has already talked to someone in regard to questions	t
2016-08-16 19:30:47.99018+00	\N	86	4	1274	8.16.16 sent to autopay	t
2016-08-16 19:31:15.000181+00	\N	87	4	1280	8.16.16 sent to autopay	t
2016-08-16 19:31:40.10093+00	\N	88	4	1282	8.16.16 sent to autopay	t
2016-08-05 15:39:17.915208+00	\N	89	4	1251	Says no one called from this number and wishes not to receive anymore calls.	t
2016-08-11 12:20:27.388218+00	\N	90	4	1412	8.11.16 sent to cu	t
2016-08-11 12:21:15.089629+00	\N	91	4	1401	8.11.16 sent to autopay	t
2016-08-08 13:56:30.694473+00	\N	92	4	1301	This customer insisted that no one called from this number and we dialed the wrong number. Not interested 	t
2017-01-27 21:12:23.813736+00	\N	93	4	1768	CCB/LVM	t
2016-08-08 14:02:26.152162+00	\N	94	4	1300	Customer is going into the branch in Lancaster to submit application	t
2016-08-09 17:08:20.722559+00	\N	95	4	1311	8.8.16 Credit Union has been trying to reach him. Will follow-up with CU today.	t
2016-08-09 17:08:43.530706+00	\N	96	4	1312	8.9.16 sent to autopay	t
2017-01-27 21:12:23.812756+00	\N	97	4	1289	Customer was belligerent and asked if to be taken off do not call list. RF 	t
2016-08-08 15:50:55.826128+00	\N	98	4	1101	DO NOT CALL THIS CUSTOMER BACK	t
2016-08-08 17:01:56.072776+00	\N	99	4	1330	8.8.16	t
2016-08-08 20:08:04.885225+00	\N	100	4	1333	8.8.16 sent to cu - declined. sent to autopay 8.8.16	t
2016-08-08 20:20:25.607566+00	\N	101	4	959	 CB customer and he was informed that application was declined.	t
2016-08-08 20:42:05.261522+00	\N	102	4	1340	8.8.16 sent to CU.	t
2016-08-08 22:03:52.029652+00	\N	103	4	1343	8.8.16 sent to autopay	t
2016-08-08 22:04:13.130176+00	\N	104	4	1344	8.8.16 sent to autopaty	t
2016-08-09 17:08:20.713232+00	\N	105	4	1099	8.9.16 sent to autopay	t
2016-08-10 14:57:16.412591+00	\N	106	4	1382	8.10.16 Sent to CU	t
2016-08-09 21:12:13.886825+00	\N	107	4	1368	8.9.16 Sent to CU	t
2016-08-17 21:03:06.583869+00	\N	108	4	1435	8.12.16 sent to cu\r\n8.17.16 sent to autopay	t
2016-08-10 14:09:28.02701+00	\N	109	4	1379	Call in regard to a loan app. plans to do application over through website	t
2016-08-10 15:36:03.143874+00	\N	110	4	1374	Cust. called in regard to credit card not to refinance auto loan. safe to take her off the DO NOT CALL LIST	t
2016-08-12 13:19:47.022649+00	\N	111	4	1432	8.12.16 sent to cu	t
2016-08-16 19:32:06.19221+00	\N	112	4	1433	8.12.16 sent to cu\r\n8.16.16 sent to autopay	t
2016-08-12 16:33:26.804646+00	\N	113	4	1438	8.12.16 sent to autopay	t
2016-08-12 19:38:54.438964+00	\N	114	4	1455	8.12.16 sent to autopay\r\n	t
2016-08-12 19:38:54.449185+00	\N	115	4	1440	8.12.16 need vehicle model. LM 	t
2016-08-12 19:08:45.409165+00	\N	116	4	1452	terry Riebe Cell number is (406)218-9018.....Wife Donna Riebe Cell (406)550-0738 RF 8-12-16\r\n8.12.16 sent to cu.\r\n	t
2016-08-25 14:45:19.80611+00	\N	117	4	1771	8.25.16 sent to CU	t
2016-08-22 14:22:04.504895+00	\N	118	4	1194	Called her back - completed	t
2016-08-22 17:12:49.3494+00	\N	119	4	1636	Quicken loans. Called LVM about refinancing of home	t
2016-08-23 12:03:32.115854+00	\N	120	4	1590	8.18.16 sent to CU\r\n8.23.16 sent to autopay	t
2016-08-15 12:15:41.589285+00	\N	121	4	1475	8.15.16 sent to autopay	t
2016-08-15 12:16:04.408341+00	\N	122	4	1470	8.15.16 sent to autopay	t
2016-08-15 12:16:27.487224+00	\N	123	4	1469	8.15.16 sent to autopay	t
2016-08-15 12:16:27.498902+00	\N	124	4	857	CB LVM RF	t
2017-01-27 21:12:23.812811+00	\N	125	4	1324	CB and LVM. will Cb 	t
2017-01-27 21:12:23.813055+00	\N	126	4	1388	A women answers and said no one call and no to offer. 8/09/16  R.F 	t
2016-08-15 18:08:54.335398+00	\N	127	4	1496	8.15.16 sent to cu	t
2017-01-27 21:12:23.81325+00	\N	128	4	1506	CCB LMV 8-15-16 RF	t
2016-08-15 18:49:06.218997+00	\N	129	4	1504	10.15.16 sent to cu	t
2016-08-15 18:52:16.288072+00	\N	130	4	1499	10.15.16 sent to cu	t
2016-08-15 19:19:00.088926+00	\N	131	4	1507	8.15.16 sent to cu	t
2016-08-15 20:17:34.41722+00	\N	132	4	1502	called in regard application being sent to his email. RF 8-15-16	t
2016-08-16 15:33:43.630669+00	\N	133	4	1495	8.15.16 sent to CU\r\n8.16.16 sent to autopay not eligible at CU	t
2016-08-16 20:01:05.541323+00	\N	134	4	1535	This guy is the same person. He  kepts changing up his name for some odd reason. He is Jeremiah Soval ; Joseph Remeral and Jamie Sandoval. Not sure what's is problem \r\nBut he was giving every option to a credit app. All of his questions have been answered. 8-16-16 RF	t
2016-08-23 19:19:02.402776+00	\N	135	4	1513	8.15.16 sent to cu\r\n8.23.16 sent to autopay	t
2017-01-27 21:12:23.813257+00	\N	136	4	1510	Customer started speaking English then went to speaking Spanish said I had wrong number. 8-15-16 RF	t
2016-08-15 21:15:12.486125+00	\N	137	4	1518	Second contact number (661)309-5008\r\n8.15.16 sent to autopay	t
2016-08-16 11:05:56.134496+00	\N	138	4	1533	8.16.16 sent to autopay	t
2016-08-16 11:10:52.983007+00	\N	139	4	1530	8.15.16 sent to cu	t
2016-08-16 19:29:55.405347+00	\N	140	4	1255	8.16.16 sent to autopay	t
2016-08-16 19:30:23.622599+00	\N	141	4	1373	8.16.16 sent to autopay	t
2016-08-16 19:30:23.647586+00	\N	142	4	1270	Please do not call this customer back until after 4:00pm he is at work.	t
2016-08-16 19:32:35.842617+00	\N	143	4	1395	8.10.16 sent to cu\r\n8.16.16 sent to autopay	t
2016-08-17 16:03:49.250392+00	\N	144	4	1550	8.17.16 sent to autopay	t
2016-08-17 17:05:00.37423+00	\N	145	4	1558	Will call Back and give correct vin number. RF	t
2016-08-19 18:14:58.703918+00	\N	146	4	1617	8.19.16 sent to cu	t
2016-08-19 18:14:58.715164+00	\N	147	4	1609	Called and left message , says he was calling about offer in the mail	t
2016-08-22 22:19:14.807143+00	\N	148	4	1630	8.22.16 sent to autopay	t
2016-08-25 16:47:09.538071+00	\N	149	4	1474	8.15.16 sent to cu\r\n8.25.16 sent to autopay	t
2016-08-24 13:58:01.707578+00	\N	150	4	1644	Talked to this gentleman already he's really not interested. Said he will not even consider doing business with us unless its in the local branch. I gave him the info to a local branch in his area as well as other information. Answer all of his questions. RF	t
2016-08-26 17:41:45.444232+00	\N	151	4	1789	8.26.16 LM	t
2016-08-22 21:54:05.186121+00	\N	152	4	1656	8.22.16 sent to autopay	t
2016-08-23 11:47:27.216241+00	\N	153	4	1663	8.23.16 sent to autopay	t
2016-08-23 11:59:23.202261+00	\N	154	4	1662	8.23.16 sent to CU	t
2016-08-23 14:20:04.256738+00	\N	155	4	1664	CCB LVM 	t
2017-01-27 21:12:23.813616+00	\N	156	4	1681	CCB NA	t
2017-01-27 21:12:23.813623+00	\N	157	4	1682	CCB/LVM RF	t
2017-01-27 21:12:23.81363+00	\N	158	4	1683	unknown caller	t
2016-08-29 12:09:17.77865+00	\N	159	4	1805	8.29.16 sent to cu	t
2016-08-29 12:09:36.28067+00	\N	160	4	1804	8.29.16 sent to autopay	t
2016-08-24 12:01:24.830913+00	\N	161	4	1690	8.24.16 sent to CU	t
2016-08-29 12:31:08.461213+00	\N	162	4	1797	8.29.16 sent to cu	t
2016-08-29 12:41:22.365045+00	\N	163	4	1800	8.29.016 sent to cu	t
2016-08-31 16:57:34.173484+00	\N	164	4	1798	8.29.16 sent to cu\r\n8.30.16 sent to autopay	t
2017-01-27 21:12:23.813069+00	\N	165	4	1391	Customer going through website to complete app. If can't complete will cb and do over phone. 8-10-16 RF	t
2017-01-27 21:12:23.81309+00	\N	166	4	1397	Error this app. Should have been push through Edwards not Emerald 8-10-16 RF	t
2017-01-27 21:12:23.813114+00	\N	167	4	1399	Wants application and info on his offer sent to email. jeremiah7767@yahoo.com  8/10/16 RF	t
2016-08-31 14:43:00.567311+00	\N	168	4	1822	8.30.16 sent to CU	t
2016-08-30 21:07:17.608603+00	\N	169	4	1819	She dialed the wrong number	t
2017-01-27 21:12:23.813721+00	\N	170	4	1750	CCB customer said he is in the market of buying a house. Had applied with us 6mo. ago and no returned call on his status of approval. Will call back in 2days to see if he wants to go forward	t
2016-08-31 17:02:24.721035+00	\N	171	4	1600	She called to check status of her app RF 8-19-16. This is her cell number\r\n8.30.16 sent to autopay	t
2016-08-31 21:49:26.2593+00	\N	172	4	1829	8.30.16 Taking over the loan on Juan Palma's application.\r\n	t
2017-01-27 21:12:23.813129+00	\N	173	4	1446	8.12.16 customer declined offer with autopay	t
2016-09-02 19:31:36.093337+00	\N	174	4	1867	9.2.16 sent to autopay	t
2017-01-27 21:12:23.813136+00	\N	175	4	1448	Will call back in 45min. to do app. 8-12-16 RF	t
2017-01-27 21:12:23.813158+00	\N	176	4	1453	CCB LVM 8-12-16 RF	t
2017-01-27 21:12:23.813165+00	\N	177	4	1454	CCB LVM 8-12-16 RF	t
2016-09-06 11:45:58.072097+00	\N	178	4	1875	9.6.16 need info. sent em	t
2016-09-07 17:37:42.920086+00	\N	179	4	1878	9.6.16 sent to CU	t
2016-09-07 18:56:15.403471+00	\N	180	4	1938	9.7.16 sent to autopay	t
2016-09-08 11:09:21.525647+00	\N	181	4	1957	9.8.16 duplicate application.	t
2016-09-15 20:04:15.584183+00	\N	182	4	2026	\r\n	t
2016-09-15 20:04:40.751971+00	\N	183	4	2003	9.13.16 sent to CU\r\n9.15.16 EM CU for status	t
2016-09-19 16:43:33.955618+00	\N	184	4	2039	9.19.16 sent to autopay	t
2017-01-27 21:12:23.812098+00	\N	185	4	950	He will go to the local branch if he decides to proceed. Not interested in applying as of yet. 07-26-16 RF	t
2017-01-27 21:12:23.812132+00	\N	186	4	954	CCB LVM RF 8-12-16	t
2017-01-27 21:12:23.812142+00	\N	187	4	956	customer called in with questions before wanting to proceed 7-26-16 RF	t
2017-01-27 21:12:23.812179+00	\N	188	4	976	will go to website to do app. 7-27-16 RF	t
2017-01-27 21:12:23.812269+00	\N	189	4	1003	Wants to do application over the phone	t
2017-01-27 21:12:23.812319+00	\N	190	4	1042	Wants information through email. Email: candiashley443@yahoo.com	t
2017-01-27 21:12:23.812326+00	\N	191	4	1047	General questions. he is not interested. RF 	t
2017-01-27 21:12:23.812355+00	\N	192	4	1086	Please don't not call this customer during working hours. He is not available until after 7pm Mon-Fr	t
2016-11-03 15:23:06.265366+00	\N	193	4	2418	11/2 called customer back. No answer and did not go back to voicemail. Will call again in three hours.	t
2017-01-27 21:12:23.813186+00	\N	194	4	1461	CCB LVM RRF 8-12-16\r\n8-12-16 4:23pm CCB in regard to her grandmother and refinancing loan. She wil do app. Online	t
2016-11-01 22:33:56.490157+00	\N	195	4	2513	11/1 customer was not successful in moving past step 4 in the application process. Follow up on 11/2 to see if customer was successful	t
2017-01-27 21:12:23.812461+00	\N	196	4	1134	called on behalf for dad and also had problems with website and uploading app. 8-02-16 RF	t
2016-11-02 18:24:36.463002+00	\N	197	4	2582	11/2: Mr. Diaz completed the application over the phone with Robert. Credit Union is Edwards Credit Union	t
2017-01-27 21:12:23.812511+00	\N	198	4	1155	Branch App.	t
2017-01-27 21:12:23.812568+00	\N	199	4	1181	Interested in going into the branch to complete ap. RF	t
2017-01-27 21:12:23.812575+00	\N	200	4	1183	customer call back for marks fax. number  app. sub. 8-03-16 RF	t
2017-01-27 21:12:23.812603+00	\N	201	4	1188	Going to website to complete application	t
2016-11-30 18:38:28.005225+00	\N	202	4	3007	11.30.16 sent to CU	t
2017-01-27 21:12:23.812708+00	\N	203	4	1271	LM	t
2017-01-27 21:12:23.812715+00	\N	204	4	1272	Will go into the local branch to complete app. Wasn't interested in completing one over the phone or through the website	t
2017-01-27 21:12:23.812722+00	\N	205	4	1275	Questions and will go to local banker has  a personal banker. 8-8-16 RF	t
2017-01-27 21:12:23.812729+00	\N	206	4	1276	General questions Not interested RF 8-16-16	t
2017-01-27 21:12:23.812743+00	\N	207	4	1284	661-714-2378 is the alternate number.	t
2017-01-27 21:12:23.812784+00	\N	208	4	1318	Cust. CB LVM RF	t
2016-12-03 16:19:43.795905+00	\N	209	4	3034	12.3.16\r\n	t
2017-01-27 21:12:23.812791+00	\N	210	4	1319	Call back no answer and couldn't understand VM. 8-08-16 	t
2017-01-27 21:12:23.812797+00	\N	211	4	1320	 CCB LVM. This is a bus. line and they are closed on Mondays 8-8-16\r\nCCB This is a dental office. IDK who called from this number.8-9-16	t
2017-01-27 21:12:23.812804+00	\N	212	4	1322	Customer wishes not to have any further contact	t
2017-01-27 21:12:23.812853+00	\N	213	4	1334	CB no answer LVM 8-8-16 RF\r\nCB LVM 8-09-16 RF	t
2017-01-27 21:12:23.812861+00	\N	214	4	1335	CB LVM	t
2017-01-27 21:12:23.812867+00	\N	215	4	1337	Mr. Jackson LTV is too high. But has excellent credit. He will try again in 6mos. Not willing to give a try	t
2017-01-27 21:12:23.812874+00	\N	216	4	1338	Was giving tool free number. Will call back 8/09/16 with info. to do app	t
2017-01-27 21:12:23.812888+00	\N	217	4	1341	Application sub online calling for a update 	t
2017-01-27 21:12:23.812909+00	\N	218	4	1352	Cust. has started an online app. 8-9-16 RF	t
2017-01-27 21:12:23.812916+00	\N	219	4	1353	CCB LMV R.F call dropped	t
2017-01-27 21:12:23.812923+00	\N	220	4	1354	CCB wants to go through branch.8-08-16 RF	t
2017-01-27 21:12:23.812958+00	\N	221	4	1360	CCB. seem to be interested will call back with info. to do app. RF 8-16-16\r\nCCB. This customer disconnected the call twice. From what I did gather from him. He was interested at first but now he is a lil hesitant. 8-09-16 RF	t
2017-01-27 21:12:23.812986+00	\N	222	4	1366	Going into branch to complete app. 8-09-16 RF	t
2017-01-27 21:12:23.813+00	\N	223	4	1369	Said they don't have any current auto loans. RF 8-09-16	t
2017-01-27 21:12:23.813014+00	\N	224	4	1378	Same customer as Lisa Genais	t
2017-01-27 21:12:23.813229+00	\N	225	4	1467	CCB LVM 8-12-16 ...Org. Talk to cust. back around 8-1-16. We said he was going to branch to complete app. RF	t
2017-01-27 21:12:23.813236+00	\N	226	4	1468	CCB LMV 8-12-16 RF Customer called on 8-12-16 wanting to know how to proceed with applying. 	t
2017-01-27 21:12:23.813264+00	\N	227	4	1514	8.15.16 calling back to do an app	t
2017-01-27 21:12:23.813315+00	\N	228	4	1517	Second contact number (661)309-5008	t
2017-01-27 21:12:23.813323+00	\N	229	4	1521	Cust. is going to gather info. and do it from the website. RF 8-15-16	t
2017-01-27 21:12:23.813351+00	\N	230	4	1543	called in about the status on loan. He was told to give it a couple more days since it was pushed through auto pay. RF 8-16-16	t
2017-01-27 21:12:23.813358+00	\N	231	4	1551	Called in about status of loan. was told it was still in process. Rf 8-17-16	t
2017-01-27 21:12:23.813379+00	\N	232	4	1555	Not interested	t
2017-01-27 21:12:23.8134+00	\N	233	4	1560	Calling to check status of loan ap. RF	t
2017-01-27 21:12:23.813407+00	\N	234	4	1561	CCB LMV RF	t
2017-01-27 21:12:23.813414+00	\N	235	4	1562	called in about status of auto loan RF	t
2017-01-27 21:12:23.813464+00	\N	236	4	1583	CCB LVM RF	t
2017-01-27 21:12:23.813471+00	\N	237	4	1584	Returned call for Mark. RF	t
2017-01-27 21:12:23.813519+00	\N	238	4	1627	She called wanting information with financing on a new car vehicle. that's something we do not offer at this time. 8-19-16 RF 	t
2017-01-27 21:12:23.81354+00	\N	239	4	1646	CB LVM 	t
2017-01-27 21:12:23.813547+00	\N	240	4	1647	CCB NA RF	t
2017-01-27 21:12:23.813554+00	\N	241	4	1649	Spam	t
2017-01-27 21:12:23.813568+00	\N	242	4	1667	Called in for mom they have a joint acct. and interested in refinancing car but just in her moms name. RF	t
2017-01-27 21:12:23.813575+00	\N	243	4	1668	CCB and was hang up on	t
2017-01-27 21:12:23.813589+00	\N	244	4	1670	CCB/LVM 	t
2017-01-27 21:12:23.813596+00	\N	245	4	1674	CCB/LVM	t
2017-01-27 21:12:23.813603+00	\N	246	4	1675	CCB/NA/LMV	t
2017-01-27 21:12:23.813609+00	\N	247	4	1676	CCB/LVM	t
2017-01-27 21:12:23.813658+00	\N	248	4	1687	Customer stated they are getting a new car. So not interested	t
2017-01-27 21:12:23.813672+00	\N	249	4	1694	CCB/NA	t
2017-01-27 21:12:23.813686+00	\N	250	4	1696	CCB/NA Vm full could not leave message	t
2017-01-27 21:12:23.813693+00	\N	251	4	1697	CCB/NA	t
2017-01-27 21:12:23.8137+00	\N	252	4	1698	 A Quicken loans company  refinancing of mortgages	t
2017-01-27 21:12:23.813707+00	\N	253	4	1702	He will call back with VIN # and bank account num. He was in his truck	t
2017-01-27 21:12:23.813714+00	\N	254	4	1716	CCB/LVM 	t
2017-01-27 21:12:23.813757+00	\N	255	4	1770	CCB: A elderly lady answered and said her daughter may have called and she will ask and call back if so. RF	t
2017-01-27 21:12:23.813771+00	\N	256	4	1775	She is already refinance through another source.	t
2017-01-27 21:12:23.813785+00	\N	257	4	1787	CCB he stated he is waiting to go into his bank on mortgage. Once he gets a approval from them will give us a call to refinance his car.	t
2017-01-27 21:12:23.813799+00	\N	258	4	1812	CCB/LVM 	t
2017-01-27 21:12:23.813806+00	\N	259	4	1813	CCB/LVM	t
2017-01-27 21:12:23.813834+00	\N	260	4	1877	9.7.16 sent to autopay	t
2017-01-27 21:12:23.813841+00	\N	261	4	1879	CB/LVM	t
2017-01-27 21:12:23.813847+00	\N	262	4	1880	CB/LVM	t
2017-01-27 21:12:23.813862+00	\N	263	4	1884	CB/NA	t
2017-01-27 21:12:23.813869+00	\N	264	4	1908	Update status on loan app. Sub weeks ago\r\nShe is with autopay, and not responding to their calls.	t
2017-01-27 21:12:23.813911+00	\N	265	4	2544	Reached out to the original number. Her husband gave contact information for his wife, whom initiated the call. Contact Ms. Pedack at 817-675-4224	t
2017-01-27 21:12:23.813918+00	\N	266	4	2548	Spoke with Ms. Torrens. Is busy today, but is receptive to a call back at 11 on Thursday. Called her back on Thursday and customer was no longer interested in the offer.	t
2017-01-27 21:12:23.813925+00	\N	267	4	2580	Mr. Diaz's phone number: 861-575-4023. Email address: otto_diaz@yahoo.com	t
2017-02-10 15:51:19.511724+00	\N	268	4	3157	Sent 2.9.17	t
2017-03-28 17:52:24.995504+00	2017-03-28 17:52:24.995555+00	269	4	3610	3.28.17 sent to Emerald\r\n	t
2017-03-29 12:40:08.758557+00	2017-03-29 12:40:08.758614+00	270	4	3616	3.29.17 sent to ASECU\r\n	t
2017-03-29 12:40:39.921562+00	2017-03-29 12:40:39.921614+00	271	4	3614	3.29.17 Sent to Autopay	t
2017-03-29 18:14:41.260722+00	2017-03-29 18:14:41.26077+00	272	4	3617	LM 3.29.17\r\n\r\n	t
2017-04-03 19:53:01.558425+00	2017-04-03 19:53:01.55848+00	273	4	3674	Sent 4.3.17	t
2017-04-04 21:46:56.834321+00	2017-04-04 21:46:56.834376+00	274	4	3621	Spam	t
2017-04-04 21:47:34.288625+00	2017-04-04 21:47:34.28869+00	275	4	3622	Spam	t
2017-04-04 21:48:39.055525+00	2017-04-04 21:48:39.055591+00	276	4	3624	LM 4.4.17	t
2017-04-04 21:50:32.498428+00	2017-04-04 21:50:32.498498+00	277	4	3633	LM 4.4.17	t
2017-04-04 21:52:16.975287+00	2017-04-04 21:52:16.975344+00	278	4	3621	SPAM	t
2017-04-07 16:35:27.728165+00	2017-04-07 16:35:27.728232+00	279	4	3715	4.7.17 called and unable to leave message.	t
2017-04-12 17:55:26.270627+00	2017-04-12 17:55:26.270697+00	280	4	3817	Spam	t
2017-05-04 13:16:43.334655+00	2017-05-04 13:16:43.3347+00	281	4	4698	LM 5.4.17\r\n	t
2017-05-22 20:20:50.941234+00	2017-05-22 20:20:50.941555+00	282	4	5262	spam call	t
2017-06-08 12:22:55.475004+00	2017-06-08 12:22:55.475091+00	283	4	5575	6.8.17 ring no answer	t
2017-06-16 16:21:00.208343+00	2017-06-16 16:21:00.208412+00	284	4	5591	Company - ACT	t
2017-07-06 13:08:55.256778+00	2017-07-06 13:08:55.256811+00	285	13	5720	Carlos has this lead	t
2017-07-06 13:09:53.470747+00	2017-07-06 13:09:53.470775+00	286	13	5720	Carlos lead	t
2017-09-27 23:01:03.841474+00	2017-09-27 23:01:03.841556+00	287	13	6501	KIM CALLED	t
2017-09-27 23:01:17.347258+00	2017-09-27 23:01:17.347314+00	288	13	6501	KIM CALLED	t
2017-09-27 23:01:42.913058+00	2017-09-27 23:01:42.91311+00	289	13	6501	KIM CALLED HER WILL TOUCH BASE TOMORROW	t
2017-10-11 13:48:08.237472+00	2017-10-11 13:48:08.237723+00	290	13	6639	called no answer  10-11-17	t
2017-10-11 13:48:44.661475+00	2017-10-11 13:48:44.661583+00	291	13	6642	called left message  10-11-17	t
2017-10-11 13:51:26.930056+00	2017-10-11 13:51:26.930109+00	292	13	6638	had appointment with her yesterday did not make it. Rescheduled for today at 4:45	t
2017-10-11 13:52:19.158166+00	2017-10-11 13:52:19.158208+00	293	13	6638	 w. merced	t
2017-10-11 13:53:04.121592+00	2017-10-11 13:53:04.121647+00	294	13	6642	W.Merced	t
2017-10-11 13:54:33.354088+00	2017-10-11 13:54:33.35414+00	295	13	6640	Called left message 10-11-2017 W.Merced	t
2017-10-11 14:06:09.033506+00	2017-10-11 14:06:09.033609+00	296	13	6629	called left message 10-11-17 W.Merced	t
2017-10-11 14:08:03.283005+00	2017-10-11 14:08:03.283071+00	297	13	6628	Called but mailbox is full 10-11-2017 W.Merced	t
2017-10-11 14:09:31.614094+00	2017-10-11 14:09:31.614138+00	298	13	6627	Called no answer 10-11-2017 W. Merced	t
2017-10-11 14:15:20.196975+00	2017-10-11 14:15:20.197051+00	299	13	6626	Called and left her a message 10-11-2017 W.Merced	t
2017-10-11 14:18:09.692609+00	2017-10-11 14:18:09.692658+00	300	13	6611	Called left message 10-11-2017 W.Merced	t
2017-10-11 14:20:51.798856+00	2017-10-11 14:20:51.798915+00	301	13	6589	Called left him a message 10-11-2017 W. Merced	t
2017-10-11 14:26:36.818594+00	2017-10-11 14:26:36.818634+00	302	13	6588	Called left message 10-11-2017 W.Merced	t
2017-10-11 14:29:25.398811+00	2017-10-11 14:29:25.398967+00	303	13	6560	called but can't leave a message 10-11-2017 W.Merced	t
2017-10-11 14:53:21.490216+00	2017-10-11 14:53:21.490295+00	304	13	6523	Called left message 10-11-2017 W.Merced	t
2017-10-11 14:56:51.489624+00	2017-10-11 14:56:51.489676+00	305	13	6555	Called left message 10-11-2017 W.Merced	t
2017-10-11 15:22:40.290594+00	2017-10-11 15:22:40.290646+00	306	13	6547	Called and she said she still needs a car but has no job. Is looking for when will call me when she gats situated	t
2017-10-11 15:25:29.289659+00	2017-10-11 15:25:29.289713+00	307	13	6522	Called no service 10-11-2017 W.MERCED	t
2017-10-23 13:14:24.785459+00	2017-10-23 13:14:24.785514+00	308	13	6780	had appointment with him sat did not show. Referral from chris lee	t
2017-10-23 13:44:24.809683+00	2017-10-23 13:44:24.809737+00	309	13	6781	called no answer 	t
2017-10-25 14:59:10.77777+00	2017-10-25 14:59:10.777836+00	310	13	6799	Called left message (wanda)	t
2017-10-25 15:00:29.562297+00	2017-10-25 15:00:29.56235+00	311	13	6798	called left message \r\nwanda	t
2017-10-27 20:43:42.178305+00	2017-10-27 20:43:42.17836+00	312	13	6846	called left message	t
2017-11-03 13:33:05.890811+00	2017-11-03 13:33:05.890881+00	313	13	6915	called and she will call me back in a few wm	t
2017-11-08 14:42:54.362543+00	2017-11-08 14:42:54.362595+00	314	13	6970	will be here sat. said he knew people that bought a car here but does not want to use them 	t
2017-11-14 20:45:37.89459+00	2017-11-14 20:45:37.89464+00	315	13	7032	Spoke with Amber, appointment on 11/15/2017 at 245	t
2017-11-14 21:01:34.046819+00	2017-11-14 21:01:34.046875+00	316	13	7031	Carlos, left message, great news.	t
2017-11-14 21:17:21.424868+00	2017-11-14 21:17:21.424918+00	317	13	7030	Spoke with Shanario, will bring me the referral name on friday. appoitment on 11/17/2017	t
2017-11-14 22:29:02.664907+00	2017-11-14 22:29:02.664974+00	318	13	7059	This is kim customer.	t
2017-11-14 23:57:24.329496+00	2017-11-14 23:57:24.329578+00	319	13	7061	Kim has an appointment with him on 11/15/2017 at noon.	t
2017-11-15 14:20:41.342247+00	2017-11-15 14:20:41.3423+00	320	13	7063	KIM CALLED AND LEFT MESSAGE	t
2017-11-15 19:26:15.572573+00	2017-11-15 19:26:15.572659+00	321	13	7068	Left him a message, have great news.	t
2017-11-15 23:00:09.381145+00	2017-11-15 23:00:09.381214+00	322	13	7072	KIM  CALLED AND LEFT MESSAGE	t
2017-11-16 22:59:07.045267+00	2017-11-16 22:59:07.045348+00	323	13	7078	Spoke with Wayne, appointment for 11/17/2017 at 215	t
2017-11-17 13:59:39.124533+00	2017-11-17 13:59:39.124585+00	324	13	7094	Carlos, left a message, have great news call me.	t
2017-11-17 14:03:56.30124+00	2017-11-17 14:03:56.301292+00	325	13	7088	Carlos, left message have great news call me.	t
2017-11-17 14:14:23.520768+00	2017-11-17 14:14:23.520813+00	326	13	7098	Carlos, called but no answer.	t
2017-11-17 17:21:37.287412+00	2017-11-17 17:21:37.287465+00	327	13	7105	KIM CALLED IT IS CLIENTS SERVICES.	t
2017-11-17 17:57:25.899292+00	2017-11-17 17:57:25.899351+00	328	13	7082	A PREVIOUS CUSTOMERS OF WANDA'S .IS GOING TO TRY TO COME IN NEXT WEEK	t
2017-11-17 18:01:31.160129+00	2017-11-17 18:01:31.160203+00	329	13	6843	PURCHASED A CASH CAR	t
2017-11-17 20:25:34.877876+00	2017-11-17 20:25:34.877924+00	330	13	7114	KIM TALKED TO HER . IS LOOKING FOR CAR INSURANCE	t
2017-11-18 14:15:35.571531+00	2017-11-18 14:15:35.57162+00	331	13	7121	KIM LEFT MESSAGE	t
2017-11-20 14:07:18.219491+00	2017-11-20 14:07:18.219545+00	332	13	7135	Carlos, Call but no answer.	t
2017-11-20 20:08:39.603012+00	2017-11-20 20:08:39.603066+00	333	13	7147	CALLED IN FOR A FRIEND CASSIDY PITTMAN.MADE AN APPOINTMENT FOR WANDA AT 515 TODAY	t
2017-11-20 20:09:36.753667+00	2017-11-20 20:09:36.753735+00	334	13	7146	KIM TALKED TO HER, IS UNDECIDED WHEN SHE CAN COME AT THIS TIME	t
2017-11-20 20:11:37.688295+00	2017-11-20 20:11:37.688368+00	335	13	7134	KIM'S CUSTOMER	t
2017-11-21 14:15:51.157122+00	2017-11-21 14:15:51.157177+00	336	13	7154	TRYING TO REFINANCE	t
2017-11-21 14:25:19.425323+00	2017-11-21 14:25:19.42539+00	337	13	7153	Carlos, looking for a personal loan, not a car loan.	t
2017-11-21 14:33:14.103906+00	2017-11-21 14:33:14.10397+00	338	13	7151	called left message 	t
2017-11-21 14:33:56.623007+00	2017-11-21 14:33:56.623057+00	339	13	7156	Carlos, left a message, have great news.	t
2017-11-21 14:36:33.41044+00	2017-11-21 14:36:33.41049+00	340	13	7145	he will be here wed at 2:15	t
2017-11-21 14:53:25.903337+00	2017-11-21 14:53:25.903387+00	341	13	7085	called left message to see when she can make it in . wm	t
2017-11-21 15:14:48.208268+00	2017-11-21 15:14:48.208335+00	342	13	7082	called left her a message 	t
2017-11-21 17:29:17.316301+00	2017-11-21 17:29:17.316355+00	343	13	7158	KIM LEFT MESSAGE .	t
2017-11-21 20:14:44.909464+00	2017-11-21 20:14:44.909518+00	344	13	7165	KIM MAILED BROCHURE CANNOT CONE UNTIL THE 28TH	t
2017-11-21 21:18:52.172722+00	2017-11-21 21:18:52.17279+00	345	13	7166	KIM SENT A BROCHURE . MADE AN APPOINTMENT FOR Saturday at 1145	t
2017-11-21 23:58:03.187793+00	2017-11-21 23:58:03.187847+00	346	13	7167	KIM TALKED TO HER. MADE AN APPOINTMENT FOR FRIDAY AT 415	t
2017-11-22 14:11:57.032117+00	2017-11-22 14:11:57.032436+00	347	13	7171	Carlos, left her a message. Great news.	t
2017-11-22 16:16:31.42908+00	2017-11-22 16:16:31.429146+00	348	13	7172	KIM GAVE THE LEAD TO CARLOS .KIM MADE THE APPT WITH QUINTEZ HUBBARD. FOR 1215 TODAY. REFERRED J MATTOX	t
2017-11-22 16:20:45.802386+00	2017-11-22 16:20:45.802544+00	349	13	7174	KIM MADE AN APPOINTMENT FOR SATURDAY AT 315	t
2017-11-22 16:25:24.959718+00	2017-11-22 16:25:24.959771+00	350	13	7175	CALLED CAVENDER AUTO . AND TEMISA ANSWERED	t
2017-11-22 18:18:18.017052+00	2017-11-22 18:18:18.017126+00	351	13	7177	KIM ACCEPTED CALL. GAVE MAIN NUMBER BECAUSE NEEDED CARLOS	t
2017-11-22 20:38:30.453343+00	2017-11-22 20:38:30.453417+00	352	13	7180	KIM TALKED TO HER BEFORE SHE WENT ONLINE TO FILL OUT APPLICATION	t
2017-11-22 21:49:51.80656+00	2017-11-22 21:49:51.806611+00	353	13	7181	KIM TALKED TO HIM, HE WILL BE IN ON MONDAY AT  145	t
2017-11-24 14:14:00.287577+00	2017-11-24 14:14:00.287649+00	354	13	7185	called and she will be here fri next week	t
2017-11-24 14:57:16.60125+00	2017-11-24 14:57:16.601297+00	355	13	7182	called left her a message 	t
2017-11-24 23:16:17.911276+00	2017-11-24 23:16:17.911327+00	356	13	7184	WANDA CALLED	t
2017-11-25 18:48:45.653999+00	2017-11-25 18:48:45.654055+00	357	13	7321	KIM TOOK THE CALL AND TURNED IT OVER TO CARLOS . SHE WAS REFERRED BY KEN BRISCOE HIS CUSTOMER	t
2017-11-25 19:46:11.251591+00	2017-11-25 19:46:11.251673+00	358	13	7324	KIM LEFT A MESSAGE AND SENT A BROCHURE	t
2017-11-25 20:52:06.328637+00	2017-11-25 20:52:06.328694+00	359	13	7327	NEEDED TO MAKE PAYMENT	t
2017-11-25 20:52:30.261375+00	2017-11-25 20:52:30.26144+00	360	13	7326	NEEDED TO MAKE PAYMENT	t
2017-11-25 20:53:54.106529+00	2017-11-25 20:53:54.106593+00	361	13	7325	KIM TOOK THE CALL. A REFERRAL FROM RHONDA SAMPLES	t
2017-11-27 14:14:14.732451+00	2017-11-27 14:14:14.732507+00	362	13	7331	called left message	t
2017-11-27 14:49:32.098628+00	2017-11-27 14:49:32.098694+00	363	13	7332	Carlos, spoke with customer. She was busy at work, she will call me later.	t
2017-11-27 18:38:53.323904+00	2017-11-27 18:38:53.323971+00	364	13	7146	CALLED 11/27 PURCHASED A CASH CAR. ASKED ME NOT TO CALL ANYMORE	t
2017-11-27 19:43:54.625152+00	2017-11-27 19:43:54.625203+00	365	13	7349	KIM LEFT MESSAGE	t
2017-11-27 20:02:15.447483+00	2017-11-27 20:02:15.447538+00	366	13	7350	Carlos, left her a message, have great news.	t
2017-11-27 21:02:49.398253+00	2017-11-27 21:02:49.398331+00	367	13	7331	CALLED HIM BACK AND HE SAID HE WAS JUST LOOKING AND WILL BE TRYING TO DO SOMETHING BY TAX TIME 	t
2017-11-27 21:02:49.643561+00	2017-11-27 21:02:49.643642+00	368	13	7331	CALLED HIM BACK AND HE SAID HE WAS JUST LOOKING AND WILL BE TRYING TO DO SOMETHING BY TAX TIME 	t
2017-11-28 16:20:20.609821+00	2017-11-28 16:20:20.609876+00	369	13	7358	called no answer 	t
2017-11-28 16:22:03.239936+00	2017-11-28 16:22:03.240002+00	370	13	7358	rings and rings then goes to busy	t
2017-11-28 17:29:41.067346+00	2017-11-28 17:29:41.067415+00	371	13	7361	called left message 	t
2017-11-28 18:17:54.858173+00	2017-11-28 18:17:54.858234+00	372	13	7363	be here sat 10:45	t
2017-11-28 18:20:49.535309+00	2017-11-28 18:20:49.535391+00	373	13	7361	called left a 2nd message  W.M.	t
2017-11-28 22:43:04.815381+00	2017-11-28 22:43:04.815432+00	374	13	7370	KIM TALKED TO HER. CANNOT COME IN UNTIL NEXT WEEK. BROCHURE WAS SENT	t
2017-11-29 16:30:02.581502+00	2017-11-29 16:30:02.581572+00	375	13	7392	calling for service department 	t
2017-11-29 17:00:47.209817+00	2017-11-29 17:00:47.209871+00	376	13	7394	will be here dec 5th 	t
2017-11-30 15:19:18.277196+00	2017-11-30 15:19:18.27725+00	377	13	7407	KIM TALKED TO HER. WAS REFERRED BY ROBIN BANKS. WILL HERE TOMORROW AT 115	t
2017-11-30 23:54:57.95665+00	2017-11-30 23:54:57.956718+00	378	13	7421	KIM LEFT MESSAG	t
2017-12-01 14:23:14.450405+00	2017-12-01 14:23:14.450458+00	379	13	7424	referral from Johathan knight , Kim's customer will be here after 12:15	t
2017-12-01 15:53:39.963779+00	2017-12-01 15:53:39.963848+00	380	13	7427	Carlos, number is to a fax machine.	t
2017-12-01 17:18:04.435102+00	2017-12-01 17:18:04.435171+00	381	13	7433	trying to get a ride 	t
2017-12-01 18:17:54.853335+00	2017-12-01 18:17:54.853407+00	382	13	7438	WILL BE HERE TOMORROAW MORNING 	t
2017-12-01 19:00:32.738704+00	2017-12-01 19:00:32.738757+00	383	13	7383	will be here dec 21 . drive by 	t
2017-12-01 19:44:41.036781+00	2017-12-01 19:44:41.036833+00	384	13	7444	called left message 	t
2017-12-02 18:14:39.227464+00	2017-12-02 18:14:39.227516+00	385	13	7485	TOE TRUCK DRIVER WHO IS BRINGING IN A CAR	t
2017-12-02 18:16:00.710957+00	2017-12-02 18:16:00.711003+00	386	13	7473	A CURRENT CUSTOMER PATRICIA GRIFFIN WHO HAD QUESTIONS ABOUT TRADING. WANDA'S CUSTOMER	t
2017-12-02 18:42:07.813315+00	2017-12-02 18:42:07.813367+00	387	13	7493	A CURRENT CUSTOMER WANTING TO KNOW ABOUT TRADING	t
2017-12-04 14:20:29.492151+00	2017-12-04 14:20:29.492215+00	388	13	7525	Carlos, spoke with aron. He was at work wants me to call him this afternoon.	t
2017-12-04 14:24:04.649394+00	2017-12-04 14:24:04.649447+00	389	13	7526	Carlos, left her a message, great news please call me.	t
2017-12-06 19:34:53.709365+00	2017-12-06 19:34:53.709421+00	390	13	7652	IN SYSTEM	t
2017-12-06 19:37:53.589255+00	2017-12-06 19:37:53.589307+00	391	13	7627	CALLED ABOUT REFERRAL CHECK	t
2017-12-07 19:00:09.412552+00	2017-12-07 19:00:09.412611+00	392	13	7652	IN KIMS SYSTEM	t
2017-12-09 15:33:23.398682+00	2017-12-09 15:33:23.398735+00	393	13	7741	will try to be here Monday 	t
2017-12-09 15:50:22.295906+00	2017-12-09 15:50:22.295938+00	394	13	7741	will call me back 	t
2017-12-09 22:21:54.1943+00	2017-12-09 22:21:54.194377+00	395	13	7755	INSURANCE CALL	t
2017-12-09 22:23:56.996035+00	2017-12-09 22:23:56.996094+00	396	13	7749	WILL CALL HIM MONDAY .NEEDS TO FIND RIDE HERE	t
2017-12-09 22:24:31.219314+00	2017-12-09 22:24:31.219367+00	397	13	7746	LEFT MESSAGE ANS BROCHURE SENT	t
2017-12-09 22:25:44.622858+00	2017-12-09 22:25:44.622905+00	398	13	7742	JUST RINGS NO MACHINE COMES ON TO LEAVE A MESSAGE.ADDRESS IS INCOMPLETE CANNOT MAIL BROCHURE	t
2017-12-09 22:26:07.597129+00	2017-12-09 22:26:07.597163+00	399	13	7732	INSURANCE CALL	t
2017-12-11 14:18:18.831965+00	2017-12-11 14:18:18.832022+00	400	13	7775	will be here today after doc appt	t
2017-12-11 14:18:51.550043+00	2017-12-11 14:18:51.550098+00	401	13	7759	called no answer 	t
2017-12-11 14:20:19.826486+00	2017-12-11 14:20:19.826607+00	402	13	7758	called no answer 	t
2017-12-11 14:40:34.957893+00	2017-12-11 14:40:34.957947+00	403	13	7759	called left message 	t
2017-12-11 15:11:23.430693+00	2017-12-11 15:11:23.430747+00	404	13	7776	Carlos, Left message,	t
2017-12-11 15:36:53.939723+00	2017-12-11 15:36:53.939779+00	405	13	7780	WAS FOR SERVICE	t
2017-12-11 16:57:08.323929+00	2017-12-11 16:57:08.324014+00	406	13	7758	KIM TALKED TO HIM.IN THE SYSTEM	t
2017-12-11 17:23:54.985508+00	2017-12-11 17:23:54.985574+00	407	13	7784	WANDAS CUSTOMER I GAVE HER THE INFO	t
2017-12-11 18:41:00.944571+00	2017-12-11 18:41:00.944624+00	408	13	7786	KIM LEFT MESSAGE	t
2017-12-11 20:50:20.974226+00	2017-12-11 20:50:20.974281+00	409	13	7792	Carlos, this is wandas customer. she has an appointment with her on 12/12/2017 @ 10:45 A.m.	t
2017-12-11 21:05:07.306231+00	2017-12-11 21:05:07.306284+00	410	13	7793	Carlos, spoke with Christopher he said was on internet and found us. Will be able to do something the weekend of the 23rd. Will follow up.	t
2017-12-11 23:17:45.477753+00	2017-12-11 23:17:45.477843+00	411	13	7798	called left message 	t
2017-12-12 16:02:54.855618+00	2017-12-12 16:02:54.855682+00	412	13	7812	Carlos, called no answer. phone just keeps ringing.	t
2017-12-12 16:05:39.099978+00	2017-12-12 16:05:39.100028+00	413	13	7813	Carlos, left a message. Referral from Thomas Kendrick.	t
2017-12-12 23:26:23.502423+00	2017-12-12 23:26:23.502475+00	414	13	7832	WILL BE HERE IN THE MORNING 	t
2017-12-12 23:26:47.848997+00	2017-12-12 23:26:47.849079+00	415	13	7830	CALLED LEFT MESSAGE 	t
2017-12-12 23:39:21.960145+00	2017-12-12 23:39:21.960229+00	416	13	7833	called and spoke to some man . said he was on his way home will give her the message that I called 	t
2017-12-13 17:25:01.962326+00	2017-12-13 17:25:01.962378+00	417	13	7845	Carlos, spoke with Robert. He was at the mitsubishi store trying to get approved when he saw our sign and made the app to see if we can help him. appointment for 12/14/2017	t
2017-12-13 21:16:26.472865+00	2017-12-13 21:16:26.472926+00	418	13	7855	BROCHURE MAILED . APPT FOR 12/30	t
2017-12-13 21:17:15.430646+00	2017-12-13 21:17:15.430702+00	419	13	7848	TALKED TO HIM, ASKED ME TO CALL HIM TOMORROW	t
2017-12-13 21:18:19.591863+00	2017-12-13 21:18:19.591919+00	420	13	7842	COMING IN TODAY WANDAS CUSTOMER	t
2017-12-14 15:07:24.144602+00	2017-12-14 15:07:24.144648+00	421	13	7863	Carlos, left message. Have great news, please call me.	t
2017-12-14 15:14:41.47576+00	2017-12-14 15:14:41.475828+00	422	13	7864	Carlos, left message. Have great news call me.	t
2017-12-14 15:19:36.583572+00	2017-12-14 15:19:36.583637+00	423	13	7861	KIM TALKED TO HIM, FOUND US ON FACEBOOK.MADE AN APPOINTMENT FOR SATURDAY	t
2017-12-14 15:36:22.875426+00	2017-12-14 15:36:22.875499+00	424	13	7866	Carlos, spoke with customer, previous total loss will be here on 12/15/2017	t
2017-12-14 19:53:22.421971+00	2017-12-14 19:53:22.422065+00	425	13	7874	CARLOS'S REFERRAL FROM MICHAEL NELMS. . KIM SPOKE TO HEATHER AND MADE AN APPOINTMENT FOR 515 TODAY	t
2017-12-14 19:56:29.511421+00	2017-12-14 19:56:29.511475+00	426	13	7867	KIM  TALKED TO HIM. CANNOT COME IN UNTIL THE 22ND WHEN HE GETS PAID WAS REFERRED BY ONE OF WANDA'S CUSTOMERS.TONYA ROGERS 	t
2017-12-14 20:12:01.094924+00	2017-12-14 20:12:01.094965+00	427	13	7875	KIM TALKED TP HIM. WILL FOLLOW UP WITH HIM TOMORROW	t
2017-12-15 15:04:14.802273+00	2017-12-15 15:04:14.802399+00	428	13	7884	Carlos, this number just keeps ringing. no one answers.	t
2017-12-16 14:03:47.032491+00	2017-12-16 14:03:47.032547+00	429	13	7919	KIM IS TALKING TO HER .	t
2017-12-16 17:33:08.93323+00	2017-12-16 17:33:08.933295+00	430	13	7920	KIM CALLED AND LEFT A MESSAGE AND SENT A BROCHURE	t
2017-12-18 13:53:52.778835+00	2017-12-18 13:53:52.77889+00	431	13	7953	CARLOS'S CUSTOMER	t
2017-12-18 13:55:42.360072+00	2017-12-18 13:55:42.360127+00	432	13	7954	KIM  LEFT A MESSAGE	t
2017-12-18 13:58:38.86644+00	2017-12-18 13:58:38.86649+00	433	13	7955	KIM LEFT MESSAGE	t
2017-12-18 14:01:08.390962+00	2017-12-18 14:01:08.391017+00	434	13	7956	KIM  LEFT MESSAGE	t
2017-12-18 14:03:47.24099+00	2017-12-18 14:03:47.24108+00	435	13	7957	KIM LEFT MESSAGE	t
2017-12-18 14:13:36.070678+00	2017-12-18 14:13:36.07073+00	436	13	7960	KIM TALKED TO HER . CANNOT NOT COME IN UNTIL NEXT WEEKEND	t
2017-12-18 14:16:43.138787+00	2017-12-18 14:16:43.138839+00	437	13	7961	KIM LEFT MESSAGE 	t
2017-12-18 14:19:59.01057+00	2017-12-18 14:19:59.010691+00	438	13	7962	KIM LEFT A MESSAGE	t
2017-12-18 14:25:13.88822+00	2017-12-18 14:25:13.888274+00	439	13	7958	KIM LEFT A MESSAGE .	t
2017-12-18 14:28:01.220086+00	2017-12-18 14:28:01.220139+00	440	13	7940	WANDA'S CUSTOMER	t
2017-12-18 16:44:25.063838+00	2017-12-18 16:44:25.063893+00	441	13	7969	called and she will be here tomorrow	t
2017-12-19 21:09:51.121784+00	2017-12-19 21:09:51.121835+00	442	13	8014	KIM TALKED TO HIM. MADE AN APPOINTMENT FOR TOMORROW	t
2017-12-19 21:11:44.23453+00	2017-12-19 21:11:44.234584+00	443	13	8012	CALLING TO INFO FOR HER 19 YEAR OLD SON. BAILEY GRIFFIN	t
2017-12-20 18:40:16.974595+00	2017-12-20 18:40:16.974639+00	444	13	8032	LAW OFFICE DON'T KNOW WHO CALLED HERE	t
2017-12-20 19:50:51.477073+00	2017-12-20 19:50:51.477124+00	445	13	8035	CALLED LEFT MESSAGE 	t
2017-12-20 20:31:43.337102+00	2017-12-20 20:31:43.337157+00	446	13	8041	GOING TO SEE WHAT DAY HE CAN COME IN . LOOKING FOR A CHARGER 	t
2017-12-20 22:53:35.595599+00	2017-12-20 22:53:35.59565+00	447	13	8044	KIM TALKED TO HIM. BROCHURE WAS MAILED	t
2017-12-20 23:02:48.120929+00	2017-12-20 23:02:48.120983+00	448	13	7958	WANDA'S HAS CUSTOMER IN THE SYSTEM	t
2017-12-20 23:43:24.931113+00	2017-12-20 23:43:24.931172+00	449	13	8045	KIM TALKED TO . MADE AN APPOINTMENT FOR FRIDAY	t
2017-12-21 14:10:39.574294+00	2017-12-21 14:10:39.574331+00	450	13	8049	KIM CALLED AND WAS HUNG UP ON	t
2017-12-21 14:17:27.449275+00	2017-12-21 14:17:27.449329+00	451	13	8050	KIM CALLED MAILBOX IS FULL. CANNOT LEAVE ANY NEW MESSAGES	t
2017-12-21 14:22:29.397863+00	2017-12-21 14:22:29.397903+00	452	13	8050	BROCHURE WAS MAILED AND EMAIL SENT	t
2017-12-21 14:22:50.950302+00	2017-12-21 14:22:50.950376+00	453	13	8049	BROCHURE ANS EMAIL WAS SENT	t
2017-12-21 14:32:46.723115+00	2017-12-21 14:32:46.723187+00	454	13	8051	MAILBOX IS FULL. KIM SENT EMAIL AND BROCHURE	t
2017-12-22 15:06:35.989968+00	2017-12-22 15:06:35.990023+00	455	13	8065	Carlos, phone just keeps ringing. no one answer.	t
2017-12-22 17:25:05.509047+00	2017-12-22 17:25:05.509101+00	456	13	8068	IN THE SYSTEM BROCHURE WAS MAILED	t
2017-12-22 18:03:31.15312+00	2017-12-22 18:03:31.153175+00	457	13	8069	JUST RINGS AND RINGS 	t
2017-12-22 20:19:34.171966+00	2017-12-22 20:19:34.172021+00	458	13	8070	SPOKE TO HIM AND HE SAID HE LIVED TI SC 	t
2017-12-22 21:14:03.50364+00	2017-12-22 21:14:03.503701+00	459	13	8072	IN SYSTEM. MADE APPOINTMENT FOR NEXT FRIDAY	t
2017-12-23 14:24:41.102509+00	2017-12-23 14:24:41.102564+00	460	13	8077	Carlos, spoke with Dimarcus, trying to come next week. Referral from curtis brightwell.	t
2017-12-23 16:01:18.702014+00	2017-12-23 16:01:18.702068+00	461	13	8082	KIM LEFT MESSAGE TO HAVE HER CALL ME	t
2017-12-26 16:12:32.174781+00	2017-12-26 16:12:32.174832+00	462	13	8097	Carlos, Spoke with Michael appountment for 12/30/2017 @ 10:45a.m. Referral from Ervin Edmonds.	t
2017-12-26 16:56:14.18233+00	2017-12-26 16:56:14.182402+00	463	13	8102	GAVE MAIN NUMBER TO CALL WANDA	t
2017-12-26 17:00:54.45969+00	2017-12-26 17:00:54.459742+00	464	13	8101	will be here fri  wm 	t
2017-12-27 20:28:42.035353+00	2017-12-27 20:28:42.035411+00	465	13	8123	CALL WAS  FOR WANDA	t
2017-12-27 20:29:14.933727+00	2017-12-27 20:29:14.933798+00	466	13	8106	IN SYSTEM	t
2017-12-27 20:38:14.267536+00	2017-12-27 20:38:14.26759+00	467	13	8124	KIM TALKED TO HER.	t
2017-12-28 20:03:00.848978+00	2017-12-28 20:03:00.849056+00	468	13	8140	Carlos, spoke with customer. She will be here on Sat. 12/30/2017 at 4:45p.m. referral from india smith.	t
2017-12-29 15:44:09.606101+00	2017-12-29 15:44:09.606159+00	469	13	8150	KIM MADE AN APPOINTMENT FOR TOMORROW	t
2017-12-29 17:45:13.365007+00	2017-12-29 17:45:13.365092+00	470	13	8153	WILL BE HERE TOMORROW AT 10:15	t
2017-12-30 16:38:33.23025+00	2017-12-30 16:38:33.230301+00	471	13	8162	KIM TALKED TO HER	t
2018-01-01 21:51:59.254032+00	2018-01-01 21:51:59.254085+00	472	4	8172	Harry left this message	t
2018-01-03 00:07:37.114275+00	2018-01-03 00:07:37.11432+00	473	4	8191	This is another note	t
2018-01-03 00:13:32.426135+00	2018-01-03 00:13:32.426173+00	474	4	8191	Keep moving forward	t
2018-01-03 00:16:39.049369+00	2018-01-03 00:16:39.049409+00	475	4	8191	Adding another	t
2018-05-29 15:48:13.274024+00	2018-05-29 15:48:13.274056+00	476	4	8248	heloo	t
2018-07-25 16:52:19.976579+00	2018-07-25 16:52:19.976613+00	477	4	8239	Is this the true BOB?	t
\.


--
-- Name: lead_notes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('lead_notes_id_seq', 477, true);


--
-- Data for Name: leads; Type: TABLE DATA; Schema: public; Owner: -
--

COPY leads (created_on, updated_on, id, status, firstname, lastname, email, phonenumber, question, duration, starttime, endtime, call_sid, widget_guid, agent_id, notes, recording_url, call_count, call_type, my_phone, inbound_id, response_time_seconds, additional_info, progress_status, caller_id, partnership_account_id, call_source, agent_assigned_id, contact_id) FROM stdin;
2018-07-25 20:37:49.40221+00	2018-07-25 20:37:54.268626+00	8249	missed				+17732909650		5	2018-07-25 20:37:49.400113	2018-07-25 20:37:54.231751	CA3cc12d80314baa3396e94d5d7434baa2	\N	\N			0	inbound	+13367394103	159	\N	\N	\N	VERMAAK,HERMANU	4	Twilio Number SMS	\N	3652
2018-07-25 20:38:59.424847+00	2018-07-25 20:39:04.151878+00	8250	missed				+17732909650		5	2018-07-25 20:38:59.423787	2018-07-25 20:39:04.140606	CA6e5589556b2a817e6283debff3aab5a3	\N	\N			0	inbound	+13367394103	159	\N	\N	\N	VERMAAK,HERMANU	4	Twilio Number SMS	\N	3652
2018-07-25 20:41:01.89128+00	2018-07-25 20:41:12.74656+00	8251	completed	Mike	Rogers		+17739699892		11	2018-07-25 20:41:01.89019	2018-07-25 20:41:12.744481	CA0d9e3ddb2c68e30c9e165d8d100d4b1f	\N	15			0	inbound	+13367394103	159	3.6488339900970459	\N	\N	chicago  il	4	Twilio Number SMS	\N	3801
2018-07-25 20:41:44.213053+00	2018-07-25 20:41:59.066463+00	8252	completed				+17732909650		15	2018-07-25 20:41:44.212022	2018-07-25 20:41:59.064708	CA7ef52d9474883ffb19518349f7cac5d1	\N	164			0	inbound	+13367394103	159	0.0107347965240478516	\N	\N	VERMAAK,HERMANU	4	Twilio Number SMS	\N	3652
2018-07-25 20:42:53.698403+00	2018-07-25 20:42:59.533902+00	8253	completed				+17732909650		6	2018-07-25 20:42:53.696975	2018-07-25 20:42:59.531132	CA0ea0c736d11a86d0e79671989fa2d8ea	\N	164			0	inbound	+13367394103	159	0.639406204223632812	\N	\N	VERMAAK,HERMANU	4	Twilio Number SMS	\N	3652
2018-07-25 20:43:51.389036+00	2018-07-25 20:44:02.773329+00	8254	missed				+17732909650		11	2018-07-25 20:43:51.387954	2018-07-25 20:44:02.762102	CAf43bd1241bf2e6447fe9603cc73bf312	\N	\N			0	inbound	+13367394103	159	\N	\N	\N	VERMAAK,HERMANU	4	Twilio Number SMS	\N	3652
2019-03-02 00:55:47.978363+00	2019-03-02 00:56:03.860177+00	8259	completed	Mike	Rogers		+17739699892		16	2019-03-02 00:55:47.975874	2019-03-02 00:56:03.857918	CAf7458a5e4a9c1ff3bca7a932d1d235a5	\N	15			0	inbound	+13367394103	161	4.82562899589538574	\N	\N	chicago  il	4	Staging Testing Number	\N	3801
2019-03-01 01:58:34.485318+00	2019-03-01 01:58:48.602318+00	8255	completed	Mike	Rogers		+17739699892		14	2019-03-01 01:58:34.482637	2019-03-01 01:58:48.600143	CA1b1a06916db07ecbcc3e5a2c3eeda53a	\N	15			0	inbound	+13367394103	161	6.892578125	\N	\N	chicago  il	4	Staging Testing Number	\N	3801
2019-03-01 02:01:58.363562+00	2019-03-01 02:02:02.752918+00	8256	missed				+17732909650		4	2019-03-01 02:01:58.362504	2019-03-01 02:02:02.716908	CAd091e843f630eac1fcc92f90e5f3a44b	\N	\N			0	inbound	+13367394103	161	\N	\N	\N	VERMAAK,HERMANU	4	Staging Testing Number	\N	3652
2019-03-01 02:02:09.12553+00	2019-03-01 02:02:11.794908+00	8257	missed				+17732909650		3	2019-03-01 02:02:09.124358	2019-03-01 02:02:11.784804	CAacc1ba4d6e1693387cd03f85768c413f	\N	\N			0	inbound	+13367394103	161	\N	\N	\N	VERMAAK,HERMANU	4	Staging Testing Number	\N	3652
2017-08-03 23:08:10.088561+00	2017-08-03 23:09:28.932638+00	5931	completed				+18177237190		78	2017-08-03 23:08:10.086499	2017-08-03 23:09:28.278032	CA497a75eb0aa302d4a13c2a9050e8f674	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE47af76187cf9214fda5cebb3e3817895	0	inbound	+18177569010	124	13.4689021110534668	\N	new lead	jasmine mccloud	12	\N	\N	2
2017-05-18 14:36:10.490207+00	2017-11-29 18:29:57.477733+00	5179	completed				+17035439036		3	2017-05-18 14:36:10.487652	2017-05-18 14:36:13.51868	CA01b574df47d41abbe21b399031586aea	\N	142			0	inbound	+18442976550	\N	0.901408910751342773	\N	new lead		1	\N	\N	47
2019-03-01 02:02:39.523604+00	2019-03-01 02:02:53.677079+00	8258	completed				+17732909650		14	2019-03-01 02:02:39.522334	2019-03-01 02:02:53.67489	CA1ce02b1dc4ced34b1763423a0acb05cd	\N	15			0	inbound	+13367394103	161	4.69729995727539062	\N	\N	VERMAAK,HERMANU	4	Staging Testing Number	\N	3652
2019-03-02 01:02:48.808063+00	2019-03-02 01:03:09.484404+00	8260	completed	Sue	Vans	hv13@hotmail.com	+17732909650		21	2019-03-02 01:02:48.806446	2019-03-02 01:03:09.48205		\N	15			0	outbound	+13367394103	161	\N	\N	\N		4	\N	\N	3652
2019-03-05 22:38:54.591103+00	2019-03-05 22:39:11.400647+00	8261	completed	Sue	Vans	hv13@hotmail.com	+17732909650		17	2019-03-05 22:38:54.588819	2019-03-05 22:39:11.39843		\N	15			0	outbound	+13367394103	161	\N	\N	\N		4	\N	\N	3652
2019-04-11 22:51:10.308117+00	2019-04-11 22:51:13.304371+00	8262	missed	Mike	Rogers		+17739699892		3	2019-04-11 22:51:10.306034	2019-04-11 22:51:13.264594	CAc2c8cfabb6754b3fb2bed49d6290ebe7	\N	\N			0	inbound	+13367394103	163	\N	\N	\N	chicago  il	4	GoLive Phone Number	\N	3801
2019-04-14 00:48:02.890133+00	2019-04-14 00:48:23.244833+00	8263	completed	Tom	Rogers	tom@buyercall.com	+17739699892		20	2019-04-14 00:48:02.887948	2019-04-14 00:48:23.242474		\N	164			0	outbound	+13367394103	170	\N	\N	\N		4	\N	\N	3801
2019-05-23 00:11:35.443842+00	2019-05-23 00:11:35.443869+00	8264	missed	bob	hurley	bob@buyercall.com	+17732909650		\N	2019-05-23 00:11:35.441638	\N		8d93b0fa-aad6-4601-876f-f261eeedfede	\N			0	outbound	+13367394103	\N	\N	{"source": ""}	\N		4		\N	\N
2019-05-23 22:49:07.604937+00	2019-05-23 22:49:40.387386+00	8265	completed	Saul	Goodman	saulgood@buyercall.com	+17735469660	Does this work?	23	2019-05-23 22:49:07.602691	2019-05-23 22:49:40.385698	CA5e85608670b4572f48b643c843990d48	1d59eaf7-beef-432b-a1be-2bf78cf4d6a1	15			1	outbound	+13367394103	\N	6.8381810188293457	{"source": ""}	new lead		4		\N	4210
2019-05-23 22:54:21.694621+00	2019-05-23 22:54:21.725106+00	8266	missed	Sue	Gary	sue@buyercall.com	+17773334444		\N	2019-05-23 22:54:21.693339	\N		1d59eaf7-beef-432b-a1be-2bf78cf4d6a1	\N			0	outbound	+13367394103	\N	\N	{"source": ""}	new lead		4		\N	4211
2017-04-28 22:06:33.981417+00	2017-05-17 15:41:07.224393+00	4454	completed				+18177578290		101	2017-04-28 22:06:33.978597	2017-04-28 22:08:14.997719	CA5c5378efc15d77dd2e690754017b3980	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE95897228c8c2bc70ebbbfa37976320a9	0	inbound	+18177569010	124	6.6176459789276123	\N	new lead	martinez c	12	\N	\N	3
2016-11-03 20:04:59.157377+00	2016-11-03 20:04:59.193812+00	2656	missed	HENGYU	XIANG	xianghy3000@hotmail.com	+19723523923		\N	2016-11-03 20:04:59.15529	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	6
2017-12-13 19:05:50.580957+00	2017-12-13 19:06:00.977076+00	7851	completed				+13019073817		9	2017-12-13 19:05:50.579219	2017-12-13 19:05:59.758448	CAd81ccaf0611948bcb880b488a5603024	\N	157		https://api.twilio.com/2010-04-01/Accounts/ACbd7756819f4882feb347788ad7959655/Recordings/REe54da5a73c35b4e9421654527c829774	0	inbound	+17706597466	137	5.13674402236938477	\N	new lead		14	\N	\N	9
2017-12-07 15:23:53.757972+00	2017-12-07 15:27:24.088163+00	7682	completed	Tiara	Davis	Tiaradavis246@yahoo.com	+17062472635		199	2017-12-07 15:23:53.756594	2017-12-07 15:27:23.706987	CA31ee820b076f5e3186aeb6848e4a43ee	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REffbcecebef711010d66c3dd5d2406904	1	outbound	+17704009016	\N	9.55901503562927246	{}	new lead		13	\N	\N	10
2017-12-20 15:07:42.426166+00	2017-12-20 15:08:14.541267+00	8025	completed				+19473339316		31	2017-12-20 15:07:42.423872	2017-12-20 15:08:13.669795	CA0bb667aeb35a2a903f02152be7722b8c	\N	154		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REf25cef106294ee04835e01fc765e2813	0	inbound	+17707665699	134	0.959977149963378906	\N	new lead	southfield  mi	13	\N	\N	11
2017-11-15 19:10:29.743016+00	2017-11-15 19:13:25.578374+00	7067	completed				+14695402046		175	2017-11-15 19:10:29.740547	2017-11-15 19:13:24.634069	CA36423d9643e6e569aaa3237c74b09b9d	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REffeff47cfbddc290eb3bf9fa4a866934	0	inbound	+18177569010	124	12.2465798854827881	\N	new lead	cell phone   tx	12	\N	\N	12
2017-12-12 12:41:36.217978+00	2017-12-12 12:42:56.699075+00	7804	completed	Bachir	Loukidi	Loukidi_bachir@hotmail.com	+16829360074		78	2017-12-12 12:41:36.216456	2017-12-12 12:42:56.697783	CA8e65d52191cddf21a2013e896eee58c3	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.07265901565551758	{}	new lead		15	\N	\N	13
2017-08-22 22:19:33.334089+00	2017-08-22 22:23:09.565117+00	6141	completed				+16788513955		216	2017-08-22 22:19:33.331133	2017-08-22 22:23:09.553675	CAdc4ec4069b15b9006e82f5e319aa448c	\N	152			0	inbound	+17707665732	133	13.8856558799743652	\N	new lead		13	\N	\N	14
2017-05-03 22:19:35.905676+00	2017-11-29 18:38:49.809529+00	4675	completed				+13187925199		108	2017-05-03 22:19:35.9027	2017-05-03 22:21:23.680796	CAce8eb625360fef9337a2e7e02c77359b	\N	\N			0	inbound	+12147122250	\N	5.17575788497924805	\N	new lead	becker chase   	9	\N	\N	19
2016-07-28 18:13:22.93587+00	2017-11-29 18:31:10.261743+00	1014	completed	Latonia	Whitaker		+15132009759		106	2016-07-28 18:13:22.934046	2016-07-28 18:15:08.678986	CAd202e021c59ce45c2968e1bd11e13755	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE79f35d32035b7a1ef05e87afe16beaad	0	inbound	+18556311490	\N	30.5767269134521484	null	application submitted - autopay		1	\N	\N	20
2016-10-05 16:03:02.572247+00	2016-12-10 01:01:00.200236+00	2181	completed				+16193034050		502	2016-10-05 16:03:02.57107	2016-10-05 16:11:25.013942	CA04630afa3172e2dfaf51e6b09dfc2ae5	\N	57			0	inbound	+18557860909	\N	3.7418668270111084	null	new lead		3	\N	\N	48
2017-05-15 20:20:52.982402+00	2017-11-29 18:38:49.811579+00	5082	missed				+19728915612		27	2017-05-15 20:20:52.979612	2017-05-15 20:21:19.59991	CA1b42f0f6b7da1c7b4c9e3c95eade003a	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	wells frankie	9	\N	\N	4081
2016-11-08 14:00:23.089968+00	2016-11-08 14:40:12.695187+00	2802	completed				+14705782190		2385	2016-11-08 14:00:23.087325	2016-11-08 14:40:07.626259	CA13cf47ae2b3ddf6bfefa08814dc6c099	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REb4635be2c05647e60adcbf67e8fc03de	0	inbound	+18557240606	49	2.24411201477050781	null	new lead		1	\N	\N	22
2017-04-01 21:22:45.329415+00	2017-04-01 21:45:18.433458+00	3659	missed				+18174898097		54	2017-04-01 21:22:45.328256	2017-04-01 21:23:39.714117	CA5339da0694317bccb18d032ebf9d41d7	\N	\N			0	inbound	+18177569010	124	1328.81403589248657	\N	new lead	jones cindy	12	\N	\N	23
2017-04-01 21:21:40.642147+00	2017-04-01 21:44:00.912722+00	3658	missed				+18174898097		45	2017-04-01 21:21:40.640802	2017-04-01 21:22:25.852986	CAe9a7edf95635e509bb9bd6e624a0f2e1	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REadbbfb4f0cab9cd907f6df4b72979f55	0	inbound	+18177569010	124	1325.162917137146	\N	new lead	jones cindy	12	\N	\N	23
2017-04-01 21:20:49.098649+00	2017-05-17 15:41:07.224254+00	3657	completed				+18174898097		24	2017-04-01 21:20:49.096673	2017-04-01 21:21:13.417867	CAe72ccb7247edbac09e52fbf5d0a77b77	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE1d57f9629581a7a4c9a7f40f848ee608	0	inbound	+18177569010	124	8.0800011157989502	\N	new lead	jones cindy	12	\N	\N	23
2018-05-09 09:18:05.043991+00	2018-05-09 09:18:21.483464+00	8248	completed				+266696687		16	2018-05-09 09:18:05.042991	2018-05-09 09:18:21.481045	CA3ec50449f8491c2d3cf8af4b2790f52d	\N	164			0	inbound	+13367394103	158	0.142999172210693359	\N	new lead		4	\N	\N	\N
2017-04-01 22:06:28.79347+00	2017-05-17 15:41:07.224262+00	3660	completed				+18174898097		146	2017-04-01 22:06:28.791923	2017-04-01 22:08:55.109607	CA86af016fcea256e7917c6065a660f658	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE11fb0dd16b5384f615a86e6e28ff4937	0	inbound	+18177569010	124	9.17300701141357422	\N	new lead	jones cindy	12	\N	\N	23
2017-05-10 15:42:37.356515+00	2017-05-17 15:41:07.224444+00	4950	completed				+18025050490		114	2017-05-10 15:42:37.354304	2017-05-10 15:44:31.777274	CA3f8ff6a2a4976cf004f373e7441f4bf8	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REe6416fee724e36e7918f78d69fea9ce2	0	inbound	+18177569010	124	11.1858620643615723	\N	new lead	paige kevin m	12	\N	\N	24
2016-12-07 21:19:45.003365+00	2016-12-07 21:33:58.973471+00	3059	completed				+14042810816		851	2016-12-07 21:19:45.001539	2016-12-07 21:33:56.061492	CA6ff1691371988317807abb0e720f3c10	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE21355b1decbf37e59a1ef28611a245db	0	inbound	+18557240606	49	2.43444395065307617	null	new lead		1	\N	\N	25
2017-11-24 19:34:37.461696+00	2017-11-24 19:35:31.792497+00	7192	completed				+18172462366		54	2017-11-24 19:34:37.459679	2017-11-24 19:35:31.002892	CAaf01857f5e3bc15f86a14827300d2d80	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE596825a0e6449a36cbc7d70d3870b162	0	inbound	+18177569010	124	11.6270339488983154	\N	new lead	gernhauser john	12	\N	\N	26
2017-04-17 20:12:40.083189+00	2017-11-29 18:38:49.80529+00	4006	missed				+14696610694		21	2017-04-17 20:12:40.08148	2017-04-17 20:13:00.603534	CAfb47d87bdeff72f06e19bdbef00cce5c	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	dallas  tx	9	\N	\N	178
2018-05-02 20:47:33.132499+00	2018-05-02 20:48:03.126509+00	8241	missed	test					18	2018-05-02 20:47:33.131398	2018-05-02 20:48:03.12484	CAfaaa641533f819b60cd63a23558ab78b	dadddf04-867b-4898-af7e-a09fb8bc34d6	\N			1	outbound	+13367394103	\N	11.1182689666748047	{}	new lead		4		\N	\N
2018-05-02 20:30:34.952808+00	2018-05-02 20:31:00.859994+00	8240	missed	test					0	2018-05-02 20:30:34.951778	2018-05-02 20:31:00.858624	CA6a18d8d259b7ff963f3deafdf927eee6	dadddf04-867b-4898-af7e-a09fb8bc34d6	\N			1	outbound	+13367394103	\N	\N	{}	new lead		4		\N	\N
2018-05-02 20:52:48.250206+00	2018-05-02 20:52:48.274243+00	8243	missed	test					\N	2018-05-02 20:52:48.249165	\N		dadddf04-867b-4898-af7e-a09fb8bc34d6	\N			0	outbound	+13367394103	\N	\N	{}	new lead		4		\N	\N
2018-05-02 20:53:30.78052+00	2018-05-02 20:53:30.803616+00	8244	missed	test					\N	2018-05-02 20:53:30.779477	\N		dadddf04-867b-4898-af7e-a09fb8bc34d6	\N			0	outbound	+13367394103	\N	\N	{}	new lead		4		\N	\N
2018-05-02 20:50:26.788416+00	2018-05-02 20:55:02.867374+00	8242	missed	test					262	2018-05-02 20:50:26.787482	2018-05-02 20:55:02.866282	CAcec54cee5818267fefda9702fb4fa4c3	dadddf04-867b-4898-af7e-a09fb8bc34d6	\N			1	outbound	+13367394103	\N	13.425091028213501	{}	new lead		4		\N	\N
2016-11-01 15:33:06.25893+00	2016-11-01 15:33:19.668367+00	2466	completed				+18442763272		12	2016-11-01 15:33:06.256825	2016-11-01 15:33:18.186456	CA64eb625fbdffaf2baa50c61e0d788c47	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE3b285dd686249c9fd429f680cb50aa77	0	inbound	+18557240606	49	1.83172202110290527	null	new lead		1	\N	\N	27
2016-11-03 00:06:15.811485+00	2016-11-03 00:06:17.1437+00	2606	missed				+18442763272		1	2016-11-03 00:06:15.81028	2016-11-03 00:06:17.142156	CA90ca1c8d36d2f5c52f8ce241fc9e41c3	\N	\N			0	inbound	+18557240606	49	\N	null	new lead		1	\N	\N	27
2016-12-06 17:14:52.526342+00	2016-12-06 17:15:09.348806+00	3055	completed				+18442763272		16	2016-12-06 17:14:52.523197	2016-12-06 17:15:08.771194	CAcf9190ed65b790e06d8a34e83cc185d8	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE9d5cd5c02bb9d6ab34f00ba1bf26a057	0	inbound	+18557240606	49	2.2875819206237793	null	new lead		1	\N	\N	27
2016-11-04 15:32:38.016446+00	2017-01-27 21:12:23.813974+00	2693	completed				+18442763272		32	2016-11-04 15:32:38.015408	2016-11-04 15:33:09.831991		\N	\N			0	outbound	+18555343978	48	\N	null	new lead		1	\N	\N	27
2016-11-04 15:33:12.254518+00	2017-01-27 21:12:23.813981+00	2694	completed				+18442763272		29	2016-11-04 15:33:12.253131	2016-11-04 15:33:41.460485		\N	\N			0	outbound	+18555343978	48	\N	null	new lead		1	\N	\N	27
2017-11-25 16:18:44.002229+00	2017-11-25 16:18:44.630287+00	7291	missed				+14042133394		1	2017-11-25 16:18:43.999593	2017-11-25 16:18:44.621249	CA0c062d1384bfcfb403c015bd8c08f3cb	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	28
2016-05-23 20:52:03.399632+00	2017-11-29 18:31:10.260347+00	178	completed	Unknown			+15133143786		159	2016-05-23 20:52:03.397358	2016-05-23 20:54:42.266557	CA1900905407a8161097810559fa7709cb	\N	17		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE5811eee616aacab35b5adc4225e6181b	0	inbound	+18556311490	\N	11.0704047679901123	null	new lead		1	\N	\N	30
2017-09-28 20:57:33.941433+00	2017-09-28 20:58:51.006934+00	6514	completed				+15022530459		77	2017-09-28 20:57:33.939166	2017-09-28 20:58:50.990551	CA9d342c6d731ea80147e7d71cf4e7ca8a	\N	150			0	inbound	+17707665732	133	11.4749660491943359	\N	new lead		13	\N	\N	32
2016-08-23 22:00:04.341836+00	2017-01-27 21:12:23.813658+00	1687	completed				+14404223142		62	2016-08-23 22:00:04.33984	2016-08-23 22:01:06.624113		\N	\N			0	outbound	+18555343978	48	\N	null	do not contact		1	\N	\N	202
2017-12-07 14:15:16.418055+00	2017-12-07 14:15:18.231409+00	7678	missed				+13215059185		2	2017-12-07 14:15:16.416549	2017-12-07 14:15:18.215904	CA7eb7570411cb8a8af8ca8fcf08c2515f	\N	\N			0	inbound	+18558645656	136	\N	\N	new lead		15	\N	\N	37
2017-12-07 14:15:31.605319+00	2017-12-07 14:30:09.401336+00	7679	completed				+13215059185		875	2017-12-07 14:15:31.603393	2017-12-07 14:30:06.178416	CA816b611c8d657397f5b4ce4935883e3c	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE6085614d44f739b72dff83e50cb31ef6	0	inbound	+18558645656	136	2.05214691162109375	\N	new lead		15	\N	\N	37
2016-11-08 14:43:54.08296+00	2016-11-08 14:43:54.10698+00	2803	missed	Tod	Watson	toddoe66@sbcglobal.net	+19728809780		\N	2016-11-08 14:43:54.081973	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	38
2017-04-15 17:23:48.281565+00	2017-11-29 18:38:53.214029+00	3965	completed				+12149090754		161	2017-04-15 17:23:48.279544	2017-04-15 17:26:29.576569	CAf2d8c41141681d84d2b32e38bad41efe	\N	\N			0	inbound	+12146922088	\N	2.77406096458435059	\N	new lead	grant kim	9	\N	\N	40
2017-07-14 00:40:08.265318+00	2017-07-14 00:40:08.3243+00	5773	missed	Brandon	Barrett	brandonbarrett839@gmail.com	+17706246942		\N	2017-07-14 00:40:08.263194	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	41
2017-06-20 20:22:26.599747+00	2017-06-20 20:23:47.078453+00	5617	completed	Danielle 	treadwell 	danielletreadwell4@gmail.com	+17062865522		47	2017-06-20 20:22:26.598176	2017-06-20 20:23:38.915121	CA888f7484429bf9ad96132b39268c856e	0427608a-ae09-4db0-a1e8-374423ee28c3	150			1	outbound	+17704009016	\N	24.8273680210113525	{}	new lead		13	\N	\N	42
2017-12-20 12:13:56.757715+00	2017-12-20 12:13:56.823275+00	8020	missed	RONTASHA	MOON	rontasha.moon1982@gmail.com	+17063724980		\N	2017-12-20 12:13:56.755486	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	43
2017-09-05 02:40:04.799824+00	2017-09-05 02:40:04.859729+00	6254	missed	rontasha	moon	rontasha.moon1982@gmail.com	+17063724980		\N	2017-09-05 02:40:04.79824	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	43
2017-04-13 16:10:56.002233+00	2017-04-13 16:17:10.116787+00	3869	completed				+18174804705		374	2017-04-13 16:10:56.000935	2017-04-13 16:17:10.110393	CA35e4f05da4cbf5acc5c847183b39469e	\N	130			0	inbound	+18172104002	126	38.2124910354614258	\N	new lead		12	\N	\N	44
2017-04-08 15:47:20.84163+00	2017-04-08 15:48:16.538268+00	3739	completed				+18174804705		55	2017-04-08 15:47:20.838863	2017-04-08 15:48:15.485689	CA3dda034ec1c9e111df4aef088bbd91cc	\N	132		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REee2d24893ca72c89b6ac25d227328166	0	inbound	+18172104002	126	18.3075449466705322	\N	new lead		12	\N	\N	44
2017-10-11 18:40:26.212684+00	2017-10-11 18:42:04.090144+00	6665	completed	Randy	Nelms	Messicaparks@gmail.com	+17068097211		74	2017-10-11 18:40:26.211224	2017-10-11 18:42:04.065343	CAaf6bfea04d52dd8391273468eb7dca8b	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REb65bd89441e56506eb5960c4775d9b22	1	outbound	+17704009016	\N	19.7503869533538818	{}	new lead		13	\N	\N	46
2017-05-18 14:39:11.483784+00	2017-11-29 18:29:51.355442+00	5182	completed				+17035439036		4	2017-05-18 14:39:11.481796	2017-05-18 14:39:15.935599	CA380f4a29640f58abdcf9b2221f1b1bc1	\N	143			0	inbound	+18443015106	\N	2.95274209976196289	\N	new lead		1	\N	\N	47
2017-12-21 21:02:52.502171+00	2017-12-21 21:06:32.124679+00	8058	completed				+18179660600		218	2017-12-21 21:02:52.498694	2017-12-21 21:06:30.958003	CA2704feeb021652500d4459388fa4263e	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REce955152e9bb7d60fe7efabd773c0dec	0	inbound	+18177569010	124	8.36875700950622559	\N	new lead	cell phone   tx	12	\N	\N	49
2017-10-03 18:08:50.828614+00	2017-10-03 18:10:24.463278+00	6569	completed				+18179660600		93	2017-10-03 18:08:50.826717	2017-10-03 18:10:23.376974	CAa575d72dfdc7a6233895f528508c68ff	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE0915941ba887dbc5387497f28c61d791	0	inbound	+18177569010	124	6.61411118507385254	\N	new lead	cell phone   tx	12	\N	\N	49
2016-08-22 20:24:21.590321+00	2017-01-27 21:12:23.813547+00	1647	completed				+16612730336		35	2016-08-22 20:24:21.58926	2016-08-22 20:24:56.279639		\N	\N			0	outbound	+18555343978	48	\N	null	select status		1	\N	\N	50
2016-08-24 13:58:53.241858+00	2017-01-27 21:12:23.813672+00	1694	completed				+16612730336		47	2016-08-24 13:58:53.240571	2016-08-24 13:59:40.29632		\N	\N			0	outbound	+18555343978	48	\N	null	select status		1	\N	\N	50
2016-11-29 15:48:35.283335+00	2016-11-29 15:49:41.534403+00	2995	completed				+17138703803		66	2016-11-29 15:48:35.278901	2016-11-29 15:49:41.161407	CAcccf085484ee01415e59495ed2f819ed	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REe5b161ed19a6a34744aea6d862593031	0	inbound	+18557240606	49	2.72232699394226074	null	new lead		1	\N	\N	51
2017-07-13 13:49:56.160777+00	2017-07-13 13:51:12.608653+00	5768	completed				+14703377258		76	2017-07-13 13:49:56.158415	2017-07-13 13:51:11.880218	CA9a2f3b0780105275a4bc709912751793	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE25e431f80de473b6562d50fb476e69c6	0	inbound	+17704009016	132	15.5580019950866699	\N	new lead		13	\N	\N	58
2016-11-29 15:50:27.293337+00	2016-11-29 16:04:43.189059+00	2996	completed				+17138703803		854	2016-11-29 15:50:27.291933	2016-11-29 16:04:40.854244	CA8d67e5be4f57f5ad0b1c167010dbdabb	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE141513368cc01a6eac8a61ab848448ff	0	inbound	+18557240606	49	2.75881290435791016	null	new lead		1	\N	\N	51
2016-11-30 19:44:47.842988+00	2016-11-30 19:46:31.703522+00	3009	completed				+17138703803		102	2016-11-30 19:44:47.840959	2016-11-30 19:46:30.116459	CA2e40e47145557a7b0ea7bab3c03404fe	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE8b7bf4c9b8c4a799523987c2e7a5909d	0	inbound	+18557240606	49	2.24938511848449707	null	new lead		1	\N	\N	51
2016-07-29 15:34:56.378183+00	2016-07-29 15:41:53.337667+00	1029	completed				+15123463000		6	2016-07-29 15:34:56.377032	2016-07-29 15:35:02.0181	CA4cd67bcc70e4b83590484da2e1f23cdf	\N	\N			0	inbound	+18559694001	70	\N	null	new lead		1	\N	\N	54
2016-07-28 17:30:29.486752+00	2017-01-27 21:12:23.812284+00	1006	completed				+15123463000		99	2016-07-28 17:30:29.485786	2016-07-28 17:32:08.507538	CA67666e89fe157fc43c295abfdd2b900b	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE86e72bbd2bd15628fe414d89752ffed9	0	inbound	+18555343978	48	7.33838486671447754	null	new lead		1	\N	\N	54
2016-08-09 18:43:02.652403+00	2017-01-27 21:12:23.812972+00	1363	completed				+15123463000		201	2016-08-09 18:43:02.651241	2016-08-09 18:46:23.569884	CA791fc167098e80bf30dc57ab2268f305	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE75ed51191245b15b9b14dbd189c0929c	0	inbound	+18555343978	48	8.88037800788879395	null	new lead		1	\N	\N	54
2017-08-28 22:26:46.318389+00	2017-08-28 22:27:39.159715+00	6191	completed	Tae	Woods	Taewoods2@gmail.com	+14042274993		35	2017-08-28 22:26:46.315405	2017-08-28 22:27:37.839827	CA8c5bb560c2b2746d3f47ab5a190511eb	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE8eae4848db17d27d669ee25b15e75b89	1	outbound	+17704009016	\N	16.3349931240081787	{}	new lead		13	\N	\N	59
2017-04-20 20:38:25.007635+00	2017-08-17 14:35:21.045002+00	4158	completed				+18175807646		400	2017-04-20 20:38:25.004025	2017-04-20 20:45:04.636634	CA7c122f8e51bf623de39a5a087ad81356	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE286a28335739a6692d60d306d9e34432	0	inbound	+18177569010	124	365.565262079238892	\N	new lead	dallas  tx	12	\N	\N	65
2017-04-18 01:51:30.303566+00	2017-11-29 18:47:25.068094+00	4020	missed				+12175083629		27	2017-04-18 01:51:30.301124	2017-04-18 01:51:57.709647	CA9fe1e439aa6872a783ee110e6ff99bb3	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE9c10b75cd23d3c0a534081af968930ea	0	inbound	+19728330116	\N	\N	\N	new lead	cell phone   il	8	\N	\N	67
2017-06-29 14:03:51.553854+00	2017-06-29 14:09:57.97036+00	5683	completed	Malisia	Russell	Bryanrussell73@yahoo.com	+14706998121		22	2017-06-29 14:03:51.552089	2017-06-29 14:09:57.969289	CAa6ab0c3b516b6fe0ab797df74c524c55	0427608a-ae09-4db0-a1e8-374423ee28c3	153			3	outbound	+17704009016	\N	343.024388790130615	{}	new lead		13	\N	\N	68
2017-08-17 21:06:49.911289+00	2017-08-17 21:11:54.739791+00	6083	completed	Johnathan	Norris	JohnathanNorris84@Gmail.com	+17063720007		289	2017-08-17 21:06:49.909749	2017-08-17 21:11:53.351495	CA6cfb8b96a3bf0eec32fa28ca415302dd	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REc31aed6adabbec947bc9b9a46b1186e1	1	outbound	+17704009016	\N	10.6624259948730469	{}	new lead		13	\N	\N	69
2016-08-09 14:00:39.855708+00	2017-01-27 21:12:23.812916+00	1353	completed				+16618103419		86	2016-08-09 14:00:39.852829	2016-08-09 14:02:06.333231		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	70
2016-08-23 15:42:54.134695+00	2017-01-27 21:12:23.813596+00	1674	completed				+16618103419		93	2016-08-23 15:42:54.133312	2016-08-23 15:44:27.45218		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	70
2016-08-24 17:06:00.322509+00	2017-01-27 21:12:23.813714+00	1716	completed				+16618103419		89	2016-08-24 17:06:00.320924	2016-08-24 17:07:29.187582		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	70
2016-11-13 04:15:17.831002+00	2016-11-13 04:15:17.855496+00	2883	missed	Pian	Zhang	pianzhang@aol.com	+19792094243		\N	2016-11-13 04:15:17.829746	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	72
2016-09-10 19:52:23.706058+00	2016-12-10 01:01:51.440933+00	1990	completed				+12248292717		197	2016-09-10 19:52:23.704799	2016-09-10 19:55:40.684842	CAfa942d03af6536a444c0223ccbc22097	\N	50			0	inbound	+18559693782	\N	2.3796381950378418	null	new lead		3	\N	\N	77
2016-09-07 21:09:48.027315+00	2016-12-10 01:00:18.568399+00	1951	completed				+18583615623		196	2016-09-07 21:09:48.026078	2016-09-07 21:13:03.723529	CAb1f468c2f5dfd513991642847009c908	\N	56			0	inbound	+18556775511	\N	3.17610502243041992	null	new lead		3	\N	\N	78
2017-04-29 17:31:11.443479+00	2017-11-29 18:38:49.807425+00	4467	completed				+18177234083		762	2017-04-29 17:31:11.441523	2017-04-29 17:43:53.304232	CA52af2893756b4fe99ff5cab3665414bf	\N	\N			0	inbound	+12147122250	\N	4.4975738525390625	\N	new lead	jacobs paula	9	\N	\N	80
2017-12-05 20:57:21.601578+00	2017-12-05 20:57:44.441877+00	7606	completed	Keila	Goncalves		+15615727666		22	2017-12-05 20:57:21.599759	2017-12-05 20:57:43.300525	CA096e50d0a980ca9386151902e82beeef	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE3e3bf3a7f16435b33f7c023692558013	0	inbound	+18558645656	136	3.1986849308013916	\N	new lead		15	\N	\N	84
2017-05-12 16:54:05.813302+00	2017-11-29 18:38:49.811337+00	5037	completed				+12146063107		126	2017-05-12 16:54:05.810935	2017-05-12 16:56:11.768512	CA4e4f7fcae050d14e05bc819671d46343	\N	124			0	inbound	+12147122250	\N	1.20950984954833984	\N	new lead	johnson terranc	9	\N	\N	85
2017-04-12 21:34:46.370196+00	2017-11-29 18:38:49.804693+00	3844	completed				+14699161700		160	2017-04-12 21:34:46.368192	2017-04-12 21:37:26.430046	CA61a2dfe23d9325d172672166fba3cd86	\N	\N			0	inbound	+12147122250	\N	4.68743801116943359	\N	new lead	one technologies	9	\N	\N	88
2016-09-24 18:11:19.303276+00	2016-12-09 17:10:25.285037+00	2080	completed				+19129968058		39	2016-09-24 18:11:19.301518	2016-09-24 18:11:58.193659	CAb82572860859ba69df40c80c4e004c79	\N	26			0	inbound	+18556126020	\N	6.10112810134887695	null	new lead		3	\N	\N	90
2017-12-10 22:19:04.342589+00	2017-12-10 22:19:35.00673+00	7765	completed				+17203823315		29	2017-12-10 22:19:04.339971	2017-12-10 22:19:33.730132	CA7e5e539ffe0f111fbffbe8029397f891	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE3c49150ae4025020011b72ca015ac8e5	0	inbound	+18558645656	136	2.78206706047058105	\N	new lead		15	\N	\N	92
2017-09-22 16:42:22.719353+00	2017-09-22 16:43:21.007116+00	6436	completed				+18173303505		58	2017-09-22 16:42:22.716161	2017-09-22 16:43:20.317536	CA4e59b6919b954cf3fa6016b0d73d8827	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REc55e0a51caab9bd35fe9820c97c4307e	0	inbound	+18177569010	124	8.99325108528137207	\N	new lead	a a pickup   va	12	\N	\N	98
2016-11-05 22:32:53.554747+00	2016-11-05 22:35:16.282593+00	2763	completed				+16238452608		142	2016-11-05 22:32:53.552268	2016-11-05 22:35:15.714857	CAde1138aedc8514469fa67c80e4887e58	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REe04c62360cb7c46d7990bb8dcaba1e42	0	inbound	+18557240606	49	1.76061081886291504	null	new lead		1	\N	\N	95
2017-06-30 15:54:34.676252+00	2017-06-30 15:57:20.862412+00	5691	completed				+15207095455		165	2017-06-30 15:54:34.674457	2017-06-30 15:57:19.515606	CAf32cd37f5bd4d78d725c7b4a3a824a4d	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE9ca58354de08341ca5957469f89e1be9	0	inbound	+18557240606	49	3.16131401062011719	\N	new lead		1	\N	\N	96
2017-07-11 15:45:30.245053+00	2017-07-11 15:52:11.710459+00	5755	completed				+17063722909		400	2017-07-11 15:45:30.243427	2017-07-11 15:52:10.697179	CA8304162f06c02a3a6fd90bb2c29832ca	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE6ea855a05ef79813f532e578644c038a	0	inbound	+17704009016	132	26.9968011379241943	\N	new lead		13	\N	\N	101
2017-12-16 19:20:26.634345+00	2017-12-16 19:21:18.232431+00	7936	completed				+16822053433		51	2017-12-16 19:20:26.632565	2017-12-16 19:21:17.137359	CAde52897a49eea1d65e59ceee5c7a7343	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE670686305588bc93484be6d56d3279c8	0	inbound	+18177569010	124	10.2427451610565186	\N	new lead	dempsey  glenda	12	\N	\N	102
2017-07-13 19:30:27.042092+00	2017-07-13 19:31:20.243657+00	5770	completed	Renee	Robinson	boggschris35@gmail.com	+16784125735		34	2017-07-13 19:30:27.040192	2017-07-13 19:31:20.208211	CAc528de20e377eb176237dd4e5b1537b3	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REcbe7a4aaaf20af4d20a18cf601912590	1	outbound	+17704009016	\N	17.349207878112793	{}	new lead		13	\N	\N	103
2016-06-26 14:44:50.314802+00	2016-06-27 12:25:23.65837+00	471	completed	WILLIAM	BRINDLE	WBRINDLE228@GMAIL.COM	+13302073406		\N	2016-06-26 14:44:50.313497	\N		ee869226-e246-4ab4-aaaa-e9403e2ddd39	\N			0	outbound	+18555983683	\N	\N	{}	new lead		1	\N	\N	105
2016-10-02 12:50:43.876633+00	2016-12-10 01:05:11.337132+00	2123	completed				+17184201472		6	2016-10-02 12:50:43.874932	2016-10-02 12:50:49.841381	CA6dbb344336fbc11d8ad2e70e29394d49	\N	25			0	inbound	+18555693686	\N	1.02460479736328125	null	new lead		3	\N	\N	106
2017-11-28 18:14:57.192715+00	2017-11-28 18:15:59.64828+00	7364	completed	Jennifer	Rogers	rogersjennifer823@gmail.com	+16783348297		49	2017-11-28 18:14:57.191263	2017-11-28 18:15:59.624817	CAc0dfe949f33ab9d8be6486a0e4cdbaef	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REd2fb85fea38f1792c3b06cfa6025ce4b	1	outbound	+17704009016	\N	11.1969060897827148	{}	new lead		13	\N	\N	110
2016-11-03 22:46:18.490546+00	2016-11-03 22:53:24.165097+00	2674	completed				+19364437944		425	2016-11-03 22:46:18.48873	2016-11-03 22:53:23.129185	CA781a32a84de483c7152123b457c671be	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE92cabd0e4d15c3c9682023c3d7182a99	0	inbound	+18557240606	49	1.9588158130645752	null	new lead		1	\N	\N	111
2016-08-01 18:25:28.723943+00	2016-12-10 00:55:45.164976+00	1087	completed				+12157600152		462	2016-08-01 18:25:28.722927	2016-08-01 18:33:10.561637	CAd2ff0533193d746d580293df605fe4db	\N	24			0	inbound	+18557129406	\N	2.26817107200622559	null	new lead		3	\N	\N	112
2017-12-07 18:42:24.906205+00	2017-12-07 18:43:42.160049+00	7689	completed				+15756237305		76	2017-12-07 18:42:24.903937	2017-12-07 18:43:40.871819	CA6cfbeed4d894d2077b5c78a2e5d40d2e	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE3b0769c5c668915ef44ff31ba5b86bf3	0	inbound	+18558645656	136	2.82019186019897461	\N	new lead		15	\N	\N	115
2017-04-28 17:16:36.399035+00	2017-11-29 18:38:53.214752+00	4426	completed				+12103508936		15	2017-04-28 17:16:36.395337	2017-04-28 17:16:51.219617	CAba50cc08b10dbea7789a64341ccd8237	\N	133			0	inbound	+12146922088	\N	7.36033201217651367	\N	new lead	mustang gt     	9	\N	\N	118
2017-04-25 15:46:59.10411+00	2017-11-29 18:38:49.806597+00	4288	completed				+12103508936		261	2017-04-25 15:46:59.102211	2017-04-25 15:51:19.721427	CA3bde676899cce07116e6a2c70af4ff3e	\N	99			0	inbound	+12147122250	\N	9.88361382484436035	\N	new lead	mustang gt     	9	\N	\N	118
2017-09-17 13:36:06.142485+00	2017-09-17 13:42:51.773648+00	6382	missed				+14704456723		65	2017-09-17 13:36:06.140458	2017-09-17 13:37:10.650652	CA5adcc8edf794f6c2fc08f4f9e2777b71	\N	\N			0	inbound	+17707665732	133	388.619945049285889	\N	new lead		13	\N	\N	119
2016-06-27 12:29:42.42368+00	2017-11-29 18:32:13.820512+00	481	completed	Carl	Foreman		+13303076539		43	2016-06-27 12:29:42.422579	2016-06-27 12:30:25.801705	CA96a60c52f1d0f37dcd56f107bee8ff35	\N	\N			0	inbound	+18555983683	\N	\N	null	new lead		1	\N	\N	121
2016-06-27 15:12:24.555213+00	2016-06-27 15:13:25.502699+00	506	completed				+13303076539		56	2016-06-27 15:12:24.554018	2016-06-27 15:13:25.501532	CA9a64c51e2453a3372aa448d178a697f3	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.59666299819946289	{}	new lead		1	\N	\N	121
2016-11-03 19:50:21.673431+00	2016-11-03 20:25:07.234583+00	2654	completed				+17134857112		2080	2016-11-03 19:50:21.67092	2016-11-03 20:25:01.47809	CAb768c0ca13b8638e0368e2ecb0fae8ec	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE05007b7ba2e37012f5223a25a315df96	0	inbound	+18557240606	49	2.12317609786987305	null	new lead		1	\N	\N	122
2017-08-29 14:34:54.30163+00	2017-08-29 14:37:24.666163+00	6193	completed				+12299422439		150	2017-08-29 14:34:54.299635	2017-08-29 14:37:24.654545	CAce6bd405a10434ab9a1cc45030e8b550	\N	154			0	inbound	+17707665699	134	1.24340105056762695	\N	new lead		13	\N	\N	123
2016-06-16 16:42:10.991419+00	2017-11-29 18:31:33.775577+00	430	completed	Unknown			+13308421431		193	2016-06-16 16:42:10.990271	2016-06-16 16:45:23.922133	CAf0268787eff106f06bf0e869875327a3	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE46fc51eb623418f1ddddc3adf22add5a	0	inbound	+18556311350	\N	3.50933504104614258	null	new lead		1	\N	\N	125
2016-06-14 19:28:52.630853+00	2016-06-14 19:33:51.01845+00	419	completed				+13308421431		293	2016-06-14 19:28:52.628548	2016-06-14 19:33:51.01748	CA9f44df26f6b21f8ba4b00b502c14e7e1	f452a839-1c09-4197-a86b-ba53f5a3554c	16			1	outbound	+18556311350	\N	1.44072508811950684	{}	new lead		1	\N	\N	125
2016-06-15 17:21:36.245164+00	2016-06-15 17:22:51.584616+00	422	completed				+13308421431		72	2016-06-15 17:21:36.243587	2016-06-15 17:22:51.5835	CA8125f5cc200a2512a5a431e577f69bbd	f452a839-1c09-4197-a86b-ba53f5a3554c	16			1	outbound	+18556311350	\N	1.31101703643798828	{}	new lead		1	\N	\N	125
2016-06-14 00:16:02.593123+00	2016-06-14 11:50:33.243276+00	412	completed	Robert	Gallavan	rgallavan@live.com	+13308421431		\N	2016-06-14 00:16:02.591984	\N		ea8e48b7-042e-42ec-8dde-d03bf75a9bad	\N			0	outbound	+18556311350	\N	\N	{}	new lead		1	\N	\N	125
2017-12-06 16:41:16.361378+00	2017-12-06 16:53:05.05261+00	7638	completed				+17402252457		706	2017-12-06 16:41:16.357473	2017-12-06 16:53:01.994136	CAaec0cfb39825258ed5127af8687ce693	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE4dd773c12e5abc2b34fcb5aef851e755	0	inbound	+18558645656	136	2.54941701889038086	\N	new lead		15	\N	\N	142
2017-01-03 22:26:58.092911+00	2017-01-03 22:42:16.699364+00	3106	completed				+18322452055		917	2017-01-03 22:26:58.091921	2017-01-03 22:42:14.934066	CA8482cacecc4fdfcac0cb422b58a463c0	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE889fc0ac1ba0df4dd7a399d57d994e68	0	inbound	+18557240606	49	1.96009111404418945	null	new lead		1	\N	\N	144
2017-08-23 15:04:05.427051+00	2017-08-23 15:05:19.347503+00	6144	completed				+17705341406		74	2017-08-23 15:04:05.425191	2017-08-23 15:05:19.33593	CAdd46ef320f1b9a69f202d2c5c64a0960	\N	152			0	inbound	+17707665732	133	40.1325089931488037	\N	new lead		13	\N	\N	152
2016-05-21 04:43:20.16262+00	2016-05-25 16:20:05.244388+00	152	completed	Shamina	Lagrone	lagrone1220@gmail.com	+16617335122		\N	2016-05-21 04:43:20.161195	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	new lead		1	\N	\N	154
2016-10-27 13:59:36.70423+00	2016-12-09 17:06:53.906049+00	2354	completed				+12157508429		133	2016-10-27 13:59:36.70268	2016-10-27 14:01:49.742748	CA0eac4c939ac0e58cccf8ec418922c6a9	\N	21			0	inbound	+18558021330	\N	3.47342300415039062	null	new lead		3	\N	\N	145
2017-05-08 16:00:21.606379+00	2017-11-29 18:38:49.810266+00	4844	completed				+14696000099		111	2017-05-08 16:00:21.604734	2017-05-08 16:02:12.147559	CA2d70c65c0ac2567697e933337bd66669	\N	\N			0	inbound	+12147122250	\N	1.36650800704956055	\N	new lead	quiroga jose   	9	\N	\N	148
2016-12-01 21:09:05.157175+00	2016-12-01 21:11:47.230972+00	3020	completed				+12817969814		160	2016-12-01 21:09:05.155415	2016-12-01 21:11:45.460673	CAd9129df3e885e6b32ffd6acb46af80f6	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE93843fd5cd7fa2fb87b091d8b3f18c6c	0	inbound	+18557240606	49	2.38049006462097168	null	new lead		1	\N	\N	150
2016-07-07 19:25:52.463951+00	2016-12-10 01:05:18.400637+00	820	completed				+14046483584		173	2016-07-07 19:25:52.462423	2016-07-07 19:28:45.586132	CAb785b6928eaf195f3833cf371b32c2eb	\N	24			0	inbound	+18557088731	\N	1.34821414947509766	null	new lead		3	\N	\N	155
2017-03-24 18:09:05.603517+00	2017-11-29 18:47:25.067912+00	3571	completed				+17188261876		265	2017-03-24 18:09:05.599152	2017-03-24 18:13:30.870662	CAbba77c9acf7ebbd387b1cea548322c8a	\N	83		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REff5ff32300aa9647a3a606a5f1c8abe3	0	inbound	+19728330116	\N	14.4619991779327393	\N	new lead	elivered inc di	8	\N	\N	157
2016-10-11 15:02:54.794551+00	2016-12-09 17:10:17.413606+00	2262	completed				+16102523053		477	2016-10-11 15:02:54.793679	2016-10-11 15:10:51.358655	CA826a5583049f311046077703476050c3	\N	27			0	inbound	+18552716856	\N	6.51047921180725098	null	new lead		3	\N	\N	161
2017-08-19 23:05:41.972764+00	2017-08-19 23:05:42.02128+00	6111	missed	Stamey	Moore	Theonlysylient@outlook.com	+14702720429		\N	2017-08-19 23:05:41.971312	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	167
2016-07-15 21:18:36.821313+00	2016-07-18 12:34:32.268431+00	880	completed	Meredith	Shields	Meredith_shields@hotmail.com	+16148051298		\N	2016-07-15 21:18:36.820059	\N		d33a481e-e0af-47ac-9f90-260f20b69de5	\N			0	outbound	+18552959002	\N	\N	{}	new lead		1	\N	\N	169
2017-09-15 22:03:19.404844+00	2017-09-15 22:11:29.743372+00	6373	missed	Lauren	Henderson	lkbrady2014@gmail.com	+16786969732		39	2017-09-15 22:03:19.403316	2017-09-15 22:11:29.741261	CA9c80bab23d6c691d21c45da0ec685a46	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			3	outbound	+17704009016	\N	459.656280040740967	{}	new lead		13	\N	\N	172
2017-09-19 06:23:53.022716+00	2017-09-19 06:23:53.084441+00	6397	missed	Lauren	Henderson	lkbrady2014@gmail.com	+16786969732		\N	2017-09-19 06:23:53.021202	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	172
2016-10-08 18:10:03.018029+00	2016-12-10 01:01:47.491821+00	2242	completed				+16199850241		22	2016-10-08 18:10:03.014904	2016-10-08 18:10:24.680647	CAb24a7b77e6fc2fecc148c44e2b2036d3	\N	51			0	inbound	+18559584949	\N	1.99860501289367676	null	new lead		3	\N	\N	173
2016-10-08 18:10:35.126268+00	2016-12-10 01:01:47.49184+00	2243	completed				+16199850241		249	2016-10-08 18:10:35.125329	2016-10-08 18:14:44.446195	CAbe22254e772a408eb19b60c898c0b8bc	\N	51			0	inbound	+18559584949	\N	1.96050190925598145	null	new lead		3	\N	\N	173
2017-06-06 22:43:45.632721+00	2017-11-29 18:47:25.06853+00	5573	completed				+19404406333		394	2017-06-06 22:43:45.630822	2017-06-06 22:50:19.944912	CAb5da672fb3f52b33bc67ec13f18dd8ef	\N	84		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REe2711fb1b2d7c6e381cea8e6c82221a6	0	inbound	+19728330116	\N	10.7091898918151855	\N	new lead	cross  tricia	8	\N	\N	174
2017-12-29 21:13:25.481783+00	2017-12-29 21:14:30.678129+00	8158	completed				+17063723652		64	2017-12-29 21:13:25.479842	2017-12-29 21:14:29.927557	CA469ff4a09f6c01429ffe26dc4c786f41	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE960ec99298e046891320489fa17edcf7	0	inbound	+17707665732	133	15.3875539302825928	\N	new lead	muratore b	13	\N	\N	179
2017-12-29 21:18:52.782322+00	2017-12-29 21:21:30.282286+00	8159	completed	Trevor	Johnson	Rodicia.glenn@yahoo.com	+17063723652		140	2017-12-29 21:18:52.780856	2017-12-29 21:21:30.087964	CA8df44c3da1c856cfbee7598c68effce1	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE32bb22dca6c4f3fec86235b3a2a6ff5f	1	outbound	+17704009016	\N	23.1461260318756104	{}	new lead		13	\N	\N	179
2016-10-05 23:24:42.082312+00	2016-12-10 01:01:51.441037+00	2206	completed				+17605543073		105	2016-10-05 23:24:42.080574	2016-10-05 23:26:27.132605	CA1c68fdc28e08ddf090fe90c9f8f8c9fa	\N	50			0	inbound	+18559693782	\N	2.08644008636474609	null	new lead		3	\N	\N	185
2016-10-05 23:26:44.447656+00	2016-12-10 01:01:51.441044+00	2207	completed				+17605543073		1121	2016-10-05 23:26:44.445879	2016-10-05 23:45:25.124298	CA29be3f5e9c4d6dab7b2a700e98823939	\N	50			0	inbound	+18559693782	\N	1.94805407524108887	null	new lead		3	\N	\N	185
2016-10-05 23:45:38.197229+00	2016-12-10 01:01:51.441051+00	2208	completed				+17605543073		372	2016-10-05 23:45:38.196164	2016-10-05 23:51:50.239722	CA6ef3bc354ad5756efe1788f3e1ead2ef	\N	50			0	inbound	+18559693782	\N	2.06471109390258789	null	new lead		3	\N	\N	185
2017-10-17 21:34:29.600458+00	2017-10-17 21:35:28.894511+00	6736	completed				+18174446973		58	2017-10-17 21:34:29.598112	2017-10-17 21:35:27.785317	CAe3ead015b6c2194f22cf202742cc3206	\N	155		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE889859d3a1792580a502b0d8ee348554	0	inbound	+18177569010	124	9.48215794563293457	\N	new lead	johnson jim	12	\N	\N	186
2016-10-31 21:07:35.801374+00	2016-10-31 21:07:35.838826+00	2424	missed	James	Lefler	jml211952@aol.com	+17042248941		\N	2016-10-31 21:07:35.79989	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	195
2016-10-29 21:05:12.25566+00	2016-10-29 21:09:21.307873+00	2369	completed				+14693583247		249	2016-10-29 21:05:12.254102	2016-10-29 21:09:20.929522	CA7fc68d3705090cc1d11340cfb9792704	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE17d0fd453b654b624bb4ac715d4e2042	0	inbound	+18557240606	49	2.12138199806213379	null	new lead		1	\N	\N	198
2016-10-29 21:09:25.701834+00	2016-10-29 21:20:25.684801+00	2370	in-progress				+14693583247		\N	2016-10-29 21:09:25.700985	\N	CAd86a4b1c0af182fa7767cd18c1888c8a	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE9ce4248e2f641ab806787831774cf91c	0	inbound	+18557240606	49	0.360546112060546875	null	new lead		1	\N	\N	198
2016-11-03 17:48:14.258876+00	2016-11-03 17:51:15.350207+00	2646	completed				+17035941713		180	2016-11-03 17:48:14.257216	2016-11-03 17:51:14.396101	CAf2a57ed15c01b3b23a483162a14dfe54	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE0281985f3dcd495e0bf645e31bfed34f	0	inbound	+18557240606	49	1.86606812477111816	null	new lead		1	\N	\N	200
2016-11-03 17:45:24.74755+00	2016-11-03 17:45:39.451545+00	2645	completed				+17035941713		14	2016-11-03 17:45:24.745974	2016-11-03 17:45:38.474214	CA90f0d5ec17165a3d8753c06390af0259	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE1d556f08319fdeaeeb84d92c9f7cda2d	0	inbound	+18557240606	49	1.80446290969848633	null	new lead		1	\N	\N	200
2016-10-24 21:13:31.289213+00	2016-12-10 01:02:27.218788+00	2345	completed				+15408452257		13	2016-10-24 21:13:31.287744	2016-10-24 21:13:44.108261	CA86cbf7c6ef2b44465696e83b06de4b40	\N	75			0	inbound	+18555342827	\N	5.03001117706298828	null	new lead		3	\N	\N	203
2017-05-26 18:07:13.879545+00	2017-11-29 18:38:49.813664+00	5440	completed				+19723422979		160	2017-05-26 18:07:13.878099	2017-05-26 18:09:53.405373	CA9e4a74e18b73bd97da5c3fcaa3ca609e	\N	\N			0	inbound	+12147122250	\N	7.02149510383605957	\N	new lead	cell phone   tx	9	\N	\N	210
2016-05-31 15:18:19.906388+00	2016-05-31 15:35:21.30566+00	283	completed	mark	JAMROZ	marksupertech@aol.com	+16619173929		18	2016-05-31 15:18:19.905391	2016-05-31 15:18:50.824919	CAb75a36cdd060afb0568022740aa95d5d	99186475-9344-4e80-b3b1-0ed2e7856585	\N			1	outbound	+18555472453	\N	9.32249307632446289	{}	new lead		1	\N	\N	212
2016-08-10 15:58:59.866446+00	2017-01-27 21:12:23.813048+00	1387	completed				+12622781486		57	2016-08-10 15:58:59.86555	2016-08-10 15:59:57.10123		\N	\N			0	outbound	+18555343978	48	\N	null	do not contact		1	\N	\N	74
2016-08-18 16:28:25.293515+00	2017-01-27 21:12:23.813464+00	1583	completed				+14404223142		96	2016-08-18 16:28:25.29202	2016-08-18 16:30:01.688635		\N	\N			0	outbound	+18555343978	48	\N	null	do not contact		1	\N	\N	202
2016-08-19 20:20:08.185668+00	2017-01-27 21:12:23.813519+00	1627	completed				+14404223142		151	2016-08-19 20:20:08.184542	2016-08-19 20:22:39.561256		\N	\N			0	outbound	+18555343978	48	\N	null	do not contact		1	\N	\N	202
2016-08-22 19:47:17.463155+00	2017-01-27 21:12:23.81354+00	1646	completed				+14404223142		100	2016-08-22 19:47:17.461717	2016-08-22 19:48:57.189645		\N	\N			0	outbound	+18555343978	48	\N	null	do not contact		1	\N	\N	202
2016-05-31 16:24:37.90436+00	2016-05-31 16:26:07.591368+00	285	completed				+12084631050		84	2016-05-31 16:24:37.902781	2016-05-31 16:26:07.590243	CAea54210acedb542ca3f43bbbfa9882b3	8f30d55b-8601-40b9-9d7f-11bfe29c5449	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE586ac613346331a8eeafbfa022c9605d	1	outbound	+18555472453	\N	2.21568989753723145	{}	new lead		1	\N	\N	213
2016-05-28 16:23:41.436642+00	2017-11-29 18:31:37.368204+00	272	completed	Unknown			+12084631050		43	2016-05-28 16:23:41.434318	2016-05-28 16:24:24.757934	CAeb9329847afa2d361cb55cef2ecf405b	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE83554646fb6fb94bdfa48ef5e0e37383	0	inbound	+18555472453	\N	\N	null	new lead		1	\N	\N	213
2017-12-18 15:56:31.785577+00	2017-12-18 15:59:29.820655+00	7966	completed				+18177893702		176	2017-12-18 15:56:31.783779	2017-12-18 15:59:27.747932	CA61d52f72f3764e310f9820d0ca7666c1	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE200b650e4047722298c4cf825dd1275d	0	inbound	+18177569010	124	87.7493607997894287	\N	new lead	johnson adrienn	12	\N	\N	257
2017-05-04 21:01:38.965212+00	2017-11-29 18:38:53.215114+00	4728	completed				+19723318384		179	2017-05-04 21:01:38.963874	2017-05-04 21:04:37.537358	CA5b586bc9b6e8bcac300fc4a21e4285bf	\N	\N			0	inbound	+12146922088	\N	1.47437095642089844	\N	new lead	plasma group	9	\N	\N	262
2016-11-17 14:26:45.924325+00	2016-11-17 14:26:45.946818+00	2933	missed	Cesar	Sagasta	sagasta2001@yahoo.com	+16023095183		\N	2016-11-17 14:26:45.923227	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	266
2017-02-08 20:45:58.14639+00	2017-02-08 21:20:38.00269+00	3154	completed				+16363596841		2076	2017-02-08 20:45:58.143776	2017-02-08 21:20:34.029723	CA9de10e0fed1266acd31313bc6acdca47	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE60048874a75cc75801dda3f4c492aff5	0	inbound	+18557240606	49	1.97425293922424316	null	new lead		1	\N	\N	267
2017-04-22 15:38:54.321142+00	2017-11-29 18:38:49.806348+00	4215	completed				+19725507259		54	2017-04-22 15:38:54.319741	2017-04-22 15:39:48.774814	CAe7f03eaf43feb06d6cbbe6555e0e7a89	\N	\N			0	inbound	+12147122250	\N	1.72887897491455078	\N	new lead	amerilife      	9	\N	\N	268
2016-07-06 19:35:59.946957+00	2016-07-06 19:37:01.993155+00	785	completed				+16142820124		58	2016-07-06 19:35:59.945929	2016-07-06 19:37:01.991946	CA2db3d1822064725bab0190a3111ff952	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	1.6395881175994873	{}	new lead		1	\N	\N	270
2016-07-06 19:07:39.874536+00	2017-11-29 18:31:41.490332+00	782	completed				+16142820124		29	2016-07-06 19:07:39.873249	2016-07-06 19:08:08.404538	CAeae233cfb2cb0d487a761010bdf7dc00	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REee4e807df2f702aaa53b8c7d3b2a5e31	0	inbound	+18552959002	\N	14.506497859954834	null	new lead		1	\N	\N	270
2016-06-01 21:17:44.519586+00	2016-06-01 21:19:16.770137+00	331	completed				+13123303326		87	2016-06-01 21:17:44.518145	2016-06-01 21:19:16.769158	CA37b941fc4e4727ab70ee28b2f3e71b1a	cb653cf7-f9fc-426a-847f-037ba278f4df	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE723cc5553da2d5389c9142d313bd4b78	1	outbound	+18556311541	\N	2.04055190086364746	{}	new lead		1	\N	\N	271
2016-06-17 20:58:49.129088+00	2017-11-29 18:31:14.616446+00	440	completed	Yolanda	Jackson		+13123303326		44	2016-06-17 20:58:49.127559	2016-06-17 20:59:33.432458	CAefa15cea18d3ee0e3d01ee672e8dc668	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE8bab179266c7c035ef3f92e3265fb4d8	0	inbound	+18556311541	\N	14.359868049621582	null	new lead		1	\N	\N	271
2016-06-13 18:03:36.558022+00	2016-06-13 19:28:25.754015+00	408	completed	Yolanda	Jackson	landee68@yahoo.com	+13123303326		1	2016-06-13 18:03:36.556717	2016-06-13 18:03:59.184251	CAa14d565989be051223df67b2841d91fa	4b51c6b2-49f9-4108-8fdf-a8671e497256	\N			1	outbound	+18556311541	\N	16.7211768627166748	{}	new lead		1	\N	\N	271
2016-06-01 21:05:03.89204+00	2017-11-29 18:31:14.616432+00	330	completed	Unknown			+13123303326		55	2016-06-01 21:05:03.890217	2016-06-01 21:05:58.623225	CA174bbba4c3397f66efd6db5553fb4139	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE7c8cd56f72e1c55aec8a2f84c5906444	0	inbound	+18556311541	\N	\N	null	new lead		1	\N	\N	271
2017-05-09 22:41:29.979514+00	2017-11-29 18:38:53.215534+00	4942	completed				+14802081487		178	2017-05-09 22:41:29.977589	2017-05-09 22:44:27.716135	CA9ef54b6ee073b9fa570c90514e46d054	\N	\N		https://api.twilio.com/2010-04-01/Accounts/AC5422b9b221417a7a84556a92f6edc492/Recordings/RE26bcd90331101dc379e96d9e261008b8	0	inbound	+12146922088	\N	9.67931103706359863	\N	new lead	blue horizons  	9	\N	\N	273
2017-07-07 19:26:52.307883+00	2017-07-07 19:28:19.920897+00	5734	completed				+17708829976		85	2017-07-07 19:26:52.305424	2017-07-07 19:28:17.516267	CA27fb6a68cea6e70e6a35087e93a7283a	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE0b0d7bed893682ee135cb141aad977d3	0	inbound	+17704009016	132	12.06386399269104	\N	new lead		13	\N	\N	274
2017-04-19 15:15:45.424176+00	2017-11-29 18:38:49.805696+00	4085	completed				+19528339456		163	2017-04-19 15:15:45.422372	2017-04-19 15:18:28.805458	CAa3c882f20f25fa401a10aaf8f60d4936	\N	124			0	inbound	+12147122250	\N	1.71337413787841797	\N	new lead	van wagenen fin	9	\N	\N	276
2017-12-08 14:12:34.667169+00	2017-12-08 14:15:09.659723+00	7708	completed				+17633178640		154	2017-12-08 14:12:34.665491	2017-12-08 14:15:09.024835	CA4d1d1453fa746a7bdc765ac0cb065f64	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE232cbdebd9512ab3ac8548c91f5da518	0	inbound	+18558645656	136	2.71836590766906738	\N	new lead		15	\N	\N	288
2017-11-28 23:14:30.989202+00	2017-11-28 23:14:59.024244+00	7371	completed				+17633178640		28	2017-11-28 23:14:30.986876	2017-11-28 23:14:59.008595	CA87853c78410a86f5ae22a99c348765ae	\N	158			0	inbound	+18558645656	136	3.02233314514160156	\N	new lead		15	\N	\N	288
2017-11-28 23:15:07.266622+00	2017-11-28 23:15:40.965585+00	7372	completed				+17633178640		34	2017-11-28 23:15:07.264897	2017-11-28 23:15:40.955178	CA70e00356310e5c5c21ecb58627bd66d1	\N	158			0	inbound	+18558645656	136	2.85701799392700195	\N	new lead		15	\N	\N	288
2017-11-28 23:16:50.592897+00	2017-11-28 23:17:01.021264+00	7374	completed				+17633178640		10	2017-11-28 23:16:50.591061	2017-11-28 23:17:01.006255	CAce51c5a38bb334f0e01166a6fff38b3a	\N	158			0	inbound	+18558645656	136	3.61435985565185547	\N	new lead		15	\N	\N	288
2017-11-28 23:20:42.874703+00	2017-11-28 23:21:17.355639+00	7379	completed				+17633178640		34	2017-11-28 23:20:42.873281	2017-11-28 23:21:17.343265	CAba0c7c8ba80ecd2fb210c023065e80a1	\N	158			0	inbound	+18558645656	136	2.6435551643371582	\N	new lead		15	\N	\N	288
2017-11-29 13:58:29.147248+00	2017-11-29 13:58:59.829127+00	7384	completed				+17633178640		30	2017-11-29 13:58:29.143599	2017-11-29 13:58:59.040767	CAbf3b909f4d0c39a690194f5e072ca83d	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE770456ad45a7b626ce0d38cbd178619f	0	inbound	+18558645656	136	2.69387602806091309	\N	new lead		15	\N	\N	288
2017-05-16 01:06:07.595891+00	2017-11-29 18:38:49.811671+00	5098	missed				+19728915612		5	2017-05-16 01:06:07.594142	2017-05-16 01:06:12.30236	CA29dd62fd8ce912e3f2863f1eb9b1309a	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	wells frankie	9	\N	\N	4081
2016-11-11 03:20:02.364828+00	2016-11-11 03:20:16.385724+00	2858	completed				+19727416109		13	2016-11-11 03:20:02.36218	2016-11-11 03:20:15.69851	CA3553983209a3e6e94e269e56d222483c	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE3c083835dfebcd856aad69b0f6afa726	0	inbound	+18557240606	49	2.03798198699951172	null	new lead		1	\N	\N	214
2016-06-28 17:30:02.310614+00	2016-06-28 18:05:17.254127+00	608	completed	David	Nash	na@noemail.com	+16144196663		14	2016-06-28 17:30:02.308693	2016-06-28 17:30:36.162593	CAdfc9a3777f444e562d5f890928fb568e	d33a481e-e0af-47ac-9f90-260f20b69de5	\N			1	outbound	+18552959002	\N	13.1847710609436035	{}	new lead		1	\N	\N	249
2017-11-29 13:59:06.3767+00	2017-11-29 14:00:29.392716+00	7385	completed				+17633178640		82	2017-11-29 13:59:06.37452	2017-11-29 14:00:28.038601	CA8efd74bef806be39243db58c9b297bd9	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE6b05475f07041d864c8bb31533861b7f	0	inbound	+18558645656	136	2.51941108703613281	\N	new lead		15	\N	\N	288
2016-12-03 17:25:32.744194+00	2017-11-29 18:31:14.616566+00	3035	missed				+17155797610		26	2016-12-03 17:25:32.74253	2016-12-03 17:25:59.099789	CAe172925dc293d994f7228ec7e8e06a72	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REa5211e3525c689d8bede1705579c29dd	0	inbound	+18556311541	\N	\N	null	new lead		1	\N	\N	292
2017-04-03 20:02:28.470923+00	2017-05-17 15:41:07.224269+00	3675	completed				+19727465896		204	2017-04-03 20:02:28.467182	2017-04-03 20:05:51.989056	CAf96ed37f4b7ffa1c8bcdfa777e82295c	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REef964e3bfa2fac90a56914b0365db74b	0	inbound	+18177569010	124	11.337752103805542	\N	new lead	will tylor	12	\N	\N	294
2017-12-08 02:22:38.478272+00	2017-12-08 02:43:41.511537+00	7700	completed	DALE	CALL	dalecall@ymail.com	+14692583470		1260	2017-12-08 02:22:38.47664	2017-12-08 02:43:41.509812	CAc38b7c9f1eb967b494e2acd9082ef8e0	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.11051392555236816	{}	new lead		15	\N	\N	297
2016-08-03 22:04:47.267119+00	2016-08-05 12:51:05.136753+00	1192	missed	PAMELA	BOREN-BAPTISTE	pamela_borne@yahoo.com	+16612363907		\N	2016-08-03 22:04:47.266257	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	autopay declined		1	\N	\N	296
2016-10-04 18:06:47.251475+00	2016-12-09 17:06:53.905977+00	2141	completed				+12153214729		169	2016-10-04 18:06:47.249245	2016-10-04 18:09:36.728532	CA6595f0f9e9991c54678eb3daa66669fa	\N	21			0	inbound	+18558021330	\N	2.33749103546142578	null	new lead		3	\N	\N	301
2017-08-02 20:12:34.050994+00	2017-08-02 20:19:04.348955+00	5918	missed				+14785082988		61	2017-08-02 20:12:34.049046	2017-08-02 20:13:34.5804	CAdb68111f3b5e2430d8cfa754c50cec34	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REd488b95a34350c44056ef68cdc4544c4	0	inbound	+17704009016	132	\N	\N	new lead		13	\N	\N	302
2017-08-02 21:12:52.772473+00	2017-08-02 21:19:09.341265+00	5919	missed				+14785082988		47	2017-08-02 21:12:52.770836	2017-08-02 21:13:39.466493	CA731ed5240baa357e7c5dd39512746664	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE44479a3c48a624b71baeb6521eef4978	0	inbound	+17704009016	132	\N	\N	new lead		13	\N	\N	302
2017-08-02 21:24:22.944738+00	2017-08-02 21:30:30.838998+00	5920	missed				+14785082988		38	2017-08-02 21:24:22.943057	2017-08-02 21:25:00.661316	CA65fd9df3449de08ccd63f7d557637620	\N	\N			0	inbound	+17704009016	132	\N	\N	new lead		13	\N	\N	302
2017-08-02 22:40:41.996102+00	2017-08-02 22:41:31.132323+00	5922	completed				+14785082988		48	2017-08-02 22:40:41.994032	2017-08-02 22:41:29.977181	CA48969d162bb1240c3a01601351aa62fb	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE0dc31a804b53709524a68cf82d12a7bc	0	inbound	+17704009016	132	9.7903130054473877	\N	new lead		13	\N	\N	302
2017-08-02 13:00:43.452637+00	2017-08-02 13:06:56.10272+00	5914	missed				+14785082988		43	2017-08-02 13:00:43.450131	2017-08-02 13:01:26.500281	CA4096d3b85f93799aa5438355cb5787cd	\N	\N			0	inbound	+17704009016	132	\N	\N	new lead		13	\N	\N	302
2017-08-02 13:41:41.815159+00	2017-08-02 13:43:19.094397+00	5915	completed				+14785082988		97	2017-08-02 13:41:41.812149	2017-08-02 13:43:18.578793	CAbe8b5578697f5949203391ab3db18af3	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE0f58f9f61d3338f1ad98a8e7241335a5	0	inbound	+17704009016	132	13.0976619720458984	\N	new lead		13	\N	\N	302
2017-07-22 16:44:56.186303+00	2017-07-22 16:51:36.219721+00	5832	missed	Lawayne	Banks	Lawayneboy@gmail.com	+17063527688		0	2017-07-22 16:44:56.184741	2017-07-22 16:51:36.218207	CAe10d53c70bf4f896f203bebbfd199c2b	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			3	outbound	+17704009016	\N	375.211835861206055	{}	new lead		13	\N	\N	303
2017-08-09 14:16:45.600999+00	2017-08-09 14:16:45.601199+00	5973	missed	kim		cavenderr@csvenderautosales.com	+14049147800		\N	2017-08-09 14:16:45.597206	\N		3784ab32-dd2a-4afe-b372-b25e22263604	\N			0	outbound	+17735469660	\N	\N	{}	new lead		1	\N	\N	304
2017-04-18 21:17:56.099299+00	2017-11-29 18:38:49.805609+00	4068	completed				+16822511867		79	2017-04-18 21:17:56.096649	2017-04-18 21:19:15.168224	CA811231674d72b2ad428f1b4b5d0eabc6	\N	103			0	inbound	+12147122250	\N	5.1829380989074707	\N	new lead	marketing selec	9	\N	\N	305
2017-08-26 20:58:32.288248+00	2017-08-26 21:02:30.620663+00	6180	completed				+16822480668		237	2017-08-26 20:58:32.286143	2017-08-26 21:02:29.44434	CA45fbe3f78d0d65c2e9b1c1be30fbe44d	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REd92a4eb139d6943385b42eb827aaa66a	0	inbound	+18177569010	124	26.0028719902038574	\N	new lead	iles destinee	12	\N	\N	313
2016-11-02 15:29:06.447499+00	2016-11-02 15:44:11.823741+00	2553	completed				+17049993531		903	2016-11-02 15:29:06.445981	2016-11-02 15:44:09.823881	CA5b8f393734d69151cfcf99e2c430770c	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REb29ee0d9e355ae9de9755a0f634aa4fd	0	inbound	+18557240606	49	2.56505393981933594	null	new lead		1	\N	\N	314
2017-12-21 22:34:29.742734+00	2017-12-21 22:49:44.536826+00	8061	completed				+16144991312		912	2017-12-21 22:34:29.739424	2017-12-21 22:49:41.317256	CAbe185a9402b0ee8e6f0b4b1a18fa94b5	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE41f9dbe67f261e2288645cd76dcb87a1	0	inbound	+18558645656	136	2.77435302734375	\N	new lead		15	\N	\N	321
2016-07-22 19:58:45.180335+00	2017-11-29 18:32:13.821544+00	920	completed				+13306920643		46	2016-07-22 19:58:45.178451	2016-07-22 19:59:31.060287	CA84eff786273ff697a47d837b4e718d16	\N	17		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE2fae7cb88dbfa61e8f152cdf29fe9b0f	0	inbound	+18555983683	\N	10.7921419143676758	null	select status		1	\N	\N	327
2017-03-06 18:24:22.76807+00	2017-11-29 18:47:25.067623+00	3329	completed				+12148810486		73	2017-03-06 18:24:22.765659	2017-03-06 18:25:35.850443	CAc9f524dda3ba7f32c0a5c0eb3ecf7341	\N	81		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REdbe8d02fd9e7208ca213fe8c741c8daa	0	inbound	+19728330116	\N	11.1463549137115479	\N	new lead	wireless caller	8	\N	\N	328
2017-04-29 19:29:28.147746+00	2017-11-29 18:38:49.807484+00	4471	completed				+18302759693		84	2017-04-29 19:29:28.14573	2017-04-29 19:30:51.679002	CA17c352b7506a2c1619c118b5f81153a8	\N	127			0	inbound	+12147122250	\N	1.4561309814453125	\N	new lead	haines courtney	9	\N	\N	329
2017-04-29 19:30:52.081074+00	2017-11-29 18:38:49.807497+00	4472	completed				+18302759693		55	2017-04-29 19:30:52.079996	2017-04-29 19:31:46.964831	CA2b8bb1e3761bb173c6c2f73c2e359c07	\N	\N			0	inbound	+12147122250	\N	2.76225495338439941	\N	new lead	haines courtney	9	\N	\N	329
2017-04-29 19:31:39.679915+00	2017-11-29 18:38:49.80751+00	4473	completed				+18302759693		62	2017-04-29 19:31:39.678109	2017-04-29 19:32:41.987515	CA96a62afe0e97a6e502bf7e83f6515202	\N	124			0	inbound	+12147122250	\N	0.93747711181640625	\N	new lead	haines courtney	9	\N	\N	329
2017-05-01 18:38:47.931229+00	2017-11-29 18:38:49.80815+00	4530	completed				+18302759693		130	2017-05-01 18:38:47.929396	2017-05-01 18:40:58.3978	CA7f0f3c4706cc3cebbd42b883e3ff5167	\N	124			0	inbound	+12147122250	\N	2.59984612464904785	\N	new lead	haines courtney	9	\N	\N	329
2016-11-08 23:12:35.03523+00	2016-11-08 23:38:35.220695+00	2812	completed				+19727416109		1557	2016-11-08 23:12:35.033651	2016-11-08 23:38:32.238201	CA5a933c68ecede60edf719fea0ef5f05c	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REf75e7e13638896544355fd95b04b9f47	0	inbound	+18557240606	49	2.10964202880859375	null	new lead		1	\N	\N	214
2017-05-10 20:31:27.89432+00	2017-08-17 14:35:21.045162+00	4981	completed				+18174023994		39	2017-05-10 20:31:27.892559	2017-05-10 20:32:07.20111	CAe397ad1c8d685e0cb08952111c9fee11	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE399c2ea81fecc0e9f4a9958d78384018	0	inbound	+18177569010	124	17.7018229961395264	\N	new lead	dallas  tx	12	\N	\N	215
2017-11-10 19:30:11.600903+00	2017-11-10 19:32:48.886614+00	7008	completed				+19402299191		157	2017-11-10 19:30:11.599022	2017-11-10 19:32:48.884274	CAf1faa954cd490544c4036df23c0eb8d9	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REbc971154d5917ffe0f6ec6944e433c17	0	inbound	+18177569010	124	108.914596080780029	\N	new lead	morales ricardo	12	\N	\N	334
2017-10-27 17:59:53.307363+00	2017-10-27 17:59:53.34184+00	6841	missed	bernice	morisak	bmorisak123@gmail.com	+12813243434		\N	2017-10-27 17:59:53.305968	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	345
2017-08-23 21:05:02.38474+00	2017-08-23 21:09:24.615666+00	6148	completed	Daniel	Pickens	daniel.pickens21@gmail.com	+18643675156		253	2017-08-23 21:05:02.383249	2017-08-23 21:09:24.074308	CAb64b2c89407a2007cb80aca7e7c9012a	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE1352b7e435b52b1b5df4a726ab455ee1	1	outbound	+17704009016	\N	8.9740140438079834	{}	new lead		13	\N	\N	346
2017-03-27 20:10:31.365868+00	2017-05-17 15:41:07.224224+00	3596	completed				+18176963105		388	2017-03-27 20:10:31.363968	2017-03-27 20:16:59.771675	CAa2a5e6a594441a6b96a3f0a28f18868c	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE32f6ea35442e52462c984b6ae8352875	0	inbound	+18177569010	124	359.088027954101562	\N	new lead	martinez m	12	\N	\N	351
2017-03-27 20:11:03.261109+00	2017-05-17 15:41:07.224232+00	3597	completed				+18176963105		154	2017-03-27 20:11:03.259639	2017-03-27 20:13:36.800563	CA2fbd5d45188eb7b8588dd084d02c42e9	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REaaf2471993736a1062f2485d2efba388	0	inbound	+18177569010	124	9.14750289916992188	\N	new lead	martinez m	12	\N	\N	351
2016-05-25 17:14:08.073048+00	2016-05-25 17:14:27.338033+00	217	completed				+18556311513		14	2016-05-25 17:14:08.071552	2016-05-25 17:14:27.336442	CAf9957f08038a6791f6290d621899291a	0b3fcee2-9b4c-4fe5-aa13-4a6db33f4d45	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE0e94634639a022c2827e6269a0ffe601	1	outbound	+18556311513	\N	1.285430908203125	{}	new lead		1	\N	\N	355
2017-05-11 18:31:01.474086+00	2017-11-29 18:38:49.811132+00	5014	completed				+19726795448		57	2017-05-11 18:31:01.472749	2017-05-11 18:31:58.406337	CA6f7f03943ce73529d551d094de7824e1	\N	133			0	inbound	+12147122250	\N	2.69223594665527344	\N	new lead	yanke karyn    	9	\N	\N	356
2017-05-11 20:44:39.530428+00	2017-11-29 18:38:49.811176+00	5022	completed				+19726795448		47	2017-05-11 20:44:39.527794	2017-05-11 20:45:26.222249	CAf98e2691f4b2f8926499b38c6dccfdff	\N	126			0	inbound	+12147122250	\N	1.28360390663146973	\N	new lead	yanke karyn    	9	\N	\N	356
2017-05-09 22:37:04.604247+00	2017-11-29 18:38:49.810761+00	4941	completed				+18179097577		101	2017-05-09 22:37:04.601958	2017-05-09 22:38:45.416482	CA166fbf27bd217a5f985a1ba8b0371f3d	\N	\N			0	inbound	+12147122250	\N	5.48081302642822266	\N	new lead	hart chris     	9	\N	\N	361
2017-05-12 22:19:05.524594+00	2017-11-29 18:38:49.811409+00	5049	completed				+18179097577		67	2017-05-12 22:19:05.522715	2017-05-12 22:20:12.124465	CA69d497fc69d216f8602d7e0fb5eee60d	\N	125			0	inbound	+12147122250	\N	2.09542608261108398	\N	new lead	hart chris	9	\N	\N	361
2017-05-12 22:20:14.776188+00	2017-11-29 18:38:49.811416+00	5050	completed				+18179097577		54	2017-05-12 22:20:14.774332	2017-05-12 22:21:09.265627	CA0e6dcb9dc1eec8025f5c48832da53faf	\N	124			0	inbound	+12147122250	\N	1.35193610191345215	\N	new lead	hart chris	9	\N	\N	361
2017-09-24 10:34:22.062022+00	2017-09-24 10:34:22.124496+00	6472	missed	William	Rohn	Walexrohn69@gmail.com	+17063625171		\N	2017-09-24 10:34:22.058933	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	364
2016-08-15 20:14:17.462494+00	2017-01-27 21:12:23.813264+00	1514	completed	Jaime	Sandoval		+16614448507		118	2016-08-15 20:14:17.461247	2016-08-15 20:16:15.495508		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	365
2016-08-02 20:22:39.306711+00	2017-11-29 18:31:37.368446+00	1142	completed				+16614448507		64	2016-08-02 20:22:39.304877	2016-08-02 20:23:43.078051	CA55c3b8e55160770d93eaa6227d934e03	\N	18		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REa90dfc362af098d4ecf59cf3e661b58e	0	inbound	+18555472453	\N	24.0501809120178223	null	general interest		1	\N	\N	365
2016-08-23 14:23:35.463093+00	2017-01-27 21:12:23.813589+00	1670	completed				+16614497598		89	2016-08-23 14:23:35.461992	2016-08-23 14:25:04.109372		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	366
2016-08-26 15:40:41.877762+00	2017-01-27 21:12:23.813785+00	1787	completed	Curtis	Johnson		+16614497598		134	2016-08-26 15:40:41.876318	2016-08-26 15:42:56.105196		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	366
2016-08-23 00:24:17.287973+00	2017-11-29 18:31:37.369061+00	1660	missed				+16614497598		20	2016-08-23 00:24:17.286183	2016-08-23 00:24:36.890254	CA6da9c315896458eeb779711057f00017	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REd1444fc29672293a0c68cbd944e9b684	0	inbound	+18555472453	\N	\N	null	general interest		1	\N	\N	366
2017-09-15 18:02:42.215313+00	2017-09-15 18:04:19.929204+00	6368	completed				+17135576264		97	2017-09-15 18:02:42.213634	2017-09-15 18:04:19.239691	CAdcb71dba8b67832a84e5efc19974b758	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REc8fc4e9ac8770cf7effe4c38c36a6119	0	inbound	+18177569010	124	7.11272406578063965	\N	new lead	price ruth	12	\N	\N	370
2017-09-15 18:26:58.187074+00	2017-09-15 18:29:59.732136+00	6369	completed				+17135576264		180	2017-09-15 18:26:58.185351	2017-09-15 18:29:58.633886	CA41702f13fa030c212834eb10f6495129	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE16c1b1794567e24089fff6c8f5c53608	0	inbound	+18177569010	124	40.555243968963623	\N	new lead	price ruth	12	\N	\N	370
2017-10-24 13:40:55.22189+00	2017-10-24 14:04:05.097583+00	6791	missed				+14695528209		60	2017-10-24 13:40:55.220143	2017-10-24 13:41:55.45372	CAd4e21d009f088e6f64a32aa694b5aebe	\N	\N			0	inbound	+18177569010	124	1364.99943995475769	\N	new lead	farmers bra  tx	12	\N	\N	376
2017-04-14 17:13:41.53667+00	2017-11-29 18:38:49.804952+00	3925	completed				+14692314617		71	2017-04-14 17:13:41.535123	2017-04-14 17:14:52.449515	CAf3635dfe73267d3cadb49b3e932f914e	\N	\N			0	inbound	+12147122250	\N	7.42092204093933105	\N	new lead	patel narendra	9	\N	\N	377
2017-12-14 14:13:05.306713+00	2017-12-14 14:18:35.78427+00	7862	completed				+13059280754		330	2017-12-14 14:13:05.304966	2017-12-14 14:18:34.989248	CAfce859aed884c5fa9ce564ffc24cb898	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REe7e13829b6dcc14d7c4e830dbbddccd2	0	inbound	+17704009016	132	10.8132479190826416	\N	new lead	miramar  fl	13	\N	\N	379
2017-12-19 03:57:05.221325+00	2017-12-19 03:57:05.29664+00	7986	missed	Brandy	Franklin	ladybirdempire@gmail.com	+13059280754		\N	2017-12-19 03:57:05.219418	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	379
2017-12-19 13:50:20.487533+00	2017-12-19 13:50:20.855623+00	7989	missed	Brandy	Franklin		+13059280754		0	2017-12-19 13:50:20.485141	2017-12-19 13:50:20.847206	CA8b423b425cc3cd33f926d30c4713c13e	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead	miramar  fl	13	\N	\N	379
2017-12-19 13:50:37.884106+00	2017-12-19 13:50:38.26342+00	7990	missed	Brandy	Franklin		+13059280754		0	2017-12-19 13:50:37.883071	2017-12-19 13:50:38.254475	CA8db8477083f98cc888bb0403aff7bb15	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead	miramar  fl	13	\N	\N	379
2017-04-25 14:58:12.483583+00	2017-11-29 18:38:53.214525+00	4284	completed				+17245870262		249	2017-04-25 14:58:12.481657	2017-04-25 15:02:21.505692	CAfcd50d22f3024a9d316f670832a28be1	\N	107			0	inbound	+12146922088	\N	8.20205807685852051	\N	new lead	brownlee trucki	9	\N	\N	217
2017-12-19 14:39:53.447421+00	2017-12-19 14:55:01.879959+00	7992	completed	Brandy	Franklin		+13059280754		905	2017-12-19 14:39:53.445259	2017-12-19 14:54:58.727343	CA65740e1ee238b5738449be8bd76df8b1	\N	154		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REe5065c2c4caca4bd8e2ab88aee647e0a	0	inbound	+17707665699	134	1.21889591217041016	\N	new lead	miramar  fl	13	\N	\N	379
2017-07-17 18:01:25.067898+00	2017-07-17 18:07:47.378341+00	5789	completed				+17862001960		382	2017-07-17 18:01:25.065366	2017-07-17 18:07:46.94836	CAa236877fd15f2dd82e7c7705b30cb42e	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE1087669aaff72b8888f41227f9a542a3	0	inbound	+17704009016	132	314.855052947998047	\N	new lead		13	\N	\N	381
2017-12-20 21:58:38.0939+00	2017-12-20 22:02:44.805206+00	8043	completed				+14408400630		246	2017-12-20 21:58:38.091992	2017-12-20 22:02:43.633541	CA713c276372487f1dd302cd8b20d4359b	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE944285c38b3de169c25e2a96448ffe5a	0	inbound	+18558645656	136	2.63082289695739746	\N	new lead		15	\N	\N	394
2016-09-16 17:36:11.298437+00	2016-12-09 17:06:53.905921+00	2033	completed				+12157083126		350	2016-09-16 17:36:11.296294	2016-09-16 17:42:01.65435	CAbe05ff92c9dc96e97cc54dddbb1bb604	\N	21			0	inbound	+18558021330	\N	2.0526120662689209	null	new lead		3	\N	\N	400
2016-07-27 03:49:23.976506+00	2016-07-27 13:03:37.821421+00	961	completed	Linda	Bright	Rdlake@fuse.net	+15137974599		\N	2016-07-27 03:49:23.975147	\N		25d0200e-983d-4413-94ae-eb664b99711c	\N			0	outbound	+18556311490	\N	\N	{}	new lead		1	\N	\N	407
2016-09-15 11:30:41.691121+00	2016-11-09 15:42:29.378692+00	2018	completed				+16106894331		9	2016-09-15 11:30:41.690012	2016-09-15 11:30:51.121751	CA8e6a731502ab3074a555f44d7c55e668	\N	36			0	inbound	+18554667033	\N	2.54867291450500488	null	new lead		3	\N	\N	410
2016-09-15 11:31:02.41346+00	2016-11-09 15:42:56.351365+00	2019	completed				+16106894331		11	2016-09-15 11:31:02.412531	2016-09-15 11:31:12.944785	CA4e227e05b8a34122498bc1f6030e7594	\N	37			0	inbound	+18556371303	\N	2.78739500045776367	null	new lead		3	\N	\N	410
2016-09-15 11:25:25.038966+00	2016-11-09 15:43:50.981623+00	2015	completed				+16106894331		16	2016-09-15 11:25:25.037972	2016-09-15 11:25:41.383167	CA569bcc9e512eb1d32f3952677e7589f4	\N	33			0	inbound	+18554186369	\N	2.18501996994018555	null	new lead		3	\N	\N	410
2016-09-15 11:29:13.508494+00	2016-11-09 15:46:28.724931+00	2017	missed				+16106894331		34	2016-09-15 11:29:13.507024	2016-09-15 11:29:47.942271	CA1f85a48e4a7037911968f2748496be61	\N	\N			0	inbound	+18555571474	\N	\N	null	new lead		3	\N	\N	410
2016-09-15 11:28:11.424373+00	2016-11-09 15:46:31.903338+00	2016	missed				+16106894331		48	2016-09-15 11:28:11.423386	2016-09-15 11:28:59.303027	CA997fc0e85651ea0d7f885b0512e9c2f7	\N	\N			0	inbound	+18555983849	\N	\N	null	new lead		3	\N	\N	410
2016-09-15 11:24:29.367452+00	2016-11-09 15:46:59.235273+00	2014	completed				+16106894331		9	2016-09-15 11:24:29.365498	2016-09-15 11:24:37.968432	CA4424aa7a402faac27f723535c471cb58	\N	43			0	inbound	+18556279610	\N	1.72103095054626465	null	new lead		3	\N	\N	410
2016-09-15 10:44:51.436754+00	2016-11-09 15:48:01.686107+00	2013	completed				+16106894331		10	2016-09-15 10:44:51.434369	2016-09-15 10:45:01.559048	CAefa4fd0b49e850502f8091a722ed1660	\N	60			0	inbound	+18559710949	\N	3.12175297737121582	null	new lead		3	\N	\N	410
2017-06-30 17:52:43.262871+00	2017-06-30 18:00:20.879332+00	5693	completed	Tommy	Holland	crystalann24@att.net	+16789897119		117	2017-06-30 17:52:43.261512	2017-06-30 18:00:19.567759	CAd82c8f5d79e045552ad9fabb5a35f3a0	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE1547bdfbbafb1761f7f8a16755a7e4f1	3	outbound	+17704009016	\N	337.756694078445435	{}	new lead		13	\N	\N	433
2016-11-14 18:43:41.044497+00	2016-11-14 18:59:55.948847+00	2890	completed				+18167969143		975	2016-11-14 18:43:41.04269	2016-11-14 18:59:55.704597	CA65c2f19e860e99c7b756cd01f3c1badb	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE450b30e2e0c0e8731a7b10916036612f	0	inbound	+18557240606	49	2.38839292526245117	null	new lead		1	\N	\N	435
2017-03-22 14:59:52.639351+00	2017-11-29 18:38:53.212749+00	3535	completed				+19562520911		301	2017-03-22 14:59:52.63747	2017-03-22 15:04:53.591024	CA8760f5faaf98003c131e6afe9014ca76	\N	\N			0	inbound	+12146922088	\N	4.5632939338684082	\N	new lead	lozano sergio	9	\N	\N	439
2017-06-27 15:42:18.367567+00	2017-06-27 15:46:21.023427+00	5669	completed				+17064108604		239	2017-06-27 15:42:18.365274	2017-06-27 15:46:17.679867	CA438eb9f41243af537f19f16aee896d0b	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE1a4fa048b6216ec5d629218b4bc92404	0	inbound	+17704009016	132	10.408203125	\N	new lead		13	\N	\N	441
2017-05-02 21:29:04.357081+00	2017-11-29 18:47:25.068369+00	4604	completed				+12545637737		126	2017-05-02 21:29:04.355439	2017-05-02 21:31:10.596	CAf92d67067891e928507838ea430cf1fb	\N	84		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE2da708a942f8be0498f8f8fe83d4965a	0	inbound	+19728330116	\N	12.1668028831481934	\N	new lead	wireless caller	8	\N	\N	443
2016-09-08 18:08:56.388405+00	2016-12-09 17:10:17.413434+00	1965	completed				+19084758114		183	2016-09-08 18:08:56.386821	2016-09-08 18:11:59.615957	CA302a8d1868c297d9114ae36f162ce7dd	\N	27			0	inbound	+18552716856	\N	4.9022369384765625	null	new lead		3	\N	\N	444
2017-10-31 15:07:48.197287+00	2017-10-31 15:09:37.627706+00	6879	completed				+17705132402		109	2017-10-31 15:07:48.195479	2017-10-31 15:09:37.612883	CAf32cabaf592f8d94ff403c4df4d43656	\N	150			0	inbound	+17707665732	133	18.1246650218963623	\N	new lead		13	\N	\N	448
2017-12-13 20:39:02.308223+00	2017-12-13 20:46:36.573566+00	7854	completed				+17863705308		453	2017-12-13 20:39:02.30631	2017-12-13 20:46:35.456198	CAb1d67b7c823e71346045b8eabe4a8b3e	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE34f8f2e1b06d9d2f07927c5d48b823dc	0	inbound	+18558645656	136	2.41065311431884766	\N	new lead		15	\N	\N	450
2017-07-08 16:18:53.003512+00	2017-07-08 16:20:39.726511+00	5737	completed				+18172944564		106	2017-07-08 16:18:53.001476	2017-07-08 16:20:38.851961	CA582c18b56bb2227e4f119d21cd40100d	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE80466f19d516e58b3270f31695b8a97b	0	inbound	+18177569010	124	16.6177389621734619	\N	new lead	styles by roy	12	\N	\N	451
2017-07-10 14:58:00.978371+00	2017-07-10 15:00:45.529705+00	5745	completed				+18172944564		161	2017-07-10 14:58:00.976075	2017-07-10 15:00:42.36149	CA0c98ab32d2f0312e0a06ff706827fe39	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE85c0e91e649bdf6cefe57d69383a4037	0	inbound	+18177569010	124	19.3244729042053223	\N	new lead	styles by roy	12	\N	\N	451
2017-04-21 17:55:36.455747+00	2017-11-29 18:38:53.214384+00	4188	completed				+16306264394		247	2017-04-21 17:55:36.45299	2017-04-21 17:59:43.569405	CAcf17cdc9d6b64d5efeb57d1868dc3414	\N	107			0	inbound	+12146922088	\N	7.3094937801361084	\N	new lead	chicago  il	9	\N	\N	456
2017-03-09 21:03:08.414417+00	2017-11-29 18:38:53.212003+00	3367	completed				+16306264394		167	2017-03-09 21:03:08.412479	2017-03-09 21:05:55.002824	CA0fd5cd3098ca2b10ad7f14ad3e99ff6a	\N	\N			0	inbound	+12146922088	\N	24.8826041221618652	\N	new lead	chicago  il	9	\N	\N	456
2017-07-10 14:02:40.257503+00	2017-07-10 14:07:27.49043+00	5743	completed	Termeria	Early	Termeriaearly95@gmail.com	+16789005999		24	2017-07-10 14:02:40.255801	2017-07-10 14:03:13.421334	CA4b79b3c0e96c5ef39ede33bae4da8c1c	0427608a-ae09-4db0-a1e8-374423ee28c3	153			1	outbound	+17704009016	\N	8.94703817367553711	{}	new lead		13	\N	\N	458
2017-07-10 14:11:06.876815+00	2017-07-10 14:14:49.868233+00	5744	completed	Termeria	Early		+16789005999		222	2017-07-10 14:11:06.874684	2017-07-10 14:14:49.105673	CA3370eb84981f43b7407183bba48fd100	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REc37203fba1100730b371bcf0d98751fe	0	inbound	+17704009016	132	12.2826290130615234	\N	new lead		13	\N	\N	458
2017-05-28 03:21:00.221833+00	2017-05-28 03:21:51.005455+00	5476	missed				+16823312252		51	2017-05-28 03:21:00.219681	2017-05-28 03:21:50.997545	CAa7af39e6d547c77de532c6f8e1810c19	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REda76de2144a20ee6ce957a715b077c58	0	inbound	+18177569010	124	\N	\N	new lead	torres cerenil 	12	\N	\N	464
2017-05-16 15:29:14.848457+00	2017-11-29 18:38:49.811713+00	5106	missed				+19728915612		9	2017-05-16 15:29:14.847034	2017-05-16 15:29:23.747433	CA80908ddb349492fc85844729d5ff6f69	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	wells frankie	9	\N	\N	4081
2016-07-28 14:01:40.669889+00	2017-11-29 18:31:14.616482+00	987	missed				+12622781486		48	2016-07-28 14:01:40.667103	2016-07-28 14:02:28.29795	CA8986c36b541eda015f5bf8ef72f4a511	\N	\N			0	inbound	+18556311541	\N	23.7353770732879639	null	do not contact		1	\N	\N	74
2016-09-06 22:30:09.698521+00	2016-12-10 01:01:51.440793+00	1897	completed				+16194376811		135	2016-09-06 22:30:09.696798	2016-09-06 22:32:24.383391	CA0098889289af38d80e86c5ae4db59bb4	\N	50			0	inbound	+18559693782	\N	2.1728050708770752	null	new lead		3	\N	\N	226
2016-10-06 13:18:44.996513+00	2016-12-10 01:05:18.401075+00	2210	completed				+16103266815		386	2016-10-06 13:18:44.995269	2016-10-06 13:25:11.166586	CAfa085a48cef339096f3669aecc3f4812	\N	24			0	inbound	+18557088731	\N	1.09273409843444824	null	new lead		3	\N	\N	227
2017-10-25 21:09:38.072977+00	2017-10-25 21:15:36.706604+00	6806	missed	Crayton	Hollis	Officialcranehollis@yahoo.com	+17062044765		0	2017-10-25 21:09:38.071476	2017-10-25 21:15:36.704964	CA69e600c45609557e1959f700f66cb778	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			3	outbound	+17704009016	\N	4.46466994285583496	{}	new lead		13	\N	\N	228
2017-04-24 20:13:03.899272+00	2017-11-29 18:38:49.806462+00	4261	completed				+19037380829		87	2017-04-24 20:13:03.896434	2017-04-24 20:14:31.183558	CAbfd45e7e2f3deb822113adca96447b53	\N	127			0	inbound	+12147122250	\N	3.01198601722717285	\N	new lead	cell phone   tx	9	\N	\N	229
2017-04-24 20:14:31.436332+00	2017-11-29 18:38:49.806469+00	4262	missed				+19037380829		44	2017-04-24 20:14:31.435202	2017-04-24 20:15:15.436093	CA78cf88e1200c59870fc526dee6dff8ce	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	cell phone   tx	9	\N	\N	229
2016-11-08 01:17:46.588654+00	2016-11-08 01:18:02.426945+00	2798	completed				+17048607956		15	2016-11-08 01:17:46.586982	2016-11-08 01:18:01.646636	CA305508f77be3020b0206857bf28e432c	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE97bec2b3c9672ec05af96b8a397bf14c	0	inbound	+18557240606	49	1.90897512435913086	null	new lead		1	\N	\N	470
2016-11-08 01:18:18.858934+00	2016-11-08 01:38:45.898937+00	2799	completed				+17048607956		1224	2016-11-08 01:18:18.857478	2016-11-08 01:38:42.620205	CAe99ec13fb25bcd335ebfc38531cba574	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REf0e05c20287fca5eaf5802342efd1f07	0	inbound	+18557240606	49	2.06059622764587402	null	new lead		1	\N	\N	470
2017-12-11 19:00:48.843141+00	2017-12-11 19:01:07.950429+00	7788	completed				+14044385169		19	2017-12-11 19:00:48.841398	2017-12-11 19:01:07.93416	CAc02599dd3be9662a33042025de371255	\N	154			0	inbound	+17707665699	134	1.33790016174316406	\N	new lead	hayward britten	13	\N	\N	471
2017-12-11 19:03:08.759707+00	2017-12-11 19:03:24.79577+00	7789	completed				+14044385169		16	2017-12-11 19:03:08.757814	2017-12-11 19:03:24.784695	CAd2e01eddcce0a58192b0eb59bc7fd4a2	\N	154			0	inbound	+17707665699	134	1.64751195907592773	\N	new lead	hayward britten	13	\N	\N	471
2017-11-28 22:17:41.016795+00	2017-11-28 22:20:01.060002+00	7368	completed				+19407455743		139	2017-11-28 22:17:41.014569	2017-11-28 22:19:59.938938	CAe06bf2816ecc435cb3087eedd5779924	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REd4abcc08d9cd431e9c14293cfc1122ed	0	inbound	+18177569010	124	13.1063048839569092	\N	new lead	mccoy michele	12	\N	\N	474
2017-05-11 14:22:29.442734+00	2017-11-29 18:38:49.811081+00	4998	completed				+12672351459		48	2017-05-11 14:22:29.44002	2017-05-11 14:23:17.097799	CA5dbe72ab5ade99b3691dd7b3b45c3bbb	\N	105			0	inbound	+12147122250	\N	10.8511888980865479	\N	new lead	turner haley   	9	\N	\N	480
2017-05-11 14:23:29.040672+00	2017-11-29 18:38:49.811088+00	4999	completed				+12672351459		58	2017-05-11 14:23:29.039005	2017-05-11 14:24:26.937615	CA925658a33f508689dbc8bc7fa1935667	\N	126			0	inbound	+12147122250	\N	2.06454992294311523	\N	new lead	turner haley   	9	\N	\N	480
2016-10-31 18:10:12.718095+00	2016-10-31 18:10:12.745204+00	2386	missed	Charles	Carr	Taranayy.tg@gmail.com	+12142158215		\N	2016-10-31 18:10:12.717153	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	481
2017-12-06 21:22:49.123434+00	2017-12-06 21:37:59.668605+00	7662	completed				+17138085495		907	2017-12-06 21:22:49.121469	2017-12-06 21:37:56.420636	CA0568221e49cb07e32b754213111aee52	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE800a79526055036ab8646f5ada108773	0	inbound	+18558645656	136	2.74114203453063965	\N	new lead		15	\N	\N	482
2016-11-02 23:53:39.254716+00	2016-11-02 23:53:39.296038+00	2604	missed	Roland	Singleton 	rolandn.singleton@live.com	+12818988556		\N	2016-11-02 23:53:39.253522	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	484
2017-09-04 16:51:51.766925+00	2017-09-04 16:54:21.954564+00	6251	completed				+14695636284		150	2017-09-04 16:51:51.765245	2017-09-04 16:54:21.951148	CA9960be04aa64d37b64104bcdd23a71d9	\N	146			0	inbound	+18177569010	124	15.2021448612213135	\N	new lead	farmers bra  tx	12	\N	\N	485
2017-09-03 21:18:11.240991+00	2017-09-03 21:18:33.929186+00	6245	missed				+14695636284		23	2017-09-03 21:18:11.239269	2017-09-03 21:18:33.918471	CAf2eeb8c9c9026575e88b128f8f439959	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE020be2aac4dd3cda265acfe2b165c96d	0	inbound	+18177569010	124	\N	\N	new lead	farmers bra  tx	12	\N	\N	485
2016-09-12 22:53:42.025418+00	2016-12-10 01:04:42.41379+00	2002	completed				+19519247494		104	2016-09-12 22:53:42.023603	2016-09-12 22:55:25.683141	CAce562aa0db47b73184b2f5eafef04073	\N	58			0	inbound	+18552187903	\N	1.20450997352600098	null	new lead		3	\N	\N	486
2017-05-03 16:51:13.616442+00	2017-05-03 16:52:29.808801+00	4637	completed				+12145306477		76	2017-05-03 16:51:13.614144	2017-05-03 16:52:29.161392	CA0763c27b3d8f07c9f2272c98c4c2c8bb	\N	132		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE19bf3175b42ad62cec9cdf746bc09ab8	0	inbound	+18172104002	126	10.876262903213501	\N	new lead	danielle tate	12	\N	\N	491
2016-09-28 15:42:56.160717+00	2016-12-09 17:10:17.413499+00	2093	completed				+16093063649		103	2016-09-28 15:42:56.159183	2016-09-28 15:44:38.830412	CA630c9df4e444eb3b25599564befffa60	\N	27			0	inbound	+18552716856	\N	6.27376294136047363	null	new lead		3	\N	\N	493
2017-03-21 18:43:56.057085+00	2017-11-29 18:38:53.212728+00	3521	completed				+19035132595		258	2017-03-21 18:43:56.054507	2017-03-21 18:48:13.620103	CA87a014c081d6f02b3c58434c444ece1d	\N	107			0	inbound	+12146922088	\N	7.32737088203430176	\N	new lead		9	\N	\N	496
2017-05-01 16:24:47.203293+00	2017-08-17 14:35:21.045067+00	4515	completed				+18177156481		77	2017-05-01 16:24:47.201507	2017-05-01 16:26:04.209426	CA31c9a7d9192cdb0f3545aaf25602542f	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE2390322e86df9fd7bc664963706ed27c	0	inbound	+18177569010	124	24.6507570743560791	\N	new lead	jackson kim	12	\N	\N	498
2017-11-11 03:42:50.745431+00	2017-11-11 03:42:50.8123+00	7014	missed	CHelse	Carter	gingercunningham8@gmail.com	+16786874446		\N	2017-11-11 03:42:50.743887	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	499
2017-11-04 18:23:22.193323+00	2017-11-04 18:30:23.006195+00	6934	completed	Gentry	Mosley	Gentrytmosley@gmail.com	+14045521878		78	2017-11-04 18:23:22.191509	2017-11-04 18:30:22.979678	CAfb7f67ec947a539c7056202f884cec5a	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REe0f8ed2fe72dead090d68549dbb81213	3	outbound	+17704009016	\N	345.902978897094727	{}	new lead		13	\N	\N	501
2017-06-01 20:22:42.540977+00	2017-11-29 18:38:49.814439+00	5561	missed				+19728915612		36	2017-06-01 20:22:42.539665	2017-06-01 20:23:18.338655	CA59dc51908744cbf0bc172afe3e43b9f3	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	wells frankie	9	\N	\N	4081
2016-07-28 17:51:32.108604+00	2016-07-28 18:54:01.703521+00	1011	completed	Latonia	Whitaker		+15132009759		244	2016-07-28 17:51:32.106923	2016-07-28 17:55:42.957242	CAc9583c9e763d4ec042301add16c1420d	cd89e433-4bde-4f86-9b22-8f52c2413fcd	16			1	outbound	+18556311490	\N	3.01293206214904785	{}	application submitted - autopay		1	\N	\N	20
2016-07-28 17:56:30.55297+00	2016-07-28 18:54:01.703529+00	1012	completed	Latonia	Whitaker		+15132009759		587	2016-07-28 17:56:30.551753	2016-07-28 18:06:22.797486	CA46811a5803a1b609d4e4168607b2d7c5	cd89e433-4bde-4f86-9b22-8f52c2413fcd	16			1	outbound	+18556311490	\N	2.02823591232299805	{}	application submitted - autopay		1	\N	\N	20
2016-07-28 18:07:09.537898+00	2016-07-29 13:46:34.210158+00	1013	completed	Latonia	Whitaker	twhitt72@gmail.com	+15132009759		0	2016-07-28 18:07:09.536621	2016-07-28 18:07:40.217706	CA46959cee1c2be609787c50182a51dc73	25d0200e-983d-4413-94ae-eb664b99711c	\N			1	outbound	+18556311490	\N	24.7737791538238525	{}	application submitted - autopay		1	\N	\N	20
2017-04-24 20:16:38.456551+00	2017-11-29 18:38:49.806476+00	4263	completed				+19037380829		83	2017-04-24 20:16:38.455273	2017-04-24 20:18:01.2147	CA9684042958ed3ce19d13710ab179ba86	\N	126			0	inbound	+12147122250	\N	1.17942380905151367	\N	new lead	cell phone   tx	9	\N	\N	229
2017-05-09 21:44:36.951751+00	2017-11-29 18:38:53.21552+00	4937	completed				+13476501876		37	2017-05-09 21:44:36.9476	2017-05-09 21:45:13.989861	CA75dbc4331baed0f7ad7d1339159cad37	\N	133		https://api.twilio.com/2010-04-01/Accounts/AC5422b9b221417a7a84556a92f6edc492/Recordings/RE4eabef7219387526db34c479cc6deddb	0	inbound	+12146922088	\N	1.37435698509216309	\N	new lead	money on deck	9	\N	\N	233
2017-11-10 20:14:53.791813+00	2017-11-10 20:16:05.657785+00	7009	completed				+12146010212		71	2017-11-10 20:14:53.789624	2017-11-10 20:16:05.011714	CAef53dbe9725b7b0ca3b699309480ed56	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REb46b10a14f12f18034ed2cecd199f1b5	0	inbound	+18177569010	124	8.74924302101135254	\N	new lead	hawkinson k    	12	\N	\N	234
2017-07-06 23:13:34.5783+00	2017-07-06 23:19:51.846346+00	5727	completed				+18173470424		377	2017-07-06 23:13:34.576338	2017-07-06 23:19:51.589412	CA009c662f9803ba3145b436255e447a0f	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE0ed8d79c80006aa6e0faafab487482e9	0	inbound	+18177569010	124	348.44397497177124	\N	new lead	taylor neshia	12	\N	\N	235
2017-07-05 21:18:28.284895+00	2017-07-05 21:20:37.291225+00	5718	completed				+18173470424		128	2017-07-05 21:18:28.282888	2017-07-05 21:20:36.213906	CA53cec392eb85ae2df51184503f1fc1eb	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REf2d85c7482f6c1f68c834ea31562e6ee	0	inbound	+18177569010	124	13.8358261585235596	\N	new lead	taylor neshia	12	\N	\N	235
2017-04-14 15:29:33.233621+00	2017-11-29 18:38:53.213901+00	3915	completed				+19729980478		126	2017-04-14 15:29:33.230381	2017-04-14 15:31:39.576828	CA4b19077a7f8925917aaab41001f9ac76	\N	103			0	inbound	+12146922088	\N	10.1609301567077637	\N	new lead	jennifer mckee	9	\N	\N	241
2017-04-11 21:52:19.926246+00	2017-05-17 15:41:07.224335+00	3801	completed				+12149629317		61	2017-04-11 21:52:19.923164	2017-04-11 21:53:20.783377	CA007ed048abc06c396b06492cb7b29160	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE42fefe64683df9160cababeaa77fff94	0	inbound	+18177569010	124	12.4680249691009521	\N	new lead	lewis nicole	12	\N	\N	246
2016-06-28 16:59:05.168598+00	2016-06-28 17:06:07.422845+00	594	completed				+16144196663		418	2016-06-28 16:59:05.166745	2016-06-28 17:06:07.421093	CAba528623b3c8c3e4154fcbdda215cb7e	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	1.76131987571716309	{}	new lead		1	\N	\N	249
2017-04-19 22:07:04.88693+00	2017-11-29 18:38:53.214283+00	4114	completed				+18184064696		22	2017-04-19 22:07:04.883488	2017-04-19 22:07:27.284983	CA0f7fc8d81a14d0e1d413853b36380ca4	\N	105			0	inbound	+12146922088	\N	5.74711203575134277	\N	new lead	barseghian e	9	\N	\N	430
2017-12-19 19:04:13.78292+00	2017-12-19 19:06:12.990639+00	8008	completed				+17709411200		118	2017-12-19 19:04:13.780812	2017-12-19 19:06:11.702034	CA3beb27ebffbb48d008b50b907ee1fccc	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE77c259fcbb601049fd3922d5699bdd17	0	inbound	+17704009016	132	15.5308129787445068	\N	new lead	autonation inc	13	\N	\N	502
2017-10-10 20:49:23.330657+00	2017-10-10 20:51:20.556798+00	6654	completed				+18178569069		116	2017-10-10 20:49:23.327451	2017-10-10 20:51:19.45105	CA412fa190b2518b0bbd62c4c2d9b4f809	\N	155		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REe363908d15bbcaae4686d90722d9a116	0	inbound	+18177569010	124	8.02232503890991211	\N	new lead	sanders kerry	12	\N	\N	505
2016-08-02 18:50:53.034532+00	2017-11-29 18:31:37.368425+00	1129	completed				+16614348470		39	2016-08-02 18:50:53.032866	2016-08-02 18:51:32.315824	CA3742184e3377d9e4d7d66f0c29c93d3d	\N	18		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REdc99f94f82f69bb4cf3d4ceb402311fb	0	inbound	+18555472453	\N	24.3039181232452393	null	new lead		1	\N	\N	507
2017-08-21 01:52:52.019733+00	2017-08-21 01:52:52.071639+00	6115	missed	joseph	johnson	jj70315@gmail.com	+17064362154		\N	2017-08-21 01:52:52.018266	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	509
2017-07-31 16:44:43.365691+00	2017-07-31 16:47:02.638544+00	5901	completed				+17704021572		138	2017-07-31 16:44:43.363454	2017-07-31 16:47:01.419513	CAdcf8fdad8f95b229d7f9a484eafaafea	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE063c2020337bc212458fe853c5f30d80	0	inbound	+17704009016	132	27.8374109268188477	\N	new lead		13	\N	\N	511
2017-10-23 15:13:35.015698+00	2017-10-23 15:16:48.858044+00	6784	completed				+17704021572		194	2017-10-23 15:13:35.013873	2017-10-23 15:16:48.839641	CAb9f019c0539812d25ce11736fcb241ff	\N	153			0	inbound	+17707665732	133	9.01803493499755859	\N	new lead		13	\N	\N	511
2017-10-16 19:28:26.307404+00	2017-10-16 19:31:02.325782+00	6726	completed				+17704021572		156	2017-10-16 19:28:26.305511	2017-10-16 19:31:02.304895	CA8ee0dd41b1d3cce3add51231611ee07d	\N	150			0	inbound	+17707665732	133	24.2454559803009033	\N	new lead		13	\N	\N	511
2017-10-18 17:25:36.910751+00	2017-10-18 17:31:52.572251+00	6738	missed				+17704021572		37	2017-10-18 17:25:36.90831	2017-10-18 17:26:14.308843	CA6392e33eac11a9ac37e6c09851012929	\N	\N			0	inbound	+17707665732	133	358.916522026062012	\N	new lead		13	\N	\N	511
2017-10-30 13:45:22.414299+00	2017-10-30 13:48:47.307575+00	6861	completed				+17704021572		205	2017-10-30 13:45:22.412186	2017-10-30 13:48:47.296877	CAf37b417e9a0c91700a50fd36cf02d360	\N	150			0	inbound	+17707665732	133	24.9701411724090576	\N	new lead		13	\N	\N	511
2017-10-30 14:39:50.156466+00	2017-10-30 14:42:00.510873+00	6863	completed				+17704021572		130	2017-10-30 14:39:50.154562	2017-10-30 14:42:00.494287	CA516b6485d438a2228346132a5c163fb2	\N	150			0	inbound	+17707665732	133	23.2381551265716553	\N	new lead		13	\N	\N	511
2017-10-31 15:01:52.750279+00	2017-10-31 15:03:36.63324+00	6878	completed				+17704021572		104	2017-10-31 15:01:52.748411	2017-10-31 15:03:36.61763	CA18603490d09f1364370d2ed3833f4c36	\N	150			0	inbound	+17707665732	133	19.323261022567749	\N	new lead		13	\N	\N	511
2016-11-04 19:54:46.75655+00	2016-11-04 19:58:00.918343+00	2726	completed				+13019911300		193	2016-11-04 19:54:46.755144	2016-11-04 19:58:00.087404	CAf306c980a88ebccbd938484899d3cca7	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REf6a94d8d9ab985084861ba8e4a490acb	0	inbound	+18557240606	49	1.79045915603637695	null	new lead		1	\N	\N	522
2016-11-04 20:03:06.747657+00	2016-11-04 20:15:59.119266+00	2727	completed				+13019911300		770	2016-11-04 20:03:06.745578	2016-11-04 20:15:56.386769	CA876c8a31b16b3efe245bf415111f4cf3	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE05b455424efe60cf40160c9d76023e57	0	inbound	+18557240606	49	1.81663799285888672	null	new lead		1	\N	\N	522
2016-11-18 15:46:58.88416+00	2016-11-18 16:15:16.738918+00	2943	completed				+16367245988		1696	2016-11-18 15:46:58.882683	2016-11-18 16:15:14.876077	CAa64e417511ad3efeb3794b17eb6c4e80	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE31347d55c061445b46a3c2f8eaf4a7d8	0	inbound	+18557240606	49	2.20374822616577148	null	new lead		1	\N	\N	523
2017-12-19 00:47:16.852275+00	2017-12-19 00:47:16.911426+00	7984	missed	Sharon	Barnett	Mrs.barnettalways2016@gmail.con	+14044777683		\N	2017-12-19 00:47:16.850584	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	524
2017-09-27 17:58:00.220125+00	2017-09-27 18:02:39.990314+00	6495	completed	Sharon	Barnett	817sharon.b@gmail.com	+14044777683		265	2017-09-27 17:58:00.218414	2017-09-27 18:02:38.480228	CA6db630a5e9e95a62971b2f77f6afa2eb	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REc19a1122175b5dc444ead39f21fb42ba	1	outbound	+17704009016	\N	12.2141439914703369	{}	new lead		13	\N	\N	524
2017-11-06 18:39:45.087623+00	2017-11-06 18:43:28.936405+00	6950	completed				+17068650110		224	2017-11-06 18:39:45.084561	2017-11-06 18:43:28.919563	CA89720c1c4108b611b9d508ea4badf505	\N	153			0	inbound	+17707665732	133	13.321073055267334	\N	new lead		13	\N	\N	525
2017-12-12 19:56:37.208517+00	2017-12-12 20:09:53.383627+00	7822	completed				+17862177147		793	2017-12-12 19:56:37.206691	2017-12-12 20:09:50.175205	CAdd4074f1da1b3c602259aebfbd79e05e	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE0d98f169b95a055ed62c40e45b0d2e0c	0	inbound	+18558645656	136	2.58979701995849609	\N	new lead		15	\N	\N	530
2017-10-28 07:38:23.799061+00	2017-10-28 07:38:23.85212+00	6850	missed	Jessica	Gibeault	jessababy832008@gmail.com	+17063517812		\N	2017-10-28 07:38:23.79725	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	531
2017-11-25 18:35:33.31975+00	2017-11-25 18:37:06.046059+00	7319	completed				+18179025488		92	2017-11-25 18:35:33.317254	2017-11-25 18:37:04.966514	CAd23a3f47dd15e49b92e1cc67bf2d1e5f	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REd14e9c8c79b929887565f38fd8589705	0	inbound	+18177569010	124	15.6538460254669189	\N	new lead	ward amelnde	12	\N	\N	534
2017-12-18 23:21:58.925256+00	2017-12-18 23:22:30.47769+00	7979	completed				+16824593306		31	2017-12-18 23:21:58.923726	2017-12-18 23:22:29.865688	CAe8ec002fe35544c87c7c4eff8d70e825	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE727cae28cd4aac0d26ab8964c4040933	0	inbound	+18177569010	124	7.95563316345214844	\N	new lead	euless  tx	12	\N	\N	535
2016-06-29 18:06:52.76613+00	2017-11-29 18:32:13.820963+00	657	completed	Unknown			+13303994614		144	2016-06-29 18:06:52.765111	2016-06-29 18:09:17.139508	CA2f132061c5ac5da333c5a11b94583fdf	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE1ba2103796ae4e6ee353ebe7a611842a	0	inbound	+18555983683	\N	4.15764904022216797	null	new lead		1	\N	\N	537
2016-06-29 18:07:47.821809+00	2017-11-29 18:32:13.820971+00	658	completed	Greg	Roff		+13303994614		77	2016-06-29 18:07:47.820626	2016-06-29 18:09:04.801671	CAc6e224bf6fed435a87d4aa5d6e9068d3	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REb312a2fbd7555e67b1d673cd6c3a0596	0	inbound	+18555983683	\N	13.9755420684814453	null	new lead		1	\N	\N	537
2017-08-19 13:44:36.050944+00	2017-08-19 13:45:51.227912+00	6100	completed	Sharon	Long	homesbysharonlong@gmail.com	+13345497043		54	2017-08-19 13:44:36.04933	2017-08-19 13:45:49.809425	CAd7ab759c7d2fa670c49cd2348e1efdbb	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REeb0190fd731f76e60899f611c0e1b527	1	outbound	+17704009016	\N	19.6159241199493408	{}	new lead		13	\N	\N	551
2016-10-05 17:20:18.443783+00	2016-12-10 00:57:48.461783+00	2186	completed				+18052331575		221	2016-10-05 17:20:18.4421	2016-10-05 17:23:59.712449	CA6077db8c390b9a97ec74b11634e1b3cb	\N	30			0	inbound	+18559652184	\N	1.80893182754516602	null	new lead		3	\N	\N	554
2017-04-30 20:16:11.056665+00	2017-04-30 20:16:32.635973+00	4486	missed				+13478747200		22	2017-04-30 20:16:11.05479	2017-04-30 20:16:32.62781	CAf634e461741e7361c543afabd2852b40	\N	\N			0	inbound	+18177569010	124	\N	\N	new lead	manhattan  ny	12	\N	\N	555
2017-07-20 18:58:37.07275+00	2017-07-20 19:21:11.14676+00	5820	missed				+18174562374		53	2017-07-20 18:58:37.070574	2017-07-20 18:59:29.632417	CA15d805bdcac0010c608a04d80de65d1c	\N	\N			0	inbound	+18177569010	124	1330.00603890419006	\N	new lead	cell phone   tx	12	\N	\N	557
2016-10-05 13:55:10.192947+00	2016-12-09 17:06:53.906028+00	2158	completed				+17323474845		188	2016-10-05 13:55:10.191183	2016-10-05 13:58:18.315396	CA0386c6a53186636493e2be7709cf8c30	\N	21			0	inbound	+18558021330	\N	3.11467409133911133	null	new lead		3	\N	\N	559
2017-12-28 16:02:49.318311+00	2017-12-28 16:03:44.428347+00	8136	completed	Joanna	Crawford	Jmariecrawford@gmail.com	+12138613204		45	2017-12-28 16:02:49.316494	2017-12-28 16:03:44.42608	CA3750da1c731a85c1b92cf2d503c962f3	cd009b81-ec25-40d7-a806-e428c0f41965	157			1	outbound	+17706597466	\N	9.2212519645690918	{}	new lead		14	\N	\N	561
2016-12-12 14:19:56.467376+00	2016-12-12 14:25:52.614153+00	3075	completed				+18178460206		356	2016-12-12 14:19:56.465332	2016-12-12 14:25:51.971725	CAf97dcbf3874793b4bfc33ad8233ebf1c	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE3ff4ace601f625b643703f27febbf23e	0	inbound	+18557240606	49	2.87988781929016113	null	new lead		1	\N	\N	564
2016-12-13 15:14:28.178223+00	2016-12-13 15:16:45.631771+00	3078	completed				+18178460206		137	2016-12-13 15:14:28.176628	2016-12-13 15:16:44.950653	CAc80269b8b57dbe944ce94b843b146dd5	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE81f99936c94cfc7ceca9c78de63115ba	0	inbound	+18557240606	49	1.87262606620788574	null	new lead		1	\N	\N	564
2017-04-09 22:55:47.219519+00	2017-11-29 18:38:53.213645+00	3757	completed				+19728915612		226	2017-04-09 22:55:47.216098	2017-04-09 22:59:33.302818	CA05020965ffb529e5278fb02204e631e6	\N	107			0	inbound	+12146922088	\N	2.10037994384765625	\N	new lead	wells frankie	9	\N	\N	4081
2016-06-28 12:53:06.902095+00	2016-06-28 12:56:02.448772+00	570	completed				+16144196663		171	2016-06-28 12:53:06.900729	2016-06-28 12:56:02.447134	CA2fea07f55be8aad92fc1a382ddba2802	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	1.41220307350158691	{}	new lead		1	\N	\N	249
2016-12-05 15:32:25.570286+00	2016-12-05 15:54:52.877579+00	3039	completed				+18178460206		1345	2016-12-05 15:32:25.568433	2016-12-05 15:54:50.518623	CA453fa0365773ba216ef1e35911597171	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE284a2ab6110fab142bebeedc68535173	0	inbound	+18557240606	49	2.25354790687561035	null	new lead		1	\N	\N	564
2016-12-06 14:49:10.448712+00	2016-12-06 14:50:04.553731+00	3048	completed				+18178460206		53	2016-12-06 14:49:10.446248	2016-12-06 14:50:03.670926	CA2076ce0bb312c75fb2f9eb00815bdf7c	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE07a49aae06db5df166edfd21d3657816	0	inbound	+18557240606	49	1.86063194274902344	null	new lead		1	\N	\N	564
2016-12-06 14:50:09.720249+00	2016-12-06 14:52:11.67726+00	3049	completed				+18178460206		121	2016-12-06 14:50:09.718715	2016-12-06 14:52:11.179648	CA0588e058bd7ca06b1ceb604e1698b382	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE1f0e04c3ebfe85f00ab435733ea1f9fd	0	inbound	+18557240606	49	2.68793392181396484	null	new lead		1	\N	\N	564
2017-10-04 16:32:39.075736+00	2017-10-04 16:33:54.598281+00	6577	completed	Lindq	Bell	Wickedness1257@gmail.com	+17069496742		54	2017-10-04 16:32:39.074026	2017-10-04 16:33:53.326251	CAb0859dcfead43a8fce8084645a0b78bc	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REd68d8fb1c351e9ad8df7b883dbaceb56	1	outbound	+17704009016	\N	19.837244987487793	{}	new lead		13	\N	\N	577
2017-11-07 22:26:09.365121+00	2017-11-07 22:32:33.379065+00	6965	missed				+17069737123		56	2017-11-07 22:26:09.362935	2017-11-07 22:27:05.354576	CA37c28d0fa00ef2b06822cf32889d4029	\N	\N			0	inbound	+17707665732	133	367.321351051330566	\N	new lead		13	\N	\N	582
2016-08-18 20:17:12.550603+00	2016-08-23 12:03:32.115854+00	1590	missed	Jessica	Bran	jbran01@yahoo.com	+16619023652		\N	2016-08-18 20:17:12.549198	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - autopay		1	\N	\N	616
2017-11-25 14:39:49.332158+00	2017-11-25 14:39:49.711331+00	7279	missed				+17702978700		0	2017-11-25 14:39:49.330739	2017-11-25 14:39:49.702768	CAc30a2ff14a1671918f928f99554cb91f	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2016-09-16 19:39:47.041573+00	2016-12-10 01:01:00.200102+00	2035	completed				+16199558157		88	2016-09-16 19:39:47.039807	2016-09-16 19:41:14.658395	CAf8abb57c71afdec75475c06b2ba4837c	\N	57			0	inbound	+18557860909	\N	8.44342803955078125	null	new lead		3	\N	\N	688
2016-10-05 15:17:23.69658+00	2016-11-09 15:46:28.72499+00	2170	completed				+13019397722		83	2016-10-05 15:17:23.695334	2016-10-05 15:18:47.019756	CA64e03383cd8ea3a818c9ef37eae397a6	\N	40			0	inbound	+18555571474	\N	2.24636387825012207	null	new lead		3	\N	\N	689
2017-05-31 14:28:45.598154+00	2017-08-17 14:35:21.045391+00	5520	completed				+13253078626		251	2017-05-31 14:28:45.595736	2017-05-31 14:32:56.980519	CAe8e5f7f1e8b970daf8602afdbb9dafd8	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE3cd7db0bb6a00a29381981a9b2999869	0	inbound	+18177569010	124	9.57062792778015137	\N	new lead	hearn sheryl   	12	\N	\N	692
2017-12-30 16:59:03.392282+00	2017-12-30 17:00:02.266249+00	8163	completed	Xena	Cooper	Xenacooper21@yahoo.com	+17196888498		15	2017-12-30 16:59:03.390579	2017-12-30 16:59:28.449474	CAd564ff569cf4a90d9e95963fe41d4c25	cd009b81-ec25-40d7-a806-e428c0f41965	157			1	outbound	+17706597466	\N	9.22257113456726074	{}	new lead		14	\N	\N	693
2017-11-11 18:00:29.430965+00	2017-11-11 18:01:29.626617+00	7022	completed				+18177031615		59	2017-11-11 18:00:29.428933	2017-11-11 18:01:28.531208	CAd397de6ad3f8b66dbfdece2dfcbd3523	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE73dbffbaddfdd3564ccca78b46d0b33f	0	inbound	+18177569010	124	7.94957709312438965	\N	new lead	horn rebecca	12	\N	\N	695
2017-03-27 18:41:25.779671+00	2017-11-29 18:31:10.262652+00	3593	missed				+16143741536		25	2017-03-27 18:41:25.77795	2017-03-27 18:41:50.984663	CA25a7695ff4918447824b6ef17747332a	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REe17d24a636999a6392b88d46039e7aa7	0	inbound	+18556311490	\N	\N	\N	new lead		1	\N	\N	700
2017-03-27 18:59:57.633238+00	2017-11-29 18:31:10.26266+00	3594	missed				+16143741536		29	2017-03-27 18:59:57.631337	2017-03-27 19:00:26.317641	CA51cf27daf34a99b0771ca6c3d3f7da62	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REc4180f67122cb4312ce4e97cf9d4ca94	0	inbound	+18556311490	\N	\N	\N	new lead		1	\N	\N	700
2017-04-22 13:29:50.566221+00	2017-11-29 18:38:53.214405+00	4207	completed				+19549139898		156	2017-04-22 13:29:50.564008	2017-04-22 13:32:26.064163	CAac1a5e4f375ea7e5674e91342aa1d523	\N	\N			0	inbound	+12146922088	\N	7.14711093902587891	\N	new lead	wireless caller	9	\N	\N	701
2016-10-04 12:39:30.13233+00	2016-12-09 17:06:53.90597+00	2137	completed				+12158678441		383	2016-10-04 12:39:30.130314	2016-10-04 12:45:53.210746	CAe90e8a849032bf2848cdb3cda5aef448	\N	21			0	inbound	+18558021330	\N	2.93647599220275879	null	new lead		3	\N	\N	703
2017-05-10 17:57:45.756772+00	2017-11-29 18:38:49.810846+00	4964	completed				+18172981903		257	2017-05-10 17:57:45.755507	2017-05-10 18:02:02.582283	CAa07e2b520b9a200682b2e537871aef09	\N	105			0	inbound	+12147122250	\N	5.38334894180297852	\N	new lead	klein calvin	9	\N	\N	707
2017-06-17 18:12:33.909982+00	2017-06-24 13:45:04.893916+00	5598	completed	Charlene	Glaze	charlenecleveland@72gmail.com	+17623388570		37	2017-06-17 18:12:33.907969	2017-06-17 18:19:00.276167	CAc86876aad8ea3922f0423915c9bc17ae	0427608a-ae09-4db0-a1e8-374423ee28c3	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REac05290dab2d26ea7663503f7cf25903	3	outbound	+17704009016	\N	352.801442861557007	{}	new lead		13	\N	\N	717
2017-09-14 21:27:12.736188+00	2017-09-14 21:29:50.468806+00	6355	completed	Samantha	Robinson	samrobinson227@gmail.com	+16787778414		149	2017-09-14 21:27:12.734646	2017-09-14 21:29:50.447989	CA7029e9255bfdad2af39f4125cd8e2f42	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE3f04a9f09ee289ef7c628fe7ee5d2b78	1	outbound	+17704009016	\N	6.53351306915283203	{}	new lead		13	\N	\N	718
2016-11-04 17:35:15.738509+00	2016-11-04 17:35:15.772135+00	2712	missed	Cynthia 	Denson	dcdenson@gmail.com	+18328771985		\N	2016-11-04 17:35:15.73683	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	723
2017-03-23 23:46:00.910575+00	2017-11-29 18:38:53.212895+00	3569	completed				+13059345552		260	2017-03-23 23:46:00.908773	2017-03-23 23:50:21.400542	CA62a33862eab11d735b8c345fc9d19410	\N	107			0	inbound	+12146922088	\N	5.76789212226867676	\N	new lead	wittus jared   	9	\N	\N	724
2016-11-01 18:49:38.21391+00	2016-11-01 19:07:55.801853+00	2488	completed				+14694101216		1094	2016-11-01 18:49:38.212534	2016-11-01 19:07:52.588019	CAfdf769ae47604c6bcb63d43414b6dfc7	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE77407e10167ba5ac4538ac8ca2446000	0	inbound	+18557240606	49	2.95603585243225098	null	new lead		1	\N	\N	725
2017-03-14 16:57:26.87493+00	2017-11-29 18:38:53.212211+00	3418	completed				+12142452003		283	2017-03-14 16:57:26.872603	2017-03-14 17:02:10.268669	CAecfa7aa9826ffbf4796a0298a6211f82	\N	99			0	inbound	+12146922088	\N	11.2302999496459961	\N	new lead	guillory d	9	\N	\N	726
2017-03-14 17:18:23.487501+00	2017-11-29 18:38:53.212218+00	3419	completed				+12142452003		128	2017-03-14 17:18:23.484117	2017-03-14 17:20:31.361735	CAe4d94a428470b49fad3b2ff6084d164c	\N	\N			0	inbound	+12146922088	\N	8.89437294006347656	\N	new lead	guillory d	9	\N	\N	726
2016-11-13 02:28:48.6401+00	2016-11-13 02:29:23.214932+00	2882	completed				+17709009582		34	2016-11-13 02:28:48.638642	2016-11-13 02:29:22.939415	CAfd77a2f474184b062494d00838754771	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REbcd674b32c3992d3a3a61c16ec15e881	0	inbound	+18557240606	49	1.88709092140197754	null	new lead		1	\N	\N	752
2016-10-07 20:03:24.267651+00	2016-12-10 01:05:18.401123+00	2236	completed				+16109482982		541	2016-10-07 20:03:24.265843	2016-10-07 20:12:25.290018	CA8b3aff438c61fab0d88b620e3c5f94a3	\N	24			0	inbound	+18557088731	\N	0.904031038284301758	null	new lead		3	\N	\N	753
2016-10-07 20:19:39.715619+00	2016-12-10 01:05:18.40113+00	2237	completed				+16109482982		139	2016-10-07 20:19:39.71407	2016-10-07 20:21:59.01777	CA5fc7e7aa2b952c50835accd7ab6b70a5	\N	24			0	inbound	+18557088731	\N	1.6078789234161377	null	new lead		3	\N	\N	753
2017-06-01 15:03:22.021814+00	2017-11-29 18:38:49.814338+00	5546	completed				+18177707586		304	2017-06-01 15:03:22.019738	2017-06-01 15:08:26.178977	CAd3a406d3ec4a1f33d7095ec41b9ef226	\N	107			0	inbound	+12147122250	\N	5.77804088592529297	\N	new lead	terrill	9	\N	\N	754
2016-08-15 15:11:28.218432+00	2017-11-29 18:31:10.262185+00	1491	completed	Louisa	DICKERSON	DANIDICKERSON@HOTMAIL.COM	+15135604019		94	2016-08-15 15:11:28.217074	2016-08-15 15:13:01.826993		\N	16			0	outbound	+18556311490	\N	\N	null	application submitted - credit union		1	\N	\N	757
2016-08-15 19:39:22.729321+00	2016-08-15 19:46:40.392691+00	1511	completed	Louisa	DICKERSON		+15135604019		437	2016-08-15 19:39:22.727893	2016-08-15 19:46:39.494924	CAd6216c216f1ef3474fe6d7b9ea5c5bc1	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REc4d53ffb1fed9eaae3ce8e74a2ae6df7	0	inbound	+18559694001	70	4.8925788402557373	null	application submitted - credit union		1	\N	\N	757
2016-08-10 13:36:52.377707+00	2017-11-29 18:31:10.262136+00	1377	missed				+15135604019		78	2016-08-10 13:36:52.376427	2016-08-10 13:38:10.839149	CA3887a646305940cdf690ce3e1eec21c8	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REc476fb8321bfbc63053712c7fc6c2a74	0	inbound	+18556311490	\N	31.735529899597168	null	application submitted - credit union		1	\N	\N	757
2017-08-25 12:28:15.03737+00	2017-08-25 12:28:15.555653+00	6156	missed				+17069498687		1	2017-08-25 12:28:15.035187	2017-08-25 12:28:15.546574	CAed99f8084ab6e7cd28cd27273ad4727b	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	763
2017-04-21 15:01:35.814371+00	2017-11-29 18:38:49.806124+00	4174	completed				+12149574456		89	2017-04-21 15:01:35.812352	2017-04-21 15:03:05.134694	CA1745ded62ae3243f17bcaccb53dc8028	\N	127			0	inbound	+12147122250	\N	1.07994508743286133	\N	new lead	rushing stan   	9	\N	\N	764
2017-04-21 15:03:32.313888+00	2017-11-29 18:38:49.806131+00	4175	completed				+12149574456		52	2017-04-21 15:03:32.312502	2017-04-21 15:04:23.906991	CA05bf9218180db1f50d3c6e0d26b0bd3a	\N	107			0	inbound	+12147122250	\N	6.54839301109313965	\N	new lead	rushing stan   	9	\N	\N	764
2017-09-11 17:36:14.42299+00	2017-09-11 17:37:35.432941+00	6315	completed				+18173507955		80	2017-09-11 17:36:14.420575	2017-09-11 17:37:34.379127	CAa1588d8b3dc824194f04306d44603721	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE14f4a8d4718bb33dfd5d26dfcc984a2e	0	inbound	+18177569010	124	40.5718939304351807	\N	new lead	hurst detosha	12	\N	\N	767
2017-10-24 22:10:20.118294+00	2017-10-24 22:11:45.652463+00	6795	completed				+14695738444		85	2017-10-24 22:10:20.116084	2017-10-24 22:11:44.806012	CA580bd52f256b382e5e7e3d2656ee20bf	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE4a7e7785725c056bf60e45117fbad35c	0	inbound	+18177569010	124	11.5445358753204346	\N	new lead	young mary	12	\N	\N	768
2017-05-09 18:27:02.192336+00	2017-11-29 18:38:49.810633+00	4918	completed				+13378526507		71	2017-05-09 18:27:02.188801	2017-05-09 18:28:13.499397	CA9a47d43f5b0cfb15aa45f10f1cca0e9b	\N	107			0	inbound	+12147122250	\N	8.14810919761657715	\N	new lead	wireless caller	9	\N	\N	770
2016-08-23 14:15:03.579666+00	2017-01-27 21:12:23.813575+00	1668	completed				+15702356004		66	2016-08-23 14:15:03.578392	2016-08-23 14:16:09.80442		\N	\N			0	outbound	+18555343978	48	\N	null	do not contact		1	\N	\N	775
2016-08-23 13:05:58.445574+00	2017-11-29 18:31:56.600154+00	1665	missed				+15702356004		8	2016-08-23 13:05:58.444014	2016-08-23 13:06:06.246796	CAac660e77ee1d97f398215ecc2fd3a060	\N	\N			0	inbound	+18556311397	\N	\N	null	do not contact		1	\N	\N	775
2017-07-29 18:26:24.797721+00	2017-07-29 18:29:55.561583+00	5882	completed	Jeffery	Maddox	Jeffmaddox1234@gmail.com	+14708928200		200	2017-07-29 18:26:24.796131	2017-07-29 18:29:54.28788	CA8600daada62f29a319a71f86d2e521e2	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REbf2926f44aa5b48e5680eaf3e5741d4f	1	outbound	+17704009016	\N	9.29642009735107422	{}	new lead		13	\N	\N	776
2017-08-01 14:53:29.510415+00	2017-08-01 14:58:27.221756+00	5909	completed	Jeffery	Maddox		+14708928200		297	2017-08-01 14:53:29.508634	2017-08-01 14:58:26.04748	CA1688815b552426548279bd08786a598d	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE812b51b6fe4f3c5fcce100ed594131e1	0	inbound	+17704009016	132	11.1453778743743896	\N	new lead		13	\N	\N	776
2017-08-18 13:10:04.535224+00	2017-08-18 13:13:59.013123+00	6089	completed	Lportia	Haynes	haynes.portia06@gmail.com	+16789974566		228	2017-08-18 13:10:04.533692	2017-08-18 13:13:58.536044	CA68237ee12b53724a63465ca6059b9362	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE6f6a646018fc0aba8e02a1e3b8b71f50	1	outbound	+17704009016	\N	5.64206099510192871	{}	new lead		13	\N	\N	779
2017-09-29 18:15:58.085642+00	2017-09-29 18:18:46.313672+00	6538	completed				+16787692874		168	2017-09-29 18:15:58.083523	2017-09-29 18:18:46.293594	CA4b7a6002288ad7de3efb365bd5c83626	\N	154			0	inbound	+17707665699	134	1.11256098747253418	\N	new lead		13	\N	\N	780
2017-10-11 16:00:19.237686+00	2017-10-11 16:02:55.368491+00	6661	completed	Dana	Jones	Jonesdana392@gmail.com	+17062481951		147	2017-10-11 16:00:19.23626	2017-10-11 16:02:54.078184	CAdb627bcae239f95799d66cf5e7a7b36f	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REae2cebabcd87bbb3a878948b6dba3820	1	outbound	+17704009016	\N	7.66220307350158691	{}	new lead		13	\N	\N	781
2017-10-11 16:00:20.981065+00	2017-10-11 16:06:36.367673+00	6662	missed	Dana	Jones	Jonesdana392@gmail.com	+17062481951		20	2017-10-11 16:00:20.979563	2017-10-11 16:06:36.364889	CAbdfdf402d12cc5c483d59e6a06b46ba9	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			3	outbound	+17704009016	\N	352.096223831176758	{}	new lead		13	\N	\N	781
2016-06-29 14:49:37.425887+00	2017-11-29 18:32:13.820842+00	632	completed	Unknown			+13307873646		15	2016-06-29 14:49:37.424024	2016-06-29 14:49:52.913657	CA1c3f1f649beeadb0fc08b3839b9d7e9a	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE43a87831e20536e4d343f0bc48d43910	0	inbound	+18555983683	\N	0.63622283935546875	null	new lead		1	\N	\N	784
2016-06-29 14:50:09.461837+00	2017-11-29 18:32:13.820849+00	633	completed	Unknown			+13307873646		59	2016-06-29 14:50:09.460805	2016-06-29 14:51:08.303148	CA83aaceaa5f9c3688b23d0486b3c81fe5	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REb5e6fd7e0fef5ad15e8970fba3127287	0	inbound	+18555983683	\N	0.594949007034301758	null	new lead		1	\N	\N	784
2016-06-29 15:15:21.73529+00	2016-06-29 15:16:58.906143+00	642	completed				+13307873646		92	2016-06-29 15:15:21.733152	2016-06-29 15:16:58.904811	CA14dce4b5d88150b81998375138acea1b	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.62296485900878906	{}	new lead		1	\N	\N	784
2016-06-30 18:35:47.780095+00	2016-06-30 18:36:41.501307+00	682	completed				+13307873646		49	2016-06-30 18:35:47.77888	2016-06-30 18:36:41.500141	CA99b45daccb8c488e4a9531dbd2fdda28	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.60466694831848145	{}	new lead		1	\N	\N	784
2016-06-29 14:51:13.462611+00	2017-11-29 18:32:13.820856+00	634	completed	Unknown			+13307873646		17	2016-06-29 14:51:13.461563	2016-06-29 14:51:30.040884	CA528ac70f04f5029778a7ce4d22bd4641	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE4126380510603c1c9a0b2777275ee629	0	inbound	+18555983683	\N	0.856472969055175781	null	new lead		1	\N	\N	784
2016-06-29 14:51:34.671212+00	2017-11-29 18:32:13.820864+00	635	completed	Unknown			+13307873646		29	2016-06-29 14:51:34.670146	2016-06-29 14:52:03.938873	CAdd6159566587d7632819f738582f1532	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE94a52deb4a71087625217dc4fcd5ab5b	0	inbound	+18555983683	\N	14.1192209720611572	null	new lead		1	\N	\N	784
2016-06-29 14:52:11.510829+00	2017-11-29 18:32:13.820871+00	636	completed	Unknown			+13307873646		22	2016-06-29 14:52:11.509803	2016-06-29 14:52:33.793723	CAbcc336dad9d19e3d7fe20383e6847516	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE362c6586ffb40f17ddc90594f27371d5	0	inbound	+18555983683	\N	4.55600094795227051	null	new lead		1	\N	\N	784
2016-06-29 14:52:47.582719+00	2017-11-29 18:32:13.820878+00	637	completed	Unknown			+13307873646		37	2016-06-29 14:52:47.581798	2016-06-29 14:53:25.056329	CA14d8f046e1579dd80079530bd598cd48	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REb058e8f8226b13df236173a36423427d	0	inbound	+18555983683	\N	6.64653611183166504	null	new lead		1	\N	\N	784
2016-06-29 14:53:30.271321+00	2017-11-29 18:32:13.820885+00	638	completed	Unknown			+13307873646		118	2016-06-29 14:53:30.270057	2016-06-29 14:55:28.434845	CAed3000d826a9d9ce812bfe5fda424588	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE1e470d545663a064f3dc181fd6403fb2	0	inbound	+18555983683	\N	0.536824941635131836	null	new lead		1	\N	\N	784
2016-06-29 14:55:32.963738+00	2017-11-29 18:32:13.820892+00	639	completed	Sean	Rizzo		+13307873646		40	2016-06-29 14:55:32.962708	2016-06-29 14:56:12.863336	CAedd485dc18a91e3682e4767ce74bd9d8	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REa57cfd537ca82d3113a219efe26d251f	0	inbound	+18555983683	\N	13.9080212116241455	null	new lead		1	\N	\N	784
2016-06-30 17:03:45.666467+00	2017-11-29 18:32:13.821112+00	680	completed	Shawn	Razo		+13307873646		35	2016-06-30 17:03:45.665003	2016-06-30 17:04:20.382686	CAe8060816834fc35085dbd8135881b15e	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REdc7e4104bfb07750f634780c192e743f	0	inbound	+18555983683	\N	13.9244461059570312	null	new lead		1	\N	\N	784
2017-01-13 21:15:20.125799+00	2017-11-29 18:31:37.369344+00	3120	missed				+16614296355		89	2017-01-13 21:15:20.123931	2017-01-13 21:16:49.545687	CAdce737183664c784e5275fe1809618a1	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REc83775c4e07bef450ef4d6160f4c8678	0	inbound	+18555472453	\N	32.104133129119873	null	new lead		1	\N	\N	785
2016-10-29 05:19:15.846201+00	2017-11-29 18:31:37.369231+00	2367	missed				+16614296355		16	2016-10-29 05:19:15.844833	2016-10-29 05:19:32.135635	CAc51eae12297ba93cd4322732f6e3460e	\N	\N			0	inbound	+18555472453	\N	\N	null	new lead		1	\N	\N	785
2017-10-29 14:49:24.171746+00	2017-10-29 14:56:22.983299+00	6856	completed	Yailma	Genez	ygenez@hotmail.com	+14706295746		70	2017-10-29 14:49:24.170145	2017-10-29 14:56:22.953126	CA405d80b8c67dc4814df0e922ce5ecdcd	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REfaf0128d519add7f6afe862bc6b11f02	3	outbound	+17704009016	\N	346.216536998748779	{}	new lead		13	\N	\N	795
2017-10-29 15:03:37.652383+00	2017-10-29 15:09:43.31816+00	6857	missed	Yailma	Genez		+14706295746		36	2017-10-29 15:03:37.650554	2017-10-29 15:04:13.768277	CAf9f807d9305d228d310b927e3a57afdb	\N	\N			0	inbound	+17704009016	132	\N	\N	new lead		13	\N	\N	795
2016-06-27 13:43:46.229006+00	2016-06-27 13:44:39.273407+00	486	completed	Richard	Garwood	beau06wood@yahoo.com	+16148932992		13	2016-06-27 13:43:46.22803	2016-06-27 13:44:16.19716	CA95f960e33f20fd3b54bc8b4afd4029bf	d33a481e-e0af-47ac-9f90-260f20b69de5	\N			1	outbound	+18552959002	\N	14.6760361194610596	{}	new lead		1	\N	\N	797
2016-06-27 20:58:14.584299+00	2016-06-27 20:59:19.314439+00	556	completed				+16148932992		61	2016-06-27 20:58:14.583237	2016-06-27 20:59:19.313465	CAe5420b0ae78e64ad9304a8b619399fd5	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	1.44435691833496094	{}	new lead		1	\N	\N	797
2016-06-28 12:57:20.334886+00	2016-06-28 12:58:36.604271+00	571	completed				+16148932992		72	2016-06-28 12:57:20.333706	2016-06-28 12:58:36.602774	CA655c9efc0357f7c9618eee8208dc0421	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	1.29965400695800781	{}	new lead		1	\N	\N	797
2016-06-28 13:10:39.396607+00	2016-06-28 13:16:58.00648+00	574	completed				+16148932992		374	2016-06-28 13:10:39.39574	2016-06-28 13:16:58.005331	CA2e6d573e1ed30a1941d9350ff961f6f1	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	1.50064682960510254	{}	new lead		1	\N	\N	797
2016-06-28 12:22:47.740608+00	2017-11-29 18:31:41.490164+00	566	completed	Unknown			+16148932992		45	2016-06-28 12:22:47.738373	2016-06-28 12:23:32.863899	CAe0775fa2d1585e2fb342549ab89c9a89	\N	\N			0	inbound	+18552959002	\N	\N	null	new lead		1	\N	\N	797
2016-06-28 12:58:04.520689+00	2017-11-29 18:31:41.490171+00	572	completed	Richard	Garwood		+16148932992		44	2016-06-28 12:58:04.519688	2016-06-28 12:58:48.237758	CA25dc09b92f1d50a5a86589f89ae18a6b	\N	\N			0	inbound	+18552959002	\N	\N	null	new lead		1	\N	\N	797
2016-06-28 12:59:05.818714+00	2017-11-29 18:31:41.490178+00	573	completed	Richard	Garwood		+16148932992		57	2016-06-28 12:59:05.817795	2016-06-28 13:00:03.302299	CAceee50e823d05001806daad8c0a52df3	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REc8cdc6866cdc193f95e28d83ccd102f8	0	inbound	+18552959002	\N	\N	null	new lead		1	\N	\N	797
2017-04-26 18:45:16.136876+00	2017-11-29 18:38:53.214603+00	4335	completed				+17607923214		528	2017-04-26 18:45:16.135463	2017-04-26 18:54:04.058647	CAcf1870061fe5d1215b26c95cd3d9b4c4	\N	133			0	inbound	+12146922088	\N	4.94160890579223633	\N	new lead	larry shaver	9	\N	\N	798
2016-11-06 00:07:31.24398+00	2016-11-06 00:08:05.393553+00	2765	completed				+19197231207		34	2016-11-06 00:07:31.2423	2016-11-06 00:08:04.755774	CA825c3b06f32696a4e501b943be89638f	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REddc5b305ce76c2c4757b8d27f2f7f18e	0	inbound	+18557240606	49	1.51919913291931152	null	new lead		1	\N	\N	799
2017-12-29 18:32:58.928922+00	2017-12-29 18:34:36.292581+00	8154	completed				+14046210085		97	2017-12-29 18:32:58.926954	2017-12-29 18:34:35.585763	CAdee5749418a4a1eaa07529594b057675	\N	157		https://api.twilio.com/2010-04-01/Accounts/ACbd7756819f4882feb347788ad7959655/Recordings/REa97d75812c29d3dea1574c85896329f8	0	inbound	+17706597466	137	7.64679694175720215	\N	new lead		14	\N	\N	804
2016-06-12 17:55:00.170108+00	2017-11-29 18:31:05.368882+00	407	other	Unknown			+16612655534		11	2016-06-12 17:55:00.167768	2016-06-12 17:55:11.640265	CA4024fcf49a45b71d123d9d793d25d550	\N	\N			0	inbound	+18557824539	\N	\N	null	new lead		1	\N	\N	816
2016-05-23 12:08:21.455824+00	2017-11-29 18:31:05.368829+00	166	completed	Unknown			+16612655534		319	2016-05-23 12:08:21.453931	2016-05-23 12:13:40.077654	CAe6e96cf2718ab823923847603860a090	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE1dbe21b0fd9e6dbe9e954c00b466b289	0	inbound	+18557824539	\N	\N	null	new lead		1	\N	\N	816
2017-05-22 17:36:36.430117+00	2017-11-29 18:38:49.812614+00	5286	completed				+18009150927		46	2017-05-22 17:36:36.427841	2017-05-22 17:37:22.14145	CA8efdab66d61579d72786c9bbaaf22884	\N	125			0	inbound	+12147122250	\N	1.95433521270751953	\N	new lead	800 service	9	\N	\N	828
2017-11-08 18:56:49.387641+00	2017-11-08 19:03:45.0138+00	6979	unanswered	Jodi	Freeman	Jodi_freeman@ymail.com	+17064360740		66	2017-11-08 18:56:49.386029	2017-11-08 19:03:36.369384	CAda1267b50413a57c1d4bd4fc600d4d4f	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			3	outbound	+17704009016	\N	336.929187059402466	{}	new lead		13	\N	\N	833
2017-04-20 18:45:51.157216+00	2017-11-29 18:38:49.80601+00	4145	completed				+18178061800		77	2017-04-20 18:45:51.15545	2017-04-20 18:47:07.869153	CAf3d2fac454a30277f81932cadc263816	\N	127			0	inbound	+12147122250	\N	1.95996308326721191	\N	new lead	united special	9	\N	\N	834
2017-12-08 20:35:06.842856+00	2017-12-08 20:48:57.708633+00	7728	completed				+18474095349		828	2017-12-08 20:35:06.840706	2017-12-08 20:48:54.601803	CAd37fb77b15e769520906996ab8e1ce0a	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REfa186b5ec840873bb6431ad7b9465352	0	inbound	+18558645656	136	2.34392690658569336	\N	new lead		15	\N	\N	835
2017-12-12 20:54:47.440776+00	2017-12-12 21:02:27.238456+00	7824	completed				+18474095349		459	2017-12-12 20:54:47.439071	2017-12-12 21:02:26.05932	CAd2392bd8dc05cec2079ccbcaaeb29447	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE662d4bd999670e3bc5becadb08bf3d56	0	inbound	+18558645656	136	2.80149984359741211	\N	new lead		15	\N	\N	835
2017-08-28 19:12:08.120781+00	2017-08-28 19:14:30.206467+00	6186	completed	Sarah	Reneau	Sarahannreneau@gmail.com	+17707437977		130	2017-08-28 19:12:08.118782	2017-08-28 19:14:30.151791	CA74dab70760f7644c36d060247ffcbc18	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REa512ca30de32d342794ac05552a0472f	1	outbound	+17704009016	\N	8.03695797920227051	{}	new lead		13	\N	\N	836
2017-06-02 23:02:10.606967+00	2017-08-17 14:35:21.045428+00	5570	completed				+12146252217		406	2017-06-02 23:02:10.605046	2017-06-02 23:08:56.602518	CAf4d9e798d998a106eb0b391d49291e14	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE127373cb51cff75aa82346eeaa2b559e	0	inbound	+18177569010	124	50.1112849712371826	\N	new lead	anne kail	12	\N	\N	838
2017-08-20 11:08:33.314675+00	2017-08-20 11:08:33.366388+00	6112	missed	Christina	Mancle	christinamancle@gmail.com	+16788267815		\N	2017-08-20 11:08:33.313121	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	839
2017-08-30 22:42:09.624743+00	2017-08-30 22:51:52.400158+00	6209	completed	Christina	Mancle	Christinamancle@gmail.com	+16788267815		34	2017-08-30 22:42:09.623302	2017-08-30 22:48:21.105949	CA35f4896ca6ddd279053126a07db756cf	0427608a-ae09-4db0-a1e8-374423ee28c3	153			3	outbound	+17704009016	\N	337.019094944000244	{}	new lead		13	\N	\N	839
2017-04-12 14:19:36.100691+00	2017-11-29 18:38:53.213794+00	3808	completed				+19404533788		34	2017-04-12 14:19:36.098916	2017-04-12 14:20:10.530118	CA57b29d11f4c423a65e9908a8ff35d55b	\N	105			0	inbound	+12146922088	\N	5.41446089744567871	\N	new lead		9	\N	\N	841
2017-05-01 12:27:50.735973+00	2017-11-29 18:38:49.80755+00	4488	completed				+18104594979		70	2017-05-01 12:27:50.733431	2017-05-01 12:29:00.640355	CA9609926f2701c449253fca571e4a074b	\N	127			0	inbound	+12147122250	\N	1.07671308517456055	\N	new lead	barney andy	9	\N	\N	849
2016-06-28 19:05:17.95237+00	2016-06-28 19:08:44.707911+00	617	completed				+16144196663		201	2016-06-28 19:05:17.950749	2016-06-28 19:08:44.706779	CA356b55fd7b805cd758bcc82b75164917	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	1.99457597732543945	{}	new lead		1	\N	\N	249
2017-11-08 23:55:38.677606+00	2017-11-09 00:17:52.754754+00	6985	missed				+16822502105		40	2017-11-08 23:55:38.675271	2017-11-08 23:56:18.610041	CA44716fa9e232fd44a39ecf47795d07cb	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE2c38a16cb4dd19f0d552122832af7ce7	0	inbound	+18177569010	124	1312.27163004875183	\N	new lead	oxford house je	12	\N	\N	882
2017-04-28 17:16:52.031225+00	2017-11-29 18:38:49.807279+00	4427	completed				+19039313074		97	2017-04-28 17:16:52.030253	2017-04-28 17:18:29.288057	CAfd3829c9cb3102fb126f72d49577945f	\N	124			0	inbound	+12147122250	\N	2.42090988159179688	\N	new lead	thomas david   	9	\N	\N	885
2017-04-28 17:18:22.796434+00	2017-11-29 18:38:49.807286+00	4428	completed				+19039313074		85	2017-04-28 17:18:22.794637	2017-04-28 17:19:48.140623	CAc7e2114e746917ef6915f2b22678f38e	\N	126			0	inbound	+12147122250	\N	1.0161738395690918	\N	new lead	thomas david   	9	\N	\N	885
2017-05-30 19:29:09.902358+00	2017-11-29 18:38:49.814103+00	5508	completed				+19039313074		116	2017-05-30 19:29:09.900654	2017-05-30 19:31:06.091859	CAd7aaec4e72929cecfe0258f153ade0dc	\N	107			0	inbound	+12147122250	\N	6.66585397720336914	\N	new lead	thomas david   	9	\N	\N	885
2016-10-29 18:22:51.416283+00	2016-10-29 18:22:51.455217+00	2368	missed	Courtney	Hanks	courtt.07@gmail.com	+19036033676		\N	2016-10-29 18:22:51.414778	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	899
2016-10-06 23:49:05.9944+00	2016-12-10 01:03:24.074423+00	2225	completed				+13198998944		86	2016-10-06 23:49:05.991275	2016-10-06 23:50:32.081118	CAca3004af29df4566c17f82ecc393d9f0	\N	68			0	inbound	+18558021338	\N	0.405720949172973633	null	new lead		3	\N	\N	900
2016-07-27 18:08:05.751507+00	2017-11-29 18:31:18.808768+00	966	completed				+14062490309		106	2016-07-27 18:08:05.749604	2016-07-27 18:09:51.390118	CA496ce0fba1039b33f6513301f46423b7	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE817147cc34456cffc2cce012f2fbc134	0	inbound	+18556311439	\N	2.19267606735229492	null	new lead		1	\N	\N	901
2016-07-27 18:09:57.259343+00	2017-11-29 18:31:18.808775+00	967	missed				+14062490309		30	2016-07-27 18:09:57.25812	2016-07-27 18:10:27.645815	CA5bcab27811a1b12cdc76ed8de43e7a10	\N	\N			0	inbound	+18556311439	\N	15.3526899814605713	null	new lead		1	\N	\N	901
2016-11-08 15:40:54.220891+00	2016-11-08 15:46:12.525173+00	2804	completed				+19734648036		318	2016-11-08 15:40:54.219149	2016-11-08 15:46:11.79311	CA3b32a66d720e2bf007c44c9d2f145309	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE98cd1822c1a3c214ec91a8ee996afff6	0	inbound	+18557240606	49	1.63782620429992676	null	new lead		1	\N	\N	902
2016-11-08 15:56:06.845646+00	2016-11-08 15:56:06.883311+00	2805	missed	Sergio 	Sencion	Sencion.Sergio@gmail.com	+19734648036		\N	2016-11-08 15:56:06.844459	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	902
2017-04-20 15:13:51.263764+00	2017-11-29 18:38:53.214297+00	4124	completed				+18066371800		280	2017-04-20 15:13:51.261805	2017-04-20 15:18:30.805513	CA1458f1a46d6f8afcd53bb41c2118ec05	\N	107			0	inbound	+12146922088	\N	6.67271184921264648	\N	new lead	birdsong peanuts	9	\N	\N	905
2017-04-26 17:02:51.497468+00	2017-11-29 18:38:49.806745+00	4324	completed				+18066371800		63	2017-04-26 17:02:51.49551	2017-04-26 17:03:54.456424	CAca46fefc365d21ba41d641160fd10b53	\N	125			0	inbound	+12147122250	\N	1.7101290225982666	\N	new lead	birdsong peanut	9	\N	\N	905
2017-04-26 17:03:44.18418+00	2017-11-29 18:38:49.806752+00	4325	completed				+18066371800		75	2017-04-26 17:03:44.182863	2017-04-26 17:04:59.260204	CAc00587cb416a8a1896a138c066de93a4	\N	127			0	inbound	+12147122250	\N	2.03370308876037598	\N	new lead	birdsong peanut	9	\N	\N	905
2017-04-26 17:04:49.831342+00	2017-11-29 18:38:49.806759+00	4326	completed				+18066371800		52	2017-04-26 17:04:49.830003	2017-04-26 17:05:42.265427	CA44d87ff78ff57d2307d2800479a673af	\N	126			0	inbound	+12147122250	\N	1.27388501167297363	\N	new lead	birdsong peanut	9	\N	\N	905
2017-07-28 16:07:59.534169+00	2017-08-17 14:35:21.04568+00	5868	completed				+14329348704		174	2017-07-28 16:07:59.531961	2017-07-28 16:10:54.010008	CAdc460edd40fb34c5feef287939d074be	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE59955ecccd450c948a918d6326d7fd5d	0	inbound	+18177569010	124	6.09579992294311523	\N	new lead	ra shawn	12	\N	\N	906
2016-10-05 15:49:37.147772+00	2016-12-10 01:01:00.200217+00	2178	completed				+16197953646		415	2016-10-05 15:49:37.146073	2016-10-05 15:56:32.464104	CA59f5e9658f9645da44b95f145f06332a	\N	57			0	inbound	+18557860909	\N	3.22259116172790527	null	new lead		3	\N	\N	907
2017-10-30 14:08:25.212722+00	2017-10-30 14:09:43.242972+00	6862	completed	James	Ward	Cigartv@gmail.com	+17703550422		39	2017-10-30 14:08:25.211103	2017-10-30 14:09:13.077867	CAba3bf5ae59def2ff65ccfd41de78029e	0427608a-ae09-4db0-a1e8-374423ee28c3	153			1	outbound	+17704009016	\N	14.481978178024292	{}	new lead		13	\N	\N	908
2016-11-17 19:05:37.605098+00	2016-11-17 19:06:10.378819+00	2937	completed				+12108724358		32	2016-11-17 19:05:37.603523	2016-11-17 19:06:10.025953	CA9e69870e7726b40f21df0e7b886edd9a	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE50a685f8f9f6e6019a35299e33f8a18d	0	inbound	+18557240606	49	2.11586594581604004	null	new lead		1	\N	\N	913
2016-11-17 19:07:22.091362+00	2016-11-17 19:38:04.490271+00	2938	completed				+12108724358		1839	2016-11-17 19:07:22.090162	2016-11-17 19:38:01.339295	CA9d7fa1a9adb422daca393567b9d182d5	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE31231e848c415aa72f25768ba1e0a0eb	0	inbound	+18557240606	49	2.10264301300048828	null	new lead		1	\N	\N	913
2016-12-09 17:44:35.082532+00	2016-12-09 17:44:35.11128+00	3072	missed	JYOTHSNA	DINADAYALANE	ddjoy07@yahoo.com	+16013161169		\N	2016-12-09 17:44:35.081302	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	914
2017-04-21 22:12:11.854862+00	2017-11-29 18:38:49.80628+00	4205	completed				+15714906034		243	2017-04-21 22:12:11.853342	2017-04-21 22:16:14.861579	CA6ee0a33a1d90b9816ee97d688f44c2ec	\N	105			0	inbound	+12147122250	\N	4.32113790512084961	\N	new lead	altamimi abdula	9	\N	\N	915
2016-06-27 15:09:02.150449+00	2016-06-27 15:10:25.945349+00	504	completed				+13303989840		77	2016-06-27 15:09:02.149527	2016-06-27 15:10:25.944107	CA283d5c69f5dccee6f9c7afa0f6dfb8a8	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	2.7215111255645752	{}	new lead		1	\N	\N	917
2016-06-27 00:41:48.34736+00	2017-11-29 18:32:13.820498+00	478	completed	Samantha	Mackey		+13303989840		58	2016-06-27 00:41:48.345895	2016-06-27 00:42:46.242339	CAa6800471d203a587d00f90c2d3408082	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE38cf431078716182bf5590f8dc3c0456	0	inbound	+18555983683	\N	\N	null	new lead		1	\N	\N	917
2017-10-13 16:29:45.831838+00	2017-10-13 16:31:57.952749+00	6691	completed				+16786968136		132	2017-10-13 16:29:45.829473	2017-10-13 16:31:57.939472	CA4f24afe27ad69553366462079305f4ec	\N	154			0	inbound	+17707665699	134	1.42523503303527832	\N	new lead		13	\N	\N	920
2016-11-02 23:59:58.158809+00	2016-11-03 00:26:35.399473+00	2605	completed				+12818815473		1594	2016-11-02 23:59:58.157367	2016-11-03 00:26:31.86286	CA3b7ca03b59a310fa53ae1068b4f9b6b3	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REa2f2ec4c2d008385bd59ff263d86ef3d	0	inbound	+18557240606	49	1.90178513526916504	null	new lead		1	\N	\N	924
2017-03-27 23:21:50.638459+00	2017-05-17 15:41:07.22424+00	3604	completed				+14692646152		187	2017-03-27 23:21:50.636299	2017-03-27 23:24:57.950586	CA1afe4baac09a9c28b5a7746f90132376	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE3b84c467dda715e232a839a457faf5af	0	inbound	+18177569010	124	12.055156946182251	\N	new lead	crecy johnny	12	\N	\N	933
2017-05-08 16:30:20.319934+00	2017-08-17 14:35:21.04514+00	4849	completed				+18176571906		323	2017-05-08 16:30:20.317371	2017-05-08 16:35:43.435214	CA67ce517de441091add389692cc03fae9	\N	\N			0	inbound	+18177569010	124	12.5321810245513916	\N	new lead	oyegunle john	12	\N	\N	934
2016-08-22 22:39:05.107662+00	2017-11-29 18:31:10.262561+00	1659	missed				+15138822524		19	2016-08-22 22:39:05.106563	2016-08-22 22:39:24.457953	CAd6c310c5e4bdf22f4998f17eb0421c32	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE8f9d59c9bbdf2cc116af2f06984127a0	0	inbound	+18556311490	\N	\N	null	general interest		1	\N	\N	939
2017-10-10 18:04:38.919847+00	2017-10-10 18:05:15.928806+00	6648	completed				+17708964983		37	2017-10-10 18:04:38.917875	2017-10-10 18:05:15.919609	CAee10e3e0ae53a44fad1cd36f228cbb6f	\N	150			0	inbound	+17707665732	133	11.0160770416259766	\N	new lead		13	\N	\N	942
2017-10-10 19:41:00.013118+00	2017-10-10 19:41:59.578924+00	6651	completed				+17708964983		60	2017-10-10 19:41:00.011769	2017-10-10 19:41:59.569617	CA607c038bcb9093737317b38481b2cf34	\N	150			0	inbound	+17707665732	133	10.5240371227264404	\N	new lead		13	\N	\N	942
2017-10-10 19:39:52.504496+00	2017-10-10 19:46:15.711769+00	6650	completed				+17708964983		383	2017-10-10 19:39:52.502447	2017-10-10 19:46:15.709193	CA5ebbaf831b504045faabf72fc020e301	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE2545824eb546535bda5686e83dc93bcf	0	inbound	+17707665732	133	361.188889026641846	\N	new lead		13	\N	\N	942
2016-11-11 17:44:11.285879+00	2016-11-11 18:04:44.649991+00	2861	completed				+16022066515		1230	2016-11-11 17:44:11.284183	2016-11-11 18:04:41.664387	CA047dd787fdf14a17918310e476b1f3ea	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REd425adc7c8fe1c4f5c14f33ec2e577c4	0	inbound	+18557240606	49	1.75130200386047363	null	new lead		1	\N	\N	944
2016-11-15 21:17:32.236842+00	2016-11-15 21:40:40.550424+00	2913	completed				+16022066515		1386	2016-11-15 21:17:32.235299	2016-11-15 21:40:37.866208	CAd120bf58f784b9e922db626e6c4f538e	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE7b44a67ddb183c8d4256bb45fc262433	0	inbound	+18557240606	49	2.0176398754119873	null	new lead		1	\N	\N	944
2016-11-15 21:54:28.600935+00	2016-11-15 21:57:17.77719+00	2914	completed				+16022066515		168	2016-11-15 21:54:28.59933	2016-11-15 21:57:16.95285	CAf0fdcf4dbffb5fec05991e5b44e07e38	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE4acb27418add17df85d0a65a14148cb5	0	inbound	+18557240606	49	2.09951281547546387	null	new lead		1	\N	\N	944
2017-04-20 21:49:38.872481+00	2017-11-29 18:38:53.214362+00	4169	completed				+19494632223		34	2017-04-20 21:49:38.869063	2017-04-20 21:50:13.289932	CAd096c25166fa1c6dbd419e05397f8b8c	\N	105			0	inbound	+12146922088	\N	7.63735604286193848	\N	new lead	donaldson corey	9	\N	\N	948
2017-04-20 21:50:56.25293+00	2017-11-29 18:38:49.80611+00	4170	completed				+19494632223		101	2017-04-20 21:50:56.251187	2017-04-20 21:52:37.141424	CA04577297ee083c64e59d45df7d8e7748	\N	\N			0	inbound	+12147122250	\N	7.62714600563049316	\N	new lead	donaldson corey	9	\N	\N	948
2017-04-28 21:05:19.393946+00	2017-11-29 18:38:49.807357+00	4449	completed				+19494632223		782	2017-04-28 21:05:19.391466	2017-04-28 21:18:21.509863	CAf02c600595f6bfe2da1a63f93926c5b7	\N	99			0	inbound	+12147122250	\N	15.4254000186920166	\N	new lead	donaldson corey	9	\N	\N	948
2017-09-09 13:17:44.825112+00	2017-09-09 13:17:45.432163+00	6297	missed				+14049106377		1	2017-09-09 13:17:44.823389	2017-09-09 13:17:45.42327	CA364fc7dcbef7514987ecccc50ddb635c	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	950
2017-09-09 13:19:51.189792+00	2017-09-09 13:19:51.849719+00	6299	missed				+14049106377		1	2017-09-09 13:19:51.187983	2017-09-09 13:19:51.835318	CA3a06cba09e36a4fc6941e4f7e35c21d3	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	950
2017-09-09 15:09:23.660172+00	2017-09-09 15:09:34.472572+00	6303	completed				+14049106377		11	2017-09-09 15:09:23.658255	2017-09-09 15:09:34.460406	CA20852e24ff0c32d370ebc012d486abad	\N	154			0	inbound	+17707665699	134	3.29990291595458984	\N	new lead		13	\N	\N	950
2016-08-03 13:55:44.828978+00	2016-12-10 00:55:45.165059+00	1168	completed				+16105853985		61	2016-08-03 13:55:44.827807	2016-08-03 13:56:45.827676	CA9c0e7cb36dc3e4625d36d79121be7cc1	\N	24			0	inbound	+18557129406	\N	2.34196305274963379	null	new lead		3	\N	\N	951
2017-10-13 18:41:19.361526+00	2017-10-13 18:44:49.203082+00	6697	completed				+18175383085		209	2017-10-13 18:41:19.35782	2017-10-13 18:44:48.190859	CA95cb0d6d41b7848d46c369ac8607fb56	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE6a2b1343009cdd8313cc1fd8e890b5ce	0	inbound	+18177569010	124	13.0997500419616699	\N	new lead	bridgestone ame	12	\N	\N	954
2016-08-10 13:31:59.585575+00	2016-12-09 17:06:53.905773+00	1376	completed				+12156967082		156	2016-08-10 13:31:59.583925	2016-08-10 13:34:35.908106	CA5f503fda200d730c617f185acab36c2e	\N	21			0	inbound	+18558021330	\N	2.79953193664550781	null	new lead		3	\N	\N	956
2017-07-18 18:03:38.127763+00	2017-07-18 18:08:34.381516+00	5800	completed				+14046376654		295	2017-07-18 18:03:38.125924	2017-07-18 18:08:33.614433	CA73963bb61ee2dbc62ae6bb60f4c8e8ea	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE079c042180122c6a4fdd65e1c3cdf0b5	0	inbound	+17704009016	132	24.1891460418701172	\N	new lead		13	\N	\N	960
2017-11-17 16:26:20.426442+00	2017-11-17 16:30:33.345829+00	7101	completed	Jamarious	Mattox	mattoxjamarious@yahoo.com	+14702170830		226	2017-11-17 16:26:20.42477	2017-11-17 16:30:32.154063	CA3f30a6e16ba034000e674f0137e2150f	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REa9b1a83475b5f1d60d0f0a5e0137e713	1	outbound	+17704009016	\N	21.7930970191955566	{}	new lead		13	\N	\N	964
2016-06-27 15:12:29.343621+00	2017-11-29 18:32:13.820575+00	507	completed	Unknown			+14405432613		29	2016-06-27 15:12:29.342644	2016-06-27 15:12:58.578354	CA1071a4dddd413df38ceb163e501e2db2	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REe520ebda1101440dbf023b62a8c25f2e	0	inbound	+18555983683	\N	14.3665549755096436	null	new lead		1	\N	\N	966
2017-09-12 13:05:50.639702+00	2017-09-12 13:07:15.732579+00	6323	completed	Sharon	Sadler		+14705771311		84	2017-09-12 13:05:50.637511	2017-09-12 13:07:14.580261	CAcc569db3dca279fa4e04a08e437f68b5	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE9c55b098a8250d3bf8fef00275d056d1	0	inbound	+17704009016	132	15.5328431129455566	\N	new lead		13	\N	\N	967
2017-06-19 17:43:11.61436+00	2017-06-24 13:45:04.893966+00	5608	completed	James	Burns	Dawj27@gmail.com	+17063527210		288	2017-06-19 17:43:11.611363	2017-06-19 17:48:11.025154	CA1ad564e1f89f84391913c0fec8e3097b	0427608a-ae09-4db0-a1e8-374423ee28c3	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE21d7cb7e19083fbf492aa5d6c07ae021	1	outbound	+17704009016	\N	17.9965288639068604	{}	new lead		13	\N	\N	968
2017-12-03 15:07:16.864843+00	2017-12-03 15:08:39.920758+00	7507	completed				+13044754547		82	2017-12-03 15:07:16.862569	2017-12-03 15:08:38.757835	CA191913b265f09b4ca4be95083e31d7d8	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REbc54cb38ba543e457282ac7717e2da3f	0	inbound	+18558645656	136	2.8383338451385498	\N	new lead		15	\N	\N	970
2017-12-03 15:10:00.892567+00	2017-12-03 15:11:22.908534+00	7508	completed				+13044754547		81	2017-12-03 15:10:00.890707	2017-12-03 15:11:21.722233	CA32414c4ec0e1233c931e0c4e66e5a0d1	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REa3dae29440d8a0094272cf528877ae5f	0	inbound	+18558645656	136	2.15335392951965332	\N	new lead		15	\N	\N	970
2017-05-16 19:55:43.35111+00	2017-11-29 18:38:49.811832+00	5121	completed				+17318868829		121	2017-05-16 19:55:43.349327	2017-05-16 19:57:44.154829	CAae55fe34a5e789556defc30befc0fd7f	\N	125			0	inbound	+12147122250	\N	0.979855060577392578	\N	new lead	simmons bank   	9	\N	\N	976
2017-05-16 19:57:47.686577+00	2017-11-29 18:38:49.81184+00	5122	completed				+17318868829		83	2017-05-16 19:57:47.684749	2017-05-16 19:59:10.383417	CA6112c34b9b5679be4fdb43eeab722f8f	\N	127			0	inbound	+12147122250	\N	1.35401296615600586	\N	new lead	simmons bank   	9	\N	\N	976
2017-05-16 19:59:08.973226+00	2017-11-29 18:38:49.811847+00	5123	completed				+17318868829		138	2017-05-16 19:59:08.971366	2017-05-16 20:01:26.70265	CA757619437c2eb0d5ce326ed166875389	\N	99			0	inbound	+12147122250	\N	4.80915713310241699	\N	new lead	simmons bank   	9	\N	\N	976
2016-07-15 17:57:50.504011+00	2017-11-29 18:31:41.490437+00	876	completed	Lisa	Sapp		+17408521396		131	2016-07-15 17:57:50.502599	2016-07-15 18:00:01.868464	CA98301b6f7c51c162be12a0139a5d8858	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REfcce5520f29bf6373257a2bc1a245848	0	inbound	+18552959002	\N	6.36451387405395508	null	new lead		1	\N	\N	980
2016-11-03 22:46:23.090657+00	2016-11-03 22:49:19.592455+00	2675	completed				+14698035783		176	2016-11-03 22:46:23.089607	2016-11-03 22:49:18.792652	CAc9c9f62c878e19323c0e18e940fd900f	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE888cec757382e223d6a075f695ce828c	0	inbound	+18557240606	49	2.09096908569335938	null	new lead		1	\N	\N	984
2017-05-04 21:16:39.042193+00	2017-05-04 21:17:45.762216+00	4730	completed				+12143948832		66	2017-05-04 21:16:39.040267	2017-05-04 21:17:44.93345	CA8ead0246d480b9b806cf9b0065837782	\N	129		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE68d29db527d36c2d3638d7cd09c74f50	0	inbound	+18172104002	126	3.66620397567749023	\N	new lead	dallas  tx	12	\N	\N	985
2016-12-14 20:22:57.858109+00	2017-11-29 18:32:10.406506+00	3082	missed				+13612295143		10	2016-12-14 20:22:57.856111	2016-12-14 20:23:08.030418	CAd2185e0e94b70c5496b6c435e88d27a7	\N	\N			0	inbound	+18552791533	\N	\N	null	new lead		1	\N	\N	734
2017-12-27 21:09:53.368774+00	2017-12-27 21:11:08.733498+00	8130	completed				+17063523307		75	2017-12-27 21:09:53.365272	2017-12-27 21:11:07.985475	CAfabcb68752469c886ffdc551d54d90f8	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE5d32c68a2ab9ee512bcd81f1fe38155f	0	inbound	+17707665732	133	26.3621349334716797	\N	new lead	bennett michael	13	\N	\N	987
2017-12-27 21:08:29.055869+00	2017-12-27 21:15:44.286674+00	8129	completed				+17063523307		434	2017-12-27 21:08:29.054682	2017-12-27 21:15:43.146366	CA30c64337445501b93218fd4b77b989d9	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REa34658566604a909e2986041f22361d5	0	inbound	+17707665732	133	386.627219915390015	\N	new lead	bennett michael	13	\N	\N	987
2017-11-11 16:18:37.550064+00	2017-11-11 16:22:00.471481+00	7019	completed				+17063523307		203	2017-11-11 16:18:37.547684	2017-11-11 16:22:00.458257	CA4a022fcda2c41d302314d79af89d97b7	\N	150			0	inbound	+17707665732	133	19.974916934967041	\N	new lead		13	\N	\N	987
2017-11-24 14:16:55.503389+00	2017-11-24 14:18:35.094849+00	7187	completed				+17063523307		100	2017-11-24 14:16:55.501217	2017-11-24 14:18:35.072902	CA90f0f4c3b94c13550a0486f1fbcaed94	\N	152			0	inbound	+17707665732	133	9.63040494918823242	\N	new lead		13	\N	\N	987
2017-10-18 18:16:12.865801+00	2017-10-18 18:18:16.772608+00	6742	completed				+16785985826		123	2017-10-18 18:16:12.863395	2017-10-18 18:18:15.886545	CA5af13c4f177c3d41384ff64f72b28f72	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE14b9e1d38f0def6e49ada83f0dcce8e7	0	inbound	+17704009016	132	22.269740104675293	\N	new lead		13	\N	\N	1012
2016-11-14 19:34:54.353227+00	2016-11-14 19:38:36.602202+00	2891	completed				+14804732372		222	2016-11-14 19:34:54.35138	2016-11-14 19:38:36.057458	CAd7570baf040c2f935609cdbc3db7d8a8	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE86dc95ca60a1be4743488ec3295cd0c7	0	inbound	+18557240606	49	2.24727296829223633	null	new lead		1	\N	\N	1013
2016-11-14 19:38:57.34998+00	2016-11-14 19:43:06.758301+00	2892	completed				+14804732372		249	2016-11-14 19:38:57.348565	2016-11-14 19:43:06.75638	CAc146f6a50ada3da455de37b122cc0a63	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REb99071330756d82a09f41bb9a0a0f637	0	inbound	+18557240606	49	2.69970083236694336	null	new lead		1	\N	\N	1013
2017-05-22 23:56:47.946119+00	2017-05-23 00:05:35.652631+00	5308	completed				+16825974076		527	2017-05-22 23:56:47.943469	2017-05-23 00:05:34.87328	CA1b465261d85a827daced2a598a3fb9ab	\N	131		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE33e36094fb36195c1ed316047ea26e5d	0	inbound	+18172104002	126	27.1940999031066895	\N	new lead	achini amabel	12	\N	\N	1014
2016-08-01 20:18:06.538556+00	2017-11-29 18:31:37.36829+00	1094	completed	Jennifer	Araujo		+15623945423		210	2016-08-01 20:18:06.536912	2016-08-01 20:21:36.390164	CA81a17df47355ddc6d2547318e2ee4c5f	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE76d8c12024547cd8c6333bef1907f951	0	inbound	+18555472453	\N	8.72716116905212402	null	credit union contracted		1	\N	\N	1016
2016-08-01 20:41:40.582904+00	2016-08-05 12:50:43.467362+00	1097	completed	Jennifer	Araujo	jenniferaraujo42@gmail.com	+15623945423		76	2016-08-01 20:41:40.581892	2016-08-01 20:43:21.736123	CAd82f24bc6e88c5c2389fcc6df4e79f14	99186475-9344-4e80-b3b1-0ed2e7856585	17		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REab12a74913e33e979276f9d7dcb7dc15	1	outbound	+18555472453	\N	24.3745489120483398	{}	credit union contracted		1	\N	\N	1016
2016-08-04 17:43:25.328552+00	2017-11-29 18:31:37.36861+00	1205	completed	Jennifer	Araujo		+15623945423		30	2016-08-04 17:43:25.326887	2016-08-04 17:43:55.234615	CA4a265e185ab2f7a4c88334363fbc6185	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE2b4af424d915429907eae3480ec9f784	0	inbound	+18555472453	\N	20.2229959964752197	null	credit union contracted		1	\N	\N	1016
2016-08-04 17:44:07.684913+00	2017-11-29 18:31:37.368617+00	1206	completed	Jennifer	Araujo		+15623945423		29	2016-08-04 17:44:07.684064	2016-08-04 17:44:36.792009	CAef8c7f9ee4171c0bb059420cf427576f	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REbd6b9aebd46e373c16cb591632dedb2d	0	inbound	+18555472453	\N	19.8196468353271484	null	credit union contracted		1	\N	\N	1016
2016-08-04 17:44:54.494024+00	2017-11-29 18:31:37.368625+00	1207	completed	Jennifer	Araujo		+15623945423		27	2016-08-04 17:44:54.492902	2016-08-04 17:45:21.974043	CA2abfc98929f92a6b485149033f9ab800	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REfb80445661d0de90d83cf96948d745fa	0	inbound	+18555472453	\N	18.8960089683532715	null	credit union contracted		1	\N	\N	1016
2016-08-01 20:39:22.563069+00	2017-11-29 18:31:37.368299+00	1096	completed	Jennifer	Araujo		+15623945423		163	2016-08-01 20:39:22.560897	2016-08-01 20:42:05.159773	CA5a93f1e44fb2f2030e19fa86a5025f75	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE0f97c2e1b526a6f01a83822d241b95c0	0	inbound	+18555472453	\N	10.189600944519043	null	credit union contracted		1	\N	\N	1016
2017-11-11 20:07:36.883703+00	2017-11-11 20:11:14.589516+00	7025	completed				+12109013606		217	2017-11-11 20:07:36.881207	2017-11-11 20:11:13.651586	CAbb4b3f0dcd2abf049adb75f2d3573a9a	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REa52267972604142c2b94c90198dc2b34	0	inbound	+18177569010	124	7.58414602279663086	\N	new lead	calahan jordan	12	\N	\N	1020
2017-11-01 17:35:51.677617+00	2017-11-01 17:41:18.622559+00	6892	completed	Terrence 	Bailey 	Armystronge1.tb@gmail.com	+17063184899		314	2017-11-01 17:35:51.675785	2017-11-01 17:41:17.287592	CAc5c5f7c9cff8d35868a207bd3f635467	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REf2ab5cb565312e7575427fbc2fa1404a	1	outbound	+17704009016	\N	10.3412539958953857	{}	new lead		13	\N	\N	1021
2016-08-09 22:49:47.339671+00	2016-08-16 19:30:23.647654+00	1372	missed	Ernesto	Sandoval		+16612334818		15	2016-08-09 22:49:47.337385	2016-08-09 22:50:02.508018	CA75cfd031f3ad2afe6d8fd59b5b7c58d6	\N	\N			0	inbound	+18555343978	48	\N	null	application submitted - autopay		1	\N	\N	1026
2016-08-05 14:19:09.922893+00	2016-08-16 19:30:23.647586+00	1270	missed	Ernesto	Sandoval	e4n@123.com	+16612334818		\N	2016-08-05 14:19:09.921863	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - autopay		1	\N	\N	1026
2016-08-08 23:31:56.32241+00	2016-08-16 19:30:23.647603+00	1347	missed	Ernesto	Sandoval		+16612334818		17	2016-08-08 23:31:56.320926	2016-08-08 23:32:13.568401	CAdb2840174eb4bd470a1a871c4280f3a8	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE8c8c03cb349aeef3d67836b483b55817	0	inbound	+18555343978	48	\N	null	application submitted - autopay		1	\N	\N	1026
2016-08-08 23:32:39.304885+00	2017-11-29 18:31:37.368747+00	1348	missed	Ernesto	Sandoval		+16612334818		15	2016-08-08 23:32:39.30385	2016-08-08 23:32:54.237136	CAa4aafbd76e66f19b29ff3e751af329c5	\N	\N			0	inbound	+18555472453	\N	\N	null	application submitted - autopay		1	\N	\N	1026
2016-08-08 23:34:07.895416+00	2017-11-29 18:31:37.368754+00	1349	missed	Ernesto	Sandoval		+16612334818		16	2016-08-08 23:34:07.894499	2016-08-08 23:34:23.654246	CA49dd385458c058b787260d9115d222cb	\N	\N			0	inbound	+18555472453	\N	\N	null	application submitted - autopay		1	\N	\N	1026
2016-08-09 22:50:23.695223+00	2017-11-29 18:31:37.368782+00	1373	missed	Ernesto	Sandoval		+16612334818		19	2016-08-09 22:50:23.694076	2016-08-09 22:50:43.160245	CA45bc63d06b25f2df696b600e07a962a7	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE4b81d31580d3656b1b7a09735a392adf	0	inbound	+18555472453	\N	\N	null	application submitted - autopay		1	\N	\N	1026
2016-08-05 00:47:20.226355+00	2017-11-29 18:31:37.368675+00	1259	missed				+16612334818		20	2016-08-05 00:47:20.224446	2016-08-05 00:47:40.655124	CA6668682bcb9608ad50e88b5592d5db1a	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE6487bc1ed64dd99289c4f22ef7b8069e	0	inbound	+18555472453	\N	\N	null	application submitted - autopay		1	\N	\N	1026
2017-05-22 18:47:12.978581+00	2017-11-29 18:38:49.812636+00	5290	completed				+16129918151		550	2017-05-22 18:47:12.97683	2017-05-22 18:56:23.29898	CA65879d2747d0ac40223d5d12fa5201c6	\N	133			0	inbound	+12147122250	\N	7.82923102378845215	\N	new lead	wireless caller	9	\N	\N	4123
2017-09-28 15:28:23.194898+00	2017-09-28 15:32:25.395864+00	6505	completed				+16787692874		242	2017-09-28 15:28:23.191737	2017-09-28 15:32:25.368886	CAbdc71a271f8a03dc21ee5fbc13c62073	\N	154			0	inbound	+17707665699	134	3.50604414939880371	\N	new lead		13	\N	\N	780
2016-08-05 00:54:52.416497+00	2017-11-29 18:31:37.368682+00	1260	missed				+16612334818		22	2016-08-05 00:54:52.415224	2016-08-05 00:55:14.833334	CA7f47bdf3a98c43085e2e7786ff2e548a	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE227f0cf808a16b07fe47d40f4343bccc	0	inbound	+18555472453	\N	\N	null	application submitted - autopay		1	\N	\N	1026
2016-08-05 14:00:06.660027+00	2017-01-27 21:12:23.8127+00	1269	completed				+16612334818		1138	2016-08-05 14:00:06.658989	2016-08-05 14:19:05.066185		\N	\N			0	outbound	+18555343978	48	\N	null	application submitted - autopay		1	\N	\N	1026
2016-09-30 18:24:13.609859+00	2016-11-09 15:46:59.235303+00	2115	completed				+13022871577		497	2016-09-30 18:24:13.607764	2016-09-30 18:32:30.25979	CA8a7703efd2bdc82e3b251f986790f519	\N	43			0	inbound	+18556279610	\N	1.87594485282897949	null	new lead		3	\N	\N	1027
2017-04-12 17:46:38.683531+00	2017-05-17 15:41:07.224342+00	3819	completed				+16502647554		48	2017-04-12 17:46:38.681653	2017-04-12 17:47:26.34577	CA403bdae008215955d52e63bc40c00321	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REc6f4d771a6e357c6c74e5864b0711209	0	inbound	+18177569010	124	11.2659568786621094	\N	new lead		12	\N	\N	1028
2017-03-27 15:11:11.255547+00	2017-08-17 14:35:21.044909+00	3582	completed				+16502647554		36	2017-03-27 15:11:11.253701	2017-03-27 15:11:47.229904	CAa029473945515393d8786e59e7b792ac	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE8131cca543ec988acb983eb4f888b244	0	inbound	+18177569010	124	11.4306709766387939	\N	new lead	v12software	12	\N	\N	1028
2017-04-30 18:25:05.805516+00	2017-11-29 18:38:49.807536+00	4485	completed				+16064843071		76	2017-04-30 18:25:05.801737	2017-04-30 18:26:21.395518	CA01d46ea67d780bb81f449a68571c5555	\N	133			0	inbound	+12147122250	\N	25.0258290767669678	\N	new lead	cell phone  ky	9	\N	\N	1029
2016-08-17 16:20:04.059856+00	2017-01-27 21:12:23.813365+00	1553	missed				+16615330613		13	2016-08-17 16:20:04.057945	2016-08-17 16:20:17.092116		\N	\N			0	outbound	+18555343978	48	\N	null	new lead		1	\N	\N	1031
2016-08-02 22:25:06.306007+00	2017-11-29 18:31:37.368497+00	1159	missed				+16615330613		17	2016-08-02 22:25:06.304825	2016-08-02 22:25:23.376303	CAda917e9f09506b473b52c27e8f0f497d	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE88ce5f06a97e976698475461f7ad9ac1	0	inbound	+18555472453	\N	\N	null	new lead		1	\N	\N	1031
2017-09-15 00:44:22.388544+00	2017-09-15 01:06:22.806907+00	6358	missed				+17125467280		28	2017-09-15 00:44:22.386123	2017-09-15 00:44:49.891262	CA0ad668a97ed19890c354a7c08f828175	\N	\N			0	inbound	+18177569010	124	1299.00345301628113	\N	new lead	albrecht david	12	\N	\N	1033
2017-11-13 21:06:12.908589+00	2017-11-13 21:07:49.314182+00	7043	completed				+14125590480		95	2017-11-13 21:06:12.906614	2017-11-13 21:07:48.154566	CA98605d0a54579d9755b8b62bf37d6c19	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE861b9b6f300a22caef409d1b3358a6a8	0	inbound	+18177569010	124	9.95217204093933105	\N	new lead	ambler michael 	12	\N	\N	1034
2016-10-05 18:28:09.822099+00	2016-12-10 01:00:18.568462+00	2191	completed				+16192632124		158	2016-10-05 18:28:09.820044	2016-10-05 18:30:47.913369	CA1495a36d3930315990a47574af5000eb	\N	56			0	inbound	+18556775511	\N	13.4110441207885742	null	new lead		3	\N	\N	1040
2017-04-21 17:28:58.963827+00	2017-11-29 18:38:49.806188+00	4187	completed				+12149090355		287	2017-04-21 17:28:58.962159	2017-04-21 17:33:45.509586	CA9bb43dbfbac2101d0ad930fe8efd5f71	\N	\N			0	inbound	+12147122250	\N	8.67753911018371582	\N	new lead	moghaddam idin	9	\N	\N	1041
2017-04-22 16:19:31.167248+00	2017-11-29 18:38:49.806355+00	4218	completed				+12149090355		123	2017-04-22 16:19:31.164591	2017-04-22 16:21:33.796939	CAe3a9ad1d78aece67b2e4418ddfa65e0e	\N	99			0	inbound	+12147122250	\N	6.28268194198608398	\N	new lead	moghaddam idin	9	\N	\N	1041
2017-09-22 00:21:21.105174+00	2017-09-22 00:23:03.453396+00	6424	completed				+19036584913		101	2017-09-22 00:21:21.103169	2017-09-22 00:23:02.335252	CA8058f7b70eb81b5b7cfcbecccca64ed3	\N	155		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REf4c4b5ec62450f8087f4de938ff30e50	0	inbound	+18177569010	124	11.2682409286499023	\N	new lead	cell phone   tx	12	\N	\N	1043
2017-09-22 00:45:57.483484+00	2017-09-22 01:09:04.859155+00	6425	missed				+19036584913		58	2017-09-22 00:45:57.48138	2017-09-22 00:46:55.505183	CAadf6252c69e248cfa901a8dbeb2a9305	\N	\N			0	inbound	+18177569010	124	1362.50865817070007	\N	new lead	cell phone   tx	12	\N	\N	1043
2017-09-22 01:32:48.477722+00	2017-09-22 01:33:35.41243+00	6426	completed				+19036584913		45	2017-09-22 01:32:48.475909	2017-09-22 01:33:33.250794	CAce38abcc3c6f307c1707258289247d09	\N	155		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE91c1f0db4949364c13fb7a41d56bb7b6	0	inbound	+18177569010	124	21.1789150238037109	\N	new lead	cell phone   tx	12	\N	\N	1043
2017-11-24 14:57:20.746199+00	2017-11-24 14:58:22.637742+00	7188	completed				+18177032428		61	2017-11-24 14:57:20.743806	2017-11-24 14:58:22.074542	CA148c226c475f3191900359cd97f8a0d2	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE2a616e6e01dc3b758c382086c35fc344	0	inbound	+18177569010	124	9.33294987678527832	\N	new lead	garcia jessie	12	\N	\N	1050
2016-06-27 15:14:21.876386+00	2017-11-29 18:31:41.490086+00	508	completed	Unknown			+16144416642		28	2016-06-27 15:14:21.875197	2016-06-27 15:14:49.635756	CA34d7274281505f4f1fa21101a6d6ebd9	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE79a3c5d3ac02645e91101b44412c259e	0	inbound	+18552959002	\N	14.7373502254486084	null	new lead		1	\N	\N	1051
2016-06-30 18:25:29.668853+00	2017-11-29 18:31:41.490262+00	681	completed	Alonzo	Tyler		+16144416642		45	2016-06-30 18:25:29.667083	2016-06-30 18:26:14.962449	CAd9e9f83af53d9268035ccfcf5dd579fd	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE6410c8ab3b0683e6d6f703b88931532d	0	inbound	+18552959002	\N	14.0995121002197266	null	new lead		1	\N	\N	1051
2016-06-27 18:03:35.505229+00	2016-06-27 18:14:28.518231+00	532	completed				+16144416642		649	2016-06-27 18:03:35.504316	2016-06-27 18:14:28.517134	CA330da38c0f83bb6e765c56008c340aad	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	1.42644119262695312	{}	new lead		1	\N	\N	1051
2016-06-27 18:14:01.701862+00	2016-06-27 18:41:13.865094+00	535	completed	Alonzo	Tyler	na@noemail.com	+16144416642		0	2016-06-27 18:14:01.700684	2016-06-27 18:14:30.098404	CA752b9df560da8b9f4c50c82899885700	d33a481e-e0af-47ac-9f90-260f20b69de5	\N			1	outbound	+18552959002	\N	13.5859630107879639	{}	new lead		1	\N	\N	1051
2016-06-30 18:38:19.194459+00	2016-06-30 18:39:26.869334+00	683	completed				+16144416642		63	2016-06-30 18:38:19.19354	2016-06-30 18:39:26.868101	CA2bf92b6ad5167bdf9dce8108e574fd15	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	1.55546402931213379	{}	new lead		1	\N	\N	1051
2016-06-27 17:54:42.586217+00	2017-11-29 18:31:41.4901+00	530	completed	Alonzo	Tyler		+16144416642		51	2016-06-27 17:54:42.585006	2016-06-27 17:55:33.952637	CA1ee83f8871e15e19af264ace11796ed2	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REcd7e9223e3ec1d16fa793a606a393fc6	0	inbound	+18552959002	\N	14.0592048168182373	null	new lead		1	\N	\N	1051
2016-06-29 17:54:15.538641+00	2017-11-29 18:31:41.490248+00	654	completed	Unknown			+16144416642		30	2016-06-29 17:54:15.536625	2016-06-29 17:54:46.001829	CAc0a9febec27461f012bd2e4bf40e7a37	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE5dd2544275aff7ebe959c9638a426f1c	0	inbound	+18552959002	\N	1.30614495277404785	null	new lead		1	\N	\N	1051
2017-11-17 16:55:07.255244+00	2017-11-17 17:06:39.211087+00	7103	completed				+18178991617		692	2017-11-17 16:55:07.253606	2017-11-17 17:06:39.208295	CA0e98a34c00dfeefb93c7aeffc0e9e266	\N	146			0	inbound	+18177569010	124	432.340596914291382	\N	new lead	dial renea	12	\N	\N	1054
2017-11-17 16:53:04.692932+00	2017-11-17 17:26:16.904314+00	7102	completed				+18178991617		1992	2017-11-17 16:53:04.690448	2017-11-17 17:26:16.901351	CA2d6cfff32e5e19f64aae2c31bbbd3732	\N	146			0	inbound	+18177569010	124	1340.77250289916992	\N	new lead	dial renea	12	\N	\N	1054
2017-05-12 20:50:14.238544+00	2017-11-29 18:38:49.811366+00	5042	completed				+12817570736		81	2017-05-12 20:50:14.234012	2017-05-12 20:51:35.334382	CA37ce19c2299038746088567ed76fda88	\N	127			0	inbound	+12147122250	\N	1.94525599479675293	\N	new lead	cell phone   tx	9	\N	\N	1056
2017-09-28 22:27:33.418419+00	2017-09-28 22:28:06.917553+00	6519	completed				+15639990080		33	2017-09-28 22:27:33.416417	2017-09-28 22:28:06.908425	CA7eedc2da4f282a8289ad634b4a885a0a	\N	153			0	inbound	+17707665732	133	10.8061470985412598	\N	new lead		13	\N	\N	1094
2016-06-28 10:47:31.486033+00	2017-11-29 18:31:41.490157+00	565	completed	David	Nash		+16144196663		32	2016-06-28 10:47:31.484619	2016-06-28 10:48:03.319615	CA5994c07bc937b5c4490405c9b72a3f21	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE8899549477f7fd208c77ba601e47152f	0	inbound	+18552959002	\N	\N	null	new lead		1	\N	\N	249
2016-06-28 14:45:35.486623+00	2017-11-29 18:31:41.490185+00	580	completed	David	Nash		+16144196663		35	2016-06-28 14:45:35.485745	2016-06-28 14:46:10.115741	CA81bff77930b56567b616cd22614e5490	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE91262165f4523befb75db5f44ee40388	0	inbound	+18552959002	\N	13.9531409740447998	null	new lead		1	\N	\N	249
2016-11-01 19:29:42.17735+00	2016-11-01 19:50:12.564329+00	2493	completed				+14694014530		1226	2016-11-01 19:29:42.175688	2016-11-01 19:50:08.611259	CAaa394190e562aace00e712f36ed4323c	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE177733696a933bb4974f90984e4d24b6	0	inbound	+18557240606	49	2.40132689476013184	null	new lead		1	\N	\N	1095
2017-12-06 23:04:46.786885+00	2017-12-06 23:24:12.926529+00	7666	completed				+15054270320		1163	2017-12-06 23:04:46.785103	2017-12-06 23:24:09.723215	CA40efda1892ff8504f08496297ebd7229	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE2a016892eb8583c3962be203fcbd0001	0	inbound	+18558645656	136	2.20351791381835938	\N	new lead		15	\N	\N	1098
2017-05-04 13:52:50.595542+00	2017-08-17 14:35:21.045111+00	4700	completed				+19407355167		67	2017-05-04 13:52:50.593502	2017-05-04 13:53:57.234357	CA051513a5f61efc0360ada7ec21d53252	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE9809e41ca33c845aa8807828478df65a	0	inbound	+18177569010	124	4.90796899795532227	\N	new lead	williams agnes	12	\N	\N	1099
2016-07-07 15:54:08.756529+00	2016-12-10 01:05:18.400623+00	813	completed				+16107050295		135	2016-07-07 15:54:08.754809	2016-07-07 15:56:23.695746	CAf72ce38de43162f2770318ce2ce33351	\N	24			0	inbound	+18557088731	\N	1.61429691314697266	null	new lead		3	\N	\N	1100
2017-06-17 21:57:18.892582+00	2017-06-17 22:01:11.222878+00	5602	completed				+16784997660		231	2017-06-17 21:57:18.890812	2017-06-17 22:01:10.011804	CAd2fb435eaf8ee39a61d3e5b781c3ba2e	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE63917744b59412d84342c7f82cf02499	0	inbound	+17704009016	132	11.7521131038665771	\N	new lead		13	\N	\N	1104
2017-06-17 21:56:45.723713+00	2017-06-24 13:45:04.893958+00	5601	completed				+16784997660		26	2017-06-17 21:56:45.72096	2017-06-17 21:57:11.562257	CAf94d9b6b93209636cdea09ecd8c188a2	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE5fe99b6dd4f50bec0f456f0d53d6b8cd	0	inbound	+17704009016	132	13.8792710304260254	\N	new lead		13	\N	\N	1104
2017-03-13 17:11:04.260381+00	2017-11-29 18:38:53.212111+00	3396	completed				+14693354888		166	2017-03-13 17:11:04.257705	2017-03-13 17:13:50.728126	CA44473bc8d2e5dc8837b754cffc528f0b	\N	107			0	inbound	+12146922088	\N	10.3836672306060791	\N	new lead	ochoa maria	9	\N	\N	1105
2017-04-22 17:55:02.117625+00	2017-11-29 18:47:25.068235+00	4223	completed				+14079134537		153	2017-04-22 17:55:02.114957	2017-04-22 17:57:34.763938	CA81d72e6177f02e483a8437c8b114a5ba	\N	82		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE543a401ec2a15c48e4ccb140dba70285	0	inbound	+19728330116	\N	15.7245039939880371	\N	new lead	challa viswa sr	8	\N	\N	1106
2016-11-03 20:13:23.863058+00	2016-11-03 20:13:23.88477+00	2657	missed	Miranda	McNeal	mirandamcneal08@gmail.com	+19125318077		\N	2016-11-03 20:13:23.862147	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	1109
2017-07-22 21:01:44.359876+00	2017-07-22 21:05:32.822009+00	5834	completed				+16825510991		228	2017-07-22 21:01:44.357885	2017-07-22 21:05:32.818759	CA07ea535658dc7e8a7c194b9db37a5ae3	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REe29c637de104e67b1d9bd539d69a07a4	0	inbound	+18177569010	124	127.601897001266479	\N	new lead	dallas  tx	12	\N	\N	1110
2017-05-06 18:28:40.231801+00	2017-11-29 18:38:53.215185+00	4806	completed				+13864798700		82	2017-05-06 18:28:40.22996	2017-05-06 18:30:01.932359	CAd4c2271c60e60009f87665c4ff5cdfe1	\N	105			0	inbound	+12146922088	\N	7.40075302124023438	\N	new lead	caros jason    	9	\N	\N	1111
2017-08-10 12:32:36.9575+00	2017-08-10 12:38:18.812818+00	5981	completed				+17819643599		342	2017-08-10 12:32:36.95549	2017-08-10 12:38:18.56664	CA025825c970e89ae72a53c1f4de2b6f47	\N	152			0	inbound	+17704009016	132	314.977059125900269	\N	new lead		13	\N	\N	1116
2017-07-24 23:34:58.502238+00	2017-07-24 23:37:50.148934+00	5848	completed				+18177273293		171	2017-07-24 23:34:58.49989	2017-07-24 23:37:49.059972	CA3aafec904444f94302a7acdb034c13f9	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REe77982175889c52288600b99cc909fc9	0	inbound	+18177569010	124	10.1989350318908691	\N	new lead	lara cornelio	12	\N	\N	1117
2016-07-25 22:26:50.808457+00	2016-07-26 12:47:48.826197+00	944	completed	Julie	Borowitz	artyjewelz@yahoo.com	+19206763233		\N	2016-07-25 22:26:50.806248	\N		4b51c6b2-49f9-4108-8fdf-a8671e497256	\N			0	outbound	+18556311541	\N	\N	{}	new lead		1	\N	\N	1127
2017-05-02 16:31:50.018522+00	2017-11-29 18:47:25.068355+00	4579	completed				+14698535638		345	2017-05-02 16:31:50.016615	2017-05-02 16:37:35.29903	CAa3fa15f653ef4e85757c2ce2e272bbc8	\N	83		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE2c661468ae939e059cd12920a7240b21	0	inbound	+19728330116	\N	14.4351809024810791	\N	new lead	cell phone   tx	8	\N	\N	1131
2016-07-26 14:18:45.624757+00	2017-11-29 18:31:10.261551+00	946	completed				+15139320907		111	2016-07-26 14:18:45.623088	2016-07-26 14:20:36.819239	CA625920937ce3a4695efe1cec635cdd90	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE217db552c54dba6c82aaf896e007fe93	0	inbound	+18556311490	\N	22.4695491790771484	null	new lead		1	\N	\N	1132
2016-11-02 15:26:37.020176+00	2016-11-02 15:26:37.046024+00	2551	missed	Gale	Farley	gale.farley@vnhs.org	+14042183734		\N	2016-11-02 15:26:37.018924	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	1133
2016-11-09 17:02:46.211287+00	2016-11-09 17:09:26.205986+00	2820	completed				+19105750236		399	2016-11-09 17:02:46.209742	2016-11-09 17:09:25.214648	CA99faf4ccc4b197d81e99b4ce4baa7ac1	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REd2d01dfbaf87f8ee219ee2e7ad55b0ce	0	inbound	+18557240606	49	2.43708515167236328	null	new lead		1	\N	\N	1134
2017-06-29 21:20:51.919525+00	2017-08-17 14:35:21.045521+00	5687	completed				+18177575511		88	2017-06-29 21:20:51.916802	2017-06-29 21:22:19.982874	CAbe1bcee6a80d544718a3d0fcbc1610ee	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE6b5853112803eacf9f06f6b314f34844	0	inbound	+18177569010	124	7.50731396675109863	\N	new lead	foster q	12	\N	\N	1135
2017-12-23 15:38:04.908819+00	2017-12-23 15:43:36.721088+00	8081	completed	Marquise	King	Quiseking7495@yahoo.com	+14707659985		17	2017-12-23 15:38:04.907286	2017-12-23 15:38:33.704676	CA9cceee5e9f497b271cc99b49d2337281	cd009b81-ec25-40d7-a806-e428c0f41965	157			1	outbound	+17706597466	\N	11.668828010559082	{}	new lead		14	\N	\N	1137
2017-12-21 21:10:03.537672+00	2017-12-21 21:11:08.005943+00	8059	completed				+14325597721		64	2017-12-21 21:10:03.534003	2017-12-21 21:11:07.082001	CA5a3d54a18d72b7021260b707e5c33a70	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE1a7354751c9c51c523acfd29872f6a22	0	inbound	+18177569010	124	9.47875690460205078	\N	new lead	fry andrew	12	\N	\N	1139
2017-05-08 18:53:35.019477+00	2017-11-29 18:38:49.810365+00	4861	completed				+12146806313		93	2017-05-08 18:53:35.017873	2017-05-08 18:55:07.924383	CAde490e518eb569d2f540b2e335da5392	\N	127			0	inbound	+12147122250	\N	1.15659999847412109	\N	new lead	wilkins r      	9	\N	\N	1141
2017-05-23 16:46:01.393898+00	2017-11-29 18:38:49.81282+00	5321	completed				+16129918151		276	2017-05-23 16:46:01.391772	2017-05-23 16:50:37.818292	CAb391c24e33ebf3daa2cdd9af34716f2d	\N	99			0	inbound	+12147122250	\N	4.99086689949035645	\N	new lead	wireless caller	9	\N	\N	4123
2016-06-28 18:56:18.836652+00	2017-11-29 18:31:41.49022+00	614	completed	David	Nash		+16144196663		26	2016-06-28 18:56:18.835687	2016-06-28 18:56:44.434785	CA348d33064caf919661b10cf0a25e7fe0	\N	\N			0	inbound	+18552959002	\N	14.4959139823913574	null	new lead		1	\N	\N	249
2016-06-28 18:56:47.900513+00	2017-11-29 18:31:41.490227+00	615	completed	David	Nash		+16144196663		48	2016-06-28 18:56:47.899508	2016-06-28 18:57:36.049783	CA4c52fe7208b301d3937d898a9f4f0b05	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REc2fa2bdcfb3e09ee7d4650391c5b606e	0	inbound	+18552959002	\N	13.5656681060791016	null	new lead		1	\N	\N	249
2017-12-20 18:03:51.720434+00	2017-12-20 18:04:02.421602+00	8030	completed				+16784572797		10	2017-12-20 18:03:51.718297	2017-12-20 18:04:01.786845	CAd6095239c2e7adea96ac128f03f43f23	\N	157		https://api.twilio.com/2010-04-01/Accounts/ACbd7756819f4882feb347788ad7959655/Recordings/REc806e2c36868b8bba2522477aeb9ec64	0	inbound	+17706597466	137	6.47051405906677246	\N	new lead		14	\N	\N	256
2017-11-29 14:02:49.661449+00	2017-11-29 14:03:39.839783+00	7386	completed				+17633178640		49	2017-11-29 14:02:49.658411	2017-11-29 14:03:39.140795	CAc875f936c1b4bd7cf350073c0be229cb	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE1bfdb419cb32df4cca4cbf5fa61bbb92	0	inbound	+18558645656	136	2.37508511543273926	\N	new lead		15	\N	\N	288
2017-11-27 18:03:23.682999+00	2017-11-27 18:03:48.277778+00	7345	completed				+17633178640		25	2017-11-27 18:03:23.681135	2017-11-27 18:03:48.265971	CAe9690d4888cf74968b041d36822e2440	\N	158			0	inbound	+18558645656	136	2.31539082527160645	\N	new lead		15	\N	\N	288
2017-04-28 20:31:33.846827+00	2017-11-29 18:38:53.214788+00	4445	completed				+14692302067		89	2017-04-28 20:31:33.844624	2017-04-28 20:33:02.858965	CA9744cd50d6421bb5f3d91f54afaca8de	\N	133			0	inbound	+12146922088	\N	5.28353500366210938	\N	new lead	wireless caller	9	\N	\N	290
2016-08-08 16:43:19.50754+00	2016-08-08 17:01:56.072776+00	1330	missed	Leslie	Meyer	1@1.com	+16618167715		\N	2016-08-08 16:43:19.5059	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - credit union		1	\N	\N	4
2016-08-06 01:14:23.009543+00	2016-08-08 12:49:11.598348+00	1302	missed	Christopher	Rodriguez	ca.rodriguez6@gmail.com	+16614339511		\N	2016-08-06 01:14:23.008489	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - credit union		1	\N	\N	224
2017-05-01 18:40:51.319286+00	2017-11-29 18:38:49.808168+00	4531	completed				+18302759693		78	2017-05-01 18:40:51.317598	2017-05-01 18:42:09.597838	CAff345510fa98d45fef9ec126a26e18d1	\N	\N			0	inbound	+12147122250	\N	6.04895687103271484	\N	new lead	haines courtney	9	\N	\N	329
2017-05-06 17:01:27.900264+00	2017-11-29 18:38:49.810174+00	4803	completed				+18302759693		79	2017-05-06 17:01:27.897426	2017-05-06 17:02:46.656446	CA338a6f85cc5e97bbf996060d963ef408	\N	124			0	inbound	+12147122250	\N	1.15668892860412598	\N	new lead	haines courtney	9	\N	\N	329
2016-08-03 03:55:35.269952+00	2016-08-03 13:10:04.431578+00	1165	missed	carlos	fajardo	carlosfajard@msn.com	+16612029313		\N	2016-08-03 03:55:35.268725	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - autopay		1	\N	\N	332
2017-10-13 19:37:03.209805+00	2017-10-13 19:47:03.117282+00	6700	completed				+16783614919		600	2017-10-13 19:37:03.207768	2017-10-13 19:47:03.113276	CA2103561bbd3bb459e93add7c61085b62	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REc3dba6a20a7a455fd91afdf9db6d70a7	0	inbound	+17707665732	133	376.840277910232544	\N	new lead		13	\N	\N	333
2016-11-13 20:31:46.169776+00	2016-11-13 20:31:46.202853+00	2885	missed	Nicole	Brooks	nicole.tenn@gmail.com	+14042863981		\N	2016-11-13 20:31:46.168692	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	337
2016-08-09 20:20:27.13344+00	2016-08-09 21:12:13.886825+00	1368	missed	Daniel	Summerfield	z.dtrain@yahoo.com	+14065314404		\N	2016-08-09 20:20:27.132524	\N		07cfd785-7aef-47fb-8d17-7f38ec833934	\N			0	outbound	+18556311439	\N	\N	{}	application submitted - credit union		1	\N	\N	255
2017-04-18 14:10:38.149478+00	2017-11-29 18:38:49.805399+00	4030	completed				+14169003303		90	2017-04-18 14:10:38.147078	2017-04-18 14:12:08.568806	CAcdee64c4c4087d1810e42dc25b1affe0	\N	105			0	inbound	+12147122250	\N	4.74246501922607422	\N	new lead	toronto  on	9	\N	\N	367
2017-04-18 16:47:40.060345+00	2017-11-29 18:38:49.805456+00	4042	completed				+14169003303		178	2017-04-18 16:47:40.058358	2017-04-18 16:50:37.869438	CA61b3adfacc77035e083c5563bde68e41	\N	\N			0	inbound	+12147122250	\N	3.8858180046081543	\N	new lead	toronto  on	9	\N	\N	367
2017-07-24 16:39:51.6927+00	2017-08-17 14:35:21.045644+00	5840	completed				+18177273899		436	2017-07-24 16:39:51.69018	2017-07-24 16:47:07.608043	CA30e5f185f648d8464fe38740e22eccfa	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE74f04effdcb2a8aec251867ae9c0761f	0	inbound	+18177569010	124	400.261269092559814	\N	new lead	drones charolet	12	\N	\N	368
2017-07-24 18:10:15.636412+00	2017-08-17 14:35:21.045651+00	5842	completed				+18177273899		154	2017-07-24 18:10:15.634205	2017-07-24 18:12:49.232746	CA3df30e1c1bab75a24d62e9fb607217df	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE621f8d6419d02f2104b426b3aaf7d22a	0	inbound	+18177569010	124	8.79376387596130371	\N	new lead	drones charolet	12	\N	\N	368
2016-08-10 15:06:49.396976+00	2017-11-29 18:31:37.368789+00	1384	missed				+16618103419		55	2016-08-10 15:06:49.395077	2016-08-10 15:07:44.013505	CA13443e8fbf0ed03012782cefffd60889	\N	\N			0	inbound	+18555472453	\N	31.4919509887695312	null	general interest		1	\N	\N	70
2016-11-14 16:04:46.579181+00	2016-11-14 16:45:21.47761+00	2887	completed				+19198895708		2428	2016-11-14 16:04:46.577634	2016-11-14 16:45:14.819346	CA0aa8a990454003acf0d6bc978cece75b	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE0c909176f0d1d071e76bc43320db213e	0	inbound	+18557240606	49	2.11437320709228516	null	new lead		1	\N	\N	411
2017-04-25 13:49:07.985392+00	2017-11-29 18:38:49.806532+00	4277	completed				+12629601640		302	2017-04-25 13:49:07.981698	2017-04-25 13:54:09.49241	CA319af51ded361ef6fbb2576172df8ac6	\N	105			0	inbound	+12147122250	\N	9.96726298332214355	\N	new lead	marshall theo  	9	\N	\N	412
2017-09-21 18:42:30.993466+00	2017-09-21 18:43:12.26636+00	6419	completed	Tereska	Mayweather	Mayweather38@gmail.com	+16783946369		33	2017-09-21 18:42:30.991832	2017-09-21 18:43:12.2423	CA432d4689a1c5e579e7fcbd576df894f2	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REcfe70df147ece460d6f98630f2bad88c	1	outbound	+17704009016	\N	6.64413595199584961	{}	new lead		13	\N	\N	417
2016-11-05 20:18:42.728757+00	2016-11-05 20:18:42.756605+00	2756	missed	Phillip	King	phsballa@sbcglobal.net	+16159754874		\N	2016-11-05 20:18:42.727543	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	420
2016-11-05 19:54:43.775628+00	2016-11-05 20:08:29.918753+00	2754	completed				+16159754874		825	2016-11-05 19:54:43.774569	2016-11-05 20:08:28.329508	CA2f7417d0dac8d91bcc20cb787e962d6d	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE1a79d7997d08985e4324b338869bc083	0	inbound	+18557240606	49	2.20630002021789551	null	new lead		1	\N	\N	420
2016-08-07 17:26:33.405029+00	2016-12-10 00:58:29.813611+00	1313	missed				+15108609900		10	2016-08-07 17:26:33.403332	2016-08-07 17:26:43.175187	CAd787aa165aa30f3fc4fd0dd46cb3357d	\N	\N			0	inbound	+18557826699	\N	\N	null	new lead		3	\N	\N	425
2017-09-19 20:59:37.741499+00	2017-09-19 21:01:56.209167+00	6402	completed	Valerie	Buffington	Buffinton.valerie23@gmail.com	+16787481130		119	2017-09-19 20:59:37.740033	2017-09-19 21:01:56.184413	CA360e55e5b461729cb1c2d988696a5314	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE32b58de44a9ef47fef06a61175430634	1	outbound	+17704009016	\N	14.9261629581451416	{}	new lead		13	\N	\N	426
2017-11-09 19:44:44.874768+00	2017-11-29 18:31:56.6005+00	7000	missed				+15708234349		8	2017-11-09 19:44:44.872865	2017-11-09 19:44:53.254945	CAc4db4b38e75462ccafebbaef7381e27a	\N	\N			0	inbound	+18556311397	\N	\N	\N	new lead		1	\N	\N	427
2017-06-30 18:05:22.444784+00	2017-06-30 18:11:54.940809+00	5694	completed	Tommy	Holland		+16789897119		392	2017-06-30 18:05:22.442871	2017-06-30 18:11:54.629348	CAce1ee083649a7baea39bf98dbd7dc678	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REf3321b5c81292b4de5d6596dfbfe7148	0	inbound	+17704009016	132	342.545805931091309	\N	new lead		13	\N	\N	433
2016-08-15 18:05:01.867242+00	2017-11-29 18:31:37.368932+00	1500	missed				+16618103419		54	2016-08-15 18:05:01.865231	2016-08-15 18:05:56.097927	CA8983e68b695a43f78c8bccf3e3d6eaf4	\N	\N			0	inbound	+18555472453	\N	31.7183330059051514	null	general interest		1	\N	\N	70
2016-08-18 14:47:43.934429+00	2017-11-29 18:32:13.821858+00	1578	missed				+14404223142		58	2016-08-18 14:47:43.932173	2016-08-18 14:48:42.046497	CAab875e64a1bf451e13fc45ee13893c66	\N	\N			0	inbound	+18555983683	\N	31.8770949840545654	null	do not contact		1	\N	\N	202
2016-08-15 16:40:22.514798+00	2016-08-15 16:41:21.776247+00	1494	missed	Jeremiah	Soval		+16614448507		59	2016-08-15 16:40:22.512464	2016-08-15 16:41:21.773773	CA9bba70ca229669985e11eef63a2ad592	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE2d651811162e72548c4e86e0448048a9	0	inbound	+18555343978	48	31.6716279983520508	null	general interest		1	\N	\N	365
2016-08-15 18:12:29.143678+00	2016-08-15 18:13:22.5041+00	1501	missed	Jeremiah	Soval		+16614448507		53	2016-08-15 18:12:29.142629	2016-08-15 18:13:22.502307	CA24999fd40fd74d84849c69663d3fd7ba	\N	\N			0	inbound	+18555343978	48	31.4761691093444824	null	general interest		1	\N	\N	365
2016-07-22 20:01:59.538773+00	2017-11-29 18:32:13.821565+00	921	completed	Kevin 	Brown		+13306920643		70	2016-07-22 20:01:59.537674	2016-07-22 20:03:09.578291	CA483e96fe35edc9521ed13c897e67b6df	\N	17		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REdd7263e544bf32e25c6a2cffd99a4b58	0	inbound	+18555983683	\N	10.9863572120666504	null	select status		1	\N	\N	327
2016-08-17 15:50:48.909652+00	2016-08-17 16:03:49.250392+00	1550	missed	Clayton 	Evans	cee7784@yahoo.com	+16143530944		\N	2016-08-17 15:50:48.908366	\N		d33a481e-e0af-47ac-9f90-260f20b69de5	\N			0	outbound	+18552959002	\N	\N	{}	application submitted - autopay		1	\N	\N	349
2016-08-17 15:06:59.077609+00	2017-11-29 18:31:41.490695+00	1548	missed				+16143530944		86	2016-08-17 15:06:59.074843	2016-08-17 15:08:24.827846	CA2860d4c618901d8722021a76c390ca29	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REcf08e3de274ae5313842cbe51b9e0d37	0	inbound	+18552959002	\N	31.8783361911773682	null	application submitted - autopay		1	\N	\N	349
2016-08-15 20:29:50.158326+00	2017-11-29 18:31:37.368939+00	1515	completed	Jamie	Sandoval		+16614448507		317	2016-08-15 20:29:50.156708	2016-08-15 20:35:07.091303		\N	16			0	outbound	+18555472453	\N	\N	null	general interest		1	\N	\N	365
2016-08-15 23:37:46.555297+00	2017-11-29 18:31:37.368953+00	1535	missed	Jamie Sandoval; Jeremiah Soval;  and Joseph Remeral	Sandoval all the same person		+16614448507		38	2016-08-15 23:37:46.553444	2016-08-15 23:38:24.594526	CA73d648ac6886525b39ed3461b9b18b9b	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REb9760f5887f1b169c1a2c2fea69009d8	0	inbound	+18555472453	\N	\N	null	general interest		1	\N	\N	365
2016-09-28 15:39:23.83027+00	2016-12-09 17:10:17.413492+00	2092	completed				+16093063649		142	2016-09-28 15:39:23.828627	2016-09-28 15:41:45.756379	CA35faa8c10fc3e5744c1515fabbdef241	\N	27			0	inbound	+18552716856	\N	6.21352815628051758	null	new lead		3	\N	\N	493
2016-08-18 22:24:44.879644+00	2017-11-29 18:31:37.368975+00	1597	missed				+16612730336		17	2016-08-18 22:24:44.878056	2016-08-18 22:25:02.104068	CAae0bdbc7856354259e36b2d269650879	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE196d955b73d56fb2ca103c7df5a91435	0	inbound	+18555472453	\N	\N	null	select status		1	\N	\N	50
2016-08-23 05:06:52.979222+00	2016-08-23 11:47:27.216241+00	1663	missed	Kyle	Collett	kylec431@hotmail.com	+15134001693		\N	2016-08-23 05:06:52.978225	\N		25d0200e-983d-4413-94ae-eb664b99711c	\N			0	outbound	+18556311490	\N	\N	{}	application submitted - autopay		1	\N	\N	149
2016-08-23 19:03:23.632325+00	2017-01-27 21:12:23.813623+00	1682	completed				+16614920298		83	2016-08-23 19:03:23.631018	2016-08-23 19:04:46.225979		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	192
2017-11-04 17:52:50.232893+00	2017-11-04 17:56:50.759964+00	6933	completed				+17704021572		241	2017-11-04 17:52:50.230896	2017-11-04 17:56:50.742479	CA7a7f2897d1e939dedc7fc8949bb49707	\N	153			0	inbound	+17707665732	133	12.8101999759674072	\N	new lead		13	\N	\N	511
2017-08-04 15:42:53.43844+00	2017-08-04 15:45:14.229949+00	5933	completed				+17702874449		139	2017-08-04 15:42:53.436602	2017-08-04 15:45:12.036585	CA6fe81497f51e032d0eadacb54ecca367	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE401b4816ccbdc5d0908880d6380558e1	0	inbound	+17704009016	132	20.302666187286377	\N	new lead		13	\N	\N	513
2017-09-17 15:40:19.753181+00	2017-11-29 18:31:14.616574+00	6383	missed				+15619940927		8	2017-09-17 15:40:19.750871	2017-09-17 15:40:27.481202	CA5fa8b1db985793a209f3753b050cc390	\N	\N			0	inbound	+18556311541	\N	\N	\N	new lead		1	\N	\N	517
2017-10-19 19:19:01.472337+00	2017-11-29 18:31:56.600493+00	6758	missed				+15708245757		37	2017-10-19 19:19:01.469988	2017-10-19 19:19:38.455767	CA57bbcca33dbe772fa26de041a1e1923b	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE6ce6ad68ac8a0ff9e0b028f802a445cb	0	inbound	+18556311397	\N	\N	\N	new lead		1	\N	\N	518
2016-11-03 15:55:33.02004+00	2016-11-03 16:20:17.533808+00	2630	completed				+13019911300		1477	2016-11-03 15:55:33.018672	2016-11-03 16:20:09.790024	CA97ef5999efc85becb69534d4b1aad2b8	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REac0908245210ece865bda479eb40d70e	0	inbound	+18557240606	49	2.21631002426147461	null	new lead		1	\N	\N	522
2016-08-10 21:08:48.689762+00	2017-01-27 21:12:23.813114+00	1399	completed	Jeremiah	Soval		+16614448507		443	2016-08-10 21:08:48.688582	2016-08-10 21:16:11.242804		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	365
2016-08-24 19:15:39.39836+00	2017-01-27 21:12:23.813721+00	1750	completed	Curtis	Johnson		+16614497598		1204	2016-08-24 19:15:39.396746	2016-08-24 19:35:43.162138		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	366
2017-06-19 13:25:42.329065+00	2017-06-19 13:26:21.509401+00	5604	completed				+17709124919		36	2017-06-19 13:25:42.326513	2017-06-19 13:26:18.151335	CA8761c1973a4f1d3436345ecd9a904f2d	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE3685b6ea6b044e8a6b23c500dd00982c	0	inbound	+17704009016	132	13.7915809154510498	\N	new lead		13	\N	\N	540
2017-06-19 13:27:17.977759+00	2017-06-24 13:44:45.085692+00	5605	completed				+17709124919		270	2017-06-19 13:27:17.975869	2017-06-19 13:31:48.370087	CA5f013d1d0044e05e7129d6ff3cb5be21	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REecdf4417f8dcb184591d2cba5c7ee3bc	0	inbound	+17704009016	132	20.5120978355407715	\N	new lead		13	\N	\N	540
2017-07-01 18:14:27.677979+00	2017-07-01 18:20:05.826893+00	5706	completed				+17709124919		337	2017-07-01 18:14:27.676088	2017-07-01 18:20:04.67758	CA6c7a5ee6f2c4c4b562f44683591d8ce8	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REc3b91f640bc5d4082d55603959a67b64	0	inbound	+17704009016	132	19.3949470520019531	\N	new lead		13	\N	\N	540
2017-07-01 19:35:58.788126+00	2017-07-01 19:37:20.158342+00	5707	completed				+17709124919		79	2017-07-01 19:35:58.786194	2017-07-01 19:37:17.983411	CA18591d00bd1ae4f3047408ab766370fe	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REb53643340ca73aa3aa56c8bdd859adeb	0	inbound	+17704009016	132	13.4394659996032715	\N	new lead		13	\N	\N	540
2017-12-08 15:33:53.499782+00	2017-12-08 15:48:48.817313+00	7711	completed				+18082188118		892	2017-12-08 15:33:53.498062	2017-12-08 15:48:45.643199	CA4d712eac5342e2af0511fae5629c798e	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE636ee3804f67a6f49209d07f3d14a7f7	0	inbound	+18558645656	136	2.68100595474243164	\N	new lead		15	\N	\N	544
2017-09-28 14:17:09.87048+00	2017-09-28 14:20:21.160648+00	6503	completed				+17063005077		191	2017-09-28 14:17:09.868643	2017-09-28 14:20:21.146451	CA90ced3b1effe190c70b030357b428fe3	\N	154			0	inbound	+17707665699	134	3.21169209480285645	\N	new lead		13	\N	\N	552
2016-08-12 18:56:47.113099+00	2017-01-27 21:12:23.813158+00	1453	completed				+16614920298		81	2016-08-12 18:56:47.111921	2016-08-12 18:58:08.023671		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	192
2016-09-03 18:42:08.332279+00	2016-09-06 11:45:58.072097+00	1875	missed	Nancy	Goldman	mnancy60@hotmail.com	+16614343454		\N	2016-09-03 18:42:08.331149	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application started		1	\N	\N	307
2016-12-07 17:19:25.493852+00	2016-12-07 17:24:26.253108+00	3058	completed				+18178460206		300	2016-12-07 17:19:25.492018	2016-12-07 17:24:25.702142	CA2567c85ea70c3b92925aa43c5f624e25	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE2782c0e93433155d3ca821b11f0792ce	0	inbound	+18557240606	49	2.25353479385375977	null	new lead		1	\N	\N	564
2016-12-09 14:30:22.694426+00	2016-12-09 14:48:20.92486+00	3069	completed				+18178460206		1076	2016-12-09 14:30:22.692253	2016-12-09 14:48:18.34236	CA548f8250af61c4094298ad871e3b76aa	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE29f2b61642aa3544596fe7deb18a10a1	0	inbound	+18557240606	49	2.41938185691833496	null	new lead		1	\N	\N	564
2017-12-05 00:41:35.396039+00	2017-12-05 00:45:29.581621+00	7571	completed				+16173129032		233	2017-12-05 00:41:35.393366	2017-12-05 00:45:28.81127	CA4f2e0dbd7232eac717f57be2fe81ff9e	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE0150c4d73a77f8dc5f446fdf5bd92ed2	0	inbound	+18558645656	136	2.18410205841064453	\N	new lead		15	\N	\N	565
2017-05-09 20:26:55.141204+00	2017-11-29 18:38:49.810718+00	4933	completed				+19728003374		90	2017-05-09 20:26:55.139744	2017-05-09 20:28:25.390401	CAd410700ccf95a768a4bdfd35612b6b43	\N	126			0	inbound	+12147122250	\N	2.45141696929931641	\N	new lead	jallah ivor    	9	\N	\N	566
2017-09-13 12:32:55.937083+00	2017-09-13 12:32:56.002308+00	6330	missed	Brittany	Freeman	btfreeman27@gmail.com	+17063728772		\N	2017-09-13 12:32:55.935515	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	568
2016-07-26 18:09:21.171141+00	2017-11-29 18:31:14.616468+00	952	completed				+19206344037		67	2016-07-26 18:09:21.169114	2016-07-26 18:10:27.981148	CA3b838f92353ad67c68695686ba75ed43	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE8e9cd01ef659dc11aec640fe641ccb21	0	inbound	+18556311541	\N	2.1667940616607666	null	new lead		1	\N	\N	570
2017-10-15 17:59:04.953892+00	2017-10-15 18:04:58.021458+00	6717	missed	Ceira	Wilson 	Ceirawilson@gmail.com	+17708960267		0	2017-10-15 17:59:04.952062	2017-10-15 18:04:58.01954	CAd7c1099eea0b3bc3777ed47b32edd6f6	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			3	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	575
2017-10-16 18:39:51.590252+00	2017-10-16 18:46:30.784304+00	6724	missed	Ceira	Wilson 		+17708960267		67	2017-10-16 18:39:51.588156	2017-10-16 18:40:58.408393	CA398e36b1eb4c585fd93fbeb7be44ed85	\N	\N			0	inbound	+17707665732	133	377.430783033370972	\N	new lead		13	\N	\N	575
2017-10-17 16:03:29.408534+00	2017-10-17 16:06:13.197331+00	6735	completed	Ceira	Wilson 		+17708960267		164	2017-10-17 16:03:29.40657	2017-10-17 16:06:13.180639	CA5993ea7af4aa257b3315c7e8066056e1	\N	150			0	inbound	+17707665732	133	15.1653580665588379	\N	new lead		13	\N	\N	575
2016-07-12 18:41:47.059338+00	2016-07-12 18:44:27.761174+00	859	completed	George	Bertison	gbertison@gmail.com	+16145378354		132	2016-07-12 18:41:47.058209	2016-07-12 18:44:27.759521	CA968218491ff630229039ac2c98038e03	d33a481e-e0af-47ac-9f90-260f20b69de5	17		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE24b23794b0feb55e6847a87a86c84f3c	1	outbound	+18552959002	\N	25.0944139957427979	{}	new lead		1	\N	\N	576
2016-07-12 19:10:30.612929+00	2017-11-29 18:31:41.490423+00	862	completed	George	Bertison		+16145378354		26	2016-07-12 19:10:30.61115	2016-07-12 19:10:56.173078	CA9de6661ebe15afe3c84f791cbbe8398d	\N	17		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE94c0ed4ebead11b8d77401cfff20be2b	0	inbound	+18552959002	\N	6.49511003494262695	null	new lead		1	\N	\N	576
2016-09-19 15:27:41.300583+00	2016-09-19 15:28:42.371867+00	2042	missed	Curtis	Johnson		+16614497598		61	2016-09-19 15:27:41.299141	2016-09-19 15:28:42.370284	CA6d765232c1fc8ec8ffa17174e79e0a7b	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REc3380f102f3318269e7a80247415a713	0	inbound	+18555343978	48	32.6493940353393555	null	general interest		1	\N	\N	366
2016-09-19 16:33:21.747241+00	2016-09-19 16:34:16.969617+00	2045	missed	Curtis	Johnson		+16614497598		55	2016-09-19 16:33:21.744129	2016-09-19 16:34:16.96669	CA55fda01948193522226f7d5294e00a32	\N	\N			0	inbound	+18555343978	48	32.588961124420166	null	general interest		1	\N	\N	366
2016-09-19 18:39:36.937518+00	2016-09-19 18:40:01.959268+00	2052	missed	Curtis	Johnson		+16614497598		25	2016-09-19 18:39:36.936582	2016-09-19 18:40:01.949869	CA726219c9dec75dac29bf7d353e6159e1	\N	\N			0	inbound	+18555343978	48	\N	null	general interest		1	\N	\N	366
2017-08-01 13:13:39.087962+00	2017-08-01 13:20:13.867249+00	5908	completed				+16784583647		394	2017-08-01 13:13:39.084348	2017-08-01 13:20:12.698986	CA485af684e3f5829efd6a071dac179ff7	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REeeb7f8d10ef18154d742420ba7ba87c2	0	inbound	+17704009016	132	318.629462003707886	\N	new lead		13	\N	\N	585
2017-10-13 20:36:31.953977+00	2017-10-13 20:38:37.881328+00	6705	completed				+16827177242		125	2017-10-13 20:36:31.951585	2017-10-13 20:38:36.824213	CA7a7b3d02a2c91114acd691b76b7e5430	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE86f15e8c76b09fcc1a0d5d65da6f3857	0	inbound	+18177569010	124	9.29416298866271973	\N	new lead	cell phone   tx	12	\N	\N	595
2017-07-21 16:43:32.396104+00	2017-07-21 16:45:45.044643+00	5828	completed				+16823179719		132	2017-07-21 16:43:32.393973	2017-07-21 16:45:43.931893	CA4c033e287bd0ebdc621c1ce0ba31b2f0	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REc4af6f620003e11862b0a22c572ba7ea	0	inbound	+18177569010	124	13.6259551048278809	\N	new lead	dallas  tx	12	\N	\N	600
2017-05-03 22:05:24.991906+00	2017-11-29 18:38:49.8095+00	4671	completed				+18319174193		90	2017-05-03 22:05:24.990024	2017-05-03 22:06:54.661751	CA334a2649d0fa23cb95d654422cfbb08f	\N	127			0	inbound	+12147122250	\N	1.18537306785583496	\N	new lead	williamson alys	9	\N	\N	604
2017-09-15 12:23:47.628673+00	2017-09-15 12:23:48.10195+00	6363	missed				+17063519992		0	2017-09-15 12:23:47.627589	2017-09-15 12:23:48.091151	CAd71a400d220bab3478410e4718509c17	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	605
2017-08-12 21:03:23.976162+00	2017-08-12 21:05:42.540756+00	6007	completed				+14708489650		138	2017-08-12 21:03:23.974262	2017-08-12 21:05:41.848034	CA923e3a07016667357eb68649432e6acb	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE6ae76e0e253adb690fcb7c77e026463e	0	inbound	+17704009016	132	14.6484811305999756	\N	new lead		13	\N	\N	1142
2017-10-09 18:16:35.721676+00	2017-10-09 18:16:46.430317+00	6633	completed				+17062860455		11	2017-10-09 18:16:35.718519	2017-10-09 18:16:46.417684	CA8ff83b91c2ec94a98d289b73397071d4	\N	153			0	inbound	+17707665732	133	6.85490608215332031	\N	new lead		13	\N	\N	1147
2017-10-09 18:19:20.906649+00	2017-10-09 18:22:53.938019+00	6634	completed	Giovonni	Burgess	Giovonni_burgess@yahoo.com	+17062860455		191	2017-10-09 18:19:20.904853	2017-10-09 18:22:53.305677	CA26ca74f1125f8ecfc8e5e7c37b5ba8df	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REa0fe1a86371faf67f87b895d2f38cb8c	1	outbound	+17704009016	\N	18.0763299465179443	{}	new lead		13	\N	\N	1147
2016-07-06 13:24:31.804481+00	2016-07-06 13:28:23.799264+00	767	completed	Kevin	Shingleton	kshingleton0805@yahoo.com	+13305659885		203	2016-07-06 13:24:31.802976	2016-07-06 13:28:23.798167	CAb9389dac99217f8d5da91e5bb77f5326	ee869226-e246-4ab4-aaaa-e9403e2ddd39	17		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE97d5317b659cdb91d179853bd0df3ba1	1	outbound	+18555983683	\N	25.5870931148529053	{}	new lead		1	\N	\N	1150
2016-06-30 13:17:52.4667+00	2016-06-30 13:19:15.849613+00	667	completed	Kevin	Shingleton	kshingleton0805@yahoo.com	+13305659885		76	2016-06-30 13:17:52.465667	2016-06-30 13:19:15.848421	CA1d634597dbec8ab283883a3b5ba2ee02	ee869226-e246-4ab4-aaaa-e9403e2ddd39	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE7bd11d9b3b0bf4dd1845e1340a658048	1	outbound	+18555983683	\N	1.75761508941650391	{}	new lead		1	\N	\N	1150
2017-11-07 22:38:24.434235+00	2017-11-07 22:39:18.533745+00	6967	completed				+16824041989		53	2017-11-07 22:38:24.432407	2017-11-07 22:39:17.097751	CA477629815574aca33e8bcc4ad75fc395	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE0531f12ba5c4df3b5f2a0cb844c94357	0	inbound	+18177569010	124	8.97403693199157715	\N	new lead	kelly lea	12	\N	\N	1151
2017-06-01 17:35:54.324402+00	2017-11-29 18:31:29.180664+00	5552	missed				+18609224888		1	2017-06-01 17:35:54.321861	2017-06-01 17:35:55.268851	CA7b0b064cb765f2932ad7b31267929626	\N	\N			0	inbound	+18556311528	\N	\N	\N	new lead		1	\N	\N	1163
2016-07-03 23:33:49.711109+00	2016-07-05 12:49:22.084218+00	741	completed	Darleen	Ellis	dtuckerellis223@gmail.com	+19373693278		\N	2016-07-03 23:33:49.709983	\N		253cd8e5-09ac-4056-92ec-7e351aa19233	\N			0	outbound	+18557824539	\N	\N	{}	new lead		1	\N	\N	1169
2017-04-19 15:37:58.522407+00	2017-11-29 18:38:49.805703+00	4087	completed				+18163487361		159	2017-04-19 15:37:58.520642	2017-04-19 15:40:37.493659	CAd15105c46cab9ff31113f9a196cb57a3	\N	127			0	inbound	+12147122250	\N	1.48505806922912598	\N	new lead	adesa ks city  	9	\N	\N	1171
2016-11-03 15:55:56.639047+00	2016-11-03 15:55:56.667097+00	2631	missed	John	Fenderso 	fendejohn@gmail.com	+18323686966		\N	2016-11-03 15:55:56.638136	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	1173
2017-08-23 15:06:31.930268+00	2017-08-23 15:12:03.515803+00	6145	missed				+17705369921		7	2017-08-23 15:06:31.928274	2017-08-23 15:06:39.284364	CA216da9554dc5f6f3a68434c88db04631	\N	\N			0	inbound	+17707665732	133	316.707031011581421	\N	new lead		13	\N	\N	1174
2016-10-05 19:23:00.929997+00	2016-12-09 17:10:17.413549+00	2194	completed				+19082834071		105	2016-10-05 19:23:00.927536	2016-10-05 19:24:46.264834	CAaefaa726c3c25fdfd8c576845ba9c5ad	\N	27			0	inbound	+18552716856	\N	6.74930691719055176	null	new lead		3	\N	\N	1178
2016-08-01 17:14:36.128516+00	2017-01-27 21:12:23.812348+00	1077	completed	Mark	Reiter	markreiter71@gmail.com	+15137675602		49	2016-08-01 17:14:36.12752	2016-08-01 17:15:51.360861	CA5be79423774235cc3316409765c3b9ed	25d0200e-983d-4413-94ae-eb664b99711c	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE0db7efd6284ef8f2bf9317fb82221dc6	1	outbound	+18556311490	\N	22.3503379821777344	{}	application submitted - credit union		1	\N	\N	8
2016-11-04 17:58:35.022053+00	2016-11-04 18:02:49.530244+00	2715	completed				+19404640852		254	2016-11-04 17:58:35.021086	2016-11-04 18:02:48.832349	CAa65f3d0a4b1519910f1fc2902145e0d0	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE9d6893c7004d4e3a7bb0dc89b21497dc	0	inbound	+18557240606	49	1.91815280914306641	null	new lead		1	\N	\N	607
2016-08-06 18:52:21.153459+00	2016-08-08 12:48:56.335605+00	1308	missed	Victoria	Bibby	vickibibby@msn.com	+16612123154		\N	2016-08-06 18:52:21.152275	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - autopay		1	\N	\N	609
2016-08-10 17:07:41.110522+00	2016-08-17 21:02:39.055983+00	1392	missed	chenda	korm	chendakorm@yahoo.com	+16143574144		\N	2016-08-10 17:07:41.108405	\N		25d0200e-983d-4413-94ae-eb664b99711c	\N			0	outbound	+18556311490	\N	\N	{}	application submitted - autopay		1	\N	\N	618
2016-08-10 16:32:21.470302+00	2017-11-29 18:31:10.262154+00	1391	completed				+16143574144		531	2016-08-10 16:32:21.469081	2016-08-10 16:41:12.171266	CA2d6fa7c0d303bbea21bed247cc8feaf2	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE93e20517b026032b8626be7b4699af7b	0	inbound	+18556311490	\N	6.96585607528686523	null	application submitted - autopay		1	\N	\N	618
2017-12-15 17:25:27.117247+00	2017-12-15 17:26:09.189845+00	7895	completed				+15127433358		41	2017-12-15 17:25:27.115463	2017-12-15 17:26:08.05382	CA1a1cf4714381b0ef1e3069c4243dcdaf	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REf14af1afe1a67084c11f4c800a92d10b	0	inbound	+18177569010	124	9.16916704177856445	\N	new lead	ward chris	12	\N	\N	619
2017-12-08 15:22:40.629719+00	2017-12-08 15:39:21.128266+00	7710	completed				+13047120581		997	2017-12-08 15:22:40.628094	2017-12-08 15:39:17.72253	CA4958e7362929634ff5f2372ce14490f7	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE1d4e279994c230f9ef439959c38273ea	0	inbound	+18558645656	136	2.48490405082702637	\N	new lead		15	\N	\N	1181
2017-12-08 15:43:25.685861+00	2017-12-08 16:20:18.963975+00	7713	completed				+16164069165		2210	2017-12-08 15:43:25.684054	2017-12-08 16:20:15.631296	CA0f307a2c42efef3e20efb0dbff06ea5b	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE14a8de4397ea2f32d30e12d0cb13967d	0	inbound	+18558645656	136	2.51274800300598145	\N	new lead		15	\N	\N	1183
2017-09-08 22:10:22.300741+00	2017-09-08 22:16:19.478553+00	6295	missed	Waikeitha	Gibbs	waikeithagibbs@yahoo.com	+17062475358		0	2017-09-08 22:10:22.299147	2017-09-08 22:16:19.476614	CA09ec3bbad8b5df48352c0da9e1ce21bf	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			3	outbound	+17704009016	\N	334.103815078735352	{}	new lead		13	\N	\N	1184
2017-04-22 20:12:18.960217+00	2017-11-29 18:38:53.21444+00	4228	completed				+19018494102		71	2017-04-22 20:12:18.958383	2017-04-22 20:13:29.484948	CA090963185feb1966ad9a6c5b7d4cfd24	\N	105			0	inbound	+12146922088	\N	2.94379019737243652	\N	new lead	ben ferguson en	9	\N	\N	1187
2017-05-03 22:48:19.850772+00	2017-08-17 14:35:21.045104+00	4687	completed				+18177565417		44	2017-05-03 22:48:19.848876	2017-05-03 22:49:03.874421	CAf250190815a022824d51a2a52224735e	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE2371054fd9846f213547653ced5ed0bf	0	inbound	+18177569010	124	20.240562915802002	\N	new lead	dallas  tx	12	\N	\N	1188
2016-11-06 16:35:33.939222+00	2016-11-06 16:35:33.968669+00	2768	missed	benjamin	werft	benwerft@hotmail.com	+16237073855		\N	2016-11-06 16:35:33.936888	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	1192
2017-04-27 15:53:49.573449+00	2017-11-29 18:38:49.806908+00	4361	completed				+13126015438		121	2017-04-27 15:53:49.571497	2017-04-27 15:55:51.024761	CAfd3f6c1ff17fafd3e48289e228571718	\N	124			0	inbound	+12147122250	\N	0.978411197662353516	\N	new lead	cars.com	9	\N	\N	1194
2016-10-20 20:56:42.216889+00	2016-12-10 01:01:54.351678+00	2331	completed				+15153052145		6	2016-10-20 20:56:42.214715	2016-10-20 20:56:48.627001	CAda9adeb446ff9b989bbfadd915cee059	\N	49			0	inbound	+18559584242	\N	2.01927590370178223	null	new lead		3	\N	\N	1199
2017-12-30 21:04:24.134802+00	2017-12-30 21:09:10.212795+00	8167	completed				+12812294469		286	2017-12-30 21:04:24.133154	2017-12-30 21:09:10.210676	CAe4e7973f69e310d36c41b8ef8933cb0d	\N	146			0	inbound	+18177569010	124	105.477552890777588	\N	new lead	turbine air sys	12	\N	\N	1201
2017-12-06 16:16:28.930026+00	2017-12-06 16:31:00.89746+00	7636	completed				+15806341471		869	2017-12-06 16:16:28.927867	2017-12-06 16:30:57.751315	CA30535e306e03a1b4b3596a3a283e99d2	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REba253be56746c351a69ee724d381f738	0	inbound	+18558645656	136	2.51819705963134766	\N	new lead		15	\N	\N	1203
2017-05-17 21:19:04.358959+00	2017-11-29 18:38:49.812111+00	5176	completed				+19722514550		71	2017-05-17 21:19:04.35681	2017-05-17 21:20:15.690189	CAdfaf2993301efaa6d41743ba8ec36486	\N	124			0	inbound	+12147122250	\N	2.06336593627929688	\N	new lead	j tucker	9	\N	\N	1204
2017-05-18 16:23:54.064626+00	2017-11-29 18:38:49.812139+00	5192	completed				+19722514550		61	2017-05-18 16:23:54.061518	2017-05-18 16:24:55.535895	CA173f85b1b824b4d997efa2069f05cc86	\N	103			0	inbound	+12147122250	\N	8.29899001121520996	\N	new lead	j tucker	9	\N	\N	1204
2017-05-19 19:30:20.658272+00	2017-11-29 18:38:49.812288+00	5231	missed				+19722514550		44	2017-05-19 19:30:20.656917	2017-05-19 19:31:04.71216	CAee6c9b91667d0b7656fde0ebfe6cae48	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	cfb-20	9	\N	\N	1204
2017-04-25 14:51:28.714279+00	2017-11-29 18:38:49.806554+00	4280	completed				+12145320159		102	2017-04-25 14:51:28.711183	2017-04-25 14:53:10.525181	CA7a773b4640a2d70fcd9325911563434e	\N	127			0	inbound	+12147122250	\N	1.24261999130249023	\N	new lead	valentine peggy	9	\N	\N	1207
2017-03-30 20:35:32.878921+00	2017-11-29 18:38:53.213163+00	3634	completed				+12104169400		66	2017-03-30 20:35:32.877366	2017-03-30 20:36:39.365631	CA519fe9575cd288dc027c6433f1deb5d5	\N	\N			0	inbound	+12146922088	\N	5.45027613639831543	\N	new lead	little rhein st	9	\N	\N	1208
2017-03-30 20:37:39.86717+00	2017-11-29 18:38:53.21317+00	3635	completed				+12104169400		131	2017-03-30 20:37:39.865253	2017-03-30 20:39:50.800269	CA05df9e69e40903192ee7fcc98a62cda8	\N	\N			0	inbound	+12146922088	\N	3.87913203239440918	\N	new lead	little rhein st	9	\N	\N	1208
2017-12-15 19:15:25.133644+00	2017-12-15 19:19:47.635837+00	7901	completed				+15127433358		262	2017-12-15 19:15:25.131824	2017-12-15 19:19:46.885129	CA378d7758e53ff4e72c89f1977f7e26cf	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REb4118325d74a00d4e4f2668f1e53e036	0	inbound	+18177569010	124	7.91207599639892578	\N	new lead	ward chris	12	\N	\N	619
2017-04-18 22:30:53.085412+00	2017-11-29 18:38:49.805624+00	4072	completed				+19725134244		78	2017-04-18 22:30:53.083766	2017-04-18 22:32:11.221098	CAe581deb618c70add7ef8fc28cd5479af	\N	124			0	inbound	+12147122250	\N	1.51586008071899414	\N	new lead	cano raul	9	\N	\N	1210
2017-04-18 22:32:12.087656+00	2017-11-29 18:38:49.805631+00	4073	completed				+19725134244		303	2017-04-18 22:32:12.085635	2017-04-18 22:37:14.786615	CA70cb3b69eef50ebcff701c3167b44960	\N	\N			0	inbound	+12147122250	\N	7.8275151252746582	\N	new lead	cano raul	9	\N	\N	1210
2017-12-28 16:50:24.620662+00	2017-12-28 16:52:40.043719+00	8139	completed				+15864219847		134	2017-12-28 16:50:24.618909	2017-12-28 16:52:38.766568	CA0b1bb50d3a090e78735c5da43df519f1	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE2cd78586fc5938c0a6ae6dc358cb9900	0	inbound	+18558645656	136	3.13794088363647461	\N	new lead		15	\N	\N	1215
2017-07-27 18:25:16.183432+00	2017-07-27 18:34:26.785726+00	5863	completed	Lakeisha	Fulton	Keysfulton@gmail.com	+17065402330		203	2017-07-27 18:25:16.181864	2017-07-27 18:34:26.128802	CAb97bdbdd9a24f339187aae1a1fcdcab9	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REcdcd41da18a833d3166a933c5eb3b3a7	3	outbound	+17704009016	\N	343.303059101104736	{}	new lead		13	\N	\N	1216
2016-09-30 17:33:26.68543+00	2017-02-11 20:02:07.779543+00	2114	completed				+19086044806		115	2016-09-30 17:33:26.681886	2016-09-30 17:35:22.171367	CAe1b6e109f1e17ef266c3668a1ab4b15c	\N	\N			0	inbound	+18559763286	\N	1.88438701629638672	null	new lead		3	\N	\N	1217
2016-09-30 19:30:22.573424+00	2017-02-11 20:02:07.779551+00	2116	completed				+19086044806		508	2016-09-30 19:30:22.571704	2016-09-30 19:38:50.124887	CAa966396d45754546075f0ec62e2a9619	\N	\N			0	inbound	+18559763286	\N	2.05277085304260254	null	new lead		3	\N	\N	1217
2016-09-30 19:39:10.212103+00	2017-02-11 20:02:07.779559+00	2118	completed				+19086044806		775	2016-09-30 19:39:10.210574	2016-09-30 19:52:04.729379	CAda1d16a882d15ff59ae4c88b3ffbcf8f	\N	\N			0	inbound	+18559763286	\N	1.84349298477172852	null	new lead		3	\N	\N	1217
2017-06-20 17:37:14.233938+00	2017-06-24 13:45:04.893996+00	5612	completed				+16788656217		26	2017-06-20 17:37:14.230008	2017-06-20 17:37:40.233753	CA3df2bc8466c7c3abea851957cd5b9601	\N	\N			0	inbound	+17704009016	132	20.3721539974212646	\N	new lead		13	\N	\N	1220
2017-06-20 17:50:12.431889+00	2017-06-24 13:45:04.894011+00	5614	completed				+16788656217		60	2017-06-20 17:50:12.429747	2017-06-20 17:51:12.795121	CA97b7f17d409361cbd620fe13b5d77a6c	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REc86effea1eae24a7a90322982a8ce6be	0	inbound	+17704009016	132	9.60200881958007812	\N	new lead		13	\N	\N	1220
2017-06-20 17:37:44.798484+00	2017-06-24 13:45:04.894003+00	5613	completed				+16788656217		257	2017-06-20 17:37:44.795274	2017-06-20 17:42:01.625046	CAcaa833cc65fdb804baa410c28baff82e	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REaf9ccac857a7e88e8c923389363d292d	0	inbound	+17704009016	132	9.20644617080688477	\N	new lead		13	\N	\N	1220
2016-06-03 20:09:21.376877+00	2017-11-29 18:31:37.368247+00	373	completed	Spam			+15043389833		328	2016-06-03 20:09:21.374799	2016-06-03 20:14:49.246308	CAb783c602199bd7abfc537865bc20fe9b	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE861286bdfca10e8d26a474a2c6acc083	0	inbound	+18555472453	\N	14.3926229476928711	null	new lead		1	\N	\N	1221
2017-12-07 18:51:05.250919+00	2017-12-07 19:04:14.617051+00	7691	completed				+13039793023		786	2017-12-07 18:51:05.248942	2017-12-07 19:04:11.530971	CA8961c6992a3fb7debdb00b6d0b77f112	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE4195891522f9973e143c2e268f6ec3af	0	inbound	+18558645656	136	3.76140689849853516	\N	new lead		15	\N	\N	1223
2017-08-07 15:35:32.460149+00	2017-08-07 15:42:44.002019+00	5948	completed				+17063462844		432	2017-08-07 15:35:32.457636	2017-08-07 15:42:43.999776	CAf80c35334503ea11366e580a9adb690e	\N	153			0	inbound	+17704009016	132	317.507953882217407	\N	new lead		13	\N	\N	1224
2017-08-07 15:41:52.282861+00	2017-08-07 15:48:20.845309+00	5950	completed				+17063462844		388	2017-08-07 15:41:52.281344	2017-08-07 15:48:20.190311	CAaa6c3a6d1af43547ef659b67a891113f	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE47984174d1b3f3f833bbeb641b8dc549	0	inbound	+17704009016	132	318.547811985015869	\N	new lead		13	\N	\N	1224
2017-08-07 15:49:20.46326+00	2017-08-07 15:49:58.681919+00	5951	completed				+17063462844		37	2017-08-07 15:49:20.461596	2017-08-07 15:49:57.541656	CA09ad89f30e6f3a5d87ec55c0617fe907	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE9dceac5d7f1e3eadeaf6f5aadb39c2d9	0	inbound	+17704009016	132	15.9397561550140381	\N	new lead		13	\N	\N	1224
2017-04-15 19:56:40.98186+00	2017-11-29 18:38:49.805125+00	3970	completed				+12147737774		82	2017-04-15 19:56:40.979699	2017-04-15 19:58:02.752285	CA44fb5b05d91e56adaf42bbf81c619cbc	\N	127			0	inbound	+12147122250	\N	1.19536399841308594	\N	new lead	united states l	9	\N	\N	1225
2017-03-20 00:46:42.050769+00	2017-11-29 18:38:53.212636+00	3503	completed				+18126778730		73	2017-03-20 00:46:42.048732	2017-03-20 00:47:55.190841	CAf7724e302cdc3a878474c9f9ce245f11	\N	103			0	inbound	+12146922088	\N	1.51750993728637695	\N	new lead		9	\N	\N	1227
2017-03-21 13:15:51.106112+00	2017-11-29 18:38:53.212707+00	3518	completed				+18126778730		36	2017-03-21 13:15:51.10377	2017-03-21 13:16:26.97085	CA1cd8c97a038099322112d03f4d4bcbeb	\N	105			0	inbound	+12146922088	\N	4.26205897331237793	\N	new lead		9	\N	\N	1227
2018-01-01 02:01:30.884442+00	2018-01-01 02:01:30.970203+00	8170	missed	Jeremiah	Jenkins	Mj19922013@gmail.com	+14045739743		\N	2018-01-01 02:01:30.881973	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	1229
2017-09-18 20:51:07.503084+00	2017-09-18 20:56:04.161342+00	6392	completed				+17064272216		297	2017-09-18 20:51:07.501108	2017-09-18 20:56:04.144316	CAb22cac742f0411cab8fc9b2dad0b8308	\N	154			0	inbound	+17707665699	134	1.44623112678527832	\N	new lead		13	\N	\N	1232
2017-08-21 18:36:31.000837+00	2017-08-21 18:37:32.306075+00	6127	completed				+19724627507		61	2017-08-21 18:36:30.998776	2017-08-21 18:37:31.503139	CAdd29e79de25fcbb30d3b3651e8275325	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE4f9332f72c57de1d92b74ab5095c15b6	0	inbound	+18177569010	124	10.6668379306793213	\N	new lead	moriarty james	12	\N	\N	1234
2017-10-27 17:15:41.586752+00	2017-10-27 17:16:49.054488+00	6838	completed	Catherine		catmiller88@gmail.com	+16789061586		57	2017-10-27 17:15:41.584714	2017-10-27 17:16:48.558039	CA8b0bbff73c01652ff7200703cae72507	e611622e-d408-4b1f-85fa-8cba4306b7ab	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REb2e6c3b30a3574c7bf2c552b32194628	1	outbound	+17704009016	\N	8.84847784042358398	{}	new lead		13	\N	\N	1235
2017-11-28 18:17:00.277712+00	2017-11-28 18:23:37.542733+00	7365	completed				+14046414043		397	2017-11-28 18:17:00.274237	2017-11-28 18:23:37.519939	CA7ce4f23311ba75d1ec73525005570528	\N	153			0	inbound	+17707665732	133	14.2198860645294189	\N	new lead	yousuf lea	13	\N	\N	1236
2017-11-28 18:36:50.439556+00	2017-11-28 18:37:41.200062+00	7366	completed				+14046414043		51	2017-11-28 18:36:50.437625	2017-11-28 18:37:41.188724	CA7f534c3754dd63df4c2f1e6444dbd399	\N	150			0	inbound	+17707665732	133	15.0715579986572266	\N	new lead	yousuf lea	13	\N	\N	1236
2017-12-27 16:19:43.837137+00	2017-12-27 16:20:12.969825+00	8120	completed				+14043302021		28	2017-12-27 16:19:43.835489	2017-12-27 16:20:12.22457	CA721cd3b0223ac70098644edb4d51487d	\N	157		https://api.twilio.com/2010-04-01/Accounts/ACbd7756819f4882feb347788ad7959655/Recordings/REfed4082bde2bbe8069d21fa54714260d	0	inbound	+17706597466	137	6.68308186531066895	\N	new lead		14	\N	\N	1242
2017-12-26 20:13:00.933574+00	2017-12-26 20:26:00.858154+00	8108	completed				+16186140063		777	2017-12-26 20:13:00.931743	2017-12-26 20:25:57.615073	CA8acc979ac1c7d272b61948adda35ef25	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE64de2f3c9c5eacfad084972d41f5f710	0	inbound	+18558645656	136	2.5847160816192627	\N	new lead		15	\N	\N	1244
2017-05-01 14:17:39.265599+00	2017-11-29 18:38:49.807649+00	4494	completed				+16623139586		315	2017-05-01 14:17:39.26303	2017-05-01 14:22:54.342477	CAe4d38898e16f6e312f28e24b7a2cf475	\N	133			0	inbound	+12147122250	\N	8.43213486671447754	\N	new lead	wireless caller	9	\N	\N	623
2017-11-05 18:50:38.661468+00	2017-11-05 18:50:48.190452+00	6937	missed				+14696188498		10	2017-11-05 18:50:38.659192	2017-11-05 18:50:48.173874	CAff65471aa69f373335694829863d4097	\N	\N			0	inbound	+18177569010	124	\N	\N	new lead	dubale tadele	12	\N	\N	627
2017-05-01 16:10:38.65355+00	2017-11-29 18:38:49.807865+00	4505	completed				+16466923535		92	2017-05-01 16:10:38.650285	2017-05-01 16:12:10.243648	CA6c86f14002003e73fe7bfa1a9adbe004	\N	105			0	inbound	+12147122250	\N	8.16935205459594727	\N	new lead	manhattan  ny	9	\N	\N	628
2017-05-01 18:55:18.773428+00	2017-11-29 18:38:49.808202+00	4533	completed				+16466923535		77	2017-05-01 18:55:18.770464	2017-05-01 18:56:35.523572	CA527d757e2ebf39f96bb1bf73ffce55c4	\N	127			0	inbound	+12147122250	\N	1.14141988754272461	\N	new lead	manhattan  ny	9	\N	\N	628
2017-05-09 18:18:02.257302+00	2017-11-29 18:38:49.810626+00	4917	completed				+16466923535		102	2017-05-09 18:18:02.25481	2017-05-09 18:19:43.881883	CA33ac35ca2b42eb244a6a9b5519fd08ae	\N	107			0	inbound	+12147122250	\N	6.5006248950958252	\N	new lead	manhattan  ny	9	\N	\N	628
2017-05-09 18:38:27.142744+00	2017-11-29 18:38:49.81064+00	4920	completed				+16466923535		57	2017-05-09 18:38:27.140104	2017-05-09 18:39:23.943844	CAc46d561a32e6d00eba1bee4b7596ac08	\N	125			0	inbound	+12147122250	\N	2.44879889488220215	\N	new lead	manhattan  ny	9	\N	\N	628
2017-05-09 18:39:25.735963+00	2017-11-29 18:38:49.810647+00	4921	completed				+16466923535		47	2017-05-09 18:39:25.734526	2017-05-09 18:40:12.583861	CA7c3cd1cf845dd609a0092af2c749d91d	\N	124			0	inbound	+12147122250	\N	2.47570610046386719	\N	new lead	manhattan  ny	9	\N	\N	628
2017-05-09 18:40:07.145299+00	2017-11-29 18:38:49.810655+00	4922	completed				+16466923535		69	2017-05-09 18:40:07.143704	2017-05-09 18:41:16.128057	CA5982aa4845e29cbe57e688ec96bd0cd0	\N	126			0	inbound	+12147122250	\N	1.22857189178466797	\N	new lead	manhattan  ny	9	\N	\N	628
2016-08-03 16:48:08.784+00	2017-11-29 18:31:37.368547+00	1174	completed				+16615330613		61	2016-08-03 16:48:08.782995	2016-08-03 16:49:10.162479		\N	\N			0	outbound	+18555472453	\N	\N	null	new lead		1	\N	\N	1031
2017-08-14 20:37:48.380639+00	2017-08-17 14:35:21.045838+00	6025	completed				+15016503869		122	2017-08-14 20:37:48.377865	2017-08-14 20:39:50.60862	CA11303702f688f5d1e580a0c5d2958a85	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE57333d147306cab7208bccda0e942509	0	inbound	+18177569010	124	27.4985809326171875	\N	new lead	trimble anjelic	12	\N	\N	1245
2017-11-13 19:13:23.085544+00	2017-11-13 19:15:22.04822+00	7035	completed				+16822608957		118	2017-11-13 19:13:23.083574	2017-11-13 19:15:20.948667	CAf7b7702a370a97fb9e9d46c05e6adfc4	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE3a0efee3810bfb5b404bb2c5a1ea8b16	0	inbound	+18177569010	124	7.38804101943969727	\N	new lead	euless  tx	12	\N	\N	1246
2017-11-13 19:35:56.299992+00	2017-11-13 19:40:51.330898+00	7038	completed				+16822608957		295	2017-11-13 19:35:56.297745	2017-11-13 19:40:51.328078	CA82b2ea75e878725981a3ebf1b0839184	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE186eb3f2cbcb09ceba003cc8ad25d561	0	inbound	+18177569010	124	56.2805461883544922	\N	new lead	euless  tx	12	\N	\N	1246
2017-11-13 19:43:08.384002+00	2017-11-13 19:44:07.249452+00	7039	completed				+16822608957		58	2017-11-13 19:43:08.382068	2017-11-13 19:44:06.201468	CAc6be81ffb7e06febecf515f100d086e1	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REfbb0c872b26a484fb00ed283855c0a11	0	inbound	+18177569010	124	6.97273111343383789	\N	new lead	euless  tx	12	\N	\N	1246
2017-11-13 19:54:53.642505+00	2017-11-13 19:56:46.680251+00	7040	completed				+16822608957		112	2017-11-13 19:54:53.640248	2017-11-13 19:56:45.518723	CA88bb044eef453a0f2609848f57837c67	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE42ebd7809f0c8e0ebba494fe017c0f77	0	inbound	+18177569010	124	12.9646191596984863	\N	new lead	euless  tx	12	\N	\N	1246
2017-11-13 20:08:46.387379+00	2017-11-13 20:10:13.502416+00	7041	completed				+16822608957		86	2017-11-13 20:08:46.385158	2017-11-13 20:10:12.742193	CA5a72e89906a0a919926fc75fa2dd9fdb	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REaaee423da733600111a7b1b52baed789	0	inbound	+18177569010	124	10.3616561889648438	\N	new lead	euless  tx	12	\N	\N	1246
2017-11-13 21:15:10.336551+00	2017-11-13 21:16:01.948836+00	7044	completed				+16822608957		50	2017-11-13 21:15:10.334405	2017-11-13 21:16:00.820321	CA834e9e384b8ee41964cb626971bc3d98	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REb50d7518ed96be352ab1fd5a0b9017f2	0	inbound	+18177569010	124	8.34172701835632324	\N	new lead	euless  tx	12	\N	\N	1246
2016-11-17 05:33:12.461131+00	2016-11-17 05:33:12.491374+00	2931	missed	Kathryn	Inscoe	kmins0914@gmail.com	+19196097428		\N	2016-11-17 05:33:12.459347	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	1250
2017-05-01 14:40:24.292854+00	2017-11-29 18:38:49.807667+00	4495	missed				+17185301541		72	2017-05-01 14:40:24.289295	2017-05-01 14:41:36.479218	CA5183ca0e6085aa7e51a08f86ec905c34	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	manhattan  ny	9	\N	\N	1251
2017-04-20 22:07:49.327626+00	2017-11-29 18:47:25.068193+00	4171	completed				+12143018573		187	2017-04-20 22:07:49.324437	2017-04-20 22:10:56.345674	CAb39aeb0722b9f8fef5c11dde00feab5f	\N	118		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REafbe1526bdc5636b0bc4f0788a1c5764	0	inbound	+19728330116	\N	11.0400049686431885	\N	new lead	irving  tx	8	\N	\N	1253
2016-11-02 15:16:03.206869+00	2016-11-02 15:17:59.198405+00	2549	completed				+19725524427		115	2016-11-02 15:16:03.205368	2016-11-02 15:17:58.271079	CA9ff6bece6fed0de0383fa34a7a60b0de	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REa89ca0974043117bdc9a68e2ea259790	0	inbound	+18557240606	49	2.05995607376098633	null	new lead		1	\N	\N	1258
2016-11-04 15:29:57.323819+00	2017-01-27 21:12:23.813967+00	2692	completed				+19725524427		131	2016-11-04 15:29:57.322074	2016-11-04 15:32:08.282204		\N	\N			0	outbound	+18555343978	48	\N	null	new lead		1	\N	\N	1258
2016-11-01 13:43:12.808819+00	2016-11-01 13:43:12.830811+00	2461	missed	james	dillard	ncjbd@yahoo.com	+19194183350		\N	2016-11-01 13:43:12.80791	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	1259
2016-11-01 14:17:38.841527+00	2016-11-01 14:53:27.376642+00	2463	completed	james	dillard		+19194183350		2144	2016-11-01 14:17:38.840074	2016-11-01 14:53:23.121312	CA6061ba4778a35c5375ece3ae39f8f964	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REc63ffae04249534e158ce88810f49197	0	inbound	+18557240606	49	1.724945068359375	null	new lead		1	\N	\N	1259
2017-08-11 20:54:24.855797+00	2017-08-11 20:59:24.016552+00	5993	completed	Briyanna	Ituen	briyannaituen@gmail.com	+14044528083		277	2017-08-11 20:54:24.854055	2017-08-11 20:59:22.880043	CAa3a81e92ae70fa2fb820b3ca0fd40042	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE2f9dbb2dda9ba4c29f9d6f03c5e0d14e	1	outbound	+17704009016	\N	24.2560148239135742	{}	new lead		13	\N	\N	632
2016-11-03 18:10:15.833343+00	2016-11-03 18:32:39.12712+00	2647	completed				+14808140065		1339	2016-11-03 18:10:15.831836	2016-11-03 18:32:35.24525	CAa633216d45fdeb01b9b7257216b5bb29	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REb5b9b677db786ebb1acb10aea0dcb371	0	inbound	+18557240606	49	5.76658105850219727	null	new lead		1	\N	\N	1264
2017-07-18 20:06:18.218403+00	2017-07-18 20:07:43.068353+00	5803	completed				+16822398331		85	2017-07-18 20:06:18.214792	2017-07-18 20:07:42.825051	CAaccc45cba05f671db039e3bc3d7da033	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE2128c0ea35ed87012fa8da19e9a107b3	0	inbound	+18177569010	124	48.2965810298919678	\N	new lead	lynch ryan	12	\N	\N	1268
2016-06-01 18:59:36.120176+00	2017-11-29 18:32:10.406465+00	326	completed	Unknown			+18435818006		326	2016-06-01 18:59:36.116448	2016-06-01 19:05:01.980737	CAfa11784202a1732ad631879ce8e2b91f	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE7a0c55039a42bb8cf7471a049e07e1d6	0	inbound	+18552791533	\N	14.3798727989196777	null	new lead		1	\N	\N	1269
2017-04-07 19:44:01.654788+00	2017-04-07 19:44:01.711828+00	3730	missed	Robert	Williams	rswilliamstrucking7@hotmail.com	+15134130870		\N	2017-04-07 19:44:01.653137	\N		25d0200e-983d-4413-94ae-eb664b99711c	\N			0	outbound	+18556311490	\N	\N	{}	new lead		1	\N	\N	1270
2017-12-16 15:53:25.587072+00	2017-12-16 15:58:49.177477+00	7921	completed				+12144316256		323	2017-12-16 15:53:25.584976	2017-12-16 15:58:48.544641	CA68914c6d736883ad58b138a7c06e57dd	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REb021a38a13be3de742dd42de4030f111	0	inbound	+18558645656	136	2.48514819145202637	\N	new lead		15	\N	\N	1272
2017-04-24 22:19:46.498953+00	2017-11-29 18:38:49.806504+00	4272	completed				+19725674741		73	2017-04-24 22:19:46.496703	2017-04-24 22:20:59.392403	CA489db4a0c7fb249901a97a31bd2c7651	\N	126			0	inbound	+12147122250	\N	0.913539886474609375	\N	new lead	brewer ronald  	9	\N	\N	1274
2017-04-24 22:11:51.401721+00	2017-11-29 18:38:49.806483+00	4268	completed				+19725674741		109	2017-04-24 22:11:51.399816	2017-04-24 22:13:39.950576	CA163dc300896c10a276eececaf27184dc	\N	99			0	inbound	+12147122250	\N	4.68338704109191895	\N	new lead	brewer ronald  	9	\N	\N	1274
2017-04-24 22:16:36.845808+00	2017-11-29 18:38:49.80649+00	4269	completed				+19725674741		75	2017-04-24 22:16:36.843835	2017-04-24 22:17:51.880751	CA5b1ea23b6e315b4c21b0e720e9253d26	\N	124			0	inbound	+12147122250	\N	1.36659502983093262	\N	new lead	brewer ronald  	9	\N	\N	1274
2017-04-24 22:17:50.139665+00	2017-11-29 18:38:49.806497+00	4271	completed				+19725674741		63	2017-04-24 22:17:50.137323	2017-04-24 22:18:52.9004	CA12c9da0713b3996eca36741831ce68ba	\N	125			0	inbound	+12147122250	\N	1.89876389503479004	\N	new lead	brewer ronald  	9	\N	\N	1274
2017-05-01 21:06:49.032296+00	2017-05-01 21:08:55.394818+00	4547	completed				+18174752203		125	2017-05-01 21:06:49.030574	2017-05-01 21:08:54.257472	CAf91151ab2c066b01bdfe24caa8c72f60	\N	132		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE7a96ff5bee8be838c1857994acda6cf0	0	inbound	+18172104002	126	6.13042998313903809	\N	new lead	smith cornlius	12	\N	\N	1276
2017-12-19 19:50:42.0147+00	2017-12-19 19:52:07.05636+00	8010	completed				+18154990188		84	2017-12-19 19:50:42.012932	2017-12-19 19:52:05.959424	CAbd53b7cc514399d4dfc9882b5f3276b8	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE1e867e059f4fb50ca1c712cb37e8b718	0	inbound	+18177569010	124	22.5493710041046143	\N	new lead	good jeffrey l	12	\N	\N	1281
2017-05-08 22:26:28.179911+00	2017-11-29 18:38:49.810505+00	4886	missed				+18178219335		38	2017-05-08 22:26:28.178216	2017-05-08 22:27:06.423569	CA179f22f2a6ed91cdea4e92d4a05c9151	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	forbus jared   	9	\N	\N	1282
2017-05-08 22:27:02.703459+00	2017-11-29 18:38:49.810512+00	4887	completed				+18178219335		78	2017-05-08 22:27:02.702124	2017-05-08 22:28:21.066344	CA524c05cf5aabcdff87ce26df17e9f3f7	\N	\N			0	inbound	+12147122250	\N	1.26323914527893066	\N	new lead	forbus jared   	9	\N	\N	1282
2017-03-23 22:05:31.910757+00	2017-11-29 18:38:53.212881+00	3567	completed				+18173043640		46	2017-03-23 22:05:31.906625	2017-03-23 22:06:18.405844	CA74e344e5c1b1f528261737772f687e08	\N	\N			0	inbound	+12146922088	\N	5.67217707633972168	\N	new lead	kovach eugene  	9	\N	\N	1283
2016-08-08 21:03:21.856019+00	2017-01-27 21:12:23.812895+00	1342	completed				+17407431168		76	2016-08-08 21:03:21.854707	2016-08-08 21:04:38.020996		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	1284
2016-07-15 18:24:12.780147+00	2017-11-29 18:31:41.490444+00	877	other				+17407431168		36	2016-07-15 18:24:12.777945	2016-07-15 18:24:48.986081	CA142cf6c1ea1c38944192eabb522bbe56	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE9c793fc0faed490b751103edb4eff6f9	0	inbound	+18552959002	\N	23.8184940814971924	null	general interest		1	\N	\N	1284
2016-08-23 16:24:33.101209+00	2017-01-27 21:12:23.813609+00	1676	completed				+17407431168		77	2016-08-23 16:24:33.10018	2016-08-23 16:25:50.058846		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	1284
2016-07-15 19:15:04.183139+00	2017-11-29 18:31:41.490451+00	878	missed				+17407431168		34	2016-07-15 19:15:04.180823	2016-07-15 19:15:38.5359	CA56af4da7dd2dbc1f7826423f00e257fe	\N	\N			0	inbound	+18552959002	\N	24.4035270214080811	null	general interest		1	\N	\N	1284
2017-07-19 17:46:47.040676+00	2017-07-19 17:47:37.423234+00	5814	completed				+17068093497		50	2017-07-19 17:46:47.038559	2017-07-19 17:47:36.708933	CA1809660d1392f2b9ce4d454b96497b17	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE25336cfd789b807256cc616af2b58b74	0	inbound	+17704009016	132	11.9690959453582764	\N	new lead		13	\N	\N	1287
2016-11-03 15:27:20.166565+00	2016-11-03 15:34:43.198128+00	2627	completed				+14693636761		442	2016-11-03 15:27:20.165482	2016-11-03 15:34:42.241638	CA8ee148ffadddfb57a5e280cbc4b85983	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE4cbb87811d827a37897c4d7e60791d69	0	inbound	+18557240606	49	1.63284015655517578	null	new lead		1	\N	\N	1289
2016-10-05 01:17:55.751104+00	2016-10-05 01:18:44.835021+00	2157	missed				+16128453179		49	2016-10-05 01:17:55.749614	2016-10-05 01:18:44.833166	CAf7a4c588df22622b071aac707b28783a	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REde7481559b2422afb787f0e7c997c4db	0	inbound	+18557240606	49	\N	null	new lead		1	\N	\N	1290
2017-03-28 14:28:58.639867+00	2017-11-29 18:38:53.213098+00	3606	completed				+16823004455		11	2017-03-28 14:28:58.63676	2017-03-28 14:29:09.935386	CA263cdeff552637c515ac8adda85c5a8e	\N	\N			0	inbound	+12146922088	\N	2.13348197937011719	\N	new lead	johnson etta	9	\N	\N	1293
2017-03-09 17:48:38.149709+00	2017-11-29 18:38:53.211968+00	3361	missed				+16823004455		30	2017-03-09 17:48:38.148171	2017-03-09 17:49:07.740561	CAf7da073aca957229a70efab263e0ec5f	\N	\N			0	inbound	+12146922088	\N	23.2049269676208496	\N	new lead	johnson etta	9	\N	\N	1293
2017-03-31 16:37:02.121584+00	2017-11-29 18:38:53.213199+00	3644	missed				+16823004455		3	2017-03-31 16:37:02.119135	2017-03-31 16:37:05.588528	CA08286b15a66902e2658e408a25ad7d16	\N	\N			0	inbound	+12146922088	\N	\N	\N	new lead	always negotiat	9	\N	\N	1293
2017-05-30 21:52:44.261711+00	2017-11-29 18:38:49.814146+00	5515	completed				+18172331553		75	2017-05-30 21:52:44.259604	2017-05-30 21:53:59.721588	CAf66e0d33ad051e5eb2ceca782a4bc231	\N	125			0	inbound	+12147122250	\N	2.10888099670410156	\N	new lead	bearrie john   	9	\N	\N	1296
2017-05-30 21:54:08.015123+00	2017-11-29 18:38:49.814153+00	5516	completed				+18172331553		83	2017-05-30 21:54:08.01387	2017-05-30 21:55:30.637341	CA5ebed18c10c98297bae0f6182716d542	\N	126			0	inbound	+12147122250	\N	1.03130888938903809	\N	new lead	bearrie john   	9	\N	\N	1296
2017-05-30 21:55:23.381625+00	2017-11-29 18:38:49.81416+00	5517	completed				+18172331553		167	2017-05-30 21:55:23.380048	2017-05-30 21:58:09.92569	CA3d1f8e44c572345c281b6ecd597060e4	\N	99			0	inbound	+12147122250	\N	6.51894903182983398	\N	new lead	bearrie john   	9	\N	\N	1296
2016-10-03 15:36:08.527982+00	2016-12-09 17:10:17.413513+00	2125	missed				+19088595800		0	2016-10-03 15:36:08.526655	2016-10-03 15:36:08.794749	CAcf271d8347b15a6ab09b560e96b7b604	\N	\N			0	inbound	+18552716856	\N	\N	null	new lead		3	\N	\N	1297
2016-09-13 16:56:23.870133+00	2016-12-10 01:01:51.44096+00	2004	completed				+16192084481		287	2016-09-13 16:56:23.868494	2016-09-13 17:01:10.647138	CA6df9cc58484ccb3fa65b2a415963f544	\N	50			0	inbound	+18559693782	\N	1.76983809471130371	null	new lead		3	\N	\N	634
2016-08-28 18:24:54.964633+00	2016-08-29 12:09:17.77865+00	1805	missed	Steve	Telles	steve_telles2003@yahoo.com	+16615269857		\N	2016-08-28 18:24:54.963276	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - credit union		1	\N	\N	1298
2016-11-02 00:35:22.863004+00	2016-11-02 00:49:57.469596+00	2532	completed				+18173009088		873	2016-11-02 00:35:22.861454	2016-11-02 00:49:56.071719	CAb86d1ef3e2a71c8230760689c1b849ef	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE2057f2049af569af69e62ea266a5bf76	0	inbound	+18557240606	49	2.48580288887023926	null	new lead		1	\N	\N	1299
2017-03-15 15:54:50.825469+00	2017-11-29 18:38:53.212339+00	3446	completed				+14692009912		31	2017-03-15 15:54:50.823456	2017-03-15 15:55:21.462485	CA36098dc36fedadbbe160a41d10615616	\N	\N			0	inbound	+12146922088	\N	6.59778785705566406	\N	new lead	mbella faith	9	\N	\N	1301
2017-03-15 15:56:01.155088+00	2017-11-29 18:38:53.212346+00	3447	completed				+14692009912		200	2017-03-15 15:56:01.153161	2017-03-15 15:59:20.687823	CA6e3681069d9838c75a8ad4d089f66f09	\N	107			0	inbound	+12146922088	\N	10.8234329223632812	\N	new lead	mbella faith	9	\N	\N	1301
2017-03-15 15:59:52.796866+00	2017-11-29 18:38:53.212353+00	3449	completed				+14692009912		143	2017-03-15 15:59:52.795644	2017-03-15 16:02:15.597488	CAe55ce8c6d35d80281b4e698d95d4e0d8	\N	\N			0	inbound	+12146922088	\N	6.10353803634643555	\N	new lead	mbella faith	9	\N	\N	1301
2017-05-10 13:19:33.816188+00	2017-11-29 18:38:53.215548+00	4944	completed				+12148831775		235	2017-05-10 13:19:33.814791	2017-05-10 13:23:28.396057	CAce95e920e825cf8b146f54096155a7ef	\N	133		https://api.twilio.com/2010-04-01/Accounts/AC5422b9b221417a7a84556a92f6edc492/Recordings/REa4ca7ea4427b95d23e9d1e7f2668180a	0	inbound	+12146922088	\N	4.65942907333374023	\N	new lead	fernandez katia	9	\N	\N	1302
2017-04-18 13:40:36.81598+00	2017-04-18 13:42:32.126737+00	4025	completed				+12148618773		114	2017-04-18 13:40:36.813905	2017-04-18 13:42:31.288269	CAff06f6da46dde3043015adbafbb98423	\N	131		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE63bd7b59d7514517b6093bff05898908	0	inbound	+18172104002	126	24.0224969387054443	\N	new lead	ngene christian	12	\N	\N	1305
2017-03-02 16:24:27.79642+00	2017-11-29 18:47:25.06753+00	3290	completed				+16179492812		148	2017-03-02 16:24:27.793292	2017-03-02 16:26:55.980683	CA52c8827ce619dd3ef2f2944b07fda01e	\N	82		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE56d70b7b9b188a04040bdf7a0a5041c0	0	inbound	+19728330116	\N	8.40629220008850098	\N	new lead	boston  ma	8	\N	\N	1307
2016-08-10 21:48:57.322769+00	2016-08-11 12:21:15.089629+00	1401	missed	Miram	Vazquez	mimi19@sbcgobal.net	+16619926071		\N	2016-08-10 21:48:57.320919	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - autopay		1	\N	\N	1306
2016-11-20 20:30:46.147975+00	2016-11-20 20:30:46.175814+00	2952	missed	Erin	Bowman	erinbowman01@gmail.com	+17708415039		\N	2016-11-20 20:30:46.145969	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	1313
2017-05-31 15:30:58.743059+00	2017-11-29 18:38:49.814189+00	5522	missed				+15127625659		52	2017-05-31 15:30:58.740883	2017-05-31 15:31:50.676303	CA793246c8b74f9f75cca3c3ea05383fe8	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	johnson clarenc	9	\N	\N	1314
2017-05-31 15:32:56.232675+00	2017-11-29 18:38:49.814196+00	5523	completed				+15127625659		77	2017-05-31 15:32:56.231063	2017-05-31 15:34:13.489099	CA360e560dd40705cd6e23780ec7c46607	\N	126			0	inbound	+12147122250	\N	2.02085304260253906	\N	new lead	johnson clarenc	9	\N	\N	1314
2016-10-12 14:48:37.486009+00	2017-11-29 18:31:10.26261+00	2277	missed				+15139811837		87	2016-10-12 14:48:37.484235	2016-10-12 14:50:04.056016	CA4ca471a720ea4e68b693ad69d684e99f	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE809a10fd8a2f80d6d1d5bca23d6bfea6	0	inbound	+18556311490	\N	32.4210250377655029	null	new lead		1	\N	\N	1318
2017-04-08 18:04:05.759765+00	2017-11-29 18:38:53.213483+00	3742	completed				+19728494397		65	2017-04-08 18:04:05.757969	2017-04-08 18:05:10.532364	CA580d3a177759e122abe25f85f364491b	\N	107			0	inbound	+12146922088	\N	8.39913010597229004	\N	new lead	cell phone   tx	9	\N	\N	1321
2017-04-08 18:08:58.00794+00	2017-11-29 18:38:53.21349+00	3743	completed				+19728494397		177	2017-04-08 18:08:58.005974	2017-04-08 18:11:55.345129	CA83310cb7d04796d3c0011d64f17129b2	\N	\N			0	inbound	+12146922088	\N	7.18982911109924316	\N	new lead	cell phone   tx	9	\N	\N	1321
2017-07-28 15:15:57.629384+00	2017-07-28 15:20:43.190048+00	5867	completed				+17064997856		284	2017-07-28 15:15:57.627315	2017-07-28 15:20:41.623954	CAabe023cde0d781731fc08dbcb7883e81	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE111db8e7b6dfca62c46e9a61d23fe053	0	inbound	+17704009016	132	6.85675692558288574	\N	new lead		13	\N	\N	1322
2016-07-30 16:11:38.002019+00	2016-08-01 12:51:39.584851+00	1061	missed	Ferdinand	Algas	algas05@yahoo.com	+19204371066		\N	2016-07-30 16:11:38.000937	\N		4b51c6b2-49f9-4108-8fdf-a8671e497256	\N			0	outbound	+18556311541	\N	\N	{}	application submitted - credit union		1	\N	\N	1323
2016-07-30 16:11:38.762928+00	2016-08-01 12:51:39.596545+00	1062	missed	Ferdinand	Algas	algas05@yahoo.com	+19204371066		\N	2016-07-30 16:11:38.762161	\N		4b51c6b2-49f9-4108-8fdf-a8671e497256	\N			0	outbound	+18556311541	\N	\N	{}	application submitted - credit union		1	\N	\N	1323
2016-11-06 22:13:11.360586+00	2016-11-06 22:13:29.198829+00	2776	completed				+14805707958		17	2016-11-06 22:13:11.358768	2016-11-06 22:13:28.444411	CA5a318cb649024d6ea4f09e03fcea80bf	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE50b9a7a7817615dcc9d65d6c9204471b	0	inbound	+18557240606	49	1.67479705810546875	null	new lead		1	\N	\N	1325
2016-11-10 20:23:12.120871+00	2017-01-27 21:12:23.814044+00	2841	completed				+14805707958		67	2016-11-10 20:23:12.11696	2016-11-10 20:24:19.2498		\N	\N			0	outbound	+18555343978	48	\N	null	new lead		1	\N	\N	1325
2016-11-04 02:06:10.279278+00	2016-11-04 02:06:10.310747+00	2680	missed	MARIA ESTHER 	MILIAN MARTINEZ	me_milian@hotmail.com	+16024345390		\N	2016-11-04 02:06:10.277865	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	1327
2017-04-18 15:26:21.551295+00	2017-11-29 18:38:49.80542+00	4035	completed				+12149575259		68	2017-04-18 15:26:21.549452	2017-04-18 15:27:30.009438	CA9aa394bddfdd26fc4a4d0e06b537ae6d	\N	127			0	inbound	+12147122250	\N	1.14867591857910156	\N	new lead	restricted	9	\N	\N	1331
2017-04-18 16:41:57.701829+00	2017-11-29 18:38:49.805449+00	4041	completed				+12149575259		195	2017-04-18 16:41:57.699316	2017-04-18 16:45:12.671353	CA78460c7c5d66bcb750ec30ce6a4be5f9	\N	\N			0	inbound	+12147122250	\N	4.0349419116973877	\N	new lead	restricted	9	\N	\N	1331
2017-04-20 15:27:34.809851+00	2017-11-29 18:38:49.805924+00	4129	completed				+12149575259		60	2017-04-20 15:27:34.8081	2017-04-20 15:28:35.074766	CA0f447e08735bbc8cca2d83d2a9883c30	\N	\N			0	inbound	+12147122250	\N	3.81170105934143066	\N	new lead	restricted	9	\N	\N	1331
2017-04-26 15:33:05.165639+00	2017-11-29 18:47:25.068327+00	4320	completed				+19728396400		26	2017-04-26 15:33:05.162574	2017-04-26 15:33:31.652475	CA01cbe98438675735f733c8a229637d65	\N	83		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REae4ee4b96a11ef0edb6e6f1fce37a81a	0	inbound	+19728330116	\N	8.80137777328491211	\N	new lead	pham hoang     	8	\N	\N	1334
2017-04-08 19:01:37.747642+00	2017-11-29 18:38:53.213497+00	3744	completed				+13162642883		15	2017-04-08 19:01:37.745827	2017-04-08 19:01:53.043633	CAf355e0b66c18c37806c5fa8eb64e96f8	\N	\N			0	inbound	+12146922088	\N	6.79083514213562012	\N	new lead	amsco supply	9	\N	\N	1336
2017-05-07 16:35:27.992101+00	2017-05-07 16:35:27.992151+00	4819	missed	luis alberto murguia		luis@rossnissan1.com	+15623411712		\N	2017-05-07 16:35:27.988468	\N		3784ab32-dd2a-4afe-b372-b25e22263604	\N			0	outbound	+17735469660	\N	\N	{}	new lead		1	\N	\N	1340
2017-10-06 18:00:48.114108+00	2017-10-06 18:23:35.159189+00	6600	missed				+12147095219		1367	2017-10-06 18:00:48.110876	2017-10-06 18:23:34.860904	CA60fba5bbaf89da0c2cbb6a3b803f2b97	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE7a023359229d4a4248584497764c8ef7	0	inbound	+18177569010	124	1347.73628997802734	\N	new lead	cartamundi usa	12	\N	\N	1341
2017-10-06 18:43:24.066771+00	2017-10-06 19:05:14.655038+00	6602	missed				+12147095219		1310	2017-10-06 18:43:24.064426	2017-10-06 19:05:13.578837	CAfb361f12f7b666f69a5cade7c260b0c7	\N	\N			0	inbound	+18177569010	124	1290.26371598243713	\N	new lead	cartamundi usa	12	\N	\N	1341
2017-10-30 18:47:06.531818+00	2017-10-30 18:53:20.507407+00	6872	completed				+17707665324		374	2017-10-30 18:47:06.529706	2017-10-30 18:53:20.50443	CA4933503ff8ac5d0375e67b3c22a93081	\N	150			0	inbound	+17707665732	133	327.913319110870361	\N	new lead		13	\N	\N	635
2017-04-14 15:17:28.617116+00	2017-11-29 18:38:53.213894+00	3914	completed				+15122120091		245	2017-04-14 15:17:28.615438	2017-04-14 15:21:33.163129	CAae5c3c3503e81eaa8be07e7723923601	\N	107			0	inbound	+12146922088	\N	6.09470891952514648	\N	new lead		9	\N	\N	638
2017-08-22 14:11:10.296997+00	2017-08-22 14:18:10.17573+00	6133	completed				+18176157395		420	2017-08-22 14:11:10.295404	2017-08-22 14:18:09.939877	CAfffe64718785d6df4ffd1434b4bab4de	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REf4dff0d292978602223e92cf5b6de6a5	0	inbound	+18177569010	124	390.832933187484741	\N	new lead	allen brown	12	\N	\N	639
2017-08-22 14:21:28.783042+00	2017-08-22 14:23:22.037725+00	6134	completed				+18176157395		112	2017-08-22 14:21:28.780789	2017-08-22 14:23:21.228104	CAdf7781539b70b032a88a11e9f84db425	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REf1760663599fb65d784cea439cac0e45	0	inbound	+18177569010	124	6.95165705680847168	\N	new lead	allen brown	12	\N	\N	639
2017-12-06 16:59:41.38736+00	2017-12-06 17:15:59.378167+00	7640	completed				+18169167808		975	2017-12-06 16:59:41.385503	2017-12-06 17:15:56.068836	CAef42a484ddde5e3d5c162846db0837ba	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE98a0356ae395f343f02bc1f469977b80	0	inbound	+18558645656	136	2.21860003471374512	\N	new lead		15	\N	\N	643
2017-11-25 14:39:50.78905+00	2017-11-25 14:39:51.196933+00	7280	missed				+17702978700		0	2017-11-25 14:39:50.78699	2017-11-25 14:39:51.187369	CA8ef04d037f6b3c5f3cb115450619307e	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2017-11-25 14:39:52.345736+00	2017-11-25 14:39:52.552979+00	7281	missed				+17702978700		0	2017-11-25 14:39:52.344277	2017-11-25 14:39:52.543124	CA2c514e25fe47480eac7b1f8cca41094f	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2017-04-28 19:50:11.062475+00	2017-11-29 18:38:53.214773+00	4439	completed				+12067397308		200	2017-04-28 19:50:11.060957	2017-04-28 19:53:30.899599	CAa8ef2336e53d4dc11dad0a40e468efd0	\N	\N			0	inbound	+12146922088	\N	3.68498110771179199	\N	new lead	cell phone  wa	9	\N	\N	1343
2017-06-14 18:47:34.652472+00	2017-08-17 14:35:21.045457+00	5582	completed				+18174413251		102	2017-06-14 18:47:34.650403	2017-06-14 18:49:16.981235	CAb6278cf5dcccc706ba9a6364727bc5bd	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REf110ee22b8e67f2de9f815e19b7f3dd5	0	inbound	+18177569010	124	8.35143280029296875	\N	new lead	okenye v	12	\N	\N	1346
2016-08-08 18:56:07.129534+00	2017-01-27 21:12:23.812861+00	1335	completed				+17608738596		82	2016-08-08 18:56:07.127507	2016-08-08 18:57:29.46231		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	1350
2016-08-17 17:06:51.996337+00	2017-01-27 21:12:23.813393+00	1559	completed				+17608738596		97	2016-08-17 17:06:51.995265	2016-08-17 17:08:28.769127		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	1350
2016-08-24 14:12:06.374275+00	2017-01-27 21:12:23.813693+00	1697	completed				+17608738596		46	2016-08-24 14:12:06.37312	2016-08-24 14:12:52.668239		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	1350
2016-08-23 22:13:23.535835+00	2017-01-27 21:12:23.813665+00	1688	completed				+17608738596		38	2016-08-23 22:13:23.534592	2016-08-23 22:14:01.366274		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	1350
2016-08-02 00:23:57.54395+00	2017-11-29 18:31:37.368389+00	1105	missed				+17608738596		15	2016-08-02 00:23:57.542795	2016-08-02 00:24:12.390957	CA57a7faa10a6a4c888d943f1adbf616fe	\N	\N			0	inbound	+18555472453	\N	\N	null	general interest		1	\N	\N	1350
2016-09-07 22:35:41.316083+00	2016-12-10 01:04:42.413769+00	1953	completed				+19092155220		97	2016-09-07 22:35:41.314483	2016-09-07 22:37:18.575618	CA61eedb6ccfb7a2b5b674157aa3d51686	\N	58			0	inbound	+18552187903	\N	1.51828312873840332	null	new lead		3	\N	\N	1351
2017-05-01 14:49:53.997207+00	2017-11-29 18:38:49.80768+00	4496	completed				+12147711834		79	2017-05-01 14:49:53.994501	2017-05-01 14:51:13.374016	CAa46357ef2f6c1b43dc298b8b476ba981	\N	126			0	inbound	+12147122250	\N	0.992388010025024414	\N	new lead	cell phone   tx	9	\N	\N	1354
2017-05-01 14:51:20.144513+00	2017-11-29 18:38:49.80777+00	4497	completed				+12147711834		41	2017-05-01 14:51:20.14273	2017-05-01 14:52:01.292242	CAc0b48aa2a9fdd81a253f5467d526838e	\N	124			0	inbound	+12147122250	\N	2.20234584808349609	\N	new lead	cell phone   tx	9	\N	\N	1354
2017-05-01 14:52:20.030927+00	2017-11-29 18:38:49.807784+00	4498	completed				+12147711834		66	2017-05-01 14:52:20.029649	2017-05-01 14:53:25.663514	CA3c3c5919985fa20982429cf8c8b17cbe	\N	99			0	inbound	+12147122250	\N	19.1678900718688965	\N	new lead	cell phone   tx	9	\N	\N	1354
2017-05-01 15:12:48.771436+00	2017-11-29 18:38:49.80783+00	4502	completed				+12147711834		58	2017-05-01 15:12:48.770246	2017-05-01 15:13:46.653643	CAdd9bf6b6fd192a854dbc0bb8ebee0d03	\N	124			0	inbound	+12147122250	\N	1.55464315414428711	\N	new lead	cell phone   tx	9	\N	\N	1354
2017-09-25 19:19:34.702747+00	2017-09-25 19:21:10.363845+00	6484	completed	Angelica	jOHNSON	babygurl223388@gmail.com	+17063959568		79	2017-09-25 19:19:34.701307	2017-09-25 19:21:10.331945	CA47833a8a47184722c005c700ddc94d27	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REbc30818ddf5889195a95ff5289d7b181	1	outbound	+17704009016	\N	15.0201809406280518	{}	new lead		13	\N	\N	1355
2017-09-12 23:04:56.023491+00	2017-09-12 23:05:31.086794+00	6327	completed				+18178494021		34	2017-09-12 23:04:56.021418	2017-09-12 23:05:30.120721	CA1125bdfcd44598b3b6da7332a05d475e	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REfdcd2088150f35af1f7fbc610ef5a915	0	inbound	+18177569010	124	7.30218195915222168	\N	new lead	richards jermie	12	\N	\N	1359
2017-12-16 16:58:58.619548+00	2017-12-16 16:59:51.330197+00	7922	completed				+14708087429		52	2017-12-16 16:58:58.617923	2017-12-16 16:59:50.134122	CAbdc3d76fdea9434c0767e07c154f55b9	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE0c5ae63778ec8a1412982cf956548c11	0	inbound	+17704009016	132	8.87962698936462402	\N	new lead	vixamar phoebee	13	\N	\N	1361
2017-04-28 20:55:05.139356+00	2017-11-29 18:38:53.214795+00	4447	completed				+15026398153		38	2017-04-28 20:55:05.136578	2017-04-28 20:55:43.270917	CAd35760c4ed500250f8719a76d1004dc8	\N	133			0	inbound	+12146922088	\N	13.5656418800354004	\N	new lead	louisville  ky	9	\N	\N	1362
2016-08-17 19:34:25.847941+00	2017-11-29 18:31:10.262413+00	1564	completed	Adam	Perry		+15135438445		359	2016-08-17 19:34:25.846585	2016-08-17 19:40:24.88124		\N	16			0	outbound	+18556311490	\N	\N	null	application submitted - credit union		1	\N	\N	1363
2016-08-15 21:46:47.828281+00	2017-01-27 21:12:23.81333+00	1525	completed				+15135438445		28	2016-08-15 21:46:47.826538	2016-08-15 21:47:16.183179		\N	\N			0	outbound	+18555343978	48	\N	null	application submitted - credit union		1	\N	\N	1363
2017-11-25 14:39:54.414003+00	2017-11-25 14:39:54.716616+00	7282	missed				+17702978700		0	2017-11-25 14:39:54.412451	2017-11-25 14:39:54.707657	CAf4726cd06b19659826916b9141089158	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2017-11-25 14:39:55.944469+00	2017-11-25 14:39:56.142478+00	7283	missed				+17702978700		0	2017-11-25 14:39:55.943253	2017-11-25 14:39:56.134362	CA03a53aec109e657f5eacee336f7e301b	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2016-08-15 22:01:06.016204+00	2016-08-16 11:10:52.983007+00	1530	missed	Adam	Perry	anperry@cinci.rr.com	+15135438445		\N	2016-08-15 22:01:06.015144	\N		25d0200e-983d-4413-94ae-eb664b99711c	\N			0	outbound	+18556311490	\N	\N	{}	application submitted - credit union		1	\N	\N	1363
2016-08-15 21:41:49.378356+00	2017-11-29 18:31:10.262262+00	1522	missed				+15135438445		55	2016-08-15 21:41:49.377117	2016-08-15 21:42:44.573772	CA54db78081aeabfaefcd4d4a505b2f8bd	\N	\N			0	inbound	+18556311490	\N	31.5819859504699707	null	application submitted - credit union		1	\N	\N	1363
2016-08-15 21:42:50.695587+00	2017-11-29 18:31:10.262277+00	1523	missed				+15135438445		53	2016-08-15 21:42:50.694334	2016-08-15 21:43:43.562318	CA4ed4f8249604ec594a8e84020405792b	\N	\N			0	inbound	+18556311490	\N	25.5851399898529053	null	application submitted - credit union		1	\N	\N	1363
2016-08-15 21:46:52.507612+00	2017-11-29 18:31:10.262292+00	1526	missed				+15135438445		14	2016-08-15 21:46:52.506472	2016-08-15 21:47:06.619811	CA59264d8552db57006b8c8dd7181e9acc	\N	\N			0	inbound	+18556311490	\N	\N	null	application submitted - credit union		1	\N	\N	1363
2016-08-15 22:09:17.676155+00	2017-11-29 18:31:10.262309+00	1532	completed	Adam	Perry	anperry@cinci.rr.com	+15135438445		148	2016-08-15 22:09:17.675119	2016-08-15 22:11:45.840923		\N	16			0	outbound	+18556311490	\N	\N	null	application submitted - credit union		1	\N	\N	1363
2016-08-17 19:08:04.122111+00	2017-11-29 18:31:10.262395+00	1563	completed	Adam	Perry		+15135438445		104	2016-08-17 19:08:04.120443	2016-08-17 19:09:48.079019	CA90594c52e736c5c8584b909366330ccb	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REbc16d7ef8f2dc161c6e874093956a11c	0	inbound	+18556311490	\N	13.8452320098876953	null	application submitted - credit union		1	\N	\N	1363
2016-08-15 21:47:16.157749+00	2017-01-27 21:12:23.813337+00	1527	completed				+15135438445		1029	2016-08-15 21:47:16.156267	2016-08-15 22:04:24.972314		\N	\N			0	outbound	+18555343978	48	\N	null	application submitted - credit union		1	\N	\N	1363
2016-08-15 21:14:17.626035+00	2017-11-29 18:31:10.262248+00	1521	completed				+15135438445		268	2016-08-15 21:14:17.624795	2016-08-15 21:18:45.173909	CA1d6da3ae05bfc9489bf392093d22f9cb	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REaa9bbe7bf9d39561711aa8e94349df4a	0	inbound	+18556311490	\N	7.18844389915466309	null	application submitted - credit union		1	\N	\N	1363
2016-08-17 13:24:43.259413+00	2017-11-29 18:31:10.262345+00	1544	completed	Adam	Perry	anperry@cinci.rr.com	+15135438445		146	2016-08-17 13:24:43.25679	2016-08-17 13:27:09.554498		\N	16			0	outbound	+18556311490	\N	\N	null	application submitted - credit union		1	\N	\N	1363
2016-08-17 13:25:03.512723+00	2017-11-29 18:31:10.262361+00	1545	missed	Adam	Perry	anperry@cinci.rr.com	+15135438445		13	2016-08-17 13:25:03.51162	2016-08-17 13:25:16.948889		\N	16			0	outbound	+18556311490	\N	\N	null	application submitted - credit union		1	\N	\N	1363
2016-08-17 13:34:00.708227+00	2017-11-29 18:31:10.262378+00	1546	completed	Adam	Perry	anperry@cinci.rr.com	+15135438445		407	2016-08-17 13:34:00.707226	2016-08-17 13:40:47.751984		\N	16			0	outbound	+18556311490	\N	\N	null	application submitted - credit union		1	\N	\N	1363
2016-06-27 15:56:45.532302+00	2016-06-27 15:59:37.690156+00	518	completed				+13305182614		168	2016-06-27 15:56:45.531251	2016-06-27 15:59:37.688591	CAe354b12ac846edaa69052bc0d7858d0f	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.43729686737060547	{}	new lead		1	\N	\N	1366
2017-04-28 17:36:15.37058+00	2017-11-29 18:38:49.807307+00	4431	completed				+19728537056		77	2017-04-28 17:36:15.368763	2017-04-28 17:37:32.821192	CA79d4d2f19a700d3de6729d0096ed005c	\N	127			0	inbound	+12147122250	\N	2.04134202003479004	\N	new lead	dallas  tx	9	\N	\N	1368
2017-05-16 15:28:05.92272+00	2017-11-29 18:38:49.811706+00	5105	completed				+19728537056		82	2017-05-16 15:28:05.920608	2017-05-16 15:29:27.840964	CA4fadb3c5bf5ce0a78f1f03f6f2d213d5	\N	127			0	inbound	+12147122250	\N	2.00330805778503418	\N	new lead	dallas  tx	9	\N	\N	1368
2017-05-17 15:03:42.203033+00	2017-11-29 18:38:49.811961+00	5151	completed				+19728537056		68	2017-05-17 15:03:42.201202	2017-05-17 15:04:50.438715	CAcfc134958da325362f2358dbccf595da	\N	125			0	inbound	+12147122250	\N	1.80628395080566406	\N	new lead	dallas  tx	9	\N	\N	1368
2017-05-22 16:26:41.16654+00	2017-11-29 18:38:49.8126+00	5282	completed				+19728537056		78	2017-05-22 16:26:41.164999	2017-05-22 16:27:58.73512	CA872f15ad5167efeb611a0cc31be066ec	\N	127			0	inbound	+12147122250	\N	1.40937113761901855	\N	new lead	dallas  tx	9	\N	\N	1368
2017-05-30 19:48:09.167029+00	2017-11-29 18:38:49.814111+00	5509	completed				+19728537056		91	2017-05-30 19:48:09.165193	2017-05-30 19:49:40.217211	CA4d0b55500149b80cdb3d27138a6df660	\N	125			0	inbound	+12147122250	\N	2.0613558292388916	\N	new lead	dallas  tx	9	\N	\N	1368
2016-09-07 18:11:20.470403+00	2016-12-10 01:01:51.440814+00	1930	completed				+16193133275		269	2016-09-07 18:11:20.469443	2016-09-07 18:15:49.696697	CA7187ff4febe6da701ce9c04493480aee	\N	50			0	inbound	+18559693782	\N	1.9930119514465332	null	new lead		3	\N	\N	1371
2016-10-05 15:55:15.886834+00	2016-12-09 17:06:53.906035+00	2179	completed				+12157102000		153	2016-10-05 15:55:15.885234	2016-10-05 15:57:49.361213	CA8af4bd84d9d1b42acd486da809da421e	\N	21			0	inbound	+18558021330	\N	2.80839705467224121	null	new lead		3	\N	\N	1374
2017-07-14 20:45:59.39198+00	2017-07-14 20:50:53.466834+00	5780	completed				+16825184810		293	2017-07-14 20:45:59.390384	2017-07-14 20:50:52.387303	CA3773251e68f8878bcb93063cbd3abddd	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE5a9958a80e3fba1c9e18dcc953c23361	0	inbound	+18177569010	124	7.41306090354919434	\N	new lead	manuel kevin	12	\N	\N	1375
2017-12-08 18:07:31.591938+00	2017-12-08 18:09:00.389101+00	7720	completed				+18174138279		88	2017-12-08 18:07:31.590191	2017-12-08 18:08:59.89785	CAef5a32ac7f67fab2a6bc893a7051a319	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REa6e2d6ab1303e5e653f0a4aece6d6db6	0	inbound	+18177569010	124	11.4527769088745117	\N	new lead	thompson mesha	12	\N	\N	1380
2017-08-28 13:23:19.323969+00	2017-08-28 13:27:52.556987+00	6182	completed	shaqunna	mahaffey	qunnasemone@yahoo.com	+17064918245		244	2017-08-28 13:23:19.322102	2017-08-28 13:27:45.955276	CAd1b40f1825536efe13dc1f30687fba5a	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE57ec2a0d222b81f791ebfb8ca729e9ff	1	outbound	+17704009016	\N	24.5319650173187256	{}	new lead		13	\N	\N	1381
2017-08-28 13:29:11.540119+00	2017-08-28 13:37:27.035742+00	6183	completed	shaqunna	mahaffey		+17064918245		495	2017-08-28 13:29:11.537696	2017-08-28 13:37:26.78757	CA395509bc63b2820cb5a09cf41d97f4f0	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REd8102f431e7e21332924d2283eaad105	0	inbound	+17704009016	132	361.247972011566162	\N	new lead		13	\N	\N	1381
2016-11-21 18:29:20.438157+00	2016-11-21 19:02:24.265514+00	2957	completed				+18328080797		1980	2016-11-21 18:29:20.436375	2016-11-21 19:02:20.196078	CA294abdee0b12c416c88a201e6aaead76	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE1ef301a64d0d7b16216f9efe268e510f	0	inbound	+18557240606	49	2.28674602508544922	null	new lead		1	\N	\N	1385
2016-11-21 21:24:43.105222+00	2016-11-21 22:00:48.854274+00	2960	completed				+17702312424		2160	2016-11-21 21:24:43.103172	2016-11-21 22:00:42.739295	CA7ca8a8e1a3dfffc1d5bcedfe5815dea4	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE2a5a58342adf81e2881409c51b627e8e	0	inbound	+18557240606	49	2.33287715911865234	null	new lead		1	\N	\N	1386
2017-08-16 21:20:20.047452+00	2017-08-16 21:26:14.733231+00	6060	missed	Nagera	Johnson	Nagerajohnson@yahoo.com	+16788579435		0	2017-08-16 21:20:20.04578	2017-08-16 21:26:14.731166	CA9b655b817cede3bdb4729593819cc424	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			3	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	1387
2017-05-15 20:48:02.196192+00	2017-11-29 18:38:49.811593+00	5084	completed				+19727201020		71	2017-05-15 20:48:02.194254	2017-05-15 20:49:12.709075	CA6dda99a1dddf77ab44d2b0b2bbeb4592	\N	127			0	inbound	+12147122250	\N	1.23971199989318848	\N	new lead	q   a recruiting	9	\N	\N	1392
2017-11-25 14:39:56.624995+00	2017-11-25 14:39:56.839785+00	7284	missed				+17702978700		0	2017-11-25 14:39:56.623777	2017-11-25 14:39:56.831843	CA8551ae39719ffdbcce14868c10c4a34f	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2017-05-15 20:49:04.807486+00	2017-11-29 18:38:49.8116+00	5085	completed				+19727201020		63	2017-05-15 20:49:04.805869	2017-05-15 20:50:07.532767	CA4cd1e01b6c92265c5d67fb98fcbfc627	\N	\N			0	inbound	+12147122250	\N	3.99820899963378906	\N	new lead	sni companies	9	\N	\N	1392
2016-11-05 15:30:00.79415+00	2016-11-05 15:30:00.82922+00	2746	missed	Michael	McDonald	guitarman32626@yahoo.com	+19366727433		\N	2016-11-05 15:30:00.792796	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	1393
2017-05-03 15:08:21.973034+00	2017-11-29 18:38:49.80915+00	4622	completed				+19724458529		78	2017-05-03 15:08:21.971001	2017-05-03 15:09:40.143486	CA1694167b849a9d0c508844f92277b572	\N	127			0	inbound	+12147122250	\N	1.89060401916503906	\N	new lead	n owens	9	\N	\N	1394
2017-05-08 18:57:18.526336+00	2017-11-29 18:38:49.810404+00	4865	completed				+19724458529		70	2017-05-08 18:57:18.524916	2017-05-08 18:58:28.763414	CAf1d3641c4dc065a6cf7507175c6a8f1a	\N	127			0	inbound	+12147122250	\N	1.41165614128112793	\N	new lead	irving  tx	9	\N	\N	1394
2017-05-09 16:10:25.307723+00	2017-11-29 18:38:49.810555+00	4902	missed				+19724458529		22	2017-05-09 16:10:25.305368	2017-05-09 16:10:47.14281	CA8ad69ec1fbff25c7d1d9fdbbe9b5f865	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	n owens	9	\N	\N	1394
2017-05-15 15:07:33.371724+00	2017-11-29 18:38:49.811508+00	5068	completed				+19724458529		32	2017-05-15 15:07:33.369917	2017-05-15 15:08:05.382776	CA5b8bff66fd8dfb668a971dc14df26309	\N	124			0	inbound	+12147122250	\N	1.45334410667419434	\N	new lead	n owens	9	\N	\N	1394
2017-03-01 19:14:49.534658+00	2017-11-29 18:47:25.067494+00	3268	completed				+15034128722		67	2017-03-01 19:14:49.533095	2017-03-01 19:15:56.627121	CAc5d7ee885a8c4710b6a4594f96ac4d4d	\N	82		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE589ba59624a2cde428db9eb0307ce982	0	inbound	+19728330116	\N	16.8049509525299072	\N	new lead	JUSTICE JIM    	8	\N	\N	1396
2017-03-01 19:32:24.882872+00	2017-11-29 18:47:25.067502+00	3269	completed				+15034128722		54	2017-03-01 19:32:24.879157	2017-03-01 19:33:18.572898	CAd839c83f3ae2317211dff490f279df8f	\N	82		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE1ea4c9ea1fdeee23abe050bf3b43fe05	0	inbound	+19728330116	\N	20.6780569553375244	\N	new lead	JUSTICE JIM    	8	\N	\N	1396
2017-09-08 00:08:39.164487+00	2017-09-08 00:30:20.115885+00	6289	missed				+14693455027		9	2017-09-08 00:08:39.161642	2017-09-08 00:08:48.26982	CAf6b9520b1fa4d7ac53678091275f4bec	\N	\N			0	inbound	+18177569010	124	1279.39663100242615	\N	new lead	robinson keitha	12	\N	\N	1404
2016-07-07 18:44:12.941172+00	2016-07-07 18:47:04.05672+00	818	completed	Naveen	Bhagwani	nbhagwani@gmail.com	+13059347292		161	2016-07-07 18:44:12.939932	2016-07-07 18:47:04.055656	CAc4941be4958f23240a78c716cae1be71	ee869226-e246-4ab4-aaaa-e9403e2ddd39	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE1775fa3fb9823755b1210874fd21c27d	1	outbound	+18555983683	\N	5.30670714378356934	{}	new lead		1	\N	\N	1408
2016-07-07 19:44:23.769054+00	2017-11-29 18:32:13.821418+00	821	completed	Naveen	Bhagwani		+13059347292		30	2016-07-07 19:44:23.767276	2016-07-07 19:44:53.77212	CA0cf0b8f64b0faccfeab1af8778393bbc	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE43061a5ce2d526cd2cc8af2b4f92b285	0	inbound	+18555983683	\N	14.8477938175201416	null	new lead		1	\N	\N	1408
2016-07-07 19:48:54.663524+00	2017-11-29 18:32:13.821425+00	822	completed	Naveen	Bhagwani		+13059347292		27	2016-07-07 19:48:54.661742	2016-07-07 19:49:21.375789	CAc499b33f0ba76f9a3b60b0776fa13e1a	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REd8cfa0ce020ba2144439c719e49d4656	0	inbound	+18555983683	\N	13.7763769626617432	null	new lead		1	\N	\N	1408
2017-05-08 16:38:27.425296+00	2017-11-29 18:38:49.810302+00	4850	completed				+14167869396		420	2017-05-08 16:38:27.423138	2017-05-08 16:45:27.662185	CA3ded5ab8ed3bb7fddde369faffa9d37a	\N	\N			0	inbound	+12147122250	\N	1.15317296981811523	\N	new lead	cell phone   on	9	\N	\N	1410
2017-06-29 15:44:12.321564+00	2017-08-17 14:35:21.045514+00	5685	completed				+18179392754		212	2017-06-29 15:44:12.319674	2017-06-29 15:47:43.867377	CA1491b2143a89738dc53fce7419ec5b21	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE0d90b6356989c8253a8d80beac8f140c	0	inbound	+18177569010	124	7.99608206748962402	\N	new lead	allante carter	12	\N	\N	1411
2016-09-01 15:40:59.621512+00	2016-12-09 17:06:53.905837+00	1832	completed				+12675665051		496	2016-09-01 15:40:59.620167	2016-09-01 15:49:15.62832	CA993f8422b3449cdd771c0c3f71a6b6fc	\N	21			0	inbound	+18558021330	\N	3.07686686515808105	null	new lead		3	\N	\N	1414
2016-09-01 15:49:29.506958+00	2016-12-09 17:06:53.905844+00	1833	completed				+12675665051		392	2016-09-01 15:49:29.506023	2016-09-01 15:56:01.402239	CAba30f68bce1767b142a8fcd45e390f22	\N	21			0	inbound	+18558021330	\N	1.8019559383392334	null	new lead		3	\N	\N	1414
2017-04-20 20:32:00.415588+00	2017-11-29 18:47:25.068172+00	4157	completed				+18174721934		414	2017-04-20 20:32:00.412344	2017-04-20 20:38:54.52373	CA67452ce0e81ad5c10d155a521aa00981	\N	118			0	inbound	+19728330116	\N	330.504065036773682	\N	new lead	sovereign bank 	8	\N	\N	1417
2017-04-20 20:44:02.529946+00	2017-11-29 18:47:25.068179+00	4159	completed				+18174721934		391	2017-04-20 20:44:02.527597	2017-04-20 20:50:33.67477	CA54ceb88418e83a5bd325b88b138196f7	\N	118		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE2deb4360af2db357725290e680ca0ba5	0	inbound	+19728330116	\N	24.2788009643554688	\N	new lead	sovereign bank 	8	\N	\N	1417
2016-07-29 15:33:26.492697+00	2016-08-22 14:22:04.504827+00	1028	completed	natalie	chime		+16145063377		72	2016-07-29 15:33:26.490845	2016-07-29 15:34:41.905098	CA306a5e3e81f48b60b6a20786ed561776	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	2.8096461296081543	{}	application started		1	\N	\N	1420
2016-08-01 17:30:21.72533+00	2017-11-29 18:31:41.490604+00	1079	completed	natalie	chime		+16145063377		82	2016-08-01 17:30:21.724196	2016-08-01 17:31:43.911227		\N	16			0	outbound	+18552959002	\N	\N	null	application started		1	\N	\N	1420
2016-08-22 14:11:35.919058+00	2017-11-29 18:31:41.490786+00	1637	missed	natalie	chime		+16145063377		80	2016-08-22 14:11:35.917251	2016-08-22 14:12:55.682924	CAc9b1e9c97c1fcc92c270f6732e24a663	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE3402a8a7a4b2d49522a9fc7a22707c33	0	inbound	+18552959002	\N	31.7295770645141602	null	application started		1	\N	\N	1420
2016-07-29 21:58:49.467566+00	2016-08-22 14:22:04.504845+00	1049	completed	natalie	chime		+16145063377		110	2016-07-29 21:58:49.466314	2016-07-29 22:00:42.327464	CAaebb51fd5f7e44a9b40829c99e0961c3	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	2.4253380298614502	{}	application started		1	\N	\N	1420
2016-08-09 21:32:37.336019+00	2017-11-29 18:31:41.490667+00	1371	completed	natalie	chime		+16145063377		70	2016-08-09 21:32:37.334545	2016-08-09 21:33:47.833762		\N	16			0	outbound	+18552959002	\N	\N	null	application started		1	\N	\N	1420
2016-08-09 21:10:26.086015+00	2017-11-29 18:31:41.49066+00	1370	completed	natalie	chime		+16145063377		145	2016-08-09 21:10:26.084808	2016-08-09 21:12:51.067618	CA51f627a74b5ec3dad7617d07ddd70973	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE215a2fe5bc8d28cae525b51bdb0b9338	0	inbound	+18552959002	\N	5.15135717391967773	null	application started		1	\N	\N	1420
2016-07-28 17:06:51.566218+00	2016-08-22 14:22:04.504777+00	1004	completed	natalie	chime	nchime73@gmail.com	+16145063377		25	2016-07-28 17:06:51.565242	2016-07-28 17:07:48.848501	CAad170c0dbd9b7c6ef88dc49698d255ef	d33a481e-e0af-47ac-9f90-260f20b69de5	\N			1	outbound	+18552959002	\N	22.9129610061645508	{}	application started		1	\N	\N	1420
2016-08-03 22:04:56.53786+00	2017-11-29 18:31:41.490618+00	1193	completed	natalie	chime		+16145063377		93	2016-08-03 22:04:56.536878	2016-08-03 22:06:29.369627		\N	16			0	outbound	+18552959002	\N	\N	null	application started		1	\N	\N	1420
2016-08-03 22:08:29.527785+00	2017-11-29 18:31:41.490625+00	1194	missed	natalie	chime		+16145063377		17	2016-08-03 22:08:29.526786	2016-08-03 22:08:46.496074	CA56b8ed82efa7c3e89562b34699909a68	\N	\N			0	inbound	+18552959002	\N	\N	null	application started		1	\N	\N	1420
2016-08-03 22:09:17.557135+00	2017-11-29 18:31:41.490632+00	1195	completed	natalie	chime		+16145063377		183	2016-08-03 22:09:17.556089	2016-08-03 22:12:20.686228		\N	16			0	outbound	+18552959002	\N	\N	null	application started		1	\N	\N	1420
2016-08-11 13:23:34.071369+00	2017-11-29 18:31:41.490674+00	1413	completed	natalie	chime		+16145063377		73	2016-08-11 13:23:34.069904	2016-08-11 13:24:46.66951		\N	16			0	outbound	+18552959002	\N	\N	null	application started		1	\N	\N	1420
2017-11-25 14:39:58.027634+00	2017-11-25 14:39:58.266636+00	7285	missed				+17702978700		0	2017-11-25 14:39:58.025473	2017-11-25 14:39:58.252566	CAca690687b5d39ccc24cc5e9d82fa04ed	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2017-11-25 18:27:23.49281+00	2017-11-25 18:27:24.068951+00	7296	missed				+17702978700		1	2017-11-25 18:27:23.491178	2017-11-25 18:27:24.060838	CAf2d1f93854e5e4a5f8de816c294a3479	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2017-11-25 18:27:26.753252+00	2017-11-25 18:27:27.318927+00	7297	missed				+17702978700		1	2017-11-25 18:27:26.75116	2017-11-25 18:27:27.307039	CA35abe731688497357275ce599203b8cc	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2016-07-28 17:12:15.972085+00	2017-11-29 18:31:41.490589+00	1005	completed	natalie	chime	nchime73@gmail.com	+16145063377		284	2016-07-28 17:12:15.971046	2016-07-28 17:17:00.228324		\N	\N			0	outbound	+18552959002	\N	\N	null	application started		1	\N	\N	1420
2016-07-29 21:48:00.041109+00	2017-11-29 18:31:41.490597+00	1048	completed	natalie	chime		+16145063377		96	2016-07-29 21:48:00.039716	2016-07-29 21:49:36.415259	CA5135bb6a6ae7c0aabdd5c43f1888db97	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE58210f8dfc1dfa6b818ac3dad87a85c4	0	inbound	+18552959002	\N	10.0700480937957764	null	application started		1	\N	\N	1420
2016-09-28 20:00:58.466855+00	2016-12-10 00:57:48.461761+00	2101	completed				+18054909544		129	2016-09-28 20:00:58.465204	2016-09-28 20:03:07.928912	CAf9da6e31eaa228f48019b49bf6e500a3	\N	30			0	inbound	+18559652184	\N	1.72469711303710938	null	new lead		3	\N	\N	1421
2016-09-29 21:15:53.580471+00	2016-12-10 00:57:48.461768+00	2113	completed				+18054909544		159	2016-09-29 21:15:53.578463	2016-09-29 21:18:32.293433	CAd0c98e747a36d92574e2a9c06568d452	\N	30			0	inbound	+18559652184	\N	2.3923189640045166	null	new lead		3	\N	\N	1421
2017-06-26 17:47:50.231363+00	2017-06-26 17:48:56.619078+00	5663	completed				+16788583446		65	2017-06-26 17:47:50.229368	2017-06-26 17:48:55.357812	CA9c216486b9cecbaead9fe121ac013bd4	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REb03fb1e7569ff45420acca183d785803	0	inbound	+17704009016	132	10.0045740604400635	\N	new lead		13	\N	\N	1428
2017-07-26 18:28:13.778969+00	2017-07-26 18:33:48.45149+00	5857	missed				+16788583446		4	2017-07-26 18:28:13.776297	2017-07-26 18:28:17.754155	CAec7ae03f6a85cb0c8c814ba5ce857853	\N	\N			0	inbound	+17704009016	132	\N	\N	new lead		13	\N	\N	1428
2016-09-01 19:41:31.04055+00	2016-12-10 01:01:00.199854+00	1844	completed				+16199934164		50	2016-09-01 19:41:31.039505	2016-09-01 19:42:20.579009	CA9e6179aee6976bdd11daac93148931c5	\N	57			0	inbound	+18557860909	\N	22.4127988815307617	null	new lead		3	\N	\N	1430
2016-07-24 11:32:34.227019+00	2016-07-25 11:30:03.208555+00	925	completed	Matthew	Tremper	matthewtremper@live.com	+15133108592		\N	2016-07-24 11:32:34.225193	\N		25d0200e-983d-4413-94ae-eb664b99711c	\N			0	outbound	+18556311490	\N	\N	{}	new lead		1	\N	\N	1433
2016-11-01 15:26:33.808903+00	2016-11-01 15:42:09.804808+00	2465	completed				+19804301978		933	2016-11-01 15:26:33.806685	2016-11-01 15:42:06.456469	CAd428e70357f7cc4fe303b3fcb4cab27d	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE7c9b1d0ab297a12ca91701e0b83bb41d	0	inbound	+18557240606	49	2.08828592300415039	null	new lead		1	\N	\N	1436
2017-04-10 16:00:51.65848+00	2017-05-17 15:41:07.22432+00	3766	completed				+18174200826		109	2017-04-10 16:00:51.656693	2017-04-10 16:02:40.869892	CAfab4c3ba188b491cc44965762361dceb	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REb37367a308bdc4ee573176b70ee5ac10	0	inbound	+18177569010	124	8.28239607810974121	\N	new lead	myers justice	12	\N	\N	1437
2017-04-13 22:17:33.249932+00	2017-05-17 15:41:07.224349+00	3898	completed				+18174200826		138	2017-04-13 22:17:33.247362	2017-04-13 22:19:51.593836	CA89db54a7e35078e908e3769532bb58df	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE9a5b72f28b8df4d05ce4271e97d70a2d	0	inbound	+18177569010	124	12.5185790061950684	\N	new lead		12	\N	\N	1437
2017-03-12 23:01:34.687648+00	2017-11-29 18:38:53.212068+00	3388	completed				+14696855330		140	2017-03-12 23:01:34.685445	2017-03-12 23:03:54.784538	CA68e69925009d2d9920a6a83a315a5876	\N	99			0	inbound	+12146922088	\N	11.4487559795379639	\N	new lead	jones marquis	9	\N	\N	1438
2017-12-13 00:59:58.260594+00	2017-12-13 01:01:29.976886+00	7835	completed	Angelica	Nieves	nieves.angelica040@gmail.com	+17739817307		88	2017-12-13 00:59:58.25861	2017-12-13 01:01:29.97585	CA0f06fad4c44427d8dfce85a72922518f	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.75074291229248047	{}	new lead		15	\N	\N	1439
2017-09-04 18:56:38.746627+00	2017-09-04 19:05:07.39052+00	6253	completed	Jen	Walton	jennifernoelwalton@gmail.com	+16783576224		158	2017-09-04 18:56:38.745246	2017-09-04 19:05:07.389146	CA2dc22d637995aa9957dbb518f5c1a138	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE96f173f20f1ebf6afe680cee0c2a786c	3	outbound	+17704009016	\N	345.728753089904785	{}	new lead		13	\N	\N	1443
2017-09-05 13:44:48.949245+00	2017-09-05 13:47:17.522829+00	6257	completed	Jen	Walton		+16783576224		147	2017-09-05 13:44:48.946751	2017-09-05 13:47:15.795473	CAd9186d142e6ca75147d34ebe7c9d872e	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REf2e2aab08e4c51b411cc27da81e98def	0	inbound	+17704009016	132	11.816648006439209	\N	new lead		13	\N	\N	1443
2017-08-31 17:34:29.022704+00	2017-08-31 17:35:39.889595+00	6218	completed	JKIESHA	ELDER	Witnessmissy003@aol.com	+17063553966		57	2017-08-31 17:34:29.021098	2017-08-31 17:35:38.589759	CA5b2b71d670c84a6f99255f30b8713b30	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REb9a13d971c8d4aba99f62814027a0528	1	outbound	+17704009016	\N	11.6102221012115479	{}	new lead		13	\N	\N	1444
2016-11-08 16:47:32.493444+00	2016-11-08 17:07:19.23267+00	2806	completed				+14047090467		1183	2016-11-08 16:47:32.491015	2016-11-08 17:07:15.27051	CA3800b03d35c07d90f7533c22f86adfe6	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REbc10221e4492e2e09547efabff258dfc	0	inbound	+18557240606	49	2.33183908462524414	null	new lead		1	\N	\N	1446
2017-04-12 20:06:35.817816+00	2017-11-29 18:38:53.213809+00	3835	completed				+14698345131		93	2017-04-12 20:06:35.816064	2017-04-12 20:08:08.957152	CA39ca47ab132dd74497803a767004f231	\N	107			0	inbound	+12146922088	\N	5.84918093681335449	\N	new lead		9	\N	\N	1447
2017-10-10 07:28:52.787475+00	2017-10-10 07:28:52.839858+00	6643	missed	Lukesha	Campbell	Campbell_kesha77@yahoo.com	+17064616927		\N	2017-10-10 07:28:52.785862	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	1448
2016-08-02 15:06:00.524216+00	2016-12-10 00:55:45.164983+00	1115	completed				+14847166224		324	2016-08-02 15:06:00.522667	2016-08-02 15:11:24.509802	CA0b1fe53a87b4e20672d7f4df95d436b2	\N	24			0	inbound	+18557129406	\N	2.05219292640686035	null	new lead		3	\N	\N	1450
2017-03-31 19:06:41.967102+00	2017-03-31 19:29:42.823155+00	3645	missed				+12146099635		1381	2017-03-31 19:06:41.965194	2017-03-31 19:29:42.815823	CAb65b6515310d563c26e5e2920a48bb33	\N	\N			0	inbound	+18177569010	124	1306.99845886230469	\N	new lead	skinner cherlyn	12	\N	\N	1460
2017-03-31 20:35:19.091583+00	2017-03-31 20:57:46.313888+00	3647	missed				+12146099635		443	2017-03-31 20:35:19.088571	2017-03-31 20:42:42.553698	CA8bc729f17742fee404af27f422a8b14b	\N	\N			0	inbound	+18177569010	124	362.394344091415405	\N	new lead	skinner cherlyn	12	\N	\N	1460
2017-11-17 13:12:00.424002+00	2017-11-17 13:12:01.068821+00	7093	missed				+17702037431		1	2017-11-17 13:12:00.422124	2017-11-17 13:12:01.059528	CAab4d97638cd4a30c9880953965e9ec94	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	1466
2017-12-10 17:51:20.808925+00	2017-12-10 17:52:07.49909+00	7760	completed				+12146004442		45	2017-12-10 17:51:20.807093	2017-12-10 17:52:06.295121	CA726f982eb6eba3a01e1aea90742b160e	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE48a4d363849b88023fc91f431f43e61c	0	inbound	+18558645656	136	2.09208011627197266	\N	new lead		15	\N	\N	1468
2017-12-10 17:56:58.304026+00	2017-12-10 17:58:18.999234+00	7761	completed	Jason	Gingras	Jason.p.gingras@gmail.com	+12146004442		78	2017-12-10 17:56:58.301443	2017-12-10 17:58:18.996942	CA3260cf5ab310aa9d1574e8a295bfd360	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.29904413223266602	{}	new lead		15	\N	\N	1468
2017-11-25 18:27:28.811664+00	2017-11-25 18:27:29.264992+00	7298	missed				+17702978700		0	2017-11-25 18:27:28.810424	2017-11-25 18:27:29.256087	CAf8ee143a445c101bdaa73d64ebd186de	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2017-11-25 18:27:30.470464+00	2017-11-25 18:27:30.737614+00	7299	missed				+17702978700		0	2017-11-25 18:27:30.468625	2017-11-25 18:27:30.730293	CAa5a723e5a72d807c3951f5e1acf65685	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2017-11-25 18:27:36.97687+00	2017-11-25 18:27:37.192203+00	7303	missed				+17702978700		0	2017-11-25 18:27:36.974789	2017-11-25 18:27:37.180315	CAb9ab26557677f7183e4b76fe4edc6890	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2017-11-25 18:27:39.072873+00	2017-11-25 18:27:39.384392+00	7304	missed				+17702978700		0	2017-11-25 18:27:39.071625	2017-11-25 18:27:39.376954	CAf8363a18c98af162bfab45e6ab1e6037	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2017-11-25 18:27:40.57006+00	2017-11-25 18:27:41.033363+00	7305	missed				+17702978700		0	2017-11-25 18:27:40.568824	2017-11-25 18:27:41.025805	CA3f2d7bdc56074897648402617d1576b7	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2017-11-25 18:27:41.751197+00	2017-11-25 18:27:41.980668+00	7306	missed				+17702978700		0	2017-11-25 18:27:41.749989	2017-11-25 18:27:41.971591	CA7419e9c5b566ad6d237bbb507bdfac23	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2017-11-25 18:27:43.530516+00	2017-11-25 18:27:44.066193+00	7307	missed				+17702978700		1	2017-11-25 18:27:43.528151	2017-11-25 18:27:44.046876	CA88fb21bd142decc693b227843bdf2219	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2017-11-25 18:27:44.933819+00	2017-11-25 18:27:45.310186+00	7308	missed				+17702978700		0	2017-11-25 18:27:44.932406	2017-11-25 18:27:45.301082	CA159094842414a0f62e7d364225d19756	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2017-11-25 18:27:46.452333+00	2017-11-25 18:27:46.73589+00	7309	missed				+17702978700		0	2017-11-25 18:27:46.450817	2017-11-25 18:27:46.72157	CA73e32d5122dccd2a4bb1c21a27c4a560	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2017-11-25 18:27:47.822538+00	2017-11-25 18:27:48.088112+00	7310	missed				+17702978700		0	2017-11-25 18:27:47.821224	2017-11-25 18:27:48.075909	CAeeeef4a1e7ae7fb01d415290a8a5d8fc	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2017-08-29 12:37:11.115285+00	2017-08-29 12:37:25.59646+00	6192	missed				+16789393023		14	2017-08-29 12:37:11.113461	2017-08-29 12:37:25.583059	CA78e9afd3465bb595fb86bd0b03708853	\N	\N			0	inbound	+17707665732	133	\N	\N	new lead		13	\N	\N	1469
2017-03-22 13:55:09.092525+00	2017-11-29 18:38:53.212742+00	3534	completed				+13372473985		352	2017-03-22 13:55:09.090671	2017-03-22 14:01:00.624198	CA7cb98c05f40e85cac0cea3890e557890	\N	99			0	inbound	+12146922088	\N	5.89815092086791992	\N	new lead	cell phone   la	9	\N	\N	1478
2017-08-31 20:52:56.955391+00	2017-11-29 18:31:29.180671+00	6225	missed				+12818501026		19	2017-08-31 20:52:56.952031	2017-08-31 20:53:15.453885	CA40f0278d9eabfc0c168c644dcdea86aa	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REc390734e860783d0632b242b96912ff9	0	inbound	+18556311528	\N	\N	\N	new lead		1	\N	\N	1479
2017-09-01 16:05:46.873745+00	2017-11-29 18:31:29.180678+00	6232	missed				+12818501026		7	2017-09-01 16:05:46.871774	2017-09-01 16:05:54.009351	CA9c8e49f84123a2c02f685e34c35f16a4	\N	\N			0	inbound	+18556311528	\N	\N	\N	new lead		1	\N	\N	1479
2017-04-22 15:11:30.750413+00	2017-11-29 18:38:49.806287+00	4208	completed				+12142051078		185	2017-04-22 15:11:30.748598	2017-04-22 15:14:35.731192	CAd0492e3c6a0b7fd6e050d5ffb4912842	\N	\N			0	inbound	+12147122250	\N	5.04749083518981934	\N	new lead	texas center of	9	\N	\N	1482
2017-03-31 15:02:29.067886+00	2017-11-29 18:31:10.262674+00	3641	missed				+15136871583		17	2017-03-31 15:02:29.065872	2017-03-31 15:02:46.50431	CAbf983c3673dba8b5fa1fe52ab7f0552b	\N	\N			0	inbound	+18556311490	\N	\N	\N	general interest		1	\N	\N	1492
2017-03-31 15:30:50.782332+00	2017-11-29 18:31:10.262682+00	3643	completed				+15136871583		408	2017-03-31 15:30:50.780361	2017-03-31 15:37:38.509844		\N	16			0	outbound	+18556311490	\N	\N	\N	general interest		1	\N	\N	1492
2017-04-07 19:12:24.746303+00	2017-11-29 18:31:10.262746+00	3726	missed	Floyd	Blumfield		+15136871583		22	2017-04-07 19:12:24.744276	2017-04-07 19:12:46.878282	CA3f19d7361273f7d9ffc96e2684b97d53	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REf502769d9cd420ff240926c4fca6dc20	0	inbound	+18556311490	\N	\N	\N	general interest		1	\N	\N	1492
2017-04-07 19:19:43.975788+00	2017-11-29 18:31:10.262753+00	3727	completed	Floyd	Blumfield		+15136871583		78	2017-04-07 19:19:43.973962	2017-04-07 19:21:01.863339		\N	16			0	outbound	+18556311490	\N	\N	\N	general interest		1	\N	\N	1492
2017-03-18 20:10:08.839645+00	2017-11-29 18:47:25.067841+00	3494	completed				+14697678488		364	2017-03-18 20:10:08.837352	2017-03-18 20:16:13.038721	CA43d043bd60e0ccbfc536c9535d93f534	\N	82			0	inbound	+19728330116	\N	324.472762107849121	\N	new lead	adem muhammad	8	\N	\N	1493
2017-03-18 20:11:33.045954+00	2017-11-29 18:47:25.067848+00	3495	completed				+14697678488		146	2017-03-18 20:11:33.04424	2017-03-18 20:13:58.637199	CA1dc93eb7767942fbed5518e0ccf20acf	\N	115		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE7c01efa80816d8b05d7b40c7fe85d6a6	0	inbound	+19728330116	\N	5.87647604942321777	\N	new lead	adem muhammad	8	\N	\N	1493
2017-03-18 20:23:34.694706+00	2017-11-29 18:47:25.067855+00	3496	completed				+14697678488		21	2017-03-18 20:23:34.692525	2017-03-18 20:23:55.815047	CAfa40d7e345d22b56640e14d5518a02f1	\N	82			0	inbound	+19728330116	\N	10.5017199516296387	\N	new lead	adem muhammad	8	\N	\N	1493
2017-12-27 20:03:27.690719+00	2017-12-27 20:18:39.056998+00	8122	completed				+19546510105		908	2017-12-27 20:03:27.688463	2017-12-27 20:18:35.936487	CAe7125a5b6ea10cc530b059701d10b1d5	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REba58af3265c0ded3d5e518d966b4f6e5	0	inbound	+18558645656	136	3.09615516662597656	\N	new lead		15	\N	\N	1496
2017-10-20 15:50:05.630948+00	2017-10-20 15:53:47.756555+00	6766	completed				+17063008019		222	2017-10-20 15:50:05.627274	2017-10-20 15:53:47.731003	CA1c2b71e0b86bb40802f50f73ba1e1bbc	\N	154			0	inbound	+17707665699	134	3.26275396347045898	\N	new lead		13	\N	\N	1499
2017-09-07 17:00:47.179236+00	2017-09-07 17:05:31.082137+00	6283	completed				+17063722148		284	2017-09-07 17:00:47.176894	2017-09-07 17:05:31.065499	CAcd883e430cc5a4e43d51266623d1495c	\N	153			0	inbound	+17707665732	133	9.77979493141174316	\N	new lead		13	\N	\N	1501
2017-03-22 18:02:28.829387+00	2017-05-17 15:41:07.224151+00	3542	completed				+18177599167		25	2017-03-22 18:02:28.827079	2017-03-22 18:02:53.914687	CA476a37dea7ddda483c08a6d6e8930ef3	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE38f97f8d3a114feae326410c03aaa0d8	0	inbound	+18177569010	124	8.10723590850830078	\N	new lead	fort worth  tx	12	\N	\N	1505
2017-03-11 20:54:21.906705+00	2017-11-29 18:47:25.067686+00	3381	completed				+19038214970		843	2017-03-11 20:54:21.904155	2017-03-11 21:08:24.471863	CA9f3949197ae1b918e3968fb484744181	\N	82		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE5147f717463a6b992898e3af7ac4240c	0	inbound	+19728330116	\N	8.45665693283081055	\N	new lead	wireless caller	8	\N	\N	1506
2017-08-14 16:39:47.941479+00	2017-08-14 16:40:29.688807+00	6022	completed				+14705504727		38	2017-08-14 16:39:47.939688	2017-08-14 16:40:26.085373	CAb0a5251893855d9737047f0ecc5f3420	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE779ca9a8db953cc6a64c7bb133f5edea	0	inbound	+17704009016	132	28.7239880561828613	\N	new lead		13	\N	\N	1507
2017-08-14 16:41:03.92514+00	2017-08-14 16:45:40.046975+00	6023	completed				+14705504727		275	2017-08-14 16:41:03.923719	2017-08-14 16:45:38.863361	CAd16d70fea97c7d5d3463501fd100c34d	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE5a7399e53bfc474d7cea2cd9d83a388e	0	inbound	+17704009016	132	10.9685580730438232	\N	new lead		13	\N	\N	1507
2017-08-14 16:50:28.296703+00	2017-08-14 16:57:40.253968+00	6024	completed				+14705504727		432	2017-08-14 16:50:28.294776	2017-08-14 16:57:40.250867	CA24976f81bc88009c6549d8b142d7acc1	\N	150			0	inbound	+17704009016	132	355.220725059509277	\N	new lead		13	\N	\N	1507
2017-03-03 00:10:19.926893+00	2017-11-29 18:47:25.067566+00	3317	completed				+15125527722		80	2017-03-03 00:10:19.923161	2017-03-03 00:11:40.333933	CA5df9f4205d12dc8d34f388a6222c4298	\N	81		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE7aeeef4ff90c748fd68a3a2633624ffb	0	inbound	+19728330116	\N	13.9676949977874756	\N	new lead	rangel saul	8	\N	\N	1509
2017-05-13 00:34:19.414495+00	2017-05-13 00:56:51.571366+00	5054	missed				+18174058920		57	2017-05-13 00:34:19.412431	2017-05-13 00:35:16.8451	CA805a8ca9d74f58daf959693cd7e2dfea	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE58380d970b06a0d17802cfbb7653058a	0	inbound	+18177569010	124	1330.86387515068054	\N	new lead	cross bobbie	12	\N	\N	1510
2017-05-14 18:30:01.108235+00	2017-05-14 18:30:28.635232+00	5064	missed				+18174058920		27	2017-05-14 18:30:01.101689	2017-05-14 18:30:28.560669	CA1d75124bf16422f397fa1587434f65c3	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE90dd9e7f8713af72193100b84adcdc4a	0	inbound	+18177569010	124	\N	\N	new lead	cross bobbie	12	\N	\N	1510
2017-07-29 20:32:22.679092+00	2017-07-29 20:35:31.25226+00	5888	completed	Andrea	Rodriguez	rodriguezandreabb1975@gmail.com	+16787549062		180	2017-07-29 20:32:22.677634	2017-07-29 20:35:29.957612	CA603327a2784714993c8f5048893d28e8	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REf35fa894a40504b0469a02510443e7d2	1	outbound	+17704009016	\N	7.03946089744567871	{}	new lead		13	\N	\N	1511
2016-06-28 00:52:33.118379+00	2016-06-28 11:03:22.584009+00	564	completed	Cameron	Bodine	sbodine1223@gmail.com	+13304820129		\N	2016-06-28 00:52:33.117163	\N		ee869226-e246-4ab4-aaaa-e9403e2ddd39	\N			0	outbound	+18555983683	\N	\N	{}	new lead		1	\N	\N	1514
2016-06-28 20:25:56.666743+00	2016-06-28 20:28:02.197811+00	619	completed				+13304820129		121	2016-06-28 20:25:56.665212	2016-06-28 20:28:02.1966	CA7f3edd441a1ea64294789f829b8b60e4	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.71478390693664551	{}	new lead		1	\N	\N	1514
2017-04-29 20:12:57.388062+00	2017-04-29 20:36:38.411388+00	4477	missed				+18172987538		110	2017-04-29 20:12:57.384632	2017-04-29 20:14:47.314506	CA084221ef957fea6237c13f199d28c052	\N	\N			0	inbound	+18172104002	126	1397.49128699302673	\N	new lead	mcbeth b	12	\N	\N	1515
2016-11-03 18:54:04.550258+00	2016-11-03 19:10:14.040606+00	2650	completed				+18083876305		966	2016-11-03 18:54:04.548442	2016-11-03 19:10:10.253059	CAf5798288c4282c7e633ee0a4042a090f	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE80adc16536295d2282244d5bc7b2d854	0	inbound	+18557240606	49	2.07927608489990234	null	new lead		1	\N	\N	1519
2016-11-16 16:46:22.264156+00	2016-11-16 16:46:22.291258+00	2919	missed	zoilo	salud	zdsalud@yahoo.com	+12816177668		\N	2016-11-16 16:46:22.262898	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	1520
2017-05-02 17:09:26.989823+00	2017-08-17 14:35:21.045089+00	4580	completed				+18172750025		57	2017-05-02 17:09:26.987904	2017-05-02 17:10:23.541746	CA3ba2d960ce7ee039814bd1abdc4fb916	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REba50c3c1ca5db2bbd909348a30372c7a	0	inbound	+18177569010	124	10.5223169326782227	\N	new lead	arlington  tx	12	\N	\N	1521
2016-06-28 15:28:12.22208+00	2016-06-28 18:03:04.787152+00	585	completed	Christopher	Collins	Christopher.Collins3@va.gov	+19313027692		0	2016-06-28 15:28:12.220893	2016-06-28 15:28:38.957053	CA620c7e825bccfd6082dfa22b1a713381	ee869226-e246-4ab4-aaaa-e9403e2ddd39	\N			1	outbound	+18555983683	\N	14.7593841552734375	{}	new lead		1	\N	\N	1524
2017-04-27 18:38:20.706145+00	2017-11-29 18:38:49.807002+00	4375	missed				+14697134512		19	2017-04-27 18:38:20.70418	2017-04-27 18:38:39.276798	CA6c742c0b2f5e861d9ef2ff205c03335c	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	fahey justin   	9	\N	\N	1525
2016-08-05 22:42:27.635245+00	2016-08-08 13:06:55.629765+00	1296	missed	Deborah	Gould	dkgld53@aol.com	+16148372282		\N	2016-08-05 22:42:27.634103	\N		d33a481e-e0af-47ac-9f90-260f20b69de5	\N			0	outbound	+18552959002	\N	\N	{}	application submitted - autopay		1	\N	\N	1526
2016-05-22 21:19:25.317172+00	2016-05-25 17:07:33.362981+00	162	completed	Neil	Conway	wetmoreconway@roadrunner.com	+13305482164	the form wont let me go to # 3456	\N	2016-05-22 21:19:25.314846	\N		d18ed5e2-2c24-449a-a761-a784adea739e	\N			0	outbound	+18556311439	\N	\N	{}	new lead		1	\N	\N	1532
2016-05-25 17:06:28.309044+00	2016-05-25 17:07:18.369931+00	214	completed				+13305482164		45	2016-05-25 17:06:28.307773	2016-05-25 17:07:18.368833	CAca8806039acef109e67bea147e1ae650	d74ffd1c-7b90-4327-b9bc-e1ebf9391484	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE1c8fe05dd8f4c13cfd3762973972ad2b	1	outbound	+18556311528	\N	1.51843619346618652	{}	new lead		1	\N	\N	1532
2016-11-30 21:45:55.775603+00	2016-11-30 21:56:13.314843+00	3011	completed				+12144575140		617	2016-11-30 21:45:55.77394	2016-11-30 21:56:12.393525	CAf80c0a084f778dd1b8277562a9621591	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE6e3f1dbab992176319b3ea929d5ce8e1	0	inbound	+18557240606	49	2.80669403076171875	null	new lead		1	\N	\N	1535
2016-05-21 04:31:37.55601+00	2016-05-25 16:21:29.954656+00	150	completed	david 	mckibbin	dlmckibbin51@gmail.com	+19289160196	i can not get the time at current residence to work	\N	2016-05-21 04:31:37.554073	\N		7172f96a-6122-48a5-b577-2bd45add9a91	\N			0	outbound	+18556311439	\N	\N	{}	new lead		1	\N	\N	1538
2016-05-21 04:31:38.421619+00	2016-05-25 16:45:17.142262+00	151	completed	david 	mckibbin	dlmckibbin51@gmail.com	+19289160196	i can not get the time at current residence to work	\N	2016-05-21 04:31:38.420673	\N		7172f96a-6122-48a5-b577-2bd45add9a91	\N			0	outbound	+18556311439	\N	\N	{}	new lead		1	\N	\N	1538
2016-11-15 16:41:33.259857+00	2016-11-15 16:41:33.284458+00	2910	missed	HOMER	COLLINS	CORPDIRECTOR@ICLOUD.COM	+15127691205		\N	2016-11-15 16:41:33.258815	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	1540
2016-10-31 03:45:18.015097+00	2016-10-31 03:45:18.055736+00	2376	missed	Kelly	Perry	kcperry.kcp@gmail.com	+19032926435		\N	2016-10-31 03:45:18.014045	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	1544
2016-10-20 13:50:42.848834+00	2016-12-10 01:05:18.401196+00	2325	completed				+16109179777		604	2016-10-20 13:50:42.847303	2016-10-20 14:00:47.174167	CAccb79279b292292a8f382a5c221da612	\N	24			0	inbound	+18557088731	\N	2.21315503120422363	null	new lead		3	\N	\N	1549
2016-07-22 07:56:10.620033+00	2016-07-22 16:51:23.304216+00	917	completed	Scott	Roberts	scott887@gmail.com	+16146157608		\N	2016-07-22 07:56:10.617738	\N		d33a481e-e0af-47ac-9f90-260f20b69de5	\N			0	outbound	+18552959002	\N	\N	{}	new lead		1	\N	\N	1550
2017-10-02 15:10:29.322027+00	2017-10-02 15:19:59.194251+00	6557	completed				+18179855133		570	2017-10-02 15:10:29.319931	2017-10-02 15:19:59.191415	CAe9cc6d07beebe3e039ef4372ff2affec	\N	146			0	inbound	+18177569010	124	371.045870065689087	\N	new lead	nov	12	\N	\N	1551
2017-10-02 19:55:01.307787+00	2017-10-02 19:57:40.942162+00	6559	completed				+18179855133		158	2017-10-02 19:55:01.305639	2017-10-02 19:57:39.792423	CA13025d08ab793a1c2acfada3651fb03a	\N	155		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE33bab0e463bf2353d0b8c2484fc7e520	0	inbound	+18177569010	124	16.7574000358581543	\N	new lead	nov	12	\N	\N	1551
2017-11-25 18:27:49.291795+00	2017-11-25 18:27:49.515792+00	7311	missed				+17702978700		0	2017-11-25 18:27:49.290665	2017-11-25 18:27:49.50203	CA19de68b62aa711f68a58aa29cb3e42d3	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2017-11-25 18:27:50.622696+00	2017-11-25 18:27:50.934265+00	7312	missed				+17702978700		0	2017-11-25 18:27:50.621463	2017-11-25 18:27:50.924988	CA926c46a630ec28d2bbbf5bcfb528dfff	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2017-11-25 18:27:52.113694+00	2017-11-25 18:27:52.322796+00	7313	missed				+17702978700		0	2017-11-25 18:27:52.112543	2017-11-25 18:27:52.31515	CAda0515b7f56a5b1f779b7bfe5cd24e1d	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2017-11-25 18:27:53.415735+00	2017-11-25 18:27:53.630639+00	7314	missed				+17702978700		0	2017-11-25 18:27:53.414294	2017-11-25 18:27:53.62205	CAfd8b782b749eabd36162389213ade0da	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2017-09-07 21:35:13.612989+00	2017-09-07 21:45:20.883117+00	6287	completed	Megan	Madison		+14702977132		606	2017-09-07 21:35:13.611083	2017-09-07 21:45:19.651493	CA9acecbad5529d24bc6fe991cf1d4c991	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REe982b2d5ab517c8b2c572fd777466bd6	0	inbound	+17704009016	132	383.848695993423462	\N	new lead		13	\N	\N	1554
2017-08-26 20:20:49.986194+00	2017-08-26 20:21:23.255482+00	6178	completed				+14702977132		33	2017-08-26 20:20:49.982919	2017-08-26 20:21:23.243887	CAcbd07b268ae094211e2735348a0ed525	\N	150			0	inbound	+17707665732	133	15.8286199569702148	\N	new lead		13	\N	\N	1554
2017-09-06 20:52:13.083747+00	2017-09-06 20:57:43.913628+00	6279	completed	Megan	Madison	msmadison1611@gmail.com	+14702977132		33	2017-09-06 20:52:13.082276	2017-09-06 20:53:01.872825	CA69e137758e40ac8c6bd6274e3920e248	0427608a-ae09-4db0-a1e8-374423ee28c3	150			1	outbound	+17704009016	\N	15.0993311405181885	{}	new lead		13	\N	\N	1554
2016-08-05 21:45:29.43072+00	2017-11-29 18:31:10.2621+00	1293	missed				+14155837683		120	2016-08-05 21:45:29.429754	2016-08-05 21:47:29.229289	CA246ded10a46a6171d22d635ab82cd7cf	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE08f9b33eab5971c2f7f3b69ae9bf3bfe	0	inbound	+18556311490	\N	\N	null	new lead		1	\N	\N	1556
2016-11-04 17:04:14.510178+00	2016-11-04 17:12:40.543063+00	2706	completed				+14049924660		504	2016-11-04 17:04:14.508176	2016-11-04 17:12:38.962324	CA48a4eb7e9eb75454cdfa342d5f48c85d	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REa35018c22ab692a6de88e1e51a6516c1	0	inbound	+18557240606	49	2.37080287933349609	null	new lead		1	\N	\N	1559
2017-12-23 00:18:23.044275+00	2017-12-23 00:20:14.424249+00	8074	completed				+18172299286		110	2017-12-23 00:18:23.040925	2017-12-23 00:20:13.232028	CA8e89515da8cee861c75e5689cd1f03bf	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REb69d4dabae06c010d3a5580e319cb489	0	inbound	+18177569010	124	10.2150561809539795	\N	new lead	hull karleigh	12	\N	\N	1560
2017-11-04 08:52:04.067231+00	2017-11-04 08:52:04.121576+00	6926	missed	steven	turpin	steven_turpin@yahoo.com	+17622363457		\N	2017-11-04 08:52:04.065758	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	1563
2016-10-06 21:04:48.84888+00	2016-12-10 01:00:18.568497+00	2222	completed				+18669013212		185	2016-10-06 21:04:48.84676	2016-10-06 21:07:53.850258	CAa02c4c2752ad76a180797f718d8c532f	\N	56			0	inbound	+18556775511	\N	3.85043501853942871	null	new lead		3	\N	\N	1564
2017-12-08 16:38:33.70778+00	2017-12-08 16:38:42.912546+00	7716	completed				+17814639138		9	2017-12-08 16:38:33.705125	2017-12-08 16:38:42.90018	CA0973f328b0926a74e86791acca31f65e	\N	78			0	inbound	+18036184545	119	3.4720149040222168	\N	new lead		6	\N	\N	1565
2016-07-25 19:29:53.827249+00	2016-07-25 19:32:38.48361+00	938	completed	sue	admans		+19613264524		0	2016-07-25 19:29:53.825699	2016-07-25 19:29:59.553637	CA6fc75ffb6a3ad83766d5b628d1879ff8	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	\N			1	outbound	+18552959002	\N	2.45495986938476562	{}	new lead		1	\N	\N	1567
2016-07-25 18:41:41.071873+00	2016-07-25 19:32:26.92772+00	937	completed	sue	admans	sueadmn@yahoo.com	+19613264524		14	2016-07-25 18:41:41.070362	2016-07-25 18:42:23.371824	CAe02cacd4e2e43df0a806794df76c038c	d33a481e-e0af-47ac-9f90-260f20b69de5	\N			1	outbound	+18552959002	\N	24.5891759395599365	{}	new lead		1	\N	\N	1567
2016-07-25 19:30:45.545408+00	2016-07-25 19:32:50.266143+00	939	completed	sue	admans		+19613264524		10	2016-07-25 19:30:45.544345	2016-07-25 19:31:02.029624	CA2069f19e97ca222ea5153595e95ab44d	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	\N			1	outbound	+18552959002	\N	2.36625885963439941	{}	new lead		1	\N	\N	1567
2017-05-09 18:04:03.31141+00	2017-11-29 18:38:53.215485+00	4913	completed				+12148129395		38	2017-05-09 18:04:03.309251	2017-05-09 18:04:41.323169	CAa0b7c6edc82750be825259aea6aaa737	\N	133			0	inbound	+12146922088	\N	5.55979800224304199	\N	new lead	empire exotic m	9	\N	\N	1569
2017-05-09 18:04:51.041325+00	2017-11-29 18:38:53.215498+00	4915	completed				+12148129395		26	2017-05-09 18:04:51.039204	2017-05-09 18:05:17.3431	CAd92804c160b1dbf8e3d0617304ce2e40	\N	133			0	inbound	+12146922088	\N	4.11423301696777344	\N	new lead	empire exotic m	9	\N	\N	1569
2017-05-10 23:32:57.228165+00	2017-11-29 18:38:53.215625+00	4993	completed				+12148129395		33	2017-05-10 23:32:57.22613	2017-05-10 23:33:30.495786	CA4b722430efe055320c823ad28e4cc6cc	\N	\N		https://api.twilio.com/2010-04-01/Accounts/AC5422b9b221417a7a84556a92f6edc492/Recordings/REc9898f08ea426eeeda08426cfcffbf2a	0	inbound	+12146922088	\N	6.49694299697875977	\N	new lead	empire exotic m	9	\N	\N	1569
2017-03-02 21:50:49.411833+00	2017-11-29 18:38:53.211824+00	3313	completed				+12148129395		46	2017-03-02 21:50:49.410216	2017-03-02 21:51:35.023421	CA0bd03949ac3ba80ae23c8f686959476f	\N	107			0	inbound	+12146922088	\N	16.7990720272064209	\N	new lead	empire exotic m	9	\N	\N	1569
2017-12-08 03:39:07.655742+00	2017-12-08 03:40:28.067589+00	7701	completed	ruiqi	yang	RICKY.YANG.P@GMAIL.COM	+12244327726		78	2017-12-08 03:39:07.654061	2017-12-08 03:40:28.066393	CAaabb62e87d40b74dc51f7c9c67eb4db0	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.06548500061035156	{}	new lead		15	\N	\N	1571
2017-12-08 03:42:14.242465+00	2017-12-08 03:43:35.956015+00	7702	completed	ruiqi	yang		+12244327726		81	2017-12-08 03:42:14.240789	2017-12-08 03:43:35.192958	CA6f5f106a6a2410843aa86e452ae6e7c5	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE4c19e828ccea7aa279c697fc7bed0c82	0	inbound	+18558645656	136	2.41374778747558594	\N	new lead		15	\N	\N	1571
2017-12-12 00:49:46.14079+00	2017-12-12 01:05:59.671697+00	7800	completed	ruiqi	yang		+12244327726		970	2017-12-12 00:49:46.139209	2017-12-12 01:05:56.4704	CAc5358136ff2e7741187fd4c8e8e66452	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE0b3c1cc63b50f07f94385491d91358a4	0	inbound	+18558645656	136	2.3656928539276123	\N	new lead		15	\N	\N	1571
2017-05-04 20:49:34.689042+00	2017-11-29 18:38:49.809693+00	4725	completed				+18708200576		69	2017-05-04 20:49:34.68646	2017-05-04 20:50:43.973998	CAe7e394e9053801e2f5eb23655f3a2c3e	\N	124			0	inbound	+12147122250	\N	0.905619144439697266	\N	new lead	green michael  	9	\N	\N	1574
2017-09-11 16:32:59.54818+00	2017-11-29 18:31:56.600472+00	6314	missed				+15707351358		8	2017-09-11 16:32:59.546279	2017-09-11 16:33:07.805705	CA5a7924a40f3e4b8d39b2b52789fcd457	\N	\N			0	inbound	+18556311397	\N	\N	\N	new lead		1	\N	\N	1580
2017-11-10 18:55:44.577222+00	2017-11-29 18:31:56.600507+00	7006	missed				+15707351358		11	2017-11-10 18:55:44.575852	2017-11-10 18:55:55.633818	CA7b456ec086ac53ba9f703481b2769012	\N	\N			0	inbound	+18556311397	\N	\N	\N	new lead		1	\N	\N	1580
2017-04-18 13:59:57.800206+00	2017-11-29 18:47:25.068101+00	4026	completed				+19727461046		535	2017-04-18 13:59:57.796654	2017-04-18 14:08:53.109597	CA707dd5ad56a53d677ffde8a67993540b	\N	83		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REa2ecaad8943dc2cc974f30a08f141baf	0	inbound	+19728330116	\N	17.5312249660491943	\N	new lead	gannon patrick	8	\N	\N	1581
2016-07-10 13:58:48.287333+00	2016-07-11 12:11:25.237655+00	837	completed	Mark	Beacom Sr.	mbeacomsr@aol.com	+13305593842		\N	2016-07-10 13:58:48.284765	\N		ee869226-e246-4ab4-aaaa-e9403e2ddd39	\N			0	outbound	+18555983683	\N	\N	{}	new lead		1	\N	\N	649
2017-11-25 18:27:55.097964+00	2017-11-25 18:27:55.323956+00	7315	missed				+17702978700		0	2017-11-25 18:27:55.096648	2017-11-25 18:27:55.316345	CAa05b3d47169ca22cdb3ff27bcc80c77a	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2017-05-23 14:58:33.99411+00	2017-05-23 15:00:42.32646+00	5311	completed				+14233142428		128	2017-05-23 14:58:33.991846	2017-05-23 15:00:42.314605	CAcd78b04f1d49335dd30e35af8cb46852	\N	132		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE74d991a29e7a4d90689bb94b281a1000	0	inbound	+18172104002	126	8.32989192008972168	\N	new lead	douse	12	\N	\N	1582
2017-11-03 21:58:44.683121+00	2017-11-03 22:05:35.519903+00	6924	completed				+16824652784		410	2017-11-03 21:58:44.681344	2017-11-03 22:05:34.920705	CAce45a7f53567232508100576f9490829	\N	146			0	inbound	+18177569010	124	366.099916934967041	\N	new lead	fort worth  tx	12	\N	\N	1585
2016-08-19 21:19:19.814903+00	2017-11-29 18:32:13.821873+00	1631	completed	Candi	Ashley		+13308819655		94	2016-08-19 21:19:19.813356	2016-08-19 21:20:54.123175		\N	16			0	outbound	+18555983683	\N	\N	null	new lead		1	\N	\N	1586
2016-08-20 13:36:06.121207+00	2017-11-29 18:32:13.8219+00	1633	missed	Candi	Ashley		+13308819655		34	2016-08-20 13:36:06.119759	2016-08-20 13:36:40.137852	CA99fe6ec06ef7bec8a93040ea326d2bdf	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE7b5306e54b5dcb22cb23a3b6845ebbf4	0	inbound	+18555983683	\N	\N	null	new lead		1	\N	\N	1586
2016-08-12 17:11:34.545838+00	2017-11-29 18:32:13.821728+00	1442	missed	Candi	Ashley		+13308819655		59	2016-08-12 17:11:34.544458	2016-08-12 17:12:33.225151	CAb04eaed53a86f17cacdb518001f11bb9	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE4437ab7a076bf1740d68269b0cb5597c	0	inbound	+18555983683	\N	31.8097140789031982	null	new lead		1	\N	\N	1586
2016-08-12 17:12:46.848462+00	2017-11-29 18:32:13.821735+00	1443	missed	Candi	Ashley		+13308819655		56	2016-08-12 17:12:46.847566	2016-08-12 17:13:42.582622	CA9040147b8081b94f9ea476016ed9f03c	\N	\N			0	inbound	+18555983683	\N	31.6528728008270264	null	new lead		1	\N	\N	1586
2016-08-12 17:24:41.487944+00	2017-11-29 18:32:13.82175+00	1445	missed	Candi	Ashley		+13308819655		54	2016-08-12 17:24:41.486862	2016-08-12 17:25:35.427368	CAa15db6af8123b6b94ed837a2faf0ba63	\N	\N			0	inbound	+18555983683	\N	31.6602129936218262	null	new lead		1	\N	\N	1586
2016-08-13 14:53:50.061602+00	2017-11-29 18:32:13.821785+00	1471	missed	Candi	Ashley		+13308819655		16	2016-08-13 14:53:50.059929	2016-08-13 14:54:06.453725	CA4d1899e256df6e02ed5caf02a380fbff	\N	\N			0	inbound	+18555983683	\N	\N	null	new lead		1	\N	\N	1586
2016-08-19 16:59:40.015897+00	2017-11-29 18:32:13.821865+00	1611	missed	Candi	Ashley		+13308819655		43	2016-08-19 16:59:40.013697	2016-08-19 17:00:22.57002	CA19654ca18fb3bb9c2a30b132cd52cd7a	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE0a5005346953d844393eee64c50066db	0	inbound	+18555983683	\N	1.6425321102142334	null	new lead		1	\N	\N	1586
2016-08-19 21:20:06.871623+00	2017-11-29 18:32:13.821882+00	1632	completed	Candi	Ashley		+13308819655		74	2016-08-19 21:20:06.870064	2016-08-19 21:21:20.648844		\N	16			0	outbound	+18555983683	\N	\N	null	new lead		1	\N	\N	1586
2016-08-23 00:41:08.285988+00	2016-08-23 00:41:08.286027+00	1661	missed	candi	ashley	candiashley143@yahoo.com	+13308819655	received another email about refinancing 	\N	2016-08-23 00:41:08.283158	\N		b3446068-5c4f-4ede-b0ba-8b1a3367f8a8	\N			0	outbound	+18556311439	\N	\N	{}	new lead		1	\N	\N	1586
2016-07-29 18:37:59.629976+00	2017-11-29 18:32:13.821635+00	1042	completed	Candi	Ashley		+13308819655		156	2016-07-29 18:37:59.628387	2016-07-29 18:40:35.272697	CAd37b48cd8f51c9208c1791735eeb6551	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REbdd8103c59b34d9467e5b1b090b45259	0	inbound	+18555983683	\N	12.2204830646514893	null	new lead		1	\N	\N	1586
2016-08-09 16:43:50.858568+00	2017-11-29 18:32:13.8217+00	1357	completed	Candi	Ashley		+13308819655		268	2016-08-09 16:43:50.857523	2016-08-09 16:48:19.250221	CA920cebeb71ab97bd664af9dea6279e9d	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REe631fb3e0ac7ae3b449dde0a91a716aa	0	inbound	+18555983683	\N	12.553462028503418	null	new lead		1	\N	\N	1586
2016-08-12 17:14:11.981596+00	2017-11-29 18:32:13.821743+00	1444	missed	Candi	Ashley		+13308819655		76	2016-08-12 17:14:11.980492	2016-08-12 17:15:28.480127	CA6440ce29213a5260651951f11ec93f62	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE697a694d4a37323c353cbc049fd5d543	0	inbound	+18555983683	\N	31.6217899322509766	null	new lead		1	\N	\N	1586
2017-12-18 20:05:25.97321+00	2017-12-18 20:19:57.606327+00	7974	completed				+14407259548		868	2017-12-18 20:05:25.971163	2017-12-18 20:19:54.369762	CA951c095f6ae6b4747c3eebfd1fc6a560	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE1d927388ce2c0eec3218be2217006936	0	inbound	+18558645656	136	3.62462282180786133	\N	new lead		15	\N	\N	1729
2017-04-19 21:23:57.529264+00	2017-11-29 18:38:49.805803+00	4106	completed				+16822342221		86	2017-04-19 21:23:57.527197	2017-04-19 21:25:23.376617	CA82f62d63e09b5833958758b4b3c08c09	\N	124			0	inbound	+12147122250	\N	1.25442695617675781	\N	new lead	nguyen lehang	9	\N	\N	1590
2017-04-19 21:25:18.56291+00	2017-11-29 18:38:49.80581+00	4107	completed				+16822342221		93	2017-04-19 21:25:18.559399	2017-04-19 21:26:51.363349	CAed4f0674e3429c9dbc5316dcabcd2707	\N	127			0	inbound	+12147122250	\N	2.24935197830200195	\N	new lead	nguyen lehang	9	\N	\N	1590
2017-04-19 21:26:54.038713+00	2017-11-29 18:38:49.805817+00	4108	completed				+16822342221		100	2017-04-19 21:26:54.037434	2017-04-19 21:28:34.430727	CA9c368414debac20056bde2a484232355	\N	124			0	inbound	+12147122250	\N	1.45192098617553711	\N	new lead	nguyen lehang	9	\N	\N	1590
2017-04-19 21:28:28.80482+00	2017-11-29 18:38:49.805824+00	4109	completed				+16822342221		95	2017-04-19 21:28:28.803141	2017-04-19 21:30:03.967274	CAb30141daebda53ff6915aa3d61b98f2b	\N	\N			0	inbound	+12147122250	\N	2.36577510833740234	\N	new lead	nguyen lehang	9	\N	\N	1590
2017-04-19 21:29:54.883222+00	2017-11-29 18:38:49.805831+00	4110	completed				+16822342221		61	2017-04-19 21:29:54.880434	2017-04-19 21:30:55.670471	CA28535ccd5cb8c6a8b66be1738fd0ad53	\N	127			0	inbound	+12147122250	\N	2.60990285873413086	\N	new lead	nguyen lehang	9	\N	\N	1590
2017-04-27 23:16:37.499446+00	2017-11-29 18:38:49.807215+00	4414	completed				+16822342221		80	2017-04-27 23:16:37.497746	2017-04-27 23:17:57.427621	CAb2671af371d7e7a76e01439dda0d2fc4	\N	127			0	inbound	+12147122250	\N	1.23893904685974121	\N	new lead	nguyen lehang	9	\N	\N	1590
2017-04-27 23:17:48.994684+00	2017-11-29 18:38:49.807222+00	4415	completed				+16822342221		82	2017-04-27 23:17:48.992905	2017-04-27 23:19:11.428446	CAaac760594ce6bf2d446ae7f494bfba77	\N	125			0	inbound	+12147122250	\N	1.22684907913208008	\N	new lead	nguyen lehang	9	\N	\N	1590
2017-10-27 14:59:28.430243+00	2017-10-27 15:21:21.882275+00	6835	missed				+18172889800		9	2017-10-27 14:59:28.428806	2017-10-27 14:59:37.777198	CA38006af7985a0fa54a64263a1c6abdd0	\N	\N			0	inbound	+18172104002	126	1290.81523180007935	\N	new lead	moncrief cancer institute	12	\N	\N	1593
2017-10-27 14:59:12.817002+00	2017-10-27 15:21:13.04988+00	6834	completed				+18172889800		1319	2017-10-27 14:59:12.81482	2017-10-27 15:21:11.895337	CA46c8159cbd183f85931a8ef231773f62	\N	132			0	inbound	+18172104002	126	1293.10024905204773	\N	new lead	moncrief cancer institute	12	\N	\N	1593
2017-09-09 13:50:49.308339+00	2017-09-09 13:57:37.644041+00	6300	completed	Keira	Fletcher 	Kekefletcher07@gmail.com	+17708207797		63	2017-09-09 13:50:49.30661	2017-09-09 13:57:37.231751	CA315381e0bc10ee604a78999a0797f62d	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REa79b33b3c70b8cfadae8f2d1eb5b3ac4	3	outbound	+17704009016	\N	344.261461973190308	{}	new lead		13	\N	\N	1594
2017-09-28 22:03:51.502885+00	2017-09-28 22:08:41.847553+00	6516	completed	Andrew	Ulmer	Aulmer2002@yahoo.com	+16788584730		39	2017-09-28 22:03:51.501056	2017-09-28 22:04:41.567438	CA0fc8d37349f52fad614bf6c1d234ec77	0427608a-ae09-4db0-a1e8-374423ee28c3	153			1	outbound	+17704009016	\N	12.2391269207000732	{}	new lead		13	\N	\N	1597
2017-10-21 16:12:13.633675+00	2017-10-21 16:13:47.253123+00	6775	completed				+17069744980		94	2017-10-21 16:12:13.631881	2017-10-21 16:13:47.239658	CAf1a0d617434d33dc43ad6ed37be00113	\N	150			0	inbound	+17707665732	133	13.8819420337677002	\N	new lead		13	\N	\N	1607
2017-11-25 18:27:56.514729+00	2017-11-25 18:27:56.819847+00	7316	missed				+17702978700		0	2017-11-25 18:27:56.51271	2017-11-25 18:27:56.811716	CA3e65e4b0b9de26e67923c666c6c8b161	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2017-12-07 14:46:41.650742+00	2017-12-07 14:58:18.435154+00	7680	completed				+16159453220		694	2017-12-07 14:46:41.648951	2017-12-07 14:58:15.209007	CA910c3bae9fc0bbd892ba842ff0b36904	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REadd2a90a7d18d577e03b2d7018b5f3bc	0	inbound	+18558645656	136	2.81739592552185059	\N	new lead		15	\N	\N	1611
2016-09-22 16:30:23.942542+00	2016-12-09 17:08:44.542473+00	2074	completed				+14437533131		9	2016-09-22 16:30:23.940668	2016-09-22 16:30:33.389393	CAd6fe0f1df83a7a795552fce7b0fa3a70	\N	67			0	inbound	+18552199307	\N	1.31456995010375977	null	new lead		3	\N	\N	1613
2016-09-22 15:14:59.066842+00	2016-12-10 01:03:20.585924+00	2073	completed				+14437533131		11	2016-09-22 15:14:59.064683	2016-09-22 15:15:10.551672	CA651b42640517f9bcef0ecf6cefab8d1b	\N	66			0	inbound	+18558891151	\N	0.475867033004760742	null	new lead		3	\N	\N	1613
2017-08-07 16:25:22.957329+00	2017-08-07 16:31:39.881995+00	5953	completed				+16782249096		377	2017-08-07 16:25:22.955526	2017-08-07 16:31:39.879544	CA26b2ca445a33fe3722093dddf7709bed	\N	153			0	inbound	+17707665732	133	345.687080144882202	\N	new lead		13	\N	\N	1619
2016-08-05 02:08:26.270857+00	2016-08-10 16:39:34.241669+00	1261	missed	Teresa	Sawyers	dstrs95@embarqmail.com	+15133743923		\N	2016-08-05 02:08:26.269506	\N		25d0200e-983d-4413-94ae-eb664b99711c	\N			0	outbound	+18556311490	\N	\N	{}	application submitted - autopay		1	\N	\N	1621
2016-06-27 12:07:51.554141+00	2017-11-29 18:32:13.820504+00	479	completed	Randy 	Carter		+13302571113		48	2016-06-27 12:07:51.553115	2016-06-27 12:08:39.391881	CA5361dc4960f36dfba05e85d1eef3bfb6	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REe32d12d317e4dcbb56575776c2ed7652	0	inbound	+18555983683	\N	\N	null	new lead		1	\N	\N	1622
2016-06-27 12:47:08.731905+00	2016-06-27 13:31:39.049444+00	482	completed	randy	carter	rrscarter@aol.com	+13302571113		0	2016-06-27 12:47:08.730108	2016-06-27 12:47:35.089077	CA6c7e99c9d0a712298b69fe34773f87f1	ee869226-e246-4ab4-aaaa-e9403e2ddd39	\N			1	outbound	+18555983683	\N	\N	{}	new lead		1	\N	\N	1622
2016-06-27 12:48:47.931841+00	2017-11-29 18:32:13.820519+00	483	completed	Randy 	Carter		+13302571113		45	2016-06-27 12:48:47.930828	2016-06-27 12:49:32.531765	CAa04d1cf33853519832d2a9a0b4290f03	\N	\N			0	inbound	+18555983683	\N	\N	null	new lead		1	\N	\N	1622
2016-06-27 13:03:26.02816+00	2017-11-29 18:32:13.820526+00	484	completed	Randy 	Carter		+13302571113		32	2016-06-27 13:03:26.026831	2016-06-27 13:03:57.921853	CAfa08fbe5fbf0ad8e9a9c2061f1025ec0	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REe300ffd904f1a043f9c39c0e472c868f	0	inbound	+18555983683	\N	14.7947759628295898	null	new lead		1	\N	\N	1622
2016-06-27 13:10:16.325504+00	2017-11-29 18:32:13.820533+00	485	completed	Unknown			+13302571113		90	2016-06-27 13:10:16.324556	2016-06-27 13:11:45.942692	CA051c00e235ab22f58266a127ed2ca160	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REa29b56baed136591168e974f9aa7bbbb	0	inbound	+18555983683	\N	8.26449990272521973	null	new lead		1	\N	\N	1622
2016-06-29 17:56:46.31856+00	2017-11-29 18:32:13.820949+00	655	completed	Unknown			+13302571113		29	2016-06-29 17:56:46.316718	2016-06-29 17:57:15.554643	CA40e67f8f8e9a98367fd0ee00f4f0ff32	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE95ac637351e3b82e29b4a6d1b0b871a2	0	inbound	+18555983683	\N	14.3682689666748047	null	new lead		1	\N	\N	1622
2016-06-29 17:59:08.843503+00	2017-11-29 18:32:13.820956+00	656	completed	Unknown			+13302571113		45	2016-06-29 17:59:08.842163	2016-06-29 17:59:53.801473	CAc0ac426bd4648410562008123cb38898	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REa074f58b476cd5d5282defd4bf6c0e6f	0	inbound	+18555983683	\N	13.8221240043640137	null	new lead		1	\N	\N	1622
2016-07-01 17:36:44.327874+00	2017-11-29 18:32:13.821231+00	720	completed	Randy 	Carter		+13302571113		31	2016-07-01 17:36:44.326301	2016-07-01 17:37:15.198577	CA35b12aeeb73a3a2ecd5c823030049454	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REb7c53eb7b4cdc19925832a07802f149b	0	inbound	+18555983683	\N	14.4317049980163574	null	new lead		1	\N	\N	1622
2016-07-01 17:39:25.582978+00	2017-11-29 18:32:13.821238+00	721	completed	Randy 	Carter		+13302571113		29	2016-07-01 17:39:25.580899	2016-07-01 17:39:54.451333	CA0562dc9865b4a54ee5c5f5f2fe3a3aee	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE77d45f1c473952d67ee48beccc6e43da	0	inbound	+18555983683	\N	14.170659065246582	null	new lead		1	\N	\N	1622
2016-07-04 13:07:27.938037+00	2017-11-29 18:32:13.821296+00	745	completed	Unknown			+13302571113		28	2016-07-04 13:07:27.93568	2016-07-04 13:07:55.559006	CA8b9f0dc8ac5b7065242cc0aadd92b00f	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REa13060b78fe9c6a2d85e059ba3478b80	0	inbound	+18555983683	\N	10.0795187950134277	null	new lead		1	\N	\N	1622
2017-04-07 17:05:00.120188+00	2017-11-29 18:38:53.21341+00	3718	completed				+15203704562		173	2017-04-07 17:05:00.117065	2017-04-07 17:07:52.721604	CA0ed66af35f47d9bf803e27a72d619c29	\N	107			0	inbound	+12146922088	\N	6.33387207984924316	\N	new lead	wireless subscr	9	\N	\N	1629
2017-05-04 22:15:25.749263+00	2017-11-29 18:38:53.215128+00	4733	completed				+16367956106		184	2017-05-04 22:15:25.746818	2017-05-04 22:18:30.241097	CAc7856da811880762c711272f34d174b2	\N	\N			0	inbound	+12146922088	\N	1.89562892913818359	\N	new lead	wireless caller	9	\N	\N	1632
2017-05-05 19:16:28.587227+00	2017-11-29 18:38:53.215142+00	4781	completed				+16367956106		177	2017-05-05 19:16:28.584816	2017-05-05 19:19:25.313954	CA9eca347eeeada87411be327a5dd0cbcb	\N	\N			0	inbound	+12146922088	\N	1.38179183006286621	\N	new lead	wireless caller	9	\N	\N	1632
2016-08-05 13:57:11.030473+00	2017-01-27 21:12:23.812694+00	1268	completed				+16615787920		53	2016-08-05 13:57:11.028834	2016-08-05 13:58:04.371799		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	1634
2016-08-23 15:57:25.949489+00	2017-01-27 21:12:23.813603+00	1675	completed				+16615787920		93	2016-08-23 15:57:25.947578	2016-08-23 15:58:59.308795		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	1634
2016-08-05 02:09:40.479326+00	2017-11-29 18:31:37.36869+00	1262	missed				+16615787920		20	2016-08-05 02:09:40.478348	2016-08-05 02:10:00.06207	CA2730b210f17b753327d49f5ca1b174e4	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE6c2ccc96f01b37147134f4702a4b9ad2	0	inbound	+18555472453	\N	\N	null	general interest		1	\N	\N	1634
2016-07-27 19:39:01.900927+00	2017-11-29 18:31:41.490568+00	971	completed	Timothy	McNew		+16145953041		462	2016-07-27 19:39:01.898982	2016-07-27 19:46:44.050895	CA7987b25222f2727a9aff4e51e616806a	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE3d5f589eaedcb8cba33c4856152dd1a5	0	inbound	+18552959002	\N	14.4405341148376465	null	new lead		1	\N	\N	1638
2016-07-19 17:03:35.738238+00	2016-07-20 15:45:48.076117+00	898	completed	Timothy	McNew	tlmcnew@yahoo.com	+16145953041		58	2016-07-19 17:03:35.737132	2016-07-19 17:04:53.154019	CAe579391bc8e1d849a3799cc2d8b6905b	d33a481e-e0af-47ac-9f90-260f20b69de5	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REcb887a5b9b7c89fe76a46bbe00fecde9	1	outbound	+18552959002	\N	16.9103729724884033	{}	new lead		1	\N	\N	1638
2016-07-19 16:45:43.739803+00	2017-11-29 18:31:41.490525+00	897	missed				+16145953041		15	2016-07-19 16:45:43.738273	2016-07-19 16:45:59.237363	CA793455c2792c7c651aa5833a627ee3fa	\N	\N			0	inbound	+18552959002	\N	5.75409984588623047	null	new lead		1	\N	\N	1638
2016-07-19 17:05:09.482008+00	2017-11-29 18:31:41.490532+00	899	completed	Timothy	McNew		+16145953041		172	2016-07-19 17:05:09.480933	2016-07-19 17:08:01.529634	CAbee32adbf694523ce162d97c90832ba2	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE05c4966d385f7c33e9aa6d4595f4b63b	0	inbound	+18552959002	\N	5.2040400505065918	null	new lead		1	\N	\N	1638
2016-07-28 16:03:10.050074+00	2016-07-28 16:04:13.673002+00	999	completed	Timothy	McNew		+16145953041		58	2016-07-28 16:03:10.048928	2016-07-28 16:04:13.671818	CAdcafb94256eb552b6455a8556c2fb35a	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	2.79629993438720703	{}	new lead		1	\N	\N	1638
2016-07-28 20:51:53.631069+00	2016-07-29 14:11:52.049107+00	1015	completed	Timothy	McNew		+16145953041		53	2016-07-28 20:51:53.62958	2016-07-28 20:52:46.37438	CAf40d5a8865ee2b6aa77256442419c4bc	\N	\N			0	inbound	+18559694001	70	39.9833829402923584	null	new lead		1	\N	\N	1638
2017-11-25 18:27:58.45359+00	2017-11-25 18:27:58.929285+00	7317	missed				+17702978700		0	2017-11-25 18:27:58.452362	2017-11-25 18:27:58.91649	CA35f65b4e1a18d9adcf1e1c0117040b53	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2016-07-29 18:09:59.540661+00	2016-07-29 18:11:17.446689+00	1039	completed	Timothy	McNew		+16145953041		75	2016-07-29 18:09:59.539618	2016-07-29 18:11:17.445152	CA386352c06fd3dffad68d4611c5e6fa5d	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	2.41997194290161133	{}	new lead		1	\N	\N	1638
2016-07-29 18:11:25.849445+00	2016-07-29 18:15:51.096918+00	1040	completed	Timothy	McNew		+16145953041		263	2016-07-29 18:11:25.848233	2016-07-29 18:15:51.095938	CA8db6f33f4d7124aaa8bdff1091956c08	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	2.72783398628234863	{}	new lead		1	\N	\N	1638
2016-07-25 17:09:28.346989+00	2017-11-29 18:31:41.490554+00	934	missed	Timothy	McNew		+16145953041		14	2016-07-25 17:09:28.344872	2016-07-25 17:09:42.051679	CAdcfb51a380e1aa6480c0c2d9960ba039	\N	\N			0	inbound	+18552959002	\N	1.87297487258911133	null	new lead		1	\N	\N	1638
2016-07-11 13:00:48.511057+00	2017-11-29 18:31:41.490382+00	844	completed				+16145953041		22	2016-07-11 13:00:48.509413	2016-07-11 13:01:10.553115	CA5800b6e0e587002637155c520f0777e4	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE2e930512eb3375149cb3a98d43cb8e37	0	inbound	+18552959002	\N	5.56670808792114258	null	new lead		1	\N	\N	1638
2017-12-15 22:34:52.34802+00	2017-12-15 22:42:03.611771+00	7912	completed				+14702090079		430	2017-12-15 22:34:52.346157	2017-12-15 22:42:02.831879	CA2bfe809c1cdde06b3bb59a59063b9345	\N	154		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE45d0b97e07811a49cad46f1aac63d430	0	inbound	+17707665699	134	1.41344499588012695	\N	new lead	bruce timothy	13	\N	\N	1639
2017-12-18 18:28:13.609723+00	2017-12-18 18:36:17.644595+00	7972	completed				+14702090079		483	2017-12-18 18:28:13.607625	2017-12-18 18:36:16.897219	CAce1f0548c208edbb63766a1ef597d22e	\N	154		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE0aaa3e12ace0e0d50b006809541747fe	0	inbound	+17707665699	134	1.47888302803039551	\N	new lead	bruce timothy	13	\N	\N	1639
2017-08-31 16:07:28.437187+00	2017-08-31 16:11:52.967772+00	6216	completed				+14045837906		265	2017-08-31 16:07:28.434809	2017-08-31 16:11:52.948787	CA32aa85ec3edda91c296815a9ef789963	\N	154			0	inbound	+17707665699	134	1.52065610885620117	\N	new lead		13	\N	\N	1640
2017-08-31 22:18:19.382015+00	2017-08-31 22:19:06.815387+00	6226	completed				+14045837906		47	2017-08-31 22:18:19.380008	2017-08-31 22:19:06.803727	CAa76eb60edef291d884f35ac59e85d84b	\N	154			0	inbound	+17707665699	134	0.982528209686279297	\N	new lead		13	\N	\N	1640
2017-08-31 22:19:27.725397+00	2017-08-31 22:27:37.370513+00	6227	completed				+14045837906		490	2017-08-31 22:19:27.723943	2017-08-31 22:27:37.358789	CAa0f626743be6cd7680e2dff3d53aa87e	\N	154			0	inbound	+17707665699	134	0.951857089996337891	\N	new lead		13	\N	\N	1640
2017-11-16 16:09:06.429222+00	2017-11-16 16:10:16.583863+00	7081	completed				+15802724400		69	2017-11-16 16:09:06.425772	2017-11-16 16:10:15.890842	CA41035676093632a17e778f58012ef5ab	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE0cd5971b18ed0ac0394e1378757ac81d	0	inbound	+18177569010	124	9.64176106452941895	\N	new lead	tarron reed ren	12	\N	\N	1642
2016-06-27 18:53:46.924986+00	2016-06-27 18:56:46.467066+00	543	completed				+15134902016		175	2016-06-27 18:53:46.923791	2016-06-27 18:56:46.465919	CA8759ccf3638fd84fa80d10e38293f16b	cd89e433-4bde-4f86-9b22-8f52c2413fcd	16			1	outbound	+18556311490	\N	0.419076204299926758	{}	new lead		1	\N	\N	1643
2016-05-28 18:28:17.78338+00	2017-11-29 18:31:10.260565+00	273	completed	Unknown			+15134902016		16	2016-05-28 18:28:17.781336	2016-05-28 18:28:33.813062	CA37cbfc16c04c5c999f7c49b311ab8895	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE32ffb4eff230866b02d21f1e9674889d	0	inbound	+18556311490	\N	\N	null	new lead		1	\N	\N	1643
2016-05-28 21:09:15.13536+00	2017-11-29 18:31:10.260582+00	274	completed	Unknown			+15134902016		8	2016-05-28 21:09:15.132593	2016-05-28 21:09:22.65209	CA63e7c2a516fbdc7f53fc0bc919f62f7d	\N	\N			0	inbound	+18556311490	\N	\N	null	new lead		1	\N	\N	1643
2016-06-27 18:45:04.89337+00	2017-11-29 18:31:10.261329+00	541	completed	Katrina			+15134902016		26	2016-06-27 18:45:04.892309	2016-06-27 18:45:31.165201	CA0b0cf11978dd71c00b10cd049d65f10a	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REf9b3ffb68aa2ee13e56f99e4f91d985c	0	inbound	+18556311490	\N	14.6265850067138672	null	new lead		1	\N	\N	1643
2017-05-09 15:23:35.346607+00	2017-11-29 18:38:53.215463+00	4898	completed				+19738687977		511	2017-05-09 15:23:35.344549	2017-05-09 15:32:06.192337	CA7d93913f5f2ecafaf73d289ac7c10dc4	\N	\N			0	inbound	+12146922088	\N	1.84258794784545898	\N	new lead	cell phone   nj	9	\N	\N	1644
2017-08-24 19:13:30.390666+00	2017-08-24 19:19:39.139501+00	6155	missed	Krista	Argall	kristalsatt@gmail.com	+14046611711		20	2017-08-24 19:13:30.3889	2017-08-24 19:19:39.137336	CA15b7deb41c2e4d3b2b100beba6304b39	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			3	outbound	+17704009016	\N	347.92054009437561	{}	new lead		13	\N	\N	1645
2016-11-18 16:18:53.61695+00	2016-11-18 16:23:19.480108+00	2944	completed				+13143982324		266	2016-11-18 16:18:53.615698	2016-11-18 16:23:19.478507	CA3368f94297875188e176e7b432bfddb8	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE62932546d8ef1b666fc32002239f5bc5	0	inbound	+18557240606	49	2.62415313720703125	null	new lead		1	\N	\N	1648
2017-04-12 15:20:32.06555+00	2017-11-29 18:38:53.213801+00	3811	completed				+14694388337		23	2017-04-12 15:20:32.064378	2017-04-12 15:20:55.122403	CA9a41fc4064420101fc505223de8ae2fa	\N	107			0	inbound	+12146922088	\N	5.80581307411193848	\N	new lead		9	\N	\N	1659
2017-10-19 00:13:12.878312+00	2017-11-29 18:38:49.814496+00	6746	missed				+14694388337		35	2017-10-19 00:13:12.875536	2017-10-19 00:13:48.152856	CA21c3e68d340ef363a69289a290c2d370	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	empire motor ca	9	\N	\N	1659
2017-03-14 21:31:27.826844+00	2017-11-29 18:38:53.212268+00	3429	completed				+14694388337		50	2017-03-14 21:31:27.825565	2017-03-14 21:32:17.533798	CA268e05c1985f0c37103bcc7f267f9801	\N	107			0	inbound	+12146922088	\N	9.95402002334594727	\N	new lead	empire motor ca	9	\N	\N	1659
2017-03-14 21:33:06.515163+00	2017-11-29 18:38:53.212275+00	3430	completed				+14694388337		27	2017-03-14 21:33:06.513613	2017-03-14 21:33:33.139764	CA9efd2d8d664a3b527fcb8cb9df785090	\N	\N			0	inbound	+12146922088	\N	5.2257080078125	\N	new lead	empire motor ca	9	\N	\N	1659
2017-03-14 21:34:54.886531+00	2017-11-29 18:38:53.212282+00	3431	completed				+14694388337		65	2017-03-14 21:34:54.884706	2017-03-14 21:35:59.720299	CA31a31aba19d96267b78966e43eed4527	\N	105			0	inbound	+12146922088	\N	7.1510469913482666	\N	new lead	empire motor ca	9	\N	\N	1659
2017-03-14 21:44:14.469752+00	2017-11-29 18:38:53.212303+00	3434	missed				+14694388337		45	2017-03-14 21:44:14.468062	2017-03-14 21:44:59.665789	CAaff35b31cc84918b7442167911469585	\N	\N			0	inbound	+12146922088	\N	24.2682349681854248	\N	new lead	empire motor ca	9	\N	\N	1659
2017-03-14 21:46:01.228644+00	2017-11-29 18:38:53.212318+00	3436	missed				+14694388337		33	2017-03-14 21:46:01.227453	2017-03-14 21:46:34.531453	CA50307aab014fa9d8b857c51abb10b835	\N	\N			0	inbound	+12146922088	\N	24.6425459384918213	\N	new lead	empire motor ca	9	\N	\N	1659
2016-11-29 04:20:51.711985+00	2016-11-29 04:20:51.750006+00	2994	missed	Yirui	Liang	liangyirui@live.com	+15129224398		\N	2016-11-29 04:20:51.710775	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	1662
2016-11-03 02:51:21.449259+00	2016-11-03 02:51:21.488649+00	2612	missed	Nesa Jos Benny	Britto	josbenny@gmail.com	+15022024475		\N	2016-11-03 02:51:21.447262	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	1664
2016-07-25 13:56:51.894363+00	2016-07-25 15:09:10.742109+00	930	completed	GAIL	MCCLUSKEY	gail_mosher@hotmail.com	+12075928454		0	2016-07-25 13:56:51.89343	2016-07-25 13:57:21.796824	CAab1584e141976b98ee5cd1190c9ec14b	b68b0e82-afff-4a8e-a4d0-6432807a9df4	\N			1	outbound	+18555915788	\N	24.4801440238952637	{}	new lead		1	\N	\N	1668
2017-10-21 13:31:06.024197+00	2017-10-21 13:32:20.85463+00	6772	completed				+18179664962		74	2017-10-21 13:31:06.022148	2017-10-21 13:32:19.960291	CA06f940f78042329c9a4fbe5e8c6c269c	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE0dd0831fa777addc01120112fd34f688	0	inbound	+18177569010	124	13.9169459342956543	\N	new lead	fisher john	12	\N	\N	1669
2017-10-21 13:55:02.111707+00	2017-10-21 13:58:21.038608+00	6774	completed				+18179664962		198	2017-10-21 13:55:02.109672	2017-10-21 13:58:20.25132	CA78d2d2817d8dcca8c755c3b3b2844954	\N	155		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REf7648685da122307145f65941cb9acea	0	inbound	+18177569010	124	19.8252620697021484	\N	new lead	fisher john	12	\N	\N	1669
2017-11-25 18:28:00.631377+00	2017-11-25 18:28:00.846127+00	7318	missed				+17702978700		0	2017-11-25 18:28:00.630098	2017-11-25 18:28:00.837825	CA80f344c2c35e4dfc0658c8844ec0d08d	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2017-04-18 16:58:43.177293+00	2017-11-29 18:38:53.214163+00	4044	completed				+17866813832		21	2017-04-18 16:58:43.17522	2017-04-18 16:59:04.095379	CAcac905d1c6e46f9368d0301a1ee4b0b1	\N	105			0	inbound	+12146922088	\N	4.01867818832397461	\N	new lead	bendjouia danie	9	\N	\N	657
2017-04-18 17:00:10.97111+00	2017-11-29 18:38:53.21417+00	4045	completed				+17866813832		71	2017-04-18 17:00:10.968643	2017-04-18 17:01:21.67742	CAfc4e695854777e97c462917291b6d595	\N	107			0	inbound	+12146922088	\N	6.99552392959594727	\N	new lead	bendjouia danie	9	\N	\N	657
2017-09-23 20:28:55.264834+00	2017-09-23 20:38:40.441814+00	6469	completed				+12144156973		584	2017-09-23 20:28:55.26268	2017-09-23 20:38:39.69716	CA0a004461e9b7aeaaed38bcea71141ee0	\N	155		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE29eff295dc3201f80d244b7bdbc86bf4	0	inbound	+18177569010	124	12.6344699859619141	\N	new lead	michael john	12	\N	\N	659
2017-09-25 17:01:09.991985+00	2017-09-25 17:02:21.988104+00	6480	completed				+12144156973		71	2017-09-25 17:01:09.99066	2017-09-25 17:02:21.162489	CA06077430a19fb7942bde66a97201b229	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE5b563a3dbca7218ee9e282cd37d22f07	0	inbound	+18177569010	124	17.6015541553497314	\N	new lead	michael john	12	\N	\N	659
2017-07-27 17:00:22.504463+00	2017-07-27 17:01:18.511852+00	5862	completed				+16786771269		55	2017-07-27 17:00:22.502097	2017-07-27 17:01:17.318261	CA38f4b777bec6c212f308a40dcfbb6c08	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REe370e4c1fc5cfc1a4efe1e8a3093a79f	0	inbound	+17704009016	132	7.83181905746459961	\N	new lead		13	\N	\N	1671
2017-11-27 16:47:36.77405+00	2017-11-27 16:53:27.202651+00	7338	completed				+17063512164		350	2017-11-27 16:47:36.77216	2017-11-27 16:53:27.188996	CA7a85058ff12ae5cd55f0c659b57de644	\N	154			0	inbound	+17707665699	134	1.90168404579162598	\N	new lead	bridges tevin	13	\N	\N	1672
2017-12-09 21:51:17.794897+00	2017-12-09 22:09:10.232267+00	7753	completed				+12543960300		1069	2017-12-09 21:51:17.792838	2017-12-09 22:09:06.946625	CA67ffc331ea2282a2052848a27d97cdd6	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE4593994b5095599349e6c5a0b3cbbd94	0	inbound	+18558645656	136	2.20897102355957031	\N	new lead		15	\N	\N	1674
2016-08-17 20:55:08.39197+00	2016-08-17 21:17:25.344041+00	1565	missed	Melissa	Yarde	missyandashton@yahoo.com	+14062613717		\N	2016-08-17 20:55:08.389698	\N		07cfd785-7aef-47fb-8d17-7f38ec833934	\N			0	outbound	+18556311439	\N	\N	{}	application submitted - credit union		1	\N	\N	1678
2016-08-17 21:07:11.60707+00	2017-11-29 18:31:18.808854+00	1566	completed	Melissa	Yarde	missyandashton@yahoo.com	+14062613717		98	2016-08-17 21:07:11.605767	2016-08-17 21:08:49.361864		\N	16			0	outbound	+18556311439	\N	\N	null	application submitted - credit union		1	\N	\N	1678
2017-04-25 23:56:43.085293+00	2017-11-29 18:47:25.06832+00	4314	missed				+14694748089		71	2017-04-25 23:56:43.083282	2017-04-25 23:57:54.03989	CA1494fa5a4e3abec73c7079599d1be58c	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE726e4f611542d6f9ba07391c5e4008ae	0	inbound	+19728330116	\N	401.008959054946899	\N	new lead	chiffon jackson	8	\N	\N	1683
2017-05-25 18:46:13.664551+00	2017-11-29 18:47:25.068516+00	5409	completed				+14055171348		359	2017-05-25 18:46:13.662398	2017-05-25 18:52:12.841914	CA8ebf0d5c211b5b7c1c05303a7edd4c40	\N	118			0	inbound	+19728330116	\N	332.375876903533936	\N	new lead	ellis larry    	8	\N	\N	1693
2017-07-17 11:02:35.233614+00	2017-11-29 18:31:56.60045+00	5786	missed				+15703448832		11	2017-07-17 11:02:35.230884	2017-07-17 11:02:45.841135	CA588168c3ef5f772a11b0a05fde818a59	\N	\N			0	inbound	+18556311397	\N	\N	\N	new lead		1	\N	\N	1696
2016-06-01 21:40:55.860001+00	2016-06-01 21:42:12.223484+00	333	completed				+15136154957		72	2016-06-01 21:40:55.85637	2016-06-01 21:42:12.222322	CAbf1b83cbedbd0a6858c30c8fda8912b3	cd89e433-4bde-4f86-9b22-8f52c2413fcd	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REff45e6eebb9e644e19e1d384ce3be984	1	outbound	+18556311490	\N	1.2063291072845459	{}	new lead		1	\N	\N	1699
2016-06-01 21:42:22.147754+00	2016-06-01 21:51:29.932487+00	334	completed				+15136154957		542	2016-06-01 21:42:22.146223	2016-06-01 21:51:29.931224	CA04f95e9101f99cd0ad23204e804dce66	cd89e433-4bde-4f86-9b22-8f52c2413fcd	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE2b83e60fd49be7d741e3498c289c6c12	1	outbound	+18556311490	\N	1.95284819602966309	{}	new lead		1	\N	\N	1699
2016-06-02 11:21:38.469171+00	2016-06-02 11:43:36.431704+00	338	completed	JACOB	BURRIS	JBURRIS531@GMAIL.COM	+15136154957		\N	2016-06-02 11:21:38.468077	\N		25d0200e-983d-4413-94ae-eb664b99711c	\N			0	outbound	+18556311490	\N	\N	{}	new lead		1	\N	\N	1699
2016-06-02 14:23:53.106315+00	2016-06-02 14:26:45.198968+00	345	completed				+15136154957		168	2016-06-02 14:23:53.105268	2016-06-02 14:26:45.196859	CA91e418f03753af6c22548ab246a834df	cd89e433-4bde-4f86-9b22-8f52c2413fcd	16			1	outbound	+18556311490	\N	1.8470299243927002	{}	new lead		1	\N	\N	1699
2016-06-10 20:40:54.12635+00	2016-06-10 20:41:31.448332+00	402	completed				+15136154957		32	2016-06-10 20:40:54.124903	2016-06-10 20:41:31.447192	CAfe89e3bbca4eb8017999ca5cf1416347	cd89e433-4bde-4f86-9b22-8f52c2413fcd	16			1	outbound	+18556311490	\N	1.52264308929443359	{}	new lead		1	\N	\N	1699
2016-06-06 19:03:19.078251+00	2017-11-29 18:31:10.261168+00	387	completed	Unknown			+15136154957		106	2016-06-06 19:03:19.076946	2016-06-06 19:05:04.5834	CAb94afe8512e9e14b290b7009ee594b1d	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE11eada266feb1bd8d9c10ef350e6017e	0	inbound	+18556311490	\N	7.70803403854370117	null	new lead		1	\N	\N	1699
2016-06-10 20:43:53.725903+00	2017-11-29 18:31:10.261238+00	403	completed	Unknown			+15136154957		384	2016-06-10 20:43:53.724899	2016-06-10 20:50:17.64216	CA9064d06270d28a22a13600d654fdf878	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE145e49aff7cc541bfe4726dfb69921d2	0	inbound	+18556311490	\N	2.44569301605224609	null	new lead		1	\N	\N	1699
2016-12-02 20:49:41.07222+00	2016-12-02 21:05:44.952917+00	3026	completed				+18326061836		961	2016-12-02 20:49:41.069439	2016-12-02 21:05:41.727109	CAc9c205ee88cd8e6f90fc47e6d3577284	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REf6242018283f818dea4920d0c977970b	0	inbound	+18557240606	49	4.54554009437561035	null	new lead		1	\N	\N	1705
2016-12-02 22:45:52.051693+00	2016-12-02 22:48:08.854465+00	3029	completed				+18326061836		136	2016-12-02 22:45:52.050039	2016-12-02 22:48:08.383162	CAad6d4880a9a5982786bb2fc6a54eb7e1	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE63d26302a9572737a1054413833816cb	0	inbound	+18557240606	49	1.82020688056945801	null	new lead		1	\N	\N	1705
2016-12-02 22:48:13.737677+00	2016-12-02 22:57:52.179824+00	3030	completed				+18326061836		577	2016-12-02 22:48:13.736686	2016-12-02 22:57:50.81907	CA720093c7f10b234cf3d0bc05646b113b	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE2dd53508c3dd8de09665c4b923ab7043	0	inbound	+18557240606	49	1.8454430103302002	null	new lead		1	\N	\N	1705
2016-05-31 15:10:56.886509+00	2017-11-29 18:32:10.406418+00	282	completed	Unknown			+18166005483		327	2016-05-31 15:10:56.884622	2016-05-31 15:16:23.929957	CA5916c7044e2eaa73068df09a6afc96a7	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REd1668c0b5a44edcc11b576b936d1bae1	0	inbound	+18552791533	\N	14.5981838703155518	null	new lead		1	\N	\N	1706
2017-05-05 20:46:54.647666+00	2017-11-29 18:38:53.215163+00	4788	completed				+14694861969		246	2017-05-05 20:46:54.644072	2017-05-05 20:51:00.920982	CA0c74126eefbdb07b2ad7e459b5487b05	\N	\N			0	inbound	+12146922088	\N	2.14613199234008789	\N	new lead	kipp brian     	9	\N	\N	1707
2017-03-31 22:26:18.238706+00	2017-08-17 14:35:21.044923+00	3649	completed				+16823096915		103	2017-03-31 22:26:18.236386	2017-03-31 22:28:01.325681	CA6d2842a9ee4ad6f14768558165b1f1b2	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE99809893cb1d6a81dc85ab4e14d5fccb	0	inbound	+18177569010	124	34.6441779136657715	\N	new lead	wireless caller	12	\N	\N	1708
2016-11-14 18:26:37.187725+00	2016-11-14 18:26:37.209457+00	2889	missed	PATRICIA	GUTIERREZ	plgutierrez@msn.com	+16268934404		\N	2016-11-14 18:26:37.186643	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	1709
2017-08-21 12:51:10.703283+00	2017-08-21 12:51:10.737301+00	6121	missed	Steve	Steve	steve.webjobs+SamuelGroebner@gmail.com	+15292348975		\N	2017-08-21 12:51:10.701915	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	new lead		1	\N	\N	1712
2017-11-01 16:02:30.926901+00	2017-11-01 16:02:30.963506+00	6890	missed	Steve	Steve	steve.web.jobs+MildaWojtowicz@gmail.com	+15292348975		\N	2017-11-01 16:02:30.925582	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	new lead		1	\N	\N	1712
2017-09-12 21:26:43.647458+00	2017-09-12 21:36:57.722247+00	6326	completed				+18178529942		613	2017-09-12 21:26:43.645717	2017-09-12 21:36:56.617995	CA1e3084dc450fcabe9861dfe4f86493c1	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE6ddc4dfee2b861cce4c82e0995e8bca1	0	inbound	+18177569010	124	421.627439975738525	\N	new lead	mccorkle walter	12	\N	\N	1713
2016-11-02 20:30:10.836338+00	2016-11-02 20:30:59.09439+00	2590	completed				+17708853805		46	2016-11-02 20:30:10.833542	2016-11-02 20:30:56.496731	CA382da6edd483eea4ef966edbb892ada7	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE9230b94a4a155339bea36bd722570b7f	0	inbound	+18557240606	49	1.53626489639282227	null	new lead		1	\N	\N	1714
2017-03-11 22:20:24.681697+00	2017-11-29 18:38:53.212046+00	3382	completed				+17276864364		842	2017-03-11 22:20:24.679619	2017-03-11 22:34:26.357735	CA93a9d75d3cb5999a2c0638fa9a6b0a30	\N	99			0	inbound	+12146922088	\N	7.21341705322265625	\N	new lead	coates larry	9	\N	\N	1715
2017-12-07 18:49:27.591011+00	2017-12-07 19:00:21.361161+00	7690	completed				+19408645279		653	2017-12-07 18:49:27.589067	2017-12-07 19:00:20.627842	CA4efb81754ddc85e9878d3ab6d0200ed0	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE2e9b298263e09dbec2fce170e5ca0da9	0	inbound	+18558645656	136	2.65358686447143555	\N	new lead		15	\N	\N	1722
2017-12-07 21:56:01.808664+00	2017-12-07 22:05:10.772578+00	7695	completed				+19408645279		546	2017-12-07 21:56:01.806959	2017-12-07 22:05:07.375681	CAc2766f0aebbbd567f6ce22b731014d4d	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REc2513325beb10b5bdd7e3ffd69992278	0	inbound	+18558645656	136	2.44111800193786621	\N	new lead		15	\N	\N	1722
2017-12-07 19:48:18.707544+00	2017-12-07 20:09:57.701681+00	7692	missed				+18177569908		9	2017-12-07 19:48:18.705482	2017-12-07 19:48:27.408657	CA7a4e778bc1a6a61306948fb5cf42b9f4	\N	\N			0	inbound	+18177569010	124	1277.17648386955261	\N	new lead	aersale inc	12	\N	\N	1723
2017-03-02 21:00:28.49376+00	2017-11-29 18:47:25.067559+00	3307	completed				+19728152845		1308	2017-03-02 21:00:28.491454	2017-03-02 21:22:16.251697	CA83fe7d61d326b2e9117211df603dad1a	\N	96			0	inbound	+19728330116	\N	1273.91916704177856	\N	new lead	freeman auto	8	\N	\N	1724
2016-07-04 00:05:39.697244+00	2016-07-05 13:19:51.326304+00	742	completed	Beverly	Strickland	osutat27@gmail.com	+16144416067		\N	2016-07-04 00:05:39.696087	\N		d33a481e-e0af-47ac-9f90-260f20b69de5	\N			0	outbound	+18552959002	\N	\N	{}	new lead		1	\N	\N	1725
2016-11-02 13:10:48.850986+00	2016-11-02 13:13:30.282705+00	2539	completed				+19043105588		160	2016-11-02 13:10:48.849796	2016-11-02 13:13:29.088981	CA6c11f8a8d00aec7133c5adc751c32322	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REc05a2b5c9e837ddcd780afce3d40bbcf	0	inbound	+18557240606	49	2.76458191871643066	null	new lead		1	\N	\N	1726
2017-11-02 19:05:03.201847+00	2017-11-02 19:05:41.546525+00	6906	completed				+14178391078		38	2017-11-02 19:05:03.199392	2017-11-02 19:05:40.805325	CAf182351e74a2557a2e3d4087cebbf36f	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE968beca46ae96116661de37c2ed5aa4a	0	inbound	+18557240606	49	3.47591090202331543	\N	new lead		1	\N	\N	1731
2017-04-12 18:07:11.14983+00	2017-11-29 18:38:49.804613+00	3829	completed				+18594860837		287	2017-04-12 18:07:11.147988	2017-04-12 18:11:58.44222	CA62a52624a60ac8b8641e008abf3dc9bd	\N	105			0	inbound	+12147122250	\N	6.45588088035583496	\N	new lead	daugherty gary	9	\N	\N	1732
2017-09-29 20:50:44.207405+00	2017-09-29 21:14:29.470169+00	6544	missed				+18179918865		106	2017-09-29 20:50:44.205275	2017-09-29 20:52:29.768867	CA464cd44a0e599804083364accbdb582b	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REda15ced3ce3249b38e53e42e409f8b87	0	inbound	+18177569010	124	1403.47043609619141	\N	new lead	ashburn jerod	12	\N	\N	1733
2016-08-11 20:23:50.89119+00	2017-11-29 18:31:37.368868+00	1426	missed				+16613095008		61	2016-08-11 20:23:50.889747	2016-08-11 20:24:51.475751	CAfcc50165c4e4556ebdee7b361e09cefa	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE4b9973eec32124d829e4343983f95dfb	0	inbound	+18555472453	\N	31.6789720058441162	null	new lead		1	\N	\N	1737
2016-08-11 20:40:43.644955+00	2017-11-29 18:31:37.368875+00	1428	missed				+16613095008		56	2016-08-11 20:40:43.643583	2016-08-11 20:41:39.216899	CAae09acb036e96327769db1c12b10df5b	\N	\N			0	inbound	+18555472453	\N	31.8529510498046875	null	new lead		1	\N	\N	1737
2016-06-28 13:42:39.233817+00	2017-11-29 18:32:13.820674+00	575	completed	Norman	Spencer		+13302402698		52	2016-06-28 13:42:39.231354	2016-06-28 13:43:30.918711	CAe063ff7d994c064770474038f27bd1bd	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REa74033b01e5d005c6d40852f22792a2a	0	inbound	+18555983683	\N	14.4241080284118652	null	new lead		1	\N	\N	1740
2016-06-28 13:53:25.378901+00	2016-06-28 13:54:11.96679+00	577	completed	Norman	Spencer	na@noemail.com	+13302402698		0	2016-06-28 13:53:25.377933	2016-06-28 13:53:53.790778	CAb69c77d7b18e01c2f276a0a5a0298e86	ee869226-e246-4ab4-aaaa-e9403e2ddd39	\N			1	outbound	+18555983683	\N	14.308495044708252	{}	new lead		1	\N	\N	1740
2016-06-28 13:46:04.614881+00	2016-06-28 13:53:47.331622+00	576	completed				+13302402698		459	2016-06-28 13:46:04.613945	2016-06-28 13:53:47.330606	CA1ea58e7af094ee494a1e9a605d3a8613	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.47247314453125	{}	new lead		1	\N	\N	1740
2017-03-13 22:03:22.636744+00	2017-11-29 18:38:53.212154+00	3409	completed				+18175266861		229	2017-03-13 22:03:22.63426	2017-03-13 22:07:11.893202	CAc8e8c918cac120a35758c51b99e7858c	\N	107			0	inbound	+12146922088	\N	11.7820141315460205	\N	new lead	angel hernandez	9	\N	\N	1743
2017-01-02 18:28:44.773602+00	2017-01-02 18:29:00.374577+00	3104	completed				+17135027268		15	2017-01-02 18:28:44.772046	2017-01-02 18:28:59.994442	CA456b0d1992c0ad339ea79328fa81aa58	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE2d1acdcdc98447bfd2b2635f63f0d528	0	inbound	+18557240606	49	2.07655191421508789	null	new lead		1	\N	\N	1744
2016-08-08 22:45:08.116189+00	2016-08-09 11:39:16.615069+00	1346	missed	Major	Robinson	mr.majorrobinson@gmail.com	+14063707968		\N	2016-08-08 22:45:08.114671	\N		07cfd785-7aef-47fb-8d17-7f38ec833934	\N			0	outbound	+18556311439	\N	\N	{}	application submitted - credit union		1	\N	\N	1745
2017-10-10 17:22:51.245526+00	2017-10-10 17:23:21.981343+00	6647	missed				+18038049510		31	2017-10-10 17:22:51.242944	2017-10-10 17:23:21.966393	CAab70ec0a8bd401f95d75d97ee2d20523	\N	\N			0	inbound	+18036184545	119	\N	\N	new lead		6	\N	\N	1746
2017-12-26 02:08:26.547114+00	2017-12-26 02:08:26.629241+00	8095	missed	Annette	Nelms	Anelms54@gmail.com	+16787326873		\N	2017-12-26 02:08:26.544971	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	1751
2017-05-16 17:59:19.166582+00	2017-11-29 18:38:49.811796+00	5116	completed				+12147246581		80	2017-05-16 17:59:19.164537	2017-05-16 18:00:39.122808	CA3fa1619317b1e248bd917ad117864897	\N	127			0	inbound	+12147122250	\N	2.36134099960327148	\N	new lead	live fast custo	9	\N	\N	1757
2016-06-05 13:57:07.832944+00	2016-06-06 11:52:49.87691+00	377	completed	john	finn	freebird718@aol.com	+13305090777		\N	2016-06-05 13:57:07.831318	\N		ee869226-e246-4ab4-aaaa-e9403e2ddd39	\N			0	outbound	+18555983683	\N	\N	{}	new lead		1	\N	\N	664
2016-06-08 15:19:08.311184+00	2016-06-08 15:20:48.025177+00	396	completed				+13305090777		95	2016-06-08 15:19:08.30975	2016-06-08 15:20:48.024232	CA3db6b175ba521685eec6ae700d8835ed	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.76040792465209961	{}	new lead		1	\N	\N	664
2017-12-20 19:36:04.373174+00	2017-12-20 19:38:01.731967+00	8033	completed				+19546827008		116	2017-12-20 19:36:04.371213	2017-12-20 19:38:00.431278	CAfd204324168e9cdccc07be2fcecde355	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE97e2cc61b4ec0035a507722ebfec3906	0	inbound	+18558645656	136	2.90990304946899414	\N	new lead		15	\N	\N	665
2016-11-03 21:34:13.479954+00	2016-11-03 21:37:12.894363+00	2662	completed				+17209843254		179	2016-11-03 21:34:13.478177	2016-11-03 21:37:12.250516	CA22ec1e252163a4b83b14d1c1aa217636	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE1e6cf43f1bea5ac9078ebc61286b0deb	0	inbound	+18557240606	49	1.9418950080871582	null	new lead		1	\N	\N	1763
2017-10-12 02:21:33.960072+00	2017-10-12 02:22:22.062807+00	6671	completed				+16824009582		47	2017-10-12 02:21:33.957851	2017-10-12 02:22:20.910231	CAd662b854877e183630d53922be13e80e	\N	155		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE7c9014d51ef364511cf881b767718d44	0	inbound	+18177569010	124	16.2470970153808594	\N	new lead	cole gerard	12	\N	\N	1766
2017-04-25 01:17:53.795149+00	2017-11-29 18:38:49.806512+00	4274	completed				+19256988100		42	2017-04-25 01:17:53.792724	2017-04-25 01:18:35.692104	CA613d389efae4c933d696dcbe7e36f12f	\N	105			0	inbound	+12147122250	\N	1.95614290237426758	\N	new lead	cell phone   ca	9	\N	\N	1767
2017-04-25 14:57:20.682062+00	2017-11-29 18:38:49.806568+00	4282	completed				+19256988100		103	2017-04-25 14:57:20.680294	2017-04-25 14:59:03.234097	CA0a25d8611afa85a35ffebe34d45a5412	\N	\N			0	inbound	+12147122250	\N	3.37753510475158691	\N	new lead	cell phone   ca	9	\N	\N	1767
2017-11-18 17:26:09.676575+00	2017-11-18 17:27:27.638061+00	7124	completed	LaFarraih	Barmore	lafarraihbarmore@yahoo.com	+17623388738		25	2017-11-18 17:26:09.675015	2017-11-18 17:26:52.951931	CAd7d8ae8422f2a7345c2d48aa8ea23c3f	0427608a-ae09-4db0-a1e8-374423ee28c3	153			1	outbound	+17704009016	\N	18.2939529418945312	{}	new lead		13	\N	\N	1768
2017-11-18 17:28:10.547278+00	2017-11-18 17:30:53.219884+00	7125	completed	LaFarraih	Barmore		+17623388738		162	2017-11-18 17:28:10.545162	2017-11-18 17:30:52.657475	CA5068009c128f1de88db03d7db35cbc07	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE672100172ffd97b7206c02a146f55da7	0	inbound	+17704009016	132	16.1651749610900879	\N	new lead		13	\N	\N	1768
2017-10-27 19:26:38.962039+00	2017-10-27 19:28:57.175667+00	6845	completed				+16784144948		138	2017-10-27 19:26:38.959871	2017-10-27 19:28:57.157682	CA6e001c9b4c30be4ddf78cf5d30aed5b0	\N	153			0	inbound	+17707665732	133	7.8659520149230957	\N	new lead		13	\N	\N	1774
2017-11-04 15:36:14.542927+00	2017-11-04 15:36:15.366364+00	6932	missed				+14702625043		1	2017-11-04 15:36:14.541753	2017-11-04 15:36:15.351321	CAb2a35e0c27a001141863a9867310812a	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	1781
2016-08-06 11:35:48.788936+00	2016-12-10 00:55:45.165139+00	1304	missed				+16104540831		10	2016-08-06 11:35:48.787255	2016-08-06 11:35:58.540678	CA98c6d7656bbf4cff7911a3bcf4e69d08	\N	\N			0	inbound	+18557129406	\N	\N	null	new lead		3	\N	\N	1785
2016-08-06 11:36:25.661663+00	2016-12-10 00:55:45.165154+00	1305	missed				+16104540831		10	2016-08-06 11:36:25.66043	2016-08-06 11:36:35.366959	CA06b935fcc9ced31b114e2e03c40f8d35	\N	\N			0	inbound	+18557129406	\N	\N	null	new lead		3	\N	\N	1785
2016-08-06 11:39:38.802384+00	2016-12-10 00:55:45.165187+00	1307	missed				+16104540831		10	2016-08-06 11:39:38.801213	2016-08-06 11:39:48.647023	CA4ab509556a03d2559bf3c617b7504473	\N	\N			0	inbound	+18557129406	\N	\N	null	new lead		3	\N	\N	1785
2016-11-04 15:35:19.685438+00	2016-11-04 15:35:19.721423+00	2696	missed	John	Redmon	jm_redmon@yahoo.com	+18164057915		\N	2016-11-04 15:35:19.683879	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	1789
2016-10-05 22:50:37.817963+00	2016-12-09 17:06:53.906042+00	2205	completed				+12159685992		23	2016-10-05 22:50:37.815384	2016-10-05 22:51:01.083743	CAb1b058de438d25a12f5f15218f6e34f6	\N	21			0	inbound	+18558021330	\N	2.30510807037353516	null	new lead		3	\N	\N	1790
2017-04-22 18:03:27.845672+00	2017-11-29 18:47:25.068242+00	4224	completed				+19728979437		242	2017-04-22 18:03:27.843785	2017-04-22 18:07:29.845286	CA8bce661c234b02e2c397c968faeb0cf9	\N	82		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REf92618fc1ca9014d2b2cf47c07152283	0	inbound	+19728330116	\N	13.6220581531524658	\N	new lead	mallery tuck	8	\N	\N	1791
2017-07-14 16:53:36.280438+00	2017-11-29 18:29:57.477851+00	5776	completed				+19735776378		79	2017-07-14 16:53:36.278487	2017-07-14 16:54:55.134608	CA3397bbc2a553e451e37d0c343ddb8198	\N	142		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE2bcaac6bfa4ca49ad32d32d1c473f1d5	0	inbound	+18442976550	\N	0.407949924468994141	\N	new lead		1	\N	\N	1793
2017-08-15 15:06:47.651514+00	2017-08-15 15:07:31.755632+00	6034	completed				+17705324389		44	2017-08-15 15:06:47.64959	2017-08-15 15:07:31.734383	CA46eb1eb747fe22d372dfcb3222d964a0	\N	152			0	inbound	+17707665732	133	11.2317981719970703	\N	new lead		13	\N	\N	1794
2017-08-25 21:25:10.419052+00	2017-08-25 21:26:30.808755+00	6167	completed	Victoria 	Ortiz	victoria3m4@gmail.com	+17064645169		54	2017-08-25 21:25:10.417699	2017-08-25 21:26:30.807159	CA148b3c3bbecd90487526222ef3538939	0427608a-ae09-4db0-a1e8-374423ee28c3	150			1	outbound	+17704009016	\N	23.0717449188232422	{}	new lead		13	\N	\N	1795
2017-04-25 17:51:27.704379+00	2017-11-29 18:38:49.806632+00	4293	completed				+14699540634		78	2017-04-25 17:51:27.69986	2017-04-25 17:52:45.664987	CA767c93936c9fa5bfcf5a1ceba23e0f8a	\N	124			0	inbound	+12147122250	\N	2.39979386329650879	\N	new lead	luan carolina	9	\N	\N	1796
2017-05-03 15:29:33.057179+00	2017-05-17 15:41:07.224407+00	4623	completed				+16824121971		73	2017-05-03 15:29:33.053561	2017-05-03 15:30:45.976236	CA21214554a11d796f98ffbefdd317a7ae	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REdcf6f233decca763cbb43dc19b3470cd	0	inbound	+18177569010	124	11.5618658065795898	\N	new lead	wireless caller	12	\N	\N	1804
2017-12-06 14:08:24.718418+00	2017-12-06 14:12:35.580034+00	7626	completed				+16145071629		250	2017-12-06 14:08:24.715789	2017-12-06 14:12:34.308304	CA1c3dd5529f2052eda2c797f47b3b0f75	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE6de5539baaa4dcb2f3d4b8da1150fb5c	0	inbound	+18558645656	136	2.3780510425567627	\N	new lead		15	\N	\N	1808
2017-06-26 16:49:45.220894+00	2017-06-26 16:56:42.515581+00	5662	missed	Angela	Graham	Mayberry9804@gmail.com	+17702657493		31	2017-06-26 16:49:45.219932	2017-06-26 16:56:42.512819	CAcb553a6a0b88c5967ec3ee359c907dee	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			3	outbound	+17704009016	\N	385.357136011123657	{}	new lead		13	\N	\N	1812
2017-03-17 21:11:23.732205+00	2017-11-29 18:47:25.06782+00	3482	missed				+12149091364		11	2017-03-17 21:11:23.730698	2017-03-17 21:11:35.222706	CA2b88cec888ca517d318375e0f03d80e1	\N	\N			0	inbound	+19728330116	\N	335.871478080749512	\N	new lead	gaston shaundra	8	\N	\N	1814
2017-05-08 00:27:04.327485+00	2017-11-29 18:38:53.215233+00	4823	completed				+19517894179		43	2017-05-08 00:27:04.325373	2017-05-08 00:27:47.212565	CAa41495fbf678c91ae5a9f2920efd2337	\N	105			0	inbound	+12146922088	\N	4.05873990058898926	\N	new lead	may g v a      	9	\N	\N	1816
2017-05-08 17:56:37.315859+00	2017-11-29 18:38:53.215377+00	4857	completed				+19517894179		594	2017-05-08 17:56:37.313562	2017-05-08 18:06:31.234932	CA3f944a48cb7a751ef301e0bb679267ab	\N	\N			0	inbound	+12146922088	\N	1.00739502906799316	\N	new lead	may g v a      	9	\N	\N	1816
2017-05-08 22:04:14.392854+00	2017-11-29 18:38:53.215412+00	4883	completed				+19517894179		78	2017-05-08 22:04:14.390887	2017-05-08 22:05:32.840811	CA71300e0a022de250a5531c0e5d74e85e	\N	\N			0	inbound	+12146922088	\N	1.04172301292419434	\N	new lead	may g v a      	9	\N	\N	1816
2017-12-08 15:38:09.986704+00	2017-12-08 15:38:34.344945+00	7712	completed				+16786636961		23	2017-12-08 15:38:09.984882	2017-12-08 15:38:33.125152	CAd6f85068ed434373bc2cca17532d48db	\N	157		https://api.twilio.com/2010-04-01/Accounts/ACbd7756819f4882feb347788ad7959655/Recordings/REa85c7684413425c0e6b48c9045424912	0	inbound	+17706597466	137	15.3354151248931885	\N	new lead		14	\N	\N	666
2017-05-06 20:23:23.242927+00	2017-11-29 18:38:49.810209+00	4813	completed				+19727532004		78	2017-05-06 20:23:23.240713	2017-05-06 20:24:41.287625	CAa72490e64ef531f22e5ec633ba2dfe2a	\N	127			0	inbound	+12147122250	\N	1.11601591110229492	\N	new lead	villas at beave	9	\N	\N	668
2017-07-07 17:27:28.045356+00	2017-07-07 17:27:50.57622+00	5728	completed				+17062447653		21	2017-07-07 17:27:28.043433	2017-07-07 17:27:49.366842	CA648c0613cba2a6066143ebcb57b47416	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REa082ac20df91835665d4cd22dbac2e39	0	inbound	+17704009016	132	10.4037439823150635	\N	new lead		13	\N	\N	669
2016-11-02 13:09:12.387904+00	2016-11-02 13:40:00.094132+00	2538	completed				+17048576443		1843	2016-11-02 13:09:12.386465	2016-11-02 13:39:55.61646	CA9f4bfb1a392eb862e70446d293e1d6b0	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE769bfa8300b45cbf6c3dd33de92a7b2f	0	inbound	+18557240606	49	1.81390619277954102	null	new lead		1	\N	\N	670
2017-09-10 15:42:38.21198+00	2017-09-10 15:50:55.169871+00	6311	completed	Bobby	Smith	smuthshane52271@gmail.com	+16789437106		152	2017-09-10 15:42:38.210467	2017-09-10 15:50:55.067702	CA76005ac9f30bd180eea7ad6abf68f3a6	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REc3aba2e513cf6687eb998f97e5e8495b	3	outbound	+17704009016	\N	343.751219987869263	{}	new lead		13	\N	\N	673
2017-05-08 23:06:36.770377+00	2017-11-29 18:38:53.215449+00	4892	completed				+19517894179		103	2017-05-08 23:06:36.768071	2017-05-08 23:08:19.558684	CA165e26f317340f327b4a13f7c4dcd42b	\N	\N			0	inbound	+12146922088	\N	1.30157208442687988	\N	new lead	may g v a      	9	\N	\N	1816
2017-05-09 18:27:57.29445+00	2017-11-29 18:38:53.215506+00	4919	completed				+19517894179		357	2017-05-09 18:27:57.293052	2017-05-09 18:33:54.557838	CAf0954293f24c9dfd4e78daa6b632ff79	\N	105		https://api.twilio.com/2010-04-01/Accounts/AC5422b9b221417a7a84556a92f6edc492/Recordings/RE366715b56fa4b10c1d24976db7131f3b	0	inbound	+12146922088	\N	7.68749094009399414	\N	new lead	may g v a      	9	\N	\N	1816
2017-09-14 12:50:22.491241+00	2017-09-14 12:50:23.280387+00	6338	missed	Kayla	Reed		+16789376421		1	2017-09-14 12:50:22.489315	2017-09-14 12:50:23.269983	CAdacfead0e081daf6985ace412e805891	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	1818
2017-09-14 12:50:27.574835+00	2017-09-14 12:50:28.191603+00	6339	missed	Kayla	Reed		+16789376421		1	2017-09-14 12:50:27.573732	2017-09-14 12:50:28.183224	CA7003ba945221d18dd9a27f07bc29ccee	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	1818
2017-09-14 12:50:32.139717+00	2017-09-14 12:50:32.540169+00	6341	missed	Kayla	Reed		+16789376421		0	2017-09-14 12:50:32.138312	2017-09-14 12:50:32.530457	CA1c768627a2d294597cb3f91c05befba1	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	1818
2017-09-14 12:50:34.566906+00	2017-09-14 12:50:34.900949+00	6342	missed	Kayla	Reed		+16789376421		0	2017-09-14 12:50:34.56583	2017-09-14 12:50:34.890821	CA72135b0eaad42d09773dc5dbf6fb4c2b	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	1818
2017-09-14 12:50:36.24513+00	2017-09-14 12:50:36.571226+00	6343	missed	Kayla	Reed		+16789376421		0	2017-09-14 12:50:36.243895	2017-09-14 12:50:36.563809	CAaec28dc4bd7af21c83c2ac2d25eb541d	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	1818
2017-09-14 12:50:37.999714+00	2017-09-14 12:50:38.252948+00	6344	missed	Kayla	Reed		+16789376421		0	2017-09-14 12:50:37.99766	2017-09-14 12:50:38.244574	CAab4840bf114ee4f203942f09991c2f96	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	1818
2017-09-14 12:50:43.786547+00	2017-09-14 12:50:44.254848+00	6345	missed	Kayla	Reed		+16789376421		0	2017-09-14 12:50:43.784651	2017-09-14 12:50:44.245801	CA32895f9404231cd35ebcbbc9881b1ffc	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	1818
2017-09-14 12:50:45.535123+00	2017-09-14 12:50:46.56535+00	6346	missed	Kayla	Reed		+16789376421		1	2017-09-14 12:50:45.533187	2017-09-14 12:50:46.556077	CA1b4d6f9455917c6d07f3829104bd0985	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	1818
2017-08-29 17:26:28.569578+00	2017-08-29 17:28:07.052133+00	6196	completed	Kayla	Reed	Kaylanr1@gmail.com	+16789376421		20	2017-08-29 17:26:28.567154	2017-08-29 17:27:00.055401	CA2278f640cb032298bce030bebd97ee5f	0427608a-ae09-4db0-a1e8-374423ee28c3	150			1	outbound	+17704009016	\N	13.63680100440979	{}	new lead		13	\N	\N	1818
2017-08-29 21:06:24.357495+00	2017-08-29 21:10:10.578803+00	6198	completed	Kayla	Reed		+16789376421		226	2017-08-29 21:06:24.355295	2017-08-29 21:10:10.566942	CA2d2cc3955fef24a3aa33b8be49fa7ab0	\N	152			0	inbound	+17707665732	133	14.5324051380157471	\N	new lead		13	\N	\N	1818
2017-07-14 14:10:12.04298+00	2017-07-14 14:10:52.253297+00	5774	completed				+14048405104		40	2017-07-14 14:10:12.040698	2017-07-14 14:10:51.563568	CA42303586ed6a70e538ab89754e73c9e8	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE399225e2534abeff4e37e6a35dded34f	0	inbound	+17704009016	132	16.1662540435791016	\N	new lead		13	\N	\N	1819
2017-05-01 19:23:53.276991+00	2017-11-29 18:38:53.214873+00	4537	completed				+12147839984		36	2017-05-01 19:23:53.274541	2017-05-01 19:24:28.795627	CA957d257fb713a05c50ac6ac9c94ceefc	\N	107			0	inbound	+12146922088	\N	7.27976107597351074	\N	new lead	wireless caller	9	\N	\N	1822
2017-04-28 19:07:16.41213+00	2017-11-29 18:38:53.214759+00	4433	completed				+12147839984		177	2017-04-28 19:07:16.409429	2017-04-28 19:10:13.587925	CA515f18e4b02bef416103203d40ca314c	\N	\N			0	inbound	+12146922088	\N	5.30445289611816406	\N	new lead	wireless caller	9	\N	\N	1822
2016-11-02 16:03:09.088228+00	2016-11-02 16:03:09.11252+00	2560	missed	Odis	Sessions	paul.sessions67@gmail.com	+13463005950		\N	2016-11-02 16:03:09.087226	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	1829
2016-10-05 00:01:00.566103+00	2016-12-10 01:01:51.441002+00	2153	completed				+16197880341		601	2016-10-05 00:01:00.565142	2016-10-05 00:11:01.769515	CAeeedcc30dbeba42fb01fb824fa7ce6be	\N	50			0	inbound	+18559693782	\N	2.18234896659851074	null	new lead		3	\N	\N	1830
2016-07-29 17:57:04.952874+00	2016-08-01 18:31:24.528276+00	1037	missed	robert	ashley	bobcam00@aol.com	+13305028854	can you send paperwork for refinancing 	\N	2016-07-29 17:57:04.95138	\N		b3446068-5c4f-4ede-b0ba-8b1a3367f8a8	\N			0	outbound	+18556311439	\N	\N	{}	application submitted - credit union		1	\N	\N	1831
2016-07-30 14:34:34.48514+00	2016-08-01 18:31:24.528302+00	1060	missed	Bob 	ashley	bobcam00@aol.com	+13305028854	need to lower the payment in my wife's car	\N	2016-07-30 14:34:34.483038	\N		b3446068-5c4f-4ede-b0ba-8b1a3367f8a8	\N			0	outbound	+18556311439	\N	\N	{}	application submitted - credit union		1	\N	\N	1831
2016-08-01 17:58:01.823812+00	2017-11-29 18:32:13.821642+00	1081	completed	Bob 	ashley	bobcam00@aol.com	+13305028854		71	2016-08-01 17:58:01.822758	2016-08-01 17:59:12.733954		\N	16			0	outbound	+18555983683	\N	\N	null	application submitted - credit union		1	\N	\N	1831
2017-08-11 17:49:24.292042+00	2017-08-17 14:35:21.045795+00	5991	completed				+18177301488		144	2017-08-11 17:49:24.288884	2017-08-11 17:51:48.073455	CA0e1728b5db0c53636ba3c83caf74d527	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE789acbd3a3735eb5660660b95313be2b	0	inbound	+18177569010	124	13.6145470142364502	\N	new lead	maldonado m	12	\N	\N	674
2017-11-21 19:10:46.215882+00	2017-11-21 19:16:55.991066+00	7164	completed	Rebecca	Hancock	mrmemployment@aol.com	+16782439873		354	2017-11-21 19:10:46.21419	2017-11-21 19:16:55.954427	CAfbf84c93dc8b4c0580e515d9983d4f10	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE89d1c4d3e8e1eb72ff6e9f37c1f3555b	1	outbound	+17704009016	\N	12.4109330177307129	{}	new lead		13	\N	\N	679
2016-08-24 18:47:06.391772+00	2016-12-09 17:10:17.41324+00	1736	missed				+14842415954		0	2016-08-24 18:47:06.390471	2016-08-24 18:47:06.618674	CAe9f201e5a4210e24dc6ad45847a0eb42	\N	\N			0	inbound	+18552716856	\N	\N	null	new lead		3	\N	\N	684
2016-08-24 18:47:26.666865+00	2016-12-09 17:10:17.413247+00	1737	completed				+14842415954		33	2016-08-24 18:47:26.665765	2016-08-24 18:47:59.823126	CA05d2890b16754068369720edab7e006d	\N	27			0	inbound	+18552716856	\N	10.5187921524047852	null	new lead		3	\N	\N	684
2016-08-08 21:54:18.666303+00	2017-01-27 21:12:23.812902+00	1345	completed				+17608738596		43	2016-08-08 21:54:18.66513	2016-08-08 21:55:01.729236		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	1350
2016-08-01 18:00:04.80331+00	2017-11-29 18:32:13.821649+00	1082	completed	Bob 	ashley		+13305028854		15	2016-08-01 18:00:04.802262	2016-08-01 18:00:19.674636	CAfa326992adbb91c341625b2b84365a19	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE08f2f0dcbde27a7c49035b7c9d6455fe	0	inbound	+18555983683	\N	6.39629292488098145	null	application submitted - credit union		1	\N	\N	1831
2016-08-04 19:50:54.507108+00	2017-11-29 18:32:13.821671+00	1214	completed	robert	ashley		+13305028854		31	2016-08-04 19:50:54.50527	2016-08-04 19:51:25.06067	CAccb19dd6df74838c50f42426e4f8b5e5	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REd7901d1fd0b545bf7c65c9c17e24508a	0	inbound	+18555983683	\N	19.8086080551147461	null	application submitted - credit union		1	\N	\N	1831
2016-08-15 12:27:20.878269+00	2017-11-29 18:32:13.821793+00	1479	missed	robert	ashley		+13305028854		16	2016-08-15 12:27:20.87721	2016-08-15 12:27:36.942831	CA9140170e2bcc81567960f38f740e9175	\N	\N			0	inbound	+18555983683	\N	\N	null	application submitted - credit union		1	\N	\N	1831
2016-08-15 12:52:50.024787+00	2017-11-29 18:32:13.8218+00	1481	missed	robert	ashley		+13305028854		4	2016-08-15 12:52:50.023728	2016-08-15 12:52:53.570399	CA3d50e736328b2e34e5c0bf5cb202ed92	\N	\N			0	inbound	+18555983683	\N	\N	null	application submitted - credit union		1	\N	\N	1831
2016-08-15 18:44:18.242145+00	2017-11-29 18:32:13.821821+00	1505	completed	robert	ashley		+13305028854		323	2016-08-15 18:44:18.241117	2016-08-15 18:49:41.406183	CA2ab0a8ecf4649830796aa3e8b5e81bd3	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE4d259b4610de9fce7c11f440fd9d9d4c	0	inbound	+18555983683	\N	5.18364095687866211	null	application submitted - credit union		1	\N	\N	1831
2016-08-01 18:25:11.874715+00	2017-01-27 21:12:23.812355+00	1086	completed	robert	ashley	bobcam00@aol.com	+13305028854		83	2016-08-01 18:25:11.873749	2016-08-01 18:26:48.664432	CA51a5dd14ea348ec1b0d2096f08816a58	ee869226-e246-4ab4-aaaa-e9403e2ddd39	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REeea6ab36bf6ee1ef3edd2f344a5f374d	1	outbound	+18555983683	\N	9.05854105949401855	{}	application submitted - credit union		1	\N	\N	1831
2017-12-14 18:20:16.641619+00	2017-12-14 18:27:05.469239+00	7872	completed	Stephanie	Powell		+19365775632		409	2017-12-14 18:20:16.639724	2017-12-14 18:27:05.167722	CA474b1b3dd0c1bbab5172b0d3b1e6f55a	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REc80da53504f24221a64037f972cbd502	0	inbound	+18558645656	136	2.20841407775878906	\N	new lead		15	\N	\N	1833
2017-12-14 07:58:06.849232+00	2017-12-14 07:59:28.196762+00	7859	completed	Stephanie	Powell	stephdrex@yahoo.com	+19365775632		78	2017-12-14 07:58:06.847248	2017-12-14 07:59:28.195179	CA7daa98d9152fb383a2c8bcdc479d8d82	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	3.06352496147155762	{}	new lead		15	\N	\N	1833
2017-05-11 15:37:04.023916+00	2017-11-29 18:38:49.81111+00	5004	completed				+12148694719		184	2017-05-11 15:37:04.021909	2017-05-11 15:40:08.105737	CA42541a0ecee647c4bed262a7480a4d62	\N	99			0	inbound	+12147122250	\N	5.80492782592773438	\N	new lead	chase general c	9	\N	\N	1837
2017-03-07 23:35:18.82471+00	2017-11-29 18:47:25.067637+00	3338	completed				+19492805308		100	2017-03-07 23:35:18.822075	2017-03-07 23:36:59.038112	CAd53efc9bcee5f11eb622c3337176ea4b	\N	83		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE4932a2ec1518bcca4e2747429766c809	0	inbound	+19728330116	\N	7.54156494140625	\N	new lead	esch skip      	8	\N	\N	1842
2017-03-01 19:48:51.2968+00	2017-11-29 18:47:25.067509+00	3270	completed				+19492805308		284	2017-03-01 19:48:51.293563	2017-03-01 19:53:35.772263	CAe772fce5dae918b641ab30c008ca21c6	\N	82		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REcad18bb5048afa4a94e2cbd0b5c3dfdb	0	inbound	+19728330116	\N	9.9079139232635498	\N	new lead	ESCH SKIP      	8	\N	\N	1842
2017-03-13 19:35:52.859024+00	2017-11-29 18:47:25.067708+00	3402	completed				+19492805308		97	2017-03-13 19:35:52.856288	2017-03-13 19:37:29.402464	CA3b7ece92587494f5e740b1bfdedf5417	\N	83		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REe8b4ae6eeaae79e8a93c672ca5240dc5	0	inbound	+19728330116	\N	13.9186611175537109	\N	new lead	esch skip      	8	\N	\N	1842
2017-04-12 16:38:07.363709+00	2017-11-29 18:47:25.068003+00	3814	completed				+19492805308		68	2017-04-12 16:38:07.360615	2017-04-12 16:39:15.844016	CAe9686a1f4c5520b0e6bf39079e8d19bd	\N	83		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE87211d1c39296132c200bcaeeb6cf1e3	0	inbound	+19728330116	\N	5.48541402816772461	\N	new lead		8	\N	\N	1842
2017-08-24 18:17:05.018311+00	2017-08-24 18:23:48.862851+00	6154	completed	iesha	borders	ieshaborders@yahoo.com	+14048394795		47	2017-08-24 18:17:05.016803	2017-08-24 18:23:47.551942	CAf04122cba30eeb977f76ae2e181d7829	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE7a663a35cd5d4009eed31f39b9b9b148	3	outbound	+17704009016	\N	354.687406063079834	{}	new lead		13	\N	\N	1849
2017-04-22 21:11:25.019598+00	2017-11-29 18:38:49.806398+00	4232	completed				+18322096219		448	2017-04-22 21:11:25.017874	2017-04-22 21:18:53.488445	CA6f15dca4c0f3f95a43fa21e9dbf771f8	\N	105			0	inbound	+12147122250	\N	4.8240959644317627	\N	new lead	khong myviet	9	\N	\N	1854
2017-05-19 22:38:22.454616+00	2017-11-29 18:38:49.812376+00	5246	completed				+14692353465		78	2017-05-19 22:38:22.452065	2017-05-19 22:39:39.977513	CAb845d2776d145d56754403a7eea078b2	\N	127			0	inbound	+12147122250	\N	2.44225192070007324	\N	new lead	munguia h	9	\N	\N	1856
2016-08-19 18:16:56.832605+00	2017-01-27 21:12:23.813512+00	1619	completed				+16612730336		63	2016-08-19 18:16:56.83137	2016-08-19 18:18:00.098095		\N	\N			0	outbound	+18555343978	48	\N	null	select status		1	\N	\N	50
2016-08-23 14:17:07.901515+00	2017-01-27 21:12:23.813582+00	1669	completed	Kyle	Collett	kylec431@hotmail.com	+15134001693		112	2016-08-23 14:17:07.899521	2016-08-23 14:18:59.459628		\N	\N			0	outbound	+18555343978	48	\N	null	application submitted - autopay		1	\N	\N	149
2016-08-24 18:47:34.059273+00	2016-12-09 17:10:17.413254+00	1738	completed				+14842415954		33	2016-08-24 18:47:34.057728	2016-08-24 18:48:07.279222	CA786231b44474acfb78b9cd4596b154d9	\N	27			0	inbound	+18552716856	\N	6.46686887741088867	null	new lead		3	\N	\N	684
2016-08-24 18:47:37.214992+00	2016-12-09 17:10:17.413261+00	1739	completed				+14842415954		33	2016-08-24 18:47:37.213343	2016-08-24 18:48:10.521766	CAee700ae9cb28a838f7678494b10779db	\N	27			0	inbound	+18552716856	\N	10.0158238410949707	null	new lead		3	\N	\N	684
2016-08-24 18:47:44.700082+00	2016-12-09 17:10:17.413268+00	1740	missed				+14842415954		0	2016-08-24 18:47:44.698936	2016-08-24 18:47:44.907366	CA47467423a3f883ccf7a78f9c3cef245a	\N	\N			0	inbound	+18552716856	\N	\N	null	new lead		3	\N	\N	684
2016-08-24 18:48:11.698532+00	2016-12-09 17:10:17.413296+00	1742	completed				+14842415954		49	2016-08-24 18:48:11.697593	2016-08-24 18:49:01.097005	CAf96e19511ae39584dc3a57460ce6c169	\N	27			0	inbound	+18552716856	\N	6.09295105934143066	null	new lead		3	\N	\N	684
2016-08-24 18:51:52.370558+00	2016-12-09 17:10:17.413318+00	1745	completed				+14842415954		58	2016-08-24 18:51:52.369577	2016-08-24 18:52:50.328639	CAaac454a9a904bc717a0119e7e939e5d6	\N	27			0	inbound	+18552716856	\N	6.11179804801940918	null	new lead		3	\N	\N	684
2016-09-16 19:32:33.924801+00	2016-12-10 01:01:00.200084+00	2034	completed				+16199558157		128	2016-09-16 19:32:33.923079	2016-09-16 19:34:41.856193	CA1661cbabd4460421954ee92ded3baf55	\N	57			0	inbound	+18557860909	\N	10.3912851810455322	null	new lead		3	\N	\N	688
2016-11-04 15:33:54.156831+00	2017-01-27 21:12:23.813988+00	2695	completed				+18442763272		30	2016-11-04 15:33:54.155707	2016-11-04 15:34:24.056418		\N	\N			0	outbound	+18555343978	48	\N	null	new lead		1	\N	\N	27
2017-01-28 14:45:10.708664+00	2017-02-08 14:10:27.824326+00	3141	missed	Lance	Smith	lance@hjamventures.com	+12148938946		\N	2017-01-28 14:45:10.707352	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	application submitted - autopay		1	\N	\N	594
2017-02-09 17:39:12.36147+00	2017-02-10 15:51:19.511724+00	3157	missed	Scott	Jones	lahjones@fuse.net	+15132319341		\N	2017-02-09 17:39:12.359463	\N		25d0200e-983d-4413-94ae-eb664b99711c	\N			0	outbound	+18556311490	\N	\N	{}	application submitted - credit union		1	\N	\N	599
2016-11-01 20:26:53.161761+00	2016-11-01 20:44:21.210487+00	2504	completed				+18325600887		1044	2016-11-01 20:26:53.16048	2016-11-01 20:44:16.866581	CA1850bc8bfa7a75eb75a4eaf8d46a8486	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REc323a8827d304f3466ae2a35cf44c40e	0	inbound	+18557240606	49	1.8441159725189209	null	new lead		1	\N	\N	728
2017-04-14 17:07:13.949694+00	2017-11-29 18:38:49.804938+00	3922	completed				+17732507217		95	2017-04-14 17:07:13.946725	2017-04-14 17:08:48.848471	CA1e0c159721cd9cab6550ffd48c3284b8	\N	105			0	inbound	+12147122250	\N	5.64470696449279785	\N	new lead	chicago  il	9	\N	\N	732
2017-04-26 18:34:45.171164+00	2017-11-29 18:38:49.806787+00	4333	missed				+17732507217		97	2017-04-26 18:34:45.168487	2017-04-26 18:36:22.018129	CA8b7c88ddde68198d811958b3cb3cd1de	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	chicago  il	9	\N	\N	732
2016-06-02 20:54:37.848658+00	2016-06-02 20:55:59.98672+00	351	completed				+19372718870		77	2016-06-02 20:54:37.847573	2016-06-02 20:55:59.985691	CAbacc3fa2e8931730370d22fe9a4c5015	cd89e433-4bde-4f86-9b22-8f52c2413fcd	16			1	outbound	+18556311490	\N	1.63052701950073242	{}	new lead		1	\N	\N	733
2016-06-02 20:47:09.457963+00	2016-06-02 21:10:43.841226+00	350	completed	Gregory	Parker	grgparker4@gmail.com	+19372718870		0	2016-06-02 20:47:09.456713	2016-06-02 20:47:37.949605	CA9e0c265651ac1cfbb1b565fb591939ff	25d0200e-983d-4413-94ae-eb664b99711c	\N			1	outbound	+18556311490	\N	14.1544878482818604	{}	new lead		1	\N	\N	733
2016-06-02 20:57:57.449698+00	2017-11-29 18:31:10.260903+00	352	completed	Unknown			+19372718870		126	2016-06-02 20:57:57.448476	2016-06-02 21:00:03.47856	CA65fc7877154332188a6d5a3ffd7dc009	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE4c4d91d73bd37ad8fb8babe1f46ff917	0	inbound	+18556311490	\N	2.41514205932617188	null	new lead		1	\N	\N	733
2016-08-10 16:11:07.814991+00	2017-01-27 21:12:23.813055+00	1388	completed				+16128402278		61	2016-08-10 16:11:07.81331	2016-08-10 16:12:08.72001		\N	\N			0	outbound	+18555343978	48	\N	null	do not contact		1	\N	\N	735
2016-08-03 14:26:28.347963+00	2017-11-29 18:32:13.821656+00	1169	completed				+16128402278		59	2016-08-03 14:26:28.346016	2016-08-03 14:27:27.276229	CA49a95fa0db1f4baf37f53fa2c027ce25	\N	18		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE12ddcd05d0dbfe74f31218c85c15ccd5	0	inbound	+18555983683	\N	4.82905197143554688	null	do not contact		1	\N	\N	735
2017-12-18 20:51:04.986673+00	2017-12-18 21:07:13.814514+00	7976	completed				+17405349824		966	2017-12-18 20:51:04.985146	2017-12-18 21:07:10.716894	CA22103aa7d8aebe639ce64e1d5508d1ce	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE77b840217606bb61e2edde0474340901	0	inbound	+18558645656	136	2.98976802825927734	\N	new lead		15	\N	\N	1858
2016-11-02 00:11:00.738265+00	2016-11-02 00:37:00.374269+00	2527	completed				+14693752044		1556	2016-11-02 00:11:00.737	2016-11-02 00:36:56.983581	CAbc9f11ada1a61c9c641f258d2e9896aa	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE925fe92bac33db3f594ae149e309a243	0	inbound	+18557240606	49	2.00020003318786621	null	new lead		1	\N	\N	1860
2016-05-23 16:33:01.352926+00	2017-11-29 18:31:10.260295+00	171	completed	Unknown			+19372248646		179	2016-05-23 16:33:01.352004	2016-05-23 16:36:00.785601	CAf2920d5dc936d476cca3cc3f346b6401	\N	18		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REc3c62bc7c8f9977c90e05cfbf60cd085	0	inbound	+18556311490	\N	6.48088502883911133	null	new lead		1	\N	\N	1863
2016-05-23 16:32:18.456065+00	2017-11-29 18:31:10.26028+00	170	completed	Unknown			+19372248646		15	2016-05-23 16:32:18.45377	2016-05-23 16:32:33.318339	CAda921bb610fa4eb3965db5ee8b33a406	\N	18			0	inbound	+18556311490	\N	8.22891116142272949	null	new lead		1	\N	\N	1863
2017-04-14 16:43:25.75346+00	2017-11-29 18:38:53.213908+00	3919	completed				+15086159333		30	2017-04-14 16:43:25.752167	2017-04-14 16:43:55.463376	CA2b7beab4f2d2d30897814ded0ccd1114	\N	105			0	inbound	+12146922088	\N	3.04813909530639648	\N	new lead	shays joann	9	\N	\N	1865
2017-04-14 16:44:02.07085+00	2017-11-29 18:38:49.804923+00	3920	completed				+15086159333		292	2017-04-14 16:44:02.06888	2017-04-14 16:48:53.947447	CA06b62e720a93e828ad976b2ac5bcc9d8	\N	107			0	inbound	+12147122250	\N	9.11060905456542969	\N	new lead	shays joann	9	\N	\N	1865
2017-08-03 14:45:53.766235+00	2017-08-17 14:35:21.045709+00	5924	completed				+12143821353		201	2017-08-03 14:45:53.764169	2017-08-03 14:49:14.955829	CA73d8ce4c696c03f8ff32f1447ce01819	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE5a05032a8c02800f74b8498dc49d7689	0	inbound	+18177569010	124	13.3119161128997803	\N	new lead	hearn trenton	12	\N	\N	1866
2017-07-20 14:22:42.900316+00	2017-07-20 14:23:48.929158+00	5818	completed	Shawna	Wright	shawnawright13@gmail.com	+12089149143		56	2017-07-20 14:22:42.898919	2017-07-20 14:23:47.666843	CA36919782c8f995fccd93cb8de25ed3cc	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE5a968440397396f02ddc0f3f47c84dd3	1	outbound	+17704009016	\N	9.51744699478149414	{}	new lead		13	\N	\N	1868
2016-08-15 18:13:26.587176+00	2016-08-15 20:17:34.41722+00	1502	missed	Jeremiah	Soval		+16614448507		94	2016-08-15 18:13:26.585972	2016-08-15 18:15:00.560819	CA7262734b48df64b03a65f3a8712ee0bf	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE7ac3efaf6524e3b8ef2d708ea209e6a0	0	inbound	+18555343978	48	31.477776050567627	null	general interest		1	\N	\N	365
2017-03-18 17:50:55.306458+00	2017-11-29 18:38:53.212601+00	3491	completed				+12149273424		38	2017-03-18 17:50:55.304367	2017-03-18 17:51:33.537121	CA6a2eeb5c5c680931b949858ce7c06499	\N	105			0	inbound	+12146922088	\N	8.58739399909973145	\N	new lead		9	\N	\N	737
2017-03-22 18:15:54.798814+00	2017-11-29 18:38:53.212791+00	3545	completed				+18173752700		116	2017-03-22 18:15:54.797401	2017-03-22 18:17:51.026245	CA3b00bc163234a7d89ac433ef01cd585f	\N	105			0	inbound	+12146922088	\N	5.29921102523803711	\N	new lead	patterson kia	9	\N	\N	739
2016-06-27 18:14:15.158472+00	2017-11-29 18:31:41.490122+00	536	completed	Racy	Wilkins		+16143177111		23	2016-06-27 18:14:15.156763	2016-06-27 18:14:38.315067	CA3f81098a741e29c42dcfca06aebe5d69	\N	\N			0	inbound	+18552959002	\N	15.4180951118469238	null	new lead		1	\N	\N	743
2016-06-27 18:35:37.305369+00	2016-06-27 18:38:18.48456+00	539	completed	Racy	Wilkins		+16143177111		102	2016-06-27 18:35:37.304444	2016-06-27 18:37:23.901524	CA24182731e0e0ab3e906971e05847d701	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	1.4012451171875	{}	new lead		1	\N	\N	743
2016-06-27 18:04:10.581709+00	2017-11-29 18:31:41.490115+00	533	completed	Racy	Wilkins		+16143177111		24	2016-06-27 18:04:10.580492	2016-06-27 18:04:35.036515	CA55e95eee5c24fd8780e697111dea08f4	\N	\N			0	inbound	+18552959002	\N	13.9142119884490967	null	new lead		1	\N	\N	743
2016-06-27 18:00:20.532321+00	2017-11-29 18:31:41.490107+00	531	completed	Unknown			+16143177111		28	2016-06-27 18:00:20.530547	2016-06-27 18:00:48.598394	CA05dad9f4a4eb6029a31a06c95b364d04	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE6b5f81de046b5e2e1b7917bfed220a71	0	inbound	+18552959002	\N	14.8269760608673096	null	new lead		1	\N	\N	743
2016-11-06 01:00:12.829404+00	2016-11-06 01:00:12.870151+00	2766	missed	Jana	Harkrider	jana.harkrider@gmail.com	+17209843254		\N	2016-11-06 01:00:12.827591	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	1763
2017-04-18 21:14:26.742585+00	2017-11-29 18:38:49.805602+00	4067	completed				+18326232030		168	2017-04-18 21:14:26.738672	2017-04-18 21:17:14.74025	CA1cb15d367dde26694e6741f1ca0a34b0	\N	\N			0	inbound	+12147122250	\N	5.24184203147888184	\N	new lead	wireless caller	9	\N	\N	1870
2017-12-14 00:02:38.414507+00	2017-12-14 00:02:55.518988+00	7857	missed				+18555130980		17	2017-12-14 00:02:38.41267	2017-12-14 00:02:55.509347	CAffd11265cd7bcbae7ca81c3d56e63ed6	\N	\N			0	inbound	+18555343978	48	\N	\N	new lead		1	\N	\N	1875
2017-04-13 15:13:33.16916+00	2017-08-17 14:35:21.044974+00	3857	completed				+16827748380		142	2017-04-13 15:13:33.166818	2017-04-13 15:15:55.662209	CAa1bc18600fa67f774af18de17ba1bd6e	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REd32e6252df01d4907e61d9dc85729874	0	inbound	+18177569010	124	6.5983421802520752	\N	new lead		12	\N	\N	1881
2016-08-02 16:15:06.201882+00	2016-08-03 19:38:55.14514+00	1119	missed	Gary	Smith		+15136206420		\N	2016-08-02 16:15:06.200861	\N		dd0f7c48-1955-4749-b3fe-6110257e8957	\N			0	outbound	+18555343978	\N	\N	{}	application submitted - autopay		1	\N	\N	1882
2016-08-01 18:11:15.467594+00	2017-11-29 18:31:10.261815+00	1084	completed	Gary	Smith		+15136206420		63	2016-08-01 18:11:15.466178	2016-08-01 18:12:18.803696	CA351d175786e8c23608ce69346f536963	\N	18		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE86b4de3053f1ad206d675469e89dd90f	0	inbound	+18556311490	\N	24.2093429565429688	null	application submitted - autopay		1	\N	\N	1882
2016-08-02 16:15:18.185324+00	2016-08-03 19:38:55.145147+00	1120	missed	Gary	Smith		+15136206420		\N	2016-08-02 16:15:18.184061	\N		dd0f7c48-1955-4749-b3fe-6110257e8957	\N			0	outbound	+18555343978	\N	\N	{}	application submitted - autopay		1	\N	\N	1882
2016-08-01 18:16:42.681282+00	2017-11-29 18:31:10.261832+00	1085	completed	Gary	Smith		+15136206420		104	2016-08-01 18:16:42.680085	2016-08-01 18:18:27.152738		\N	16			0	outbound	+18556311490	\N	\N	null	application submitted - autopay		1	\N	\N	1882
2016-08-02 16:14:25.740391+00	2017-01-27 21:12:23.812425+00	1118	completed	Gary	Smith		+15136206420		50	2016-08-02 16:14:25.739194	2016-08-02 16:15:19.261599	CAa20e6549faf4592a51dd6ab76cdadaae	dd0f7c48-1955-4749-b3fe-6110257e8957	\N			1	outbound	+18555343978	\N	3.15160107612609863	{}	application submitted - autopay		1	\N	\N	1882
2016-08-02 17:29:24.474566+00	2017-01-27 21:12:23.812446+00	1126	completed	Gary	Smith	garyasmith1@gmail.com	+15136206420		35	2016-08-02 17:29:24.473584	2016-08-02 17:30:17.957202	CA548aa989332174685b08bfd6e7ef600a	25d0200e-983d-4413-94ae-eb664b99711c	\N			1	outbound	+18556311490	\N	10.7343249320983887	{}	application submitted - autopay		1	\N	\N	1882
2016-08-02 16:12:13.934457+00	2017-11-29 18:31:10.26185+00	1117	completed	Gary	Smith		+15136206420		20	2016-08-02 16:12:13.932197	2016-08-02 16:12:33.965221	CAd0907df7ae8df90892633d161f238e4c	\N	\N			0	inbound	+18556311490	\N	13.6388790607452393	null	application submitted - autopay		1	\N	\N	1882
2016-08-02 16:28:27.750343+00	2017-11-29 18:31:10.261868+00	1121	completed	Gary	Smith		+15136206420		87	2016-08-02 16:28:27.749052	2016-08-02 16:29:54.895463	CA6285d8d2394c82078755049defc93381	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE302a6d2bf9ac1e5d37a2e4600eb73485	0	inbound	+18556311490	\N	10.4945731163024902	null	application submitted - autopay		1	\N	\N	1882
2016-08-02 17:20:20.368042+00	2017-11-29 18:31:10.261885+00	1124	completed	Gary	Smith		+15136206420		598	2016-08-02 17:20:20.366222	2016-08-02 17:30:18.680636		\N	16			0	outbound	+18556311490	\N	\N	null	application submitted - autopay		1	\N	\N	1882
2016-07-06 15:36:05.904439+00	2016-07-06 15:38:15.620241+00	772	completed	Larry	Bower		+13302051789		125	2016-07-06 15:36:05.902944	2016-07-06 15:38:15.619127	CAe8083429a8d4171feea99a25889a66e5	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.71086692810058594	{}	new lead		1	\N	\N	1883
2016-07-06 15:49:03.20806+00	2016-07-06 15:50:57.43097+00	773	completed	Larry	Bower		+13302051789		110	2016-07-06 15:49:03.206037	2016-07-06 15:50:57.429691	CA949e317e77b03974415dc73afdc7b104	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.70495080947875977	{}	new lead		1	\N	\N	1883
2016-07-01 16:33:32.100805+00	2017-11-29 18:32:13.821217+00	717	completed	Larry	Bower		+13302051789		43	2016-07-01 16:33:32.099646	2016-07-01 16:34:14.933886	CAea8ea2b2f3d6d7c6c03f4b961fcb6a25	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE95f2bc0cdaad3f00c98d7bd6a2450630	0	inbound	+18555983683	\N	2.55702114105224609	null	new lead		1	\N	\N	1883
2017-02-03 20:32:07.945045+00	2017-02-08 14:09:59.032402+00	3147	missed	Melanie	Wittenauer	melanie_wittenauer@yahoo.com	+16185801515		\N	2017-02-03 20:32:07.943918	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	application submitted - autopay		1	\N	\N	742
2017-12-18 20:49:29.125008+00	2017-12-18 20:52:35.157478+00	7975	completed				+16788308239		185	2017-12-18 20:49:29.123433	2017-12-18 20:52:33.953614	CAfbca3acdd1243039c08beed2e675b12b	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE53d9bd7e16f69b9bda48e8371260182a	0	inbound	+17707665732	133	11.4426069259643555	\N	new lead	norcross  ga	13	\N	\N	744
2016-10-28 17:29:49.084888+00	2017-11-29 18:31:56.600218+00	2364	missed				+14848091955		9	2016-10-28 17:29:49.083223	2016-10-28 17:29:57.95817	CA3c91f8b19eba93a25ac6fbb81c4f3c42	\N	\N			0	inbound	+18556311397	\N	\N	null	new lead		1	\N	\N	745
2016-11-14 21:37:46.071308+00	2016-11-14 21:52:58.723754+00	2900	completed				+17709009582		910	2016-11-14 21:37:46.069631	2016-11-14 21:52:56.455946	CAb43f222451f8b315d501ba1a6304bfc6	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REaa48b1342d0e9120cc122da201e1048a	0	inbound	+18557240606	49	2.42494106292724609	null	new lead		1	\N	\N	752
2016-08-10 14:18:35.830702+00	2017-01-27 21:12:23.813028+00	1381	completed				+15135604019		1320	2016-08-10 14:18:35.828834	2016-08-10 14:40:35.912175		\N	\N			0	outbound	+18555343978	48	\N	null	application submitted - credit union		1	\N	\N	757
2017-03-28 16:33:53.04837+00	2017-11-29 18:31:33.77563+00	3608	missed				+12167028588		13	2017-03-28 16:33:53.046644	2017-03-28 16:34:06.515578	CA331ae6ffd794af9a1c0d822380f94c45	\N	\N			0	inbound	+18556311350	\N	\N	\N	application submitted - credit union		1	\N	\N	33
2016-08-22 20:31:48.327197+00	2017-11-29 18:31:37.369046+00	1649	completed				+16614354957		90	2016-08-22 20:31:48.325871	2016-08-22 20:33:18.209564	CA5ad5931d7ac84de41212c92cb5c0a035	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REdc9cdd6c1e3948e7bb7600eae6123800	0	inbound	+18555472453	\N	6.44921994209289551	null	do not contact		1	\N	\N	153
2016-08-15 15:12:19.538949+00	2017-11-29 18:31:10.262201+00	1492	completed	Louisa	DICKERSON	DANIDICKERSON@HOTMAIL.COM	+15135604019		70	2016-08-15 15:12:19.538122	2016-08-15 15:13:29.803415		\N	16			0	outbound	+18556311490	\N	\N	null	application submitted - credit union		1	\N	\N	757
2017-12-29 18:35:14.535819+00	2017-12-29 18:36:10.735177+00	8155	completed				+14046210085		55	2017-12-29 18:35:14.533941	2017-12-29 18:36:09.650463	CA90c93165e8f03d21af82aed7c8b28d21	\N	157		https://api.twilio.com/2010-04-01/Accounts/ACbd7756819f4882feb347788ad7959655/Recordings/RE7928d9a15b706328798973f79e455f45	0	inbound	+17706597466	137	6.80592203140258789	\N	new lead		14	\N	\N	804
2017-08-15 03:59:26.648803+00	2017-08-15 03:59:26.705005+00	6030	missed	Mitchell	Teasley	teasley_mitchell@yshoo.com	+17064919408		\N	2017-08-15 03:59:26.647139	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	805
2017-08-24 01:54:54.883577+00	2017-08-24 01:54:54.939253+00	6151	missed	Mitchell 	Teasley	teasley_mitchell@yahoo.com	+17064919408		\N	2017-08-24 01:54:54.882215	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	805
2017-08-16 20:33:42.69315+00	2017-08-16 20:36:41.199148+00	6056	completed				+14044285658		178	2017-08-16 20:33:42.691135	2017-08-16 20:36:41.17316	CAaebeac9a2fe98d43fc21767d410e6ffb	\N	152			0	inbound	+17707665732	133	9.45588994026184082	\N	new lead		13	\N	\N	806
2016-10-24 19:16:09.637231+00	2016-12-10 01:00:18.568531+00	2343	missed				+16199476798		37	2016-10-24 19:16:09.635591	2016-10-24 19:16:46.575387	CAda93aaa3be4a5abac305c41d3cd2cc30	\N	\N			0	inbound	+18556775511	\N	\N	null	new lead		3	\N	\N	807
2017-02-08 14:31:17.565859+00	2017-11-29 18:32:10.406527+00	3151	missed				+12146824946		11	2017-02-08 14:31:17.56371	2017-02-08 14:31:28.286189	CA84f17a408084a77bde922bbe289deac0	\N	\N			0	inbound	+18552791533	\N	\N	null	new lead		1	\N	\N	809
2017-04-08 14:28:20.892799+00	2017-11-29 18:38:53.213468+00	3738	completed				+18178915296		216	2017-04-08 14:28:20.891075	2017-04-08 14:31:56.677867	CAec910ce4e7450cce5b78c2344c2afa6b	\N	107			0	inbound	+12146922088	\N	7.97491002082824707	\N	new lead	aljabri	9	\N	\N	810
2017-08-28 21:19:06.436555+00	2017-08-28 21:22:29.315579+00	6189	completed				+16825522756		202	2017-08-28 21:19:06.434778	2017-08-28 21:22:28.16435	CA07e233b7b17bf8847ec02129fc7db22b	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE42fd83c2fcf349f8f1519b3cd16e3ef4	0	inbound	+18177569010	124	38.6818149089813232	\N	new lead	haynes matthew	12	\N	\N	811
2017-12-07 01:14:44.741491+00	2017-12-07 01:16:51.125286+00	7671	missed	Caroline	Campbell	Caroline0311@yahoo.com	+18502634495		42	2017-12-07 01:14:44.739912	2017-12-07 01:16:51.124127	CA9c900176eade316f8291b0d7cdfc5b54	243bc1c1-c430-4ccb-b9d9-71662ebbb896	\N			3	outbound	+18558645656	\N	80.2924840450286865	{}	new lead		15	\N	\N	813
2016-05-25 17:09:00.732769+00	2016-05-25 17:10:27.113077+00	215	completed				+16612655534		82	2016-05-25 17:09:00.731608	2016-05-25 17:10:27.112036	CA8fb2707c2c8b5901ffd6b072fce19b85	1b57cdfb-d740-4953-b96e-8faa81f78a40	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REbdb1749496ad75ee358ab3bee15ae4e7	1	outbound	+18557824539	\N	1.55729913711547852	{}	new lead		1	\N	\N	816
2016-05-27 15:14:58.001619+00	2017-11-29 18:31:05.368845+00	258	completed	Unknown			+16612655534		65	2016-05-27 15:14:57.999702	2016-05-27 15:16:03.324791	CA23c30150ccd42472287e923658cc2df2	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REc67c4a356d041607c6f3595f47b5dc8e	0	inbound	+18557824539	\N	3.94658207893371582	null	new lead		1	\N	\N	816
2017-03-28 17:12:11.616381+00	2017-04-04 21:44:07.297801+00	3610	missed	Frank	Cusumano	fjc1198@cox.net	+12167028588		\N	2017-03-28 17:12:11.614587	\N		ea8e48b7-042e-42ec-8dde-d03bf75a9bad	\N			0	outbound	+18556311350	\N	\N	{}	application submitted - credit union		1	\N	\N	33
2017-03-28 22:03:24.478501+00	2017-03-29 12:40:39.904483+00	3614	missed	Arnold	Edmondson	fcognf@gmail.com	+13304427257		\N	2017-03-28 22:03:24.477193	\N		ee869226-e246-4ab4-aaaa-e9403e2ddd39	\N			0	outbound	+18555983683	\N	\N	{}	application submitted - autopay		1	\N	\N	222
2016-06-28 15:24:14.297013+00	2017-03-29 12:40:39.91611+00	583	completed	Arnold	Edmondson	fcognf@gmail.com	+13304427257		0	2016-06-28 15:24:14.295947	2016-06-28 15:24:42.756774	CA78c47d612faf3e02140fd84d53485f1e	ee869226-e246-4ab4-aaaa-e9403e2ddd39	\N			1	outbound	+18555983683	\N	14.4450728893280029	{}	application submitted - autopay		1	\N	\N	222
2017-06-08 09:42:52.209719+00	2017-11-29 18:31:56.600415+00	5574	missed				+15094866640		317	2017-06-08 09:42:52.207771	2017-06-08 09:48:08.86299	CA86689fd17ee2f3242462313aab083d13	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REa5967e3fc8ea1a155832182b74e6b19a	0	inbound	+18556311397	\N	\N	\N	select status		1	\N	\N	762
2017-06-08 12:21:06.270291+00	2017-11-29 18:31:56.600422+00	5575	missed				+15094866640		12	2017-06-08 12:21:06.267108	2017-06-08 12:21:18.665645		\N	16			0	outbound	+18556311397	\N	\N	\N	select status		1	\N	\N	762
2017-06-22 14:52:24.179676+00	2017-06-24 13:44:45.085729+00	5629	completed				+16787022320		55	2017-06-22 14:52:24.177282	2017-06-22 14:53:18.777655	CA50758d2acd3816b1d26b85c2373869a5	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE38d06a502d6f36518ecfc736c24ee1fa	0	inbound	+17704009016	132	13.2598509788513184	\N	new lead		13	\N	\N	824
2017-12-08 13:12:34.431761+00	2017-12-08 13:13:56.177641+00	7704	completed				+12317771048		81	2017-12-08 13:12:34.430159	2017-12-08 13:13:55.327554	CA3856bd4f4f29bbd6242a935dcf2a99be	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REffb244f826ca79cab06f2a73bab3ff3b	0	inbound	+18558645656	136	2.36724305152893066	\N	new lead		15	\N	\N	826
2017-12-08 13:17:06.163356+00	2017-12-08 13:18:28.260166+00	7705	completed				+12317771048		81	2017-12-08 13:17:06.161773	2017-12-08 13:18:27.363054	CA5ecb41f3efa02dd2c4ff7da6480e667d	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REe5e4189b36a0fd5344c75622d3c7aae0	0	inbound	+18558645656	136	2.34171295166015625	\N	new lead		15	\N	\N	826
2017-05-17 18:18:06.848797+00	2017-11-29 18:38:49.812026+00	5161	completed				+18009150927		90	2017-05-17 18:18:06.846998	2017-05-17 18:19:37.172143	CAfc266f053204ea49f9cb6279e60c099d	\N	127			0	inbound	+12147122250	\N	1.07229208946228027	\N	new lead	800 service    	9	\N	\N	828
2017-05-17 18:19:32.209222+00	2017-11-29 18:38:49.812033+00	5162	completed				+18009150927		83	2017-05-17 18:19:32.206873	2017-05-17 18:20:55.541896	CA455379bfe2914a114e66bc9d9822539b	\N	124			0	inbound	+12147122250	\N	2.06137919425964355	\N	new lead	800 service	9	\N	\N	828
2017-04-12 20:58:08.10168+00	2017-11-29 18:38:53.213816+00	3838	completed				+19404533788		182	2017-04-12 20:58:08.098616	2017-04-12 21:01:10.432441	CAc6357fd7ae0b3e7342f204b3d912983b	\N	99			0	inbound	+12146922088	\N	6.46322202682495117	\N	new lead		9	\N	\N	841
2017-02-15 15:44:53.495101+00	2017-02-15 16:15:13.746619+00	3173	completed				+19802139760		1817	2017-02-15 15:44:53.491942	2017-02-15 16:15:10.094694	CA4ff686000e489eda90873b8f54914efd	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE5b1cdc76b3b5d6a24012f62e947310b1	0	inbound	+18557240606	49	2.21213889122009277	null	new lead		1	\N	\N	842
2017-01-27 20:37:33.802982+00	2017-01-27 20:38:36.684303+00	3138	completed				+19802139760		62	2017-01-27 20:37:33.801162	2017-01-27 20:38:36.085429	CA33b44c90d647d565f25d28265b4ab45b	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE3de59d77f3085d01efa26c10c8bfb654	0	inbound	+18557240606	49	2.19744706153869629	null	new lead		1	\N	\N	842
2016-07-01 21:53:41.727974+00	2016-07-01 22:02:18.969247+00	733	completed				+13302051789		511	2016-07-01 21:53:41.726429	2016-07-01 22:02:18.968233	CAf657ade742fa396454e021dea6e3b554	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	2.63727498054504395	{}	new lead		1	\N	\N	1883
2016-07-01 17:04:10.724388+00	2016-07-01 17:05:55.920827+00	718	completed				+13302051789		98	2016-07-01 17:04:10.721681	2016-07-01 17:05:55.91965	CA72d38ed95679c49ea1812ac7c24874d7	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	3.57178115844726562	{}	new lead		1	\N	\N	1883
2016-07-01 18:49:42.503963+00	2016-07-01 18:51:44.809092+00	725	completed				+13302051789		118	2016-07-01 18:49:42.502894	2016-07-01 18:51:44.807985	CAebe86b4ea1f44f0951e7ef335ef1a065	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.59156703948974609	{}	new lead		1	\N	\N	1883
2016-07-01 19:47:40.210223+00	2016-07-01 19:48:59.063051+00	729	completed				+13302051789		74	2016-07-01 19:47:40.208634	2016-07-01 19:48:59.062116	CAbade43c555c8d2b246583680d9288f44	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.92499613761901855	{}	new lead		1	\N	\N	1883
2016-07-01 17:17:19.144801+00	2017-11-29 18:32:13.821224+00	719	completed	Unknown			+13302051789		69	2016-07-01 17:17:19.143248	2016-07-01 17:18:28.505318	CA2b0ee80b6cc7e16edd9139eeca787880	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE65ac941a10c6132b2e8c684ddec8cb04	0	inbound	+18555983683	\N	14.385761022567749	null	new lead		1	\N	\N	1883
2016-07-01 19:03:59.690925+00	2017-11-29 18:32:13.821267+00	728	completed	Larry	Bower		+13302051789		61	2016-07-01 19:03:59.689714	2016-07-01 19:05:00.473923	CA0315a4985c6ae269664e28217f9a0c43	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE0d66139768e1348031aff24490d08e57	0	inbound	+18555983683	\N	14.6842551231384277	null	new lead		1	\N	\N	1883
2016-07-01 20:11:41.50939+00	2017-11-29 18:32:13.821275+00	730	completed	Larry	Bower		+13302051789		55	2016-07-01 20:11:41.508126	2016-07-01 20:12:36.347912	CA05d3fbd315787e6a060a9617405af77b	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE2fa65610f4d2d55b816d85807a8ecd4c	0	inbound	+18555983683	\N	15.0380480289459229	null	new lead		1	\N	\N	1883
2016-07-01 20:21:19.312787+00	2017-11-29 18:32:13.821282+00	731	completed	Larry	Bower		+13302051789		27	2016-07-01 20:21:19.311218	2016-07-01 20:21:46.118447	CA007666c4c74ae68861b4ea50a4bb8c66	\N	\N			0	inbound	+18555983683	\N	14.4253280162811279	null	new lead		1	\N	\N	1883
2016-07-01 20:39:12.352739+00	2017-11-29 18:32:13.821289+00	732	completed	Larry	Bower		+13302051789		24	2016-07-01 20:39:12.351318	2016-07-01 20:39:36.049248	CA87f103b4f564493d28300b60baf3acf1	\N	\N			0	inbound	+18555983683	\N	14.2576248645782471	null	new lead		1	\N	\N	1883
2016-07-06 14:42:44.642763+00	2017-11-29 18:32:13.82136+00	769	completed	Larry	Bower		+13302051789		52	2016-07-06 14:42:44.640558	2016-07-06 14:43:36.279647	CA833db97237b0a2037845603d004b46e3	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE73276c4583d9ad4663db884c4825b7bc	0	inbound	+18555983683	\N	14.0511949062347412	null	new lead		1	\N	\N	1883
2016-07-01 22:01:35.005751+00	2016-07-05 11:56:12.126955+00	734	completed	Larry	Bower	NA@noemail.com	+13302051789		\N	2016-07-01 22:01:35.004908	\N		ee869226-e246-4ab4-aaaa-e9403e2ddd39	\N			0	outbound	+18555983683	\N	\N	{}	new lead		1	\N	\N	1883
2017-07-04 19:02:05.05547+00	2017-08-17 14:35:21.045572+00	5712	completed				+13183728028		41	2017-07-04 19:02:05.053788	2017-07-04 19:02:46.539574	CA777dfd70a9a4cd5921988ff5357909d6	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REe64b01a00d123bc33b51e421590bedd5	0	inbound	+18177569010	124	10.7187190055847168	\N	new lead	thompson alan w	12	\N	\N	1884
2017-07-04 19:04:50.190327+00	2017-07-04 19:06:02.664104+00	5713	completed				+13183728028		71	2017-07-04 19:04:50.188215	2017-07-04 19:06:01.570442	CA5d0ac48f7e77a1d056f231c7d6c078d9	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REc0689db83693d3de95fffd9c56fa1f9e	0	inbound	+18177569010	124	8.91091299057006836	\N	new lead	thompson alan w	12	\N	\N	1884
2016-11-15 14:57:00.915977+00	2016-11-15 20:39:51.420021+00	2908	missed	Carlos	Macedo	macedocarlosortiz1975@gmail.com	+18178975612		\N	2016-11-15 14:57:00.911463	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - credit union		1	\N	\N	1886
2017-04-13 16:45:22.401141+00	2017-11-29 18:38:49.804786+00	3876	missed				+18009554408		55	2017-04-13 16:45:22.399099	2017-04-13 16:46:16.961291	CAd57200b5a518ede07315b6911f3090eb	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	800 service	9	\N	\N	1888
2017-04-18 14:17:41.58318+00	2017-11-29 18:38:49.805406+00	4031	completed				+18009554408		86	2017-04-18 14:17:41.581064	2017-04-18 14:19:07.470529	CA7760a3a5c4593c84728704da1a03ea91	\N	127			0	inbound	+12147122250	\N	1.48885107040405273	\N	new lead	800 service	9	\N	\N	1888
2017-10-05 20:03:19.987327+00	2017-10-05 20:07:30.727074+00	6596	completed				+12145974286		251	2017-10-05 20:03:19.985524	2017-10-05 20:07:30.716423	CA40a3f5fe52b41f15aedd27237e667e4f	\N	150			0	inbound	+17707665732	133	13.1748511791229248	\N	new lead		13	\N	\N	1889
2017-11-06 15:37:19.035736+00	2017-11-06 15:38:14.906191+00	6943	completed				+17702656391		56	2017-11-06 15:37:19.03332	2017-11-06 15:38:14.893116	CA108ddfd18d9b11f0d1b5233556014128	\N	153			0	inbound	+17707665732	133	14.7996668815612793	\N	new lead		13	\N	\N	1891
2016-10-03 17:40:19.714914+00	2016-12-10 01:04:28.706385+00	2128	completed				+19519064348		113	2016-10-03 17:40:19.712134	2016-10-03 17:42:12.235547	CA6acf10a8da1687a010a08d4498f00e6e	\N	61			0	inbound	+18557579140	\N	0.947658061981201172	null	new lead		3	\N	\N	1892
2017-12-28 16:11:06.383621+00	2017-12-28 16:18:11.962419+00	8137	completed				+18173230353		426	2017-12-28 16:11:06.380948	2017-12-28 16:18:11.959481	CAa0c26242847418b05951a6b24250a5fe	\N	146			0	inbound	+18177569010	124	12.2890169620513916	\N	new lead	philon m	12	\N	\N	1893
2017-10-26 18:43:27.965841+00	2017-10-26 18:47:03.208725+00	6820	completed	Stephanie 	Minyard	Toomuchcash@icloud.com	+16785585578		201	2017-10-26 18:43:27.964119	2017-10-26 18:47:03.016315	CA1e19dbe467f2234cc84cdf749442ef63	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE19c4f12090502ce0d94fdbf233b1e05e	1	outbound	+17704009016	\N	9.95018982887268066	{}	new lead		13	\N	\N	1894
2017-09-22 14:39:53.172233+00	2017-09-22 14:41:00.196895+00	6429	completed	Angela	Evans	angelae4583@gmail.com	+17067680647		56	2017-09-22 14:39:53.170631	2017-09-22 14:40:59.580506	CA3136268da7d79303f15d1c1a892519b8	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REc205817dd22d81d1a76abb186ef59137	1	outbound	+17704009016	\N	14.5585980415344238	{}	new lead		13	\N	\N	1896
2016-11-01 16:07:08.630136+00	2016-12-09 17:06:53.90607+00	2471	completed				+14849736056		260	2016-11-01 16:07:08.62856	2016-11-01 16:11:28.994553	CA71e2678a413ced2580a2613d928dcda5	\N	21			0	inbound	+18558021330	\N	2.45534586906433105	null	new lead		3	\N	\N	1897
2017-05-10 22:55:10.469586+00	2017-11-29 18:38:53.215618+00	4991	completed				+15037575877		374	2017-05-10 22:55:10.466977	2017-05-10 23:01:24.426886	CAef2e304b599ce87d570bf4f54693edf0	\N	133		https://api.twilio.com/2010-04-01/Accounts/AC5422b9b221417a7a84556a92f6edc492/Recordings/RE10c10b66ba9c9e73ed69bfb88a53a0d8	0	inbound	+12146922088	\N	3.36811399459838867	\N	new lead	ramert david   	9	\N	\N	843
2017-05-01 13:41:01.0362+00	2017-11-29 18:38:49.80758+00	4490	completed				+18104594979		83	2017-05-01 13:41:01.033448	2017-05-01 13:42:23.769647	CAd9c44fd6d52dc211940a43b918f22eca	\N	127			0	inbound	+12147122250	\N	1.15185308456420898	\N	new lead	andy barney	9	\N	\N	849
2016-11-12 17:06:14.843363+00	2016-11-12 17:06:14.868899+00	2876	missed	Donald	Miller	ritdon2002@aol.com	+17046410434		\N	2016-11-12 17:06:14.842274	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	1908
2016-10-08 00:04:01.55317+00	2016-12-10 01:05:11.337139+00	2239	completed				+17182854873		19	2016-10-08 00:04:01.550132	2016-10-08 00:04:20.917452	CA3e2dd860b013065586abb3d91238d617	\N	25			0	inbound	+18555693686	\N	1.6939389705657959	null	new lead		3	\N	\N	1909
2016-08-25 13:54:36.178529+00	2016-12-09 17:07:45.33156+00	1767	completed				+14435282812		9	2016-08-25 13:54:36.177302	2016-08-25 13:54:45.632497	CA3fde0f635e85286dac18b5a286816a25	\N	55			0	inbound	+18552467810	\N	2.3804478645324707	null	new lead		3	\N	\N	1910
2017-12-14 19:02:05.706711+00	2017-12-14 19:13:36.728668+00	7873	completed	Marsha	Ashbaugh	mashbaugh@thelwm.org	+17404158646		685	2017-12-14 19:02:05.705239	2017-12-14 19:13:36.725813	CA0190e77333eeab39235a6a3f17092950	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	4.62322402000427246	{}	new lead		15	\N	\N	1911
2017-12-07 01:14:46.107625+00	2017-12-07 01:16:10.877387+00	7672	completed	Carissa	Davy	Dr.carissa.bain@gmail.com	+14074562150		83	2017-12-07 01:14:46.105835	2017-12-07 01:16:10.876065	CAc43e93575f0b1ebb0b20b0ee60e87322	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	1.85059118270874023	{}	new lead		15	\N	\N	1913
2016-11-10 20:10:46.275357+00	2016-11-10 20:10:46.303978+00	2840	missed	Louise	Greene	L.greene15@yahoo.com	+17047925502		\N	2016-11-10 20:10:46.2741	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	1917
2016-09-07 15:29:43.501699+00	2016-12-10 01:05:18.40093+00	1905	completed				+16505067000		276	2016-09-07 15:29:43.499598	2016-09-07 15:34:19.258344	CA21bde3133c0812148c6cf41121f8c00a	\N	24			0	inbound	+18557088731	\N	1.49156308174133301	null	new lead		3	\N	\N	1918
2017-09-29 15:29:05.532132+00	2017-09-29 15:32:45.236029+00	6528	completed	Millan	Carr	milan_carr@yahoo.com	+14702093938		201	2017-09-29 15:29:05.530492	2017-09-29 15:32:43.456728	CAb6808ada16f7e0b9c8ecbd367cd4468d	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REbe99cb3df62fe4314886c54cf5807ed0	1	outbound	+17704009016	\N	23.5671379566192627	{}	new lead		13	\N	\N	1922
2017-09-29 15:32:54.539568+00	2017-09-29 15:39:39.185136+00	6529	completed	Millan	Carr		+14702093938		403	2017-09-29 15:32:54.538079	2017-09-29 15:39:37.949511	CA8d17190e3399b6e622c5729b38564857	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE68695103ef95cdb19dabc0de2dd3dba6	0	inbound	+17704009016	132	317.451743125915527	\N	new lead		13	\N	\N	1922
2016-07-13 11:40:51.76447+00	2016-07-14 20:36:05.080932+00	865	completed	george	miku	mikugeorge@yahoo.com	+13302573502		\N	2016-07-13 11:40:51.763159	\N		ee869226-e246-4ab4-aaaa-e9403e2ddd39	\N			0	outbound	+18555983683	\N	\N	{}	new lead		1	\N	\N	1924
2017-03-03 16:09:47.442257+00	2017-11-29 18:31:41.490849+00	3318	missed				+17405697613		22	2017-03-03 16:09:47.439374	2017-03-03 16:10:09.339681	CA158f4f33e67610985b4a349b4a133d4e	\N	\N			0	inbound	+18552959002	\N	\N	\N	new lead		1	\N	\N	1928
2017-03-03 16:25:45.990308+00	2017-11-29 18:31:41.490856+00	3319	missed				+17405697613		45	2017-03-03 16:25:45.987369	2017-03-03 16:26:30.507301	CA36ce3005caf6f3a99abf98a38163a6d3	\N	\N			0	inbound	+18552959002	\N	\N	\N	new lead		1	\N	\N	1928
2017-03-03 16:55:11.647552+00	2017-11-29 18:31:41.490863+00	3320	missed				+17405697613		44	2017-03-03 16:55:11.644388	2017-03-03 16:55:55.189477	CAadd21198c5faf9af2d7224328bec4379	\N	\N			0	inbound	+18552959002	\N	\N	\N	new lead		1	\N	\N	1928
2017-04-29 20:16:06.302313+00	2017-11-29 18:38:53.214838+00	4478	completed				+12488916595		615	2017-04-29 20:16:06.299787	2017-04-29 20:26:21.654827	CAeeb48f44ebc4d541e3fbf1ee2b8677e2	\N	133			0	inbound	+12146922088	\N	6.33157992362976074	\N	new lead	a markovitz	9	\N	\N	1929
2017-08-17 22:53:47.309759+00	2017-08-17 22:55:11.514073+00	6085	completed				+16822157097		83	2017-08-17 22:53:47.306658	2017-08-17 22:55:10.799119	CA042d3c7c381dc7a2d7252b7285336b9e	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE082991adbde370723f5b6ad41beaeb8d	0	inbound	+18177569010	124	12.2830448150634766	\N	new lead	euless  tx	12	\N	\N	1930
2016-12-28 01:02:42.918589+00	2016-12-28 14:23:58.809829+00	3098	missed	William	Harper	rufreeindeed@aol.com	+14063811254		\N	2016-12-28 01:02:42.917329	\N		25d0200e-983d-4413-94ae-eb664b99711c	\N			0	outbound	+18556311490	\N	\N	{}	application submitted - credit union		1	\N	\N	1936
2017-12-19 01:03:44.152461+00	2017-12-19 01:26:08.736564+00	7985	missed				+18172319928		63	2017-12-19 01:03:44.150844	2017-12-19 01:04:47.046241	CAad860a76447dc55295ec6d3775cef695	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE72a60111e2b41104982052115629528d	0	inbound	+18177569010	124	1335.80878591537476	\N	new lead	moore danny	12	\N	\N	1941
2016-11-03 13:56:08.443769+00	2016-12-09 17:08:31.90888+00	2622	completed				+17329916105		37	2016-11-03 13:56:08.441218	2016-11-03 13:56:45.745951	CA1b88ffcd28507f97f799bac5a2544056	\N	67			0	inbound	+18552576059	\N	2.0211639404296875	null	new lead		3	\N	\N	1942
2017-08-17 20:34:24.7855+00	2017-08-17 20:35:32.547222+00	6080	completed				+17707282470		67	2017-08-17 20:34:24.783307	2017-08-17 20:35:31.38515	CA9ac8ddff4c173e277a060cd3a4e74f43	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE5d1b56b595538fc122ac782cd728755a	0	inbound	+17704009016	132	7.88647794723510742	\N	new lead		13	\N	\N	1948
2017-08-17 21:00:11.903469+00	2017-08-17 21:01:50.406309+00	6082	completed				+17707282470		98	2017-08-17 21:00:11.901537	2017-08-17 21:01:50.396765	CAb0fce35e8c6774f509b4c36f54619f33	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REaf6943241b1399baa08bc97e55f9a88d	0	inbound	+17704009016	132	14.5207698345184326	\N	new lead		13	\N	\N	1948
2016-08-15 14:07:33.074211+00	2016-12-10 00:55:45.165313+00	1489	completed				+12156946318		14	2016-08-15 14:07:33.072447	2016-08-15 14:07:47.093939	CA5a347fd99c9c2615c68aa570483ccfbc	\N	24			0	inbound	+18557129406	\N	1.03848910331726074	null	new lead		3	\N	\N	1951
2016-08-03 21:24:24.08796+00	2016-08-03 21:52:08.978955+00	1189	missed	Amanda	Edwards	emtfiregirl79@yahoo.com	+14063811767		\N	2016-08-03 21:24:24.086898	\N		07cfd785-7aef-47fb-8d17-7f38ec833934	\N			0	outbound	+18556311439	\N	\N	{}	application submitted - autopay		1	\N	\N	1954
2017-08-08 17:02:55.76268+00	2017-08-17 14:35:21.04576+00	5966	completed				+18179392414		85	2017-08-08 17:02:55.760834	2017-08-08 17:04:20.956514	CAb236e255f5ea10db5ce5cdf595b0f48f	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REaf452d6c58b6262ef3470c607e85e4f5	0	inbound	+18177569010	124	6.78505516052246094	\N	new lead	q link wireless	12	\N	\N	1955
2017-05-09 19:55:11.624681+00	2017-05-17 15:41:07.224436+00	4926	completed				+12143255088		181	2017-05-09 19:55:11.622651	2017-05-09 19:58:12.6366	CA2c2f30c22c92f1d1cec5fb04439064b4	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REc084873fca7495c452f61ab07b761489	0	inbound	+18177569010	124	9.45150899887084961	\N	new lead	olaoye kolade	12	\N	\N	1956
2017-05-04 20:58:56.178899+00	2017-11-29 18:38:49.8097+00	4726	completed				+14694178306		508	2017-05-04 20:58:56.176871	2017-05-04 21:07:24.233828	CA70113e7bac30ba5850dfffa875a28dcb	\N	\N			0	inbound	+12147122250	\N	1.29722499847412109	\N	new lead	mendoza miguel 	9	\N	\N	1957
2017-05-27 17:05:01.174739+00	2017-11-29 18:38:49.813876+00	5468	completed				+14694178306		47	2017-05-27 17:05:01.172696	2017-05-27 17:05:48.498374	CA0848f7504ad87d31471b63caaa76191d	\N	125			0	inbound	+12147122250	\N	1.06318116188049316	\N	new lead	mendoza miguel 	9	\N	\N	1957
2017-05-01 13:42:20.200394+00	2017-11-29 18:38:49.807615+00	4492	completed				+18104594979		279	2017-05-01 13:42:20.19841	2017-05-01 13:46:59.245498	CAc65a1b2114906f7a3652670b3fe7e8f5	\N	133			0	inbound	+12147122250	\N	9.76895403861999512	\N	new lead	barney andy	9	\N	\N	849
2017-05-01 15:02:47.289229+00	2017-11-29 18:38:49.807797+00	4499	completed				+18104594979		352	2017-05-01 15:02:47.286086	2017-05-01 15:08:39.415382	CAd1239765d0311848ece2ee53e00b7c80	\N	105			0	inbound	+12147122250	\N	5.87103891372680664	\N	new lead	barney andy	9	\N	\N	849
2017-03-29 18:44:47.946199+00	2017-11-29 18:38:53.21312+00	3620	completed				+14404444441		56	2017-03-29 18:44:47.94453	2017-03-29 18:45:44.274724	CA62e7dc789511f2a2e6160444dc543801	\N	107			0	inbound	+12146922088	\N	3.60516095161437988	\N	new lead	cell phone   oh	9	\N	\N	853
2017-05-01 13:42:11.721877+00	2017-11-29 18:38:49.807596+00	4491	completed				+12146073988		76	2017-05-01 13:42:11.719742	2017-05-01 13:43:27.595588	CAa6a6f4540aeafb2e32bacc33052c34a4	\N	125			0	inbound	+12147122250	\N	1.6890721321105957	\N	new lead	wireless caller	9	\N	\N	857
2017-05-01 15:12:34.067855+00	2017-11-29 18:38:49.807819+00	4501	completed				+12146073988		76	2017-05-01 15:12:34.06535	2017-05-01 15:13:50.325148	CAf5c4b2a3d1834ddd892bf592ffea6e5b	\N	127			0	inbound	+12147122250	\N	2.03711390495300293	\N	new lead	wireless caller	9	\N	\N	857
2017-05-01 16:40:48.648067+00	2017-11-29 18:38:49.80798+00	4516	completed				+12146073988		57	2017-05-01 16:40:48.645281	2017-05-01 16:41:45.805349	CAcd906980cc20be5ad9352a01b5c8e77f	\N	127			0	inbound	+12147122250	\N	1.86196494102478027	\N	new lead	wireless caller	9	\N	\N	857
2016-11-02 01:57:30.96154+00	2016-11-02 01:57:30.989499+00	2536	missed	James	Ashby	oneofakind196363@yahoo.com	+18025584711		\N	2016-11-02 01:57:30.960317	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	861
2017-07-24 12:47:43.596163+00	2017-07-24 12:47:57.170769+00	5836	missed				+12026462066		14	2017-07-24 12:47:43.593748	2017-07-24 12:47:57.162935	CA7e381313b89d8e5120deaff4b855dca6	\N	\N			0	inbound	+18555343978	48	\N	\N	new lead		1	\N	\N	862
2017-04-13 18:21:48.703105+00	2017-11-29 18:38:49.804837+00	3886	completed				+12145489515		95	2017-04-13 18:21:48.70085	2017-04-13 18:23:24.079806	CA8caa8b30b1996bee36e05118aa111dcd	\N	127			0	inbound	+12147122250	\N	1.23525905609130859	\N	new lead		9	\N	\N	863
2016-09-08 22:32:15.80858+00	2016-12-10 01:04:42.413776+00	1973	completed				+19094378824		104	2016-09-08 22:32:15.806779	2016-09-08 22:33:59.319258	CA82eaa8d79557a71dbac32c66fae070f8	\N	58			0	inbound	+18552187903	\N	1.3860468864440918	null	new lead		3	\N	\N	868
2016-11-02 22:02:49.151636+00	2016-11-02 22:02:49.173107+00	2596	missed	Chrysanne	Miller	cjmiller1984@hotmail.com	+18173077998		\N	2016-11-02 22:02:49.150638	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	870
2016-11-03 19:44:10.557247+00	2016-11-03 19:44:10.584892+00	2653	missed	michelle	leblanc	mleblanc0514@gmail.com	+16022900342		\N	2016-11-03 19:44:10.556202	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	873
2017-05-27 17:05:42.614673+00	2017-11-29 18:38:49.813883+00	5469	completed				+14694178306		61	2017-05-27 17:05:42.612934	2017-05-27 17:06:43.70467	CA1a207af1dc7b4e5fd9fbfc86e90cf57e	\N	103			0	inbound	+12147122250	\N	12.4643762111663818	\N	new lead	mendoza miguel 	9	\N	\N	1957
2017-05-27 17:07:13.285525+00	2017-11-29 18:38:49.813891+00	5470	completed				+14694178306		68	2017-05-27 17:07:13.284115	2017-05-27 17:08:20.856255	CA11ce19b8894419cdca239a44228d37c3	\N	124			0	inbound	+12147122250	\N	1.07109999656677246	\N	new lead	mendoza miguel 	9	\N	\N	1957
2017-05-27 17:08:14.146617+00	2017-11-29 18:38:49.813898+00	5471	completed				+14694178306		87	2017-05-27 17:08:14.145004	2017-05-27 17:09:40.758996	CA09c4816f6db19157a1eb49fb3bce999c	\N	125			0	inbound	+12147122250	\N	2.11117696762084961	\N	new lead	mendoza miguel 	9	\N	\N	1957
2017-05-30 21:06:05.014724+00	2017-11-29 18:38:49.814132+00	5513	completed				+14694178306		54	2017-05-30 21:06:05.011714	2017-05-30 21:06:58.649807	CAf88dfc8e954bf5300a0a06fb732718ec	\N	125			0	inbound	+12147122250	\N	1.15602302551269531	\N	new lead	mendoza miguel 	9	\N	\N	1957
2017-07-11 16:32:04.889396+00	2017-08-17 14:35:21.045579+00	5757	completed				+19727652102		78	2017-07-11 16:32:04.88736	2017-07-11 16:33:22.97324	CA7448e06d6a286aeaa21bd020874715ea	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REab9791f6e42b13a25bc28d2871a73612	0	inbound	+18177569010	124	13.6863119602203369	\N	new lead	armendariz rich	12	\N	\N	1960
2017-08-19 22:38:20.935046+00	2017-08-19 22:38:20.985395+00	6110	missed	Jaymie	Whitlock	jwarlock884@gmail.com	+14044482661		\N	2017-08-19 22:38:20.932967	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	1961
2017-04-25 13:49:53.261188+00	2017-11-29 18:38:49.80654+00	4278	completed				+15748422635		65	2017-04-25 13:49:53.259838	2017-04-25 13:50:58.226387	CAc80817ed806f17db859026ee6a29b024	\N	103			0	inbound	+12147122250	\N	8.4702599048614502	\N	new lead	jeffrey ellis	9	\N	\N	1962
2017-04-20 21:18:05.406519+00	2017-11-29 18:38:53.21434+00	4165	completed				+15416887031		167	2017-04-20 21:18:05.404614	2017-04-20 21:20:52.048091	CA48a3fc3b9c4adfa73a56baf0d754539a	\N	99			0	inbound	+12146922088	\N	7.30032491683959961	\N	new lead	goss glenn	9	\N	\N	1964
2017-04-20 21:23:08.019825+00	2017-11-29 18:38:53.214347+00	4166	completed				+15416887031		203	2017-04-20 21:23:08.017566	2017-04-20 21:26:30.870734	CAbd41d542f2c13b43abf039268c49fa09	\N	99			0	inbound	+12146922088	\N	4.56204581260681152	\N	new lead	goss glenn	9	\N	\N	1964
2017-03-11 14:47:43.214809+00	2017-11-29 18:38:53.212039+00	3380	completed				+12144460011		987	2017-03-11 14:47:43.212282	2017-03-11 15:04:09.953184	CA29de7f2f4b22c463cc0dfbaa958ea6b0	\N	\N			0	inbound	+12146922088	\N	4.56539297103881836	\N	new lead	dallas       tx	9	\N	\N	1965
2017-03-14 00:40:55.174126+00	2017-11-29 18:38:53.21219+00	3414	completed				+12144460011		246	2017-03-14 00:40:55.172363	2017-03-14 00:45:00.725343	CA22d74b5fdad8b9f2d90ba6edc7592814	\N	107			0	inbound	+12146922088	\N	6.43606805801391602	\N	new lead	dallas       tx	9	\N	\N	1965
2017-04-13 18:17:14.891468+00	2017-11-29 18:38:49.804822+00	3884	completed				+12144460011		97	2017-04-13 18:17:14.888885	2017-04-13 18:18:51.919454	CA5f6802ca209772a474f710d7fa7fbe2d	\N	125			0	inbound	+12147122250	\N	1.39804482460021973	\N	new lead	dallas       tx	9	\N	\N	1965
2016-08-12 16:13:42.016777+00	2017-11-29 18:31:10.26217+00	1437	completed	Louisa	DICKERSON	DANIDICKERSON@HOTMAIL.COM	+15135604019		75	2016-08-12 16:13:42.015461	2016-08-12 16:14:56.656083		\N	16			0	outbound	+18556311490	\N	\N	null	application submitted - credit union		1	\N	\N	757
2017-04-13 18:19:01.308251+00	2017-11-29 18:38:49.80483+00	3885	completed				+12144460011		84	2017-04-13 18:19:01.306897	2017-04-13 18:20:25.430277	CA05cfbab7aa6bf50460433f285e01ae00	\N	127			0	inbound	+12147122250	\N	1.13777494430541992	\N	new lead	dallas       tx	9	\N	\N	1965
2017-03-15 22:52:40.833595+00	2017-11-29 18:38:53.212389+00	3456	completed				+12144460011		44	2017-03-15 22:52:40.831304	2017-03-15 22:53:24.55378	CAd23045cd23c291f3d54c4a31124a374f	\N	107			0	inbound	+12146922088	\N	3.49430394172668457	\N	new lead	dallas       tx	9	\N	\N	1965
2017-03-22 21:28:23.441623+00	2017-11-29 18:38:53.212798+00	3547	completed				+12144460011		475	2017-03-22 21:28:23.439505	2017-03-22 21:36:18.140423	CA09d7ef824ce84a852400425cf16dcfa5	\N	\N			0	inbound	+12146922088	\N	5.37388777732849121	\N	new lead	dallas       tx	9	\N	\N	1965
2017-03-27 15:22:46.570048+00	2017-11-29 18:38:53.212958+00	3585	completed				+12144460011		28	2017-03-27 15:22:46.568412	2017-03-27 15:23:14.171183	CAf3d36855811503a1ddc93c2123f8bba5	\N	107			0	inbound	+12146922088	\N	5.03230094909667969	\N	new lead	dallas       tx	9	\N	\N	1965
2017-03-28 22:53:09.138664+00	2017-11-29 18:38:53.213112+00	3615	completed				+12144460011		20	2017-03-28 22:53:09.134546	2017-03-28 22:53:29.066571	CA30d77c6a0d8aecee7115c756cad92253	\N	\N			0	inbound	+12146922088	\N	4.35683298110961914	\N	new lead	dallas       tx	9	\N	\N	1965
2017-03-30 22:14:49.740607+00	2017-11-29 18:38:53.213177+00	3636	completed				+12144460011		24	2017-03-30 22:14:49.738809	2017-03-30 22:15:14.173511	CAc02bd32a540c601e78226482dcee3460	\N	107			0	inbound	+12146922088	\N	8.55695295333862305	\N	new lead	dallas       tx	9	\N	\N	1965
2017-04-01 17:24:49.105234+00	2017-11-29 18:38:53.213227+00	3652	completed				+12144460011		19	2017-04-01 17:24:49.103038	2017-04-01 17:25:07.764185	CA78a075ccee0c09e597eb93372ef75ef3	\N	107			0	inbound	+12146922088	\N	9.23154401779174805	\N	new lead	dallas       tx	9	\N	\N	1965
2017-04-07 16:26:52.91725+00	2017-11-29 18:38:53.213403+00	3716	completed				+12144460011		140	2017-04-07 16:26:52.914332	2017-04-07 16:29:13.387561	CA81e299cd542161bf04f6a0864f91d2de	\N	99			0	inbound	+12146922088	\N	8.0149998664855957	\N	new lead	dallas       tx	9	\N	\N	1965
2017-04-12 17:55:56.663165+00	2017-11-29 18:38:49.804563+00	3822	completed				+12144460011		83	2017-04-12 17:55:56.661985	2017-04-12 17:57:19.713035	CA8ece2f1f2f5ecfbd43194621b6eba4c8	\N	124			0	inbound	+12147122250	\N	2.11659693717956543	\N	new lead	dallas       tx	9	\N	\N	1965
2017-04-12 00:29:02.440782+00	2017-11-29 18:38:49.804513+00	3804	completed				+12144460011		439	2017-04-12 00:29:02.438624	2017-04-12 00:36:21.281632	CA64a57834a4314310a36e4d8a595c5fd5	\N	\N			0	inbound	+12147122250	\N	19.0961580276489258	\N	new lead	dallas       tx	9	\N	\N	1965
2017-04-26 22:27:55.135038+00	2017-11-29 18:38:53.214625+00	4345	completed				+12144460011		500	2017-04-26 22:27:55.132645	2017-04-26 22:36:14.800435	CAc63b848f6f74f0cbe4097aa74d11006c	\N	105			0	inbound	+12146922088	\N	7.56058907508850098	\N	new lead	dallas       tx	9	\N	\N	1965
2017-04-12 16:55:28.472126+00	2017-11-29 18:38:49.804541+00	3815	completed				+12144460011		90	2017-04-12 16:55:28.468627	2017-04-12 16:56:58.087008	CA3f73de5d0b63ac2f245557b37a1d411f	\N	127			0	inbound	+12147122250	\N	1.03020310401916504	\N	new lead	dallas       tx	9	\N	\N	1965
2017-04-12 17:55:05.001484+00	2017-11-29 18:38:49.804555+00	3821	missed				+12144460011		49	2017-04-12 17:55:04.999236	2017-04-12 17:55:54.417091	CA9a5ab6cd834bd4a19b5ecd01e41112de	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	dallas       tx	9	\N	\N	1965
2017-04-12 17:57:20.093571+00	2017-11-29 18:38:49.804577+00	3824	completed				+12144460011		82	2017-04-12 17:57:20.09202	2017-04-12 17:58:41.832941	CA6547a6dadf2bbb188194cad9fa32b2d9	\N	127			0	inbound	+12147122250	\N	1.27044415473937988	\N	new lead	dallas       tx	9	\N	\N	1965
2017-04-12 18:06:08.397911+00	2017-11-29 18:38:49.804606+00	3828	completed				+12144460011		100	2017-04-12 18:06:08.39667	2017-04-12 18:07:48.047138	CAd192edee30de80716f18a7932f9755b3	\N	127			0	inbound	+12147122250	\N	1.18412303924560547	\N	new lead	dallas       tx	9	\N	\N	1965
2017-03-12 17:31:29.91416+00	2017-11-29 18:38:53.212053+00	3384	completed				+12144460011		29	2017-03-12 17:31:29.910865	2017-03-12 17:31:59.249365	CA02ea3da3d75a6a22aaededa4249e3880	\N	\N			0	inbound	+12146922088	\N	8.36357307434082031	\N	new lead	dallas       tx	9	\N	\N	1965
2017-03-17 01:09:28.719866+00	2017-11-29 18:38:53.212481+00	3470	completed				+12144460011		87	2017-03-17 01:09:28.717882	2017-03-17 01:10:55.597973	CA048f2e68e73787729390696e7dfd129b	\N	\N			0	inbound	+12146922088	\N	4.03336906433105469	\N	new lead		9	\N	\N	1965
2017-03-20 19:25:46.359341+00	2017-11-29 18:38:53.212671+00	3512	completed				+12144460011		67	2017-03-20 19:25:46.356968	2017-03-20 19:26:53.780919	CAac4b37778633c922556a6aa3edc53e2c	\N	\N			0	inbound	+12146922088	\N	9.25472593307495117	\N	new lead		9	\N	\N	1965
2017-04-18 14:05:29.365959+00	2017-11-29 18:38:49.805384+00	4028	missed				+12144460011		44	2017-04-18 14:05:29.362952	2017-04-18 14:06:13.33509	CA97ee7e78173ed3f8e4d2967499fe75ac	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	dallas       tx	9	\N	\N	1965
2017-04-18 14:06:03.527199+00	2017-11-29 18:38:49.805391+00	4029	completed				+12144460011		70	2017-04-18 14:06:03.524293	2017-04-18 14:07:13.824085	CA7ed15eb805515b89af9d5ba6b039131f	\N	105			0	inbound	+12147122250	\N	5.21206498146057129	\N	new lead	dallas       tx	9	\N	\N	1965
2017-04-19 23:26:56.951814+00	2017-11-29 18:38:49.805867+00	4118	completed				+12144460011		127	2017-04-19 23:26:56.948803	2017-04-19 23:29:03.933129	CAf5ef19eb606d57f006994b9094cb6b7b	\N	\N			0	inbound	+12147122250	\N	2.24531698226928711	\N	new lead	dallas       tx	9	\N	\N	1965
2017-04-25 15:25:37.539006+00	2017-11-29 18:38:49.80659+00	4287	completed				+12144460011		78	2017-04-25 15:25:37.536127	2017-04-25 15:26:55.184098	CAc8d8ce6002ba0ccb85c9baf388f66376	\N	127			0	inbound	+12147122250	\N	2.02568483352661133	\N	new lead	dallas       tx	9	\N	\N	1965
2017-04-27 15:45:17.069796+00	2017-11-29 18:38:49.806901+00	4360	completed				+12144460011		82	2017-04-27 15:45:17.06779	2017-04-27 15:46:38.853149	CA630fe79953fbd1187df7bdc0648a57e6	\N	127			0	inbound	+12147122250	\N	2.30053305625915527	\N	new lead	dallas       tx	9	\N	\N	1965
2017-04-28 20:31:11.324926+00	2017-11-29 18:38:49.807343+00	4444	missed				+12144460011		18	2017-04-28 20:31:11.322852	2017-04-28 20:31:29.277856	CA13bd4b33a5e56f95b82248bdc54f10a1	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	dallas       tx	9	\N	\N	1965
2017-05-01 19:58:59.569318+00	2017-11-29 18:38:49.808303+00	4542	missed				+12144460011		21	2017-05-01 19:58:59.566582	2017-05-01 19:59:20.185686	CA81765d61e1fe6809c50399ce8073e5fc	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	dallas       tx	9	\N	\N	1965
2017-05-06 17:03:21.486385+00	2017-11-29 18:38:49.81018+00	4804	completed				+12144460011		60	2017-05-06 17:03:21.484557	2017-05-06 17:04:21.054323	CA9efbf27ef6741b95157f4a69bd656b0c	\N	99			0	inbound	+12147122250	\N	6.69544601440429688	\N	new lead	dallas       tx	9	\N	\N	1965
2017-05-22 15:50:54.771782+00	2017-11-29 18:38:49.812543+00	5273	completed				+12144460011		59	2017-05-22 15:50:54.76989	2017-05-22 15:51:53.326369	CAbfe80274b451fda4f2d70b8134de1ac4	\N	125			0	inbound	+12147122250	\N	1.96816492080688477	\N	new lead	dallas       tx	9	\N	\N	1965
2017-05-22 17:00:12.18288+00	2017-11-29 18:38:49.812608+00	5284	completed				+12144460011		141	2017-05-22 17:00:12.179708	2017-05-22 17:02:33.440956	CA8ad20c792411cc6af02d1e6f6ac21c7c	\N	133			0	inbound	+12147122250	\N	5.23494601249694824	\N	new lead	dallas       tx	9	\N	\N	1965
2017-05-29 18:38:39.832645+00	2017-11-29 18:38:49.813954+00	5482	completed				+12144460011		80	2017-05-29 18:38:39.830754	2017-05-29 18:40:00.204376	CA9627e4a5f19791f82922b3ba4c48406d	\N	107			0	inbound	+12147122250	\N	1.37804889678955078	\N	new lead	dallas       tx	9	\N	\N	1965
2017-03-08 20:04:41.627083+00	2017-11-29 18:38:53.211882+00	3346	completed				+12144460011		149	2017-03-08 20:04:41.62472	2017-03-08 20:07:11.105291	CA0efe47920aa7adb5487543dd957ada7d	\N	\N			0	inbound	+12146922088	\N	11.4424309730529785	\N	new lead	dallas       tx	9	\N	\N	1965
2017-03-08 21:41:35.966474+00	2017-11-29 18:38:53.211896+00	3348	completed				+12144460011		41	2017-03-08 21:41:35.964246	2017-03-08 21:42:16.793084	CA6843759479bcbad7d62bf4bbce6f5439	\N	\N			0	inbound	+12146922088	\N	9.75350379943847656	\N	new lead	dallas       tx	9	\N	\N	1965
2017-03-09 16:30:40.159479+00	2017-11-29 18:38:53.211946+00	3356	completed				+12144460011		338	2017-03-09 16:30:40.156281	2017-03-09 16:36:18.288687	CAf80c692f8755a31f30a0109ed5c7a2a3	\N	99			0	inbound	+12146922088	\N	9.43619990348815918	\N	new lead	dallas       tx	9	\N	\N	1965
2017-03-09 20:46:54.358048+00	2017-11-29 18:38:53.211997+00	3366	completed				+12144460011		311	2017-03-09 20:46:54.356051	2017-03-09 20:52:05.625976	CA15d2d11da75135943562acbbc25b2d4f	\N	107			0	inbound	+12146922088	\N	7.9773859977722168	\N	new lead	dallas       tx	9	\N	\N	1965
2017-03-14 17:18:51.434587+00	2017-11-29 18:38:53.212225+00	3420	completed				+12144460011		348	2017-03-14 17:18:51.432258	2017-03-14 17:24:39.462001	CA9f6938a0f862271b25b74eceb7a3d90e	\N	107			0	inbound	+12146922088	\N	4.9209442138671875	\N	new lead	dallas       tx	9	\N	\N	1965
2017-04-29 21:21:40.231494+00	2017-04-29 21:28:38.907015+00	4480	completed				+16786983170		418	2017-04-29 21:21:40.229634	2017-04-29 21:28:38.27803	CAde6875d0c9dad9ed8d4384cdf1dcbeae	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE92051d3e1eb744443e21d533a094d224	0	inbound	+18557240606	49	3.66853094100952148	\N	new lead		1	\N	\N	874
2017-11-13 22:30:51.814308+00	2017-11-13 22:38:27.273911+00	7045	completed				+18174702829		455	2017-11-13 22:30:51.812118	2017-11-13 22:38:27.271688	CA5391a80ecd145820d7e1e55f4944790e	\N	146			0	inbound	+18177569010	124	350.055494070053101	\N	new lead	euless  tx	12	\N	\N	875
2017-07-11 14:31:50.800229+00	2017-07-11 14:35:24.40484+00	5754	completed				+16786156732		213	2017-07-11 14:31:50.798278	2017-07-11 14:35:23.628817	CAe5c05106209af4d8fdf651fb23ebbf06	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REa6b6a8fd900c3c82a92ac358e55d165d	0	inbound	+17704009016	132	9.40871715545654297	\N	new lead		13	\N	\N	877
2017-07-11 16:25:09.686857+00	2017-07-11 16:26:17.801809+00	5756	completed				+16786156732		67	2017-07-11 16:25:09.683356	2017-07-11 16:26:16.335706	CAc321c1b4fd54603a24929a4f5c772ffc	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE4cf5ef59ea7d707eb68cad7b9e4e837e	0	inbound	+17704009016	132	10.5456829071044922	\N	new lead		13	\N	\N	877
2017-12-07 20:59:16.786836+00	2017-12-07 21:18:19.992134+00	7693	completed				+18327054709		1140	2017-12-07 20:59:16.78516	2017-12-07 21:18:16.857781	CA8fecef091ba51560d61f85377848cebb	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REc38c1b9be2feeac6baa95b36b5eb2b51	0	inbound	+18558645656	136	2.42136597633361816	\N	new lead		15	\N	\N	879
2017-03-14 18:39:35.351904+00	2017-11-29 18:38:53.212232+00	3421	completed				+12144460011		31	2017-03-14 18:39:35.349469	2017-03-14 18:40:06.161225	CAbfafe9f56ef1c93f67f77686d7c31b53	\N	107			0	inbound	+12146922088	\N	7.25743222236633301	\N	new lead	dallas       tx	9	\N	\N	1965
2017-03-14 21:42:31.464933+00	2017-11-29 18:38:53.212296+00	3433	completed				+12144460011		32	2017-03-14 21:42:31.462876	2017-03-14 21:43:03.909297	CAfb86429e56ba75f69d735bdc6e26fc98	\N	\N			0	inbound	+12146922088	\N	6.48283004760742188	\N	new lead	dallas       tx	9	\N	\N	1965
2017-03-14 21:45:16.314228+00	2017-11-29 18:38:53.21231+00	3435	missed				+12144460011		37	2017-03-14 21:45:16.311398	2017-03-14 21:45:53.118798	CA9191681844244bfc2f5aa10dd667d327	\N	\N			0	inbound	+12146922088	\N	24.8192639350891113	\N	new lead	dallas       tx	9	\N	\N	1965
2017-03-16 08:52:05.56949+00	2017-11-29 18:38:53.212404+00	3458	missed				+12144460011		80	2017-03-16 08:52:05.567067	2017-03-16 08:53:25.397974	CA45d289cc393644653f0c1dae3468466f	\N	\N		https://api.twilio.com/2010-04-01/Accounts/AC5422b9b221417a7a84556a92f6edc492/Recordings/REf334a37ec3ac1b3270f4c0f367c4be9c	0	inbound	+12146922088	\N	16.3000741004943848	\N	new lead	dallas       tx	9	\N	\N	1965
2017-03-17 22:03:18.726843+00	2017-11-29 18:38:53.212552+00	3484	completed				+12144460011		109	2017-03-17 22:03:18.72291	2017-03-17 22:05:07.850205	CAfba26e1aa0ed395050a7f3b51a5797f0	\N	107			0	inbound	+12146922088	\N	5.15166091918945312	\N	new lead		9	\N	\N	1965
2017-03-17 22:54:34.449851+00	2017-11-29 18:38:53.212559+00	3485	completed				+12144460011		18	2017-03-17 22:54:34.447367	2017-03-17 22:54:52.600661	CAdf88f3baa9309832ab3df063fa4c93f1	\N	\N			0	inbound	+12146922088	\N	3.90261220932006836	\N	new lead		9	\N	\N	1965
2017-03-17 22:55:37.010273+00	2017-11-29 18:38:53.212566+00	3486	completed				+12144460011		26	2017-03-17 22:55:37.008978	2017-03-17 22:56:02.965836	CA5c4efa9133aefd83d796fc5a85a51e99	\N	\N			0	inbound	+12146922088	\N	6.05490779876708984	\N	new lead		9	\N	\N	1965
2017-03-17 23:28:24.999785+00	2017-11-29 18:38:53.212573+00	3487	completed				+12144460011		16	2017-03-17 23:28:24.997944	2017-03-17 23:28:41.0585	CAb1067a9adf0e5685bf3881e1971959a7	\N	\N			0	inbound	+12146922088	\N	6.07303285598754883	\N	new lead		9	\N	\N	1965
2017-03-17 23:37:53.145737+00	2017-11-29 18:38:53.212587+00	3489	completed				+12144460011		18	2017-03-17 23:37:53.143787	2017-03-17 23:38:10.795114	CAd21afd954bbe41db1be929311e6e0344	\N	\N			0	inbound	+12146922088	\N	3.09711408615112305	\N	new lead		9	\N	\N	1965
2017-03-18 00:02:53.782686+00	2017-11-29 18:38:53.212594+00	3490	completed				+12144460011		490	2017-03-18 00:02:53.780405	2017-03-18 00:11:04.131708	CA35e2396125429db301e677ce72df64c2	\N	99			0	inbound	+12146922088	\N	4.94418096542358398	\N	new lead		9	\N	\N	1965
2017-03-19 00:49:33.041715+00	2017-11-29 18:38:53.212622+00	3500	completed				+12144460011		14	2017-03-19 00:49:33.038095	2017-03-19 00:49:46.737544	CA588773caa88b85492583d03d46f5cc63	\N	107			0	inbound	+12146922088	\N	11.1399791240692139	\N	new lead		9	\N	\N	1965
2017-03-23 23:18:45.872543+00	2017-11-29 18:38:53.212888+00	3568	completed				+12144460011		216	2017-03-23 23:18:45.870622	2017-03-23 23:22:21.912288	CAbd90a172d8e85bfb6a8f5ca68e558e4d	\N	\N			0	inbound	+12146922088	\N	1.67026305198669434	\N	new lead	dallas       tx	9	\N	\N	1965
2017-03-25 15:39:04.463537+00	2017-11-29 18:38:53.212923+00	3578	completed				+12144460011		72	2017-03-25 15:39:04.461392	2017-03-25 15:40:16.539113	CA4658b176c3c76d432e4c7dd63dea1a92	\N	\N			0	inbound	+12146922088	\N	4.81928205490112305	\N	new lead	dallas       tx	9	\N	\N	1965
2017-03-27 16:39:10.196397+00	2017-11-29 18:38:53.212979+00	3589	completed				+12144460011		652	2017-03-27 16:39:10.194723	2017-03-27 16:50:01.80857	CAa42ea2660f182d2e2ca42795e60dc26b	\N	\N			0	inbound	+12146922088	\N	4.02930617332458496	\N	new lead	dallas       tx	9	\N	\N	1965
2017-04-01 19:54:51.220137+00	2017-11-29 18:38:53.213241+00	3655	completed				+12144460011		121	2017-04-01 19:54:51.218191	2017-04-01 19:56:52.150535	CA1c767f6d7082cd3a93a2b7c8bc7fba50	\N	107			0	inbound	+12146922088	\N	5.04650712013244629	\N	new lead	dallas       tx	9	\N	\N	1965
2017-04-01 22:18:38.405383+00	2017-11-29 18:38:53.213248+00	3661	completed				+12144460011		260	2017-04-01 22:18:38.402923	2017-04-01 22:22:57.933465	CAaf7243aa1c0573d1f938d5bf9cf88a06	\N	\N			0	inbound	+12146922088	\N	5.03393697738647461	\N	new lead	dallas       tx	9	\N	\N	1965
2016-11-10 21:57:29.306455+00	2016-11-10 22:24:14.227243+00	2853	completed				+19729659790		1601	2016-11-10 21:57:29.30469	2016-11-10 22:24:10.084694	CA71fc0b731dea5d55389ea8f03310486d	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REf2574aa79c695a76970de5a020f75f5a	0	inbound	+18557240606	49	1.99299001693725586	null	new lead		1	\N	\N	1968
2016-11-10 22:24:57.490675+00	2016-11-10 22:29:17.2938+00	2855	completed				+19729659790		259	2016-11-10 22:24:57.489308	2016-11-10 22:29:16.678567	CA7736b78e33da2a7726ad1700428830d8	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REa41c404bbdb8e441992753fd5b59af94	0	inbound	+18557240606	49	2.35897397994995117	null	new lead		1	\N	\N	1968
2016-06-27 20:44:03.952696+00	2017-11-29 18:32:13.82066+00	553	completed	Unknown			+13308899597		28	2016-06-27 20:44:03.951642	2016-06-27 20:44:32.073734	CA11f2c47e14b88974909f2869110f7f78	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REa360ed5405e73239f18938a209aad0ee	0	inbound	+18555983683	\N	13.7979559898376465	null	new lead		1	\N	\N	1969
2016-06-28 15:27:44.149439+00	2017-11-29 18:32:13.820688+00	584	completed	Unknown			+13308899597		24	2016-06-28 15:27:44.148295	2016-06-28 15:28:08.592622	CA51fe3854871248ce1ac147bc5f6bba64	\N	\N			0	inbound	+18555983683	\N	13.6279349327087402	null	new lead		1	\N	\N	1969
2016-08-02 20:50:11.832119+00	2017-11-29 18:31:10.262045+00	1152	completed	Mark	Reiter	markreiter71@gmail.com	+15137675602		58	2016-08-02 20:50:11.830802	2016-08-02 20:51:10.085151		\N	16			0	outbound	+18556311490	\N	\N	null	application submitted - credit union		1	\N	\N	8
2016-07-28 16:46:25.80055+00	2017-11-29 18:31:10.261727+00	1003	completed	Latonia	Whitaker		+15132009759		222	2016-07-28 16:46:25.799211	2016-07-28 16:50:07.605606	CAf8a758dbc53eb282f5ab3ef503eb6b2b	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE77991c1b2c0b81b70d4c71a0394347bd	0	inbound	+18556311490	\N	27.447577953338623	null	application submitted - autopay		1	\N	\N	20
2016-08-16 13:38:08.599207+00	2017-11-29 18:31:10.262328+00	1539	completed	Mark	Reiter	markreiter71@gmail.com	+15137675602		243	2016-08-16 13:38:08.59816	2016-08-16 13:42:11.359176		\N	16			0	outbound	+18556311490	\N	\N	null	application submitted - credit union		1	\N	\N	8
2017-12-26 18:21:02.506087+00	2017-12-26 18:25:44.470909+00	8107	completed				+14045424087		281	2017-12-26 18:21:02.503794	2017-12-26 18:25:43.691296	CA296f83dd8b28fc8fa3eb668927128204	\N	157		https://api.twilio.com/2010-04-01/Accounts/ACbd7756819f4882feb347788ad7959655/Recordings/RE383ad622fb9c3bd6f482c093bdc12765	0	inbound	+17706597466	137	7.75948500633239746	\N	new lead		14	\N	\N	937
2017-12-27 13:47:17.110576+00	2017-12-27 13:47:41.648608+00	8114	missed				+14045424087		25	2017-12-27 13:47:17.108779	2017-12-27 13:47:41.636398	CA8a1e9cc4eed59dd2c5a857e21e53286b	\N	\N			0	inbound	+17706597466	137	\N	\N	new lead		14	\N	\N	937
2017-12-27 13:48:10.103344+00	2017-12-27 13:48:34.567106+00	8115	missed				+14045424087		24	2017-12-27 13:48:10.101752	2017-12-27 13:48:34.559293	CA851b566bf12fb1b8b0fcca25daf5477b	\N	\N			0	inbound	+17706597466	137	\N	\N	new lead		14	\N	\N	937
2017-12-27 13:55:26.324932+00	2017-12-27 13:55:50.792011+00	8116	missed				+14045424087		24	2017-12-27 13:55:26.323093	2017-12-27 13:55:50.782238	CA0777aa2aa691d51a766e879fe774c804	\N	\N			0	inbound	+17706597466	137	\N	\N	new lead		14	\N	\N	937
2016-08-23 13:56:13.316275+00	2017-01-27 21:12:23.813561+00	1666	completed				+15138822524		72	2016-08-23 13:56:13.313515	2016-08-23 13:57:25.579101		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	939
2016-08-22 22:33:10.411693+00	2017-11-29 18:31:10.262553+00	1657	missed				+15138822524		18	2016-08-22 22:33:10.408651	2016-08-22 22:33:28.76682	CAcfd5eba6933f1cdd1b1b5c048fb44672	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE80a2d7706c4554d8943fc2b1d78064b8	0	inbound	+18556311490	\N	\N	null	general interest		1	\N	\N	939
2017-02-10 15:06:20.698143+00	2017-11-29 18:31:10.262645+00	3160	completed	Scott	Jones	lahjones@fuse.net	+15132319341		69	2017-02-10 15:06:20.696536	2017-02-10 15:07:29.853438		\N	16			0	outbound	+18556311490	\N	\N	null	application submitted - credit union		1	\N	\N	599
2017-08-14 21:07:22.262368+00	2017-08-14 21:07:59.601719+00	6026	completed				+14702725462		36	2017-08-14 21:07:22.260033	2017-08-14 21:07:58.417954	CAb6f8045901ad12315306af9d31c9c9e3	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REdc3d1eab8ff89687d3ffe5c0074bf1fe	0	inbound	+17704009016	132	27.1055231094360352	\N	new lead		13	\N	\N	962
2017-02-01 06:06:55.466515+00	2017-02-08 14:10:14.614726+00	3145	missed	FOWZIA	HAKYM	fhakym@gmail.com	+17135917723		\N	2017-02-01 06:06:55.46535	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	application submitted - autopay		1	\N	\N	961
2017-10-31 20:57:26.892952+00	2017-10-31 20:59:59.337375+00	6885	completed	Jarwaski	Pounds	jarwaskipounds80@gmail.com	+17622435672		140	2017-10-31 20:57:26.891407	2017-10-31 20:59:57.982147	CA1db97898992df5613a1287db4ed1bf64	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE91ea14c723b10a87de9abb49f252f6f3	1	outbound	+17704009016	\N	10.9352569580078125	{}	new lead		13	\N	\N	963
2017-06-27 23:48:52.420474+00	2017-06-27 23:48:52.474263+00	5674	missed	elicia 	rivera	eliciarivera83@gmail.com	+14075086713		\N	2017-06-27 23:48:52.418915	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	975
2017-03-28 16:10:29.851719+00	2017-11-29 18:31:33.775622+00	3607	missed				+12167028588		18	2017-03-28 16:10:29.84947	2017-03-28 16:10:48.329115	CA0c181f338ff8d769f700d9a91825a45b	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE51f3e1322b80121fcb27bcde55b6ed3f	0	inbound	+18556311350	\N	\N	\N	application submitted - credit union		1	\N	\N	33
2017-08-22 17:53:08.445849+00	2017-08-22 17:54:33.611778+00	6136	completed				+18173574904		84	2017-08-22 17:53:08.444184	2017-08-22 17:54:32.879872	CAca31827e3230009a01da673d4b632de0	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REbb098035698ac3071dca1e32c8b0c8ea	0	inbound	+18177569010	124	49.0429220199584961	\N	new lead	rxinnovation	12	\N	\N	991
2016-10-07 10:56:55.393855+00	2016-12-09 17:10:17.413585+00	2226	completed				+19083398225		31	2016-10-07 10:56:55.392077	2016-10-07 10:57:26.534798	CA2384fc8e439b7d312e3d2bf2e6bb0a81	\N	27			0	inbound	+18552716856	\N	6.85884714126586914	null	new lead		3	\N	\N	995
2016-10-07 13:20:17.895018+00	2016-12-09 17:10:17.413592+00	2227	completed				+19083398225		206	2016-10-07 13:20:17.893421	2016-10-07 13:23:43.520976	CAa107f0e1d68dbbcaa2e95a9e2d71b943	\N	27			0	inbound	+18552716856	\N	6.53667712211608887	null	new lead		3	\N	\N	995
2016-11-01 17:09:43.223057+00	2016-11-01 17:13:22.665758+00	2479	completed				+18176925754		218	2016-11-01 17:09:43.221902	2016-11-01 17:13:21.446601	CAcd7598fa3929c5f3e07ca703443fb99f	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE76d1f4cd5a62a58a68d42377ccce0cf6	0	inbound	+18557240606	49	2.03395509719848633	null	new lead		1	\N	\N	998
2016-11-03 13:50:12.706169+00	2016-11-03 13:50:12.737095+00	2621	missed	Carlos	Antoline	cantoline@hotmail.com	+18176925754		\N	2016-11-03 13:50:12.7049	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	998
2017-12-06 17:09:36.431316+00	2017-12-06 17:30:53.230174+00	7643	completed				+15617197525		1273	2017-12-06 17:09:36.429652	2017-12-06 17:30:49.482244	CA69c5ad980d611f104ae514d7d3fcbb44	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE8e0f511d90dd95c547f5a372116eaefe	0	inbound	+18558645656	136	2.62736082077026367	\N	new lead		15	\N	\N	999
2016-11-25 17:23:13.698814+00	2016-11-25 17:23:13.7297+00	2979	missed	Robert	Kincaid	kincaidlaw@yahoo.com	+19728674368		\N	2016-11-25 17:23:13.697552	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	1002
2017-04-18 17:20:25.592455+00	2017-11-29 18:47:25.068115+00	4046	completed				+12542142703		228	2017-04-18 17:20:25.590761	2017-04-18 17:24:13.918765	CAa255d1717016e56020a3951a6b0c3019	\N	115		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE4368c80050f320419637bbf344b4ecb4	0	inbound	+19728330116	\N	18.366365909576416	\N	new lead	cell phone   tx	8	\N	\N	1004
2017-08-16 16:40:48.326602+00	2017-08-16 16:43:19.563176+00	6050	completed				+17066125593		151	2017-08-16 16:40:48.324848	2017-08-16 16:43:19.549863	CA08e4dc614093eb56364bb12edecde77e	\N	154			0	inbound	+17707665699	134	1.86944699287414551	\N	new lead		13	\N	\N	1006
2017-06-23 21:05:16.866097+00	2017-06-24 13:44:45.085805+00	5646	completed				+14044845487		71	2017-06-23 21:05:16.863679	2017-06-23 21:06:27.439212	CA5e73afda4379ed76865b7ad5b57133be	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE461b8a9301edfe71432461226f843c08	0	inbound	+17704009016	132	17.1864287853240967	\N	new lead		13	\N	\N	1010
2016-08-03 21:41:11.409807+00	2017-11-29 18:31:37.368596+00	1190	completed				+16612363907		1430	2016-08-03 21:41:11.408091	2016-08-03 22:05:01.015892	CAb5202c0fd3c61042df7b43c6785a9e67	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE8245d5853f9d81b761c0b27915242c2a	0	inbound	+18555472453	\N	7.84299516677856445	null	autopay declined		1	\N	\N	296
2016-08-03 16:48:31.12886+00	2017-11-29 18:31:37.368554+00	1175	missed				+16615330613		15	2016-08-03 16:48:31.127967	2016-08-03 16:48:46.606045		\N	\N			0	outbound	+18555472453	\N	\N	null	new lead		1	\N	\N	1031
2016-08-08 16:29:42.191684+00	2017-11-29 18:31:37.36874+00	1329	completed				+16618167715		854	2016-08-08 16:29:42.189247	2016-08-08 16:43:56.424641	CA524f507a6a4d0dd3271efc1ee821c0cf	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE3c5be3b762d50ebb4a8b18b8aa8324c7	0	inbound	+18555472453	\N	8.8715968132019043	null	application submitted - credit union		1	\N	\N	4
2016-08-09 01:11:10.402867+00	2017-11-29 18:31:37.368768+00	1351	missed				+16618103419		16	2016-08-09 01:11:10.400566	2016-08-09 01:11:25.918907	CA59bc2bc3093221dbc29e9552fd256e1c	\N	\N			0	inbound	+18555472453	\N	\N	null	general interest		1	\N	\N	70
2016-08-12 18:52:58.82576+00	2017-11-29 18:31:37.368896+00	1451	missed				+16614920298		22	2016-08-12 18:52:58.824311	2016-08-12 18:53:20.622557	CAbd4727cdf261ddb8af199b5168f4911a	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE737adbf7a1348bc2f302dbcb21c30fbd	0	inbound	+18555472453	\N	\N	null	general interest		1	\N	\N	192
2016-08-23 19:30:38.609173+00	2017-11-29 18:31:37.369075+00	1684	completed	Jamie Sandoval; Jeremiah Soval;  and Joseph Remeral	Sandoval all the same person		+16614448507		302	2016-08-23 19:30:38.606395	2016-08-23 19:35:40.721223	CAc76ac445f0a19e8fb96804e08a0cdbde	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REb077fa5f2ee9e6e326dd0840881bf086	0	inbound	+18555472453	\N	5.64541912078857422	null	general interest		1	\N	\N	365
2016-10-05 18:22:45.13082+00	2016-12-10 01:00:18.568455+00	2190	missed				+16192632124		33	2016-10-05 18:22:45.129484	2016-10-05 18:23:17.838399	CA2c20c671c12dbc1e068862fa26b111ba	\N	\N			0	inbound	+18556775511	\N	\N	null	new lead		3	\N	\N	1040
2017-05-12 20:51:46.04307+00	2017-11-29 18:38:49.811373+00	5043	completed				+12817570736		98	2017-05-12 20:51:46.041402	2017-05-12 20:53:24.353774	CAd8563cb7899fa2dc6e8c32cb32b5f004	\N	127			0	inbound	+12147122250	\N	1.33114099502563477	\N	new lead	cell phone   tx	9	\N	\N	1056
2017-05-12 21:18:09.12602+00	2017-11-29 18:38:49.811387+00	5045	completed				+12817570736		60	2017-05-12 21:18:09.123236	2017-05-12 21:19:08.78554	CAd1da35fd152bc9e80b0eca3c1cc90376	\N	125			0	inbound	+12147122250	\N	1.9239649772644043	\N	new lead	cell phone   tx	9	\N	\N	1056
2016-06-28 15:32:58.411636+00	2017-11-29 18:32:13.820695+00	586	completed	Unknown			+13308899597		28	2016-06-28 15:32:58.410359	2016-06-28 15:33:26.560825	CA8d990443e954d818af1c0c6fcf8164d3	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE815c4e8628dc23ecff672fbc877b83de	0	inbound	+18555983683	\N	4.47716188430786133	null	new lead		1	\N	\N	1969
2016-06-28 15:38:31.557508+00	2017-11-29 18:32:13.820707+00	587	completed	Unknown			+13308899597		23	2016-06-28 15:38:31.556474	2016-06-28 15:38:54.726921	CA3f4b44cbb029a19e02bc5bec38840069	\N	\N			0	inbound	+18555983683	\N	13.9360949993133545	null	new lead		1	\N	\N	1969
2016-06-28 17:07:31.433205+00	2016-06-28 17:08:13.364128+00	595	completed				+13308899597		37	2016-06-28 17:07:31.431753	2016-06-28 17:08:13.362674	CAece71a120ed9ce5327b1d9cb30f91848	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.33744215965270996	{}	new lead		1	\N	\N	1969
2016-06-27 20:40:16.579919+00	2016-06-27 20:41:28.745183+00	551	completed				+13308899597		68	2016-06-27 20:40:16.57886	2016-06-27 20:41:28.743821	CA8b03e2bba3c938458950ad43e94262e7	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.47746801376342773	{}	new lead		1	\N	\N	1969
2016-06-27 19:43:02.219357+00	2017-11-29 18:32:13.820631+00	546	completed	Unknown			+13308899597		26	2016-06-27 19:43:02.218385	2016-06-27 19:43:28.104109	CAbc2954cd911c4a5a1615d83c6f332ae9	\N	\N			0	inbound	+18555983683	\N	14.0091381072998047	null	new lead		1	\N	\N	1969
2016-06-27 17:16:09.244662+00	2017-11-29 18:32:13.820617+00	528	completed	Unknown			+13308899597		89	2016-06-27 17:16:09.242917	2016-06-27 17:17:38.096647	CA3eb2f51479fbee43e458a0c40d0d1d26	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE257aed514e2624c89b19d86e0f62b77a	0	inbound	+18555983683	\N	3.3923490047454834	null	new lead		1	\N	\N	1969
2016-06-28 15:22:57.725533+00	2017-11-29 18:32:13.820681+00	582	completed	Unknown			+13308899597		25	2016-06-28 15:22:57.72352	2016-06-28 15:23:22.839504	CA3c08b8e7272dec3f1f3a08657dc099b2	\N	\N			0	inbound	+18555983683	\N	13.7498800754547119	null	new lead		1	\N	\N	1969
2017-06-26 16:35:51.492352+00	2017-06-26 16:37:05.127868+00	5661	completed				+18035462731		72	2017-06-26 16:35:51.490607	2017-06-26 16:37:03.764933	CA09e9d3bc4e36430b9a00dde2b2fd9b52	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE356bba5445f927dcdb4d7eb7e9d62b4f	0	inbound	+17704009016	132	15.2338352203369141	\N	new lead		13	\N	\N	1972
2017-06-16 20:23:32.345662+00	2017-06-16 20:24:58.702454+00	5594	missed				+18035462731		54	2017-06-16 20:23:32.34294	2017-06-16 20:24:26.560437	CA9aff43ee87394cccd5b261ff7e836e8f	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REf49d1a0ba2463613e6842e9f5bd467d2	0	inbound	+17704009016	132	63.262282133102417	\N	new lead		13	\N	\N	1972
2017-06-16 20:27:21.348348+00	2017-06-24 13:44:45.085675+00	5595	completed				+18035462731		111	2017-06-16 20:27:21.344844	2017-06-16 20:29:12.629184	CA9dd2848948d97861c0c195715f1fa98f	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REbc5e33bfa41e1ddcefd6f7f778d0bd35	0	inbound	+17704009016	132	15.0753560066223145	\N	new lead		13	\N	\N	1972
2017-12-15 17:41:01.062545+00	2017-12-15 17:42:27.376074+00	7897	completed	Steve	Neu	steveneu@live.com	+18035462731		75	2017-12-15 17:41:01.061035	2017-12-15 17:42:26.065088	CAb5f204ed49f20d87583b04497792130e	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REae32eae606cc6e90ebcc87370bd4db24	1	outbound	+17704009016	\N	10.1102631092071533	{}	new lead		13	\N	\N	1972
2017-06-16 20:20:02.207611+00	2017-06-24 13:44:45.085643+00	5593	completed				+18035462731		200	2017-06-16 20:20:02.205595	2017-06-16 20:23:22.655702	CAaba41414af846fe84458f2addd307cc5	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE9369d72648d1008ab6780771a33e363e	0	inbound	+17704009016	132	13.5216579437255859	\N	new lead		13	\N	\N	1972
2017-06-16 20:29:20.520897+00	2017-06-24 13:44:45.085684+00	5596	completed				+18035462731		514	2017-06-16 20:29:20.519505	2017-06-16 20:37:54.635829	CA77d4678736034de8b7274ae8ac81df98	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REc5fdd4569fe33d085137cf3f34c84306	0	inbound	+17704009016	132	378.227853059768677	\N	new lead		13	\N	\N	1972
2017-08-12 00:33:42.253299+00	2017-08-12 00:34:04.328171+00	5997	completed				+18035462731		22	2017-08-12 00:33:42.251541	2017-08-12 00:34:04.31726	CA6771541e3e14743fb86b4c03477f94d9	\N	154			0	inbound	+17707665699	134	1.58112502098083496	\N	new lead		13	\N	\N	1972
2017-08-15 19:02:06.764092+00	2017-08-15 19:06:49.632908+00	6038	completed				+17702569611		282	2017-08-15 19:02:06.761255	2017-08-15 19:06:48.498775	CA94942a37eb0a032dd991218521d2e29b	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE6179a3081302d730bab0352481479eaa	0	inbound	+17704009016	132	13.3630139827728271	\N	new lead		13	\N	\N	1973
2016-06-28 14:43:47.948647+00	2016-12-09 17:06:57.83037+00	579	completed	Unknown			+12129945096		171	2016-06-28 14:43:47.947267	2016-06-28 14:46:39.021405	CA8cb781bb0c85caff4ba131f7f138d7c3	\N	20			0	inbound	+18552000227	\N	2.58534407615661621	null	new lead		3	\N	\N	1974
2017-10-17 12:50:05.650094+00	2017-10-17 12:50:28.79842+00	6727	missed				+17702941776		23	2017-10-17 12:50:05.647409	2017-10-17 12:50:28.787337	CAb241ad78c9891e7492f6fe61ffa15dc8	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE3ee241f0e5fcb8dc9e430141bea42924	0	inbound	+17707665732	133	\N	\N	new lead		13	\N	\N	1975
2017-10-17 13:19:41.081132+00	2017-10-17 13:25:30.570128+00	6728	completed				+17702941776		349	2017-10-17 13:19:41.078424	2017-10-17 13:25:30.549912	CA6f7d865890dc1f07cf3c2fe7add648f0	\N	150			0	inbound	+17707665732	133	15.6891438961029053	\N	new lead		13	\N	\N	1975
2017-05-22 16:41:01.228655+00	2017-05-22 16:42:40.076762+00	5283	completed				+16824336035		98	2017-05-22 16:41:01.226558	2017-05-22 16:42:39.316941	CA7510970bf374e5bddf1ac455a3300a4c	\N	131		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE9e1f897ce1f5f142367fd59f5b62a473	0	inbound	+18172104002	126	19.6003551483154297	\N	new lead	chapel linda	12	\N	\N	1977
2017-05-22 19:58:33.900689+00	2017-05-22 19:59:14.568121+00	5299	completed				+16824336035		40	2017-05-22 19:58:33.898757	2017-05-22 19:59:13.764976	CAd4900aa52743f6196b7a91c4bafd7490	\N	132		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REf01aab4cf3d6dc6f8a97f7d623c5b4d9	0	inbound	+18172104002	126	5.46305990219116211	\N	new lead	chapel linda	12	\N	\N	1977
2016-09-01 20:12:16.453687+00	2016-12-10 01:01:00.199872+00	1846	completed				+16195564820		209	2016-09-01 20:12:16.45245	2016-09-01 20:15:45.440945	CAebb89805117b11157653d77f208e8561	\N	57			0	inbound	+18557860909	\N	9.29017305374145508	null	new lead		3	\N	\N	1982
2017-05-16 00:17:17.437387+00	2017-05-16 00:39:30.608389+00	5096	missed				+13308772550		39	2017-05-16 00:17:17.43524	2017-05-16 00:17:56.509279	CAe3958c492f313cf4d2b819205d7cdf2b	\N	\N			0	inbound	+18177569010	124	1310.42526912689209	\N	new lead	gurak michael  	12	\N	\N	1989
2017-05-15 23:36:41.33214+00	2017-08-17 14:35:21.045198+00	5095	completed				+13308772550		87	2017-05-15 23:36:41.330078	2017-05-15 23:38:08.629498	CA2bb310dec332efb9e7737120727f3829	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REcdec2c913771d8bb62e292bc037a06a4	0	inbound	+18177569010	124	52.8518340587615967	\N	new lead	gurak michael  	12	\N	\N	1989
2017-05-10 21:47:03.403511+00	2017-11-29 18:38:49.811027+00	4988	completed				+19158330080		74	2017-05-10 21:47:03.401429	2017-05-10 21:48:17.549874	CAaa860cea6509dd263c001e38b70a0020	\N	125			0	inbound	+12147122250	\N	1.10119199752807617	\N	new lead	allstate insura	9	\N	\N	1990
2016-11-01 22:53:15.914538+00	2016-11-01 22:53:15.940188+00	2517	missed	Jonathan	Reeder	j0n8than@gmail.com	+14694712802		\N	2016-11-01 22:53:15.913453	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	1992
2017-04-14 13:15:03.430953+00	2017-11-29 18:31:56.600352+00	3906	missed				+15703423916		37	2017-04-14 13:15:03.427665	2017-04-14 13:15:40.17503	CA16513e52733d2f1a2db6cc48826b02ed	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REc6c40fc501178ea49459b84906bcf1c0	0	inbound	+18556311397	\N	\N	\N	do not contact		1	\N	\N	289
2017-05-12 21:19:06.542616+00	2017-11-29 18:38:49.811394+00	5046	completed				+12817570736		82	2017-05-12 21:19:06.54142	2017-05-12 21:20:28.193114	CA35e37c18aa6991104125f839cea28018	\N	124			0	inbound	+12147122250	\N	2.18646001815795898	\N	new lead	cell phone   tx	9	\N	\N	1056
2017-05-12 21:22:59.199682+00	2017-11-29 18:38:49.811402+00	5047	completed				+12817570736		64	2017-05-12 21:22:59.197239	2017-05-12 21:24:03.31882	CAba78649f5fc59ac93a0c0322ee348064	\N	133			0	inbound	+12147122250	\N	5.08796095848083496	\N	new lead	cell phone   tx	9	\N	\N	1056
2017-07-06 22:41:56.961967+00	2017-07-06 22:43:06.819753+00	5726	completed				+13126015501		69	2017-07-06 22:41:56.959534	2017-07-06 22:43:05.678009	CAb4516fb80b766723e2da755a4d17e8d1	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE700415a93d768ac257ba87e350a67497	0	inbound	+18177569010	124	36.1870059967041016	\N	new lead	cars.com	12	\N	\N	1058
2017-09-03 16:08:22.847799+00	2017-09-03 16:09:18.64689+00	6244	missed				+16823654958		56	2017-09-03 16:08:22.845769	2017-09-03 16:09:18.635411	CA0f0586b0cf31ff4ee7d10579b2af9a0a	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE50dd5d6934fb31eb9317d8fd7e4a9f5b	0	inbound	+18177569010	124	\N	\N	new lead	castellanos edi	12	\N	\N	1059
2016-12-07 23:45:52.956796+00	2016-12-08 00:12:25.067454+00	3061	completed				+14692629790		1588	2016-12-07 23:45:52.954907	2016-12-08 00:12:20.607191	CAc47fde270acca82b43a128519090deb7	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE619da210d4b0613eba7c458820425810	0	inbound	+18557240606	49	2.2832181453704834	null	new lead		1	\N	\N	1062
2017-09-09 21:21:12.242768+00	2017-09-09 21:25:34.04845+00	6307	completed				+18178977327		262	2017-09-09 21:21:12.240689	2017-09-09 21:25:34.045596	CA6d8f6c66e1351d437bc9206c140de929	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE292378a7f602eb81e59237dc62a20565	0	inbound	+18177569010	124	129.253160953521729	\N	new lead	hornbake brenda	12	\N	\N	1066
2017-09-09 21:27:36.684408+00	2017-09-09 21:32:10.610836+00	6308	completed				+18178977327		274	2017-09-09 21:27:36.680945	2017-09-09 21:32:10.608525	CA35c1422e7eae9b962d0111aaed1b12cd	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REe14cb714c0e104d591522aa496cfbd31	0	inbound	+18177569010	124	113.360579967498779	\N	new lead	hornbake brenda	12	\N	\N	1066
2017-05-15 21:53:58.750283+00	2017-11-29 18:38:49.811629+00	5089	completed				+12142635133		133	2017-05-15 21:53:58.74786	2017-05-15 21:56:11.49078	CAae4fe6dbcf50c401e78d8e7febc3ade3	\N	\N			0	inbound	+12147122250	\N	2.04727292060852051	\N	new lead	wireless caller	9	\N	\N	1068
2017-04-27 19:25:46.683179+00	2017-11-29 18:38:49.807052+00	4382	completed				+19722520083		79	2017-04-27 19:25:46.679708	2017-04-27 19:27:05.389208	CA1eedf8722ad426fc68db0fc67bb9bbca	\N	127			0	inbound	+12147122250	\N	2.32724308967590332	\N	new lead	big t branding 	9	\N	\N	1069
2017-05-05 21:36:01.151863+00	2017-05-05 21:36:22.999608+00	4791	completed				+16026960501		21	2017-05-05 21:36:01.150575	2017-05-05 21:36:22.256695	CA62de19e3228b7e2257774ee0da757a4f	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REd6d247bc4a950212dd8a5568fbe06fb9	0	inbound	+18557240606	49	3.25377106666564941	\N	new lead		1	\N	\N	1995
2017-12-09 14:36:22.899947+00	2017-12-09 14:37:45.063881+00	7739	completed				+12142531101		81	2017-12-09 14:36:22.897727	2017-12-09 14:37:43.80223	CA3ecbb06304b572af2ea4a2803552dbb3	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE14fc4c335aea3a6ca4fdc2ce60f0c20d	0	inbound	+18558645656	136	2.16919803619384766	\N	new lead		15	\N	\N	2000
2017-12-11 15:26:18.640521+00	2017-12-11 15:41:41.365495+00	7779	completed				+12142531101		919	2017-12-11 15:26:18.638855	2017-12-11 15:41:38.124629	CA64dc69cb63e5d54a4fc226995a2beb9d	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REe5253f92c10e062ea80f900a0e076397	0	inbound	+18558645656	136	2.63608789443969727	\N	new lead		15	\N	\N	2000
2017-10-12 19:47:49.511929+00	2017-10-12 19:52:06.784832+00	6681	completed	melissa	mcmahon	whymrry1@yahoo.com	+12242540443		242	2017-10-12 19:47:49.510117	2017-10-12 19:52:05.852306	CAe1862df4d88237c9a07c7d387b7c1e87	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE5e1aac40f6a8c047217f92e7e06886a5	1	outbound	+17704009016	\N	13.579542875289917	{}	new lead		13	\N	\N	2001
2016-09-30 19:32:58.433946+00	2016-12-10 00:57:42.908378+00	2117	completed				+17187947700		6	2016-09-30 19:32:58.432382	2016-09-30 19:33:03.993532	CAad8c703369756317133b2b865436cc70	\N	31			0	inbound	+18555435678	\N	2.40702915191650391	null	new lead		3	\N	\N	2004
2016-11-02 13:14:44.066654+00	2016-11-02 13:14:44.090581+00	2540	missed	KASANDRA	BARRIOS	KASANBARRI@YAHOO.COM	+19156306366		\N	2016-11-02 13:14:44.065644	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2009
2017-05-10 14:00:46.809839+00	2017-08-17 14:35:21.045155+00	4945	completed				+16158685700		101	2017-05-10 14:00:46.806541	2017-05-10 14:02:27.736674	CA2fc5274c63c92350dc1ceb81ee047dd5	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE2d01937a455e17fece0224debd56ccc9	0	inbound	+18177569010	124	8.88221597671508789	\N	new lead	gd phillips    	12	\N	\N	2010
2016-11-04 18:26:00.856943+00	2016-11-04 18:48:46.650432+00	2716	completed				+17137396880		1363	2016-11-04 18:26:00.855082	2016-11-04 18:48:43.644926	CA2fb7e948ea02a2b171145904b65d05c8	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REd859593de6322eaf35f8dc0410de3a2c	0	inbound	+18557240606	49	1.9798579216003418	null	new lead		1	\N	\N	1074
2017-04-09 14:07:13.787995+00	2017-11-29 18:38:53.213616+00	3753	completed				+15203909033		278	2017-04-09 14:07:13.786168	2017-04-09 14:11:52.168833	CA4dffbd0da49051e597ee7d5df2b27a3b	\N	\N			0	inbound	+12146922088	\N	23.9930469989776611	\N	new lead	cell phone   az	9	\N	\N	1075
2016-08-02 20:16:22.695403+00	2016-08-02 20:17:34.991959+00	1140	unanswered				+15133843072		69	2016-08-02 20:16:22.693719	2016-08-02 20:17:34.990256	CAc3b5237b8bf4c382860f920a4acef061	cd89e433-4bde-4f86-9b22-8f52c2413fcd	\N			1	outbound	+18556311490	\N	2.20439910888671875	{}	new lead		1	\N	\N	1077
2016-11-21 15:30:42.097239+00	2016-11-21 15:30:42.127151+00	2955	missed	JoAnn	Johnston	Jodytjohnston@yahoo.com	+17135406810		\N	2016-11-21 15:30:42.096049	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2012
2017-05-09 19:17:03.838967+00	2017-11-29 18:38:53.215513+00	4924	completed				+14045688000		145	2017-05-09 19:17:03.83646	2017-05-09 19:19:29.181067	CA9aefb66754e67d90271055854e2978a6	\N	99		https://api.twilio.com/2010-04-01/Accounts/AC5422b9b221417a7a84556a92f6edc492/Recordings/RE11f11b775d0374c969b35df1aaec0e39	0	inbound	+12146922088	\N	4.49032807350158691	\N	new lead	east end auto ashland	9	\N	\N	2013
2017-04-27 20:45:20.716228+00	2017-11-29 18:38:49.80713+00	4394	completed				+19496505915		107	2017-04-27 20:45:20.711821	2017-04-27 20:47:07.548552	CAe0b794e2649211d3ba26528ed3f4124b	\N	125			0	inbound	+12147122250	\N	1.85571098327636719	\N	new lead	bayside motors 	9	\N	\N	2014
2017-04-28 16:18:56.689581+00	2017-11-29 18:38:53.214738+00	4423	completed				+14694789787		177	2017-04-28 16:18:56.68763	2017-04-28 16:21:53.689517	CAd8b20281c8a28e1e6d709c21c6081cb8	\N	107			0	inbound	+12146922088	\N	6.48992085456848145	\N	new lead	mendez michelle	9	\N	\N	2015
2017-05-08 23:40:10.84825+00	2017-08-17 14:35:21.045147+00	4894	completed				+16824007316		36	2017-05-08 23:40:10.843196	2017-05-08 23:40:46.712871	CA9bd640747b882810287b0aced54189fa	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REee140e817b34b7a342e9581a0d2451b2	0	inbound	+18177569010	124	14.7017378807067871	\N	new lead	garcia juan	12	\N	\N	2016
2016-08-03 17:05:57.648307+00	2017-11-29 18:31:37.368575+00	1178	completed				+16618255333		1910	2016-08-03 17:05:57.647003	2016-08-03 17:37:47.249637	CA16bfa2a9a97a2f13f91d5f9f9c11e74c	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE1f286a77bb078960bba252988f936b62	0	inbound	+18555472453	\N	8.27314019203186035	null	application started		1	\N	\N	2018
2016-08-11 21:14:00.723388+00	2017-11-29 18:31:37.368882+00	1429	missed	Santiago	C. Benavente		+16618255333		81	2016-08-11 21:14:00.721527	2016-08-11 21:15:21.357439	CA5761c1152f234eafe14ad50212c27140	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE3cf03128a0e839084f067705157eeadf	0	inbound	+18555472453	\N	31.676584005355835	null	application started		1	\N	\N	2018
2017-11-11 20:15:41.391836+00	2017-11-11 20:25:36.327875+00	7026	completed	Danny	Nix	Dannynix27@gmail.com	+17063632074		251	2017-11-11 20:15:41.390258	2017-11-11 20:25:34.918046	CAf0955ad61ef74a5ab01df54df9d4198d	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE7c206a089d3111accbf6cfc48ee95437	3	outbound	+17704009016	\N	348.176268815994263	{}	new lead		13	\N	\N	2019
2017-12-19 17:23:10.638804+00	2017-12-19 17:26:45.16811+00	8002	completed	Steven	Smith	Ssmith101315@gmail.com	+14043225222		193	2017-12-19 17:23:10.635899	2017-12-19 17:26:44.196164	CA997a532517a18030d66d11f0e45fb558	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE477834c11456f9475e1c6943b6be508e	1	outbound	+17704009016	\N	22.1490230560302734	{}	new lead		13	\N	\N	2020
2016-11-01 20:35:02.987521+00	2016-12-10 01:05:18.401217+00	2505	completed				+16104095624		81	2016-11-01 20:35:02.985752	2016-11-01 20:36:23.526761	CA6e16f86778500168234fe2782b6a0325	\N	24			0	inbound	+18557088731	\N	2.44109702110290527	null	new lead		3	\N	\N	2022
2016-11-03 22:33:22.55483+00	2016-11-03 23:01:32.376423+00	2672	completed				+18328661354		1687	2016-11-03 22:33:22.552909	2016-11-03 23:01:29.36799	CAc954c26cdfd883b6a5329f42531030e4	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REb26c7fff726eecb93d2003366d99c8cd	0	inbound	+18557240606	49	2.05985498428344727	null	new lead		1	\N	\N	2023
2016-09-08 18:34:19.953992+00	2016-12-10 00:57:48.46174+00	1966	completed				+18056129481		18	2016-09-08 18:34:19.952438	2016-09-08 18:34:37.491051	CA2346d81bcb42be1b843c5438b6e124c6	\N	30			0	inbound	+18559652184	\N	5.60580110549926758	null	new lead		3	\N	\N	2028
2017-10-04 18:39:53.232236+00	2017-10-04 18:40:39.757439+00	6579	completed				+18178075383		46	2017-10-04 18:39:53.228735	2017-10-04 18:40:39.006683	CA09e22af055219e0416356a567ae669ed	\N	155		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE9dbb7e42c6f5d1a02304be38b5217a03	0	inbound	+18177569010	124	9.60177087783813477	\N	new lead	scott dennett c	12	\N	\N	2029
2016-11-09 01:53:59.836073+00	2016-11-09 01:59:04.503819+00	2814	completed				+18323611017		304	2016-11-09 01:53:59.834533	2016-11-09 01:59:03.784456	CAcfb4d3b40d8fff9e58d012b3bfc4aeba	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE925b23311c5a8911db61c8d8e795b4c0	0	inbound	+18557240606	49	1.66059088706970215	null	new lead		1	\N	\N	2031
2017-05-30 16:01:41.148095+00	2017-11-29 18:38:49.814011+00	5495	completed				+13126015312		67	2017-05-30 16:01:41.146141	2017-05-30 16:02:48.381295	CA9aabc4b17ce53ebafedcbcbf7b2405f5	\N	107			0	inbound	+12147122250	\N	5.45003986358642578	\N	new lead	cars.com	9	\N	\N	2034
2017-04-08 22:39:48.850128+00	2017-11-29 18:38:53.213609+00	3752	completed				+14699067764		22	2017-04-08 22:39:48.848485	2017-04-08 22:40:10.809458	CA014705c581f03f6d25250ef6b6af873d	\N	99			0	inbound	+12146922088	\N	4.02533888816833496	\N	new lead	jimenez ivan	9	\N	\N	2035
2017-05-17 21:02:04.649906+00	2017-11-29 18:38:49.812097+00	5174	completed				+12144869631		106	2017-05-17 21:02:04.647613	2017-05-17 21:03:50.559925	CA81d897074d80ea7639c1236a25d6b0ea	\N	105			0	inbound	+12147122250	\N	5.47270679473876953	\N	new lead	montrese bolden	9	\N	\N	2043
2017-12-05 05:22:59.032467+00	2017-12-05 05:24:20.61733+00	7576	completed	Rodney	Jinks	rodneyjinks@gmail.com	+14693341366		78	2017-12-05 05:22:59.030765	2017-12-05 05:24:20.616	CAe6f00c93ae0f490b5f18f64057c1ee4f	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.74076604843139648	{}	new lead		15	\N	\N	2044
2016-12-08 19:12:40.025756+00	2016-12-08 19:36:14.770006+00	3065	completed				+12549794413		1411	2016-12-08 19:12:40.024032	2016-12-08 19:36:10.864	CAcf7459244e22ee982a781547da9596a8	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE0ef2e736b2e49310eb317621857c51f6	0	inbound	+18557240606	49	1.93019008636474609	null	new lead		1	\N	\N	2045
2016-12-09 01:13:38.932612+00	2016-12-09 01:16:47.466715+00	3067	completed				+12549794413		188	2016-12-09 01:13:38.930728	2016-12-09 01:16:47.120187	CA0ca148dbd071073da20b8426c0a7cc97	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REc37ea4efd081ba7aeb76056773f5198d	0	inbound	+18557240606	49	1.76381492614746094	null	new lead		1	\N	\N	2045
2017-10-17 15:59:01.153204+00	2017-10-17 16:00:57.16285+00	6733	completed	rhonda	glover	rkglover71@gmail.com	+15807757341		98	2017-10-17 15:59:01.149055	2017-10-17 16:00:57.129169	CAc3c7d7bc79b7243044e92cb9623136ee	e611622e-d408-4b1f-85fa-8cba4306b7ab	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE27e159aba48691f7c07e9cac1ce1215f	1	outbound	+17704009016	\N	16.0761690139770508	{}	new lead		13	\N	\N	2050
2016-10-05 15:05:39.11474+00	2016-12-10 01:01:51.441023+00	2169	completed				+16199179751		120	2016-10-05 15:05:39.112364	2016-10-05 15:07:39.557393	CAc4382168725b2c25e87a0c545dd1113c	\N	50			0	inbound	+18559693782	\N	1.97416782379150391	null	new lead		3	\N	\N	1080
2017-06-22 12:08:08.565594+00	2017-06-22 12:08:08.618722+00	5628	missed	Cortez	Humphrey	cortezhumphrey34@gmail.com	+17708730045		\N	2017-06-22 12:08:08.563891	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	1081
2016-10-31 21:55:41.580317+00	2016-10-31 22:02:27.028095+00	2432	completed				+16787404243		404	2016-10-31 21:55:41.579092	2016-10-31 22:02:25.997125	CA5300cdaf67bcc1c25ad1e908114e0d2f	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE2716adacb0261a0f04de24301f99474c	0	inbound	+18557240606	49	1.86220192909240723	null	new lead		1	\N	\N	1083
2017-03-12 17:45:20.943115+00	2017-03-12 17:45:20.94319+00	3386	missed	Niwale Dishman		deeplaidpharmaco@msgsafe.io	+15175217731		\N	2017-03-12 17:45:20.939183	\N		3784ab32-dd2a-4afe-b372-b25e22263604	\N			0	outbound	+17735469660	\N	\N	{}	new lead		1	\N	\N	1084
2017-10-17 16:00:47.380139+00	2017-10-17 16:07:26.101889+00	6734	completed	rhonda	glover	rkglover71@gmail.com	+15807757341		46	2017-10-17 16:00:47.378177	2017-10-17 16:07:24.858611	CA278512fa4c8f7ff9ac5b62fce57b163f	e611622e-d408-4b1f-85fa-8cba4306b7ab	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REbeb49559888bd26e84eeb70857214f3c	3	outbound	+17704009016	\N	11.2740490436553955	{}	new lead		13	\N	\N	2050
2017-03-23 18:07:35.201208+00	2017-05-17 15:41:07.224217+00	3557	completed				+18172108941		75	2017-03-23 18:07:35.199147	2017-03-23 18:08:50.579283	CAfa1a5294f206460a494f7654f3657129	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE75c960ef31570e6708358e8806abe418	0	inbound	+18177569010	124	20.4016110897064209	\N	new lead	ace anthony	12	\N	\N	2054
2017-05-09 17:35:30.149692+00	2017-11-29 18:38:53.21547+00	4911	completed				+17022103390		655	2017-05-09 17:35:30.14742	2017-05-09 17:46:25.614836	CAe03cf4e4358a9e8ad3f1fe67aaa5ed2e	\N	133			0	inbound	+12146922088	\N	3.76282811164855957	\N	new lead	big daddy and c	9	\N	\N	2060
2017-10-25 16:26:54.953066+00	2017-10-25 16:28:02.726619+00	6805	completed				+16822027502		67	2017-10-25 16:26:54.951332	2017-10-25 16:28:01.939911	CA4bb23fc9da2580d2c6ac1fa285c7ad2a	\N	155		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE84fac4e01d7b4a32f0a5eb9845920eb4	0	inbound	+18177569010	124	19.8065428733825684	\N	new lead	dallas  tx	12	\N	\N	2064
2016-10-04 23:51:58.676263+00	2016-12-10 01:01:51.440995+00	2152	completed				+17605337510		239	2016-10-04 23:51:58.67463	2016-10-04 23:55:58.024985	CAc327770ead6a205662875059f1541e19	\N	50			0	inbound	+18559693782	\N	2.07057380676269531	null	new lead		3	\N	\N	2066
2017-12-06 17:08:29.486224+00	2017-12-06 17:18:34.728524+00	7642	completed				+18306378078		602	2017-12-06 17:08:29.485	2017-12-06 17:18:31.415536	CAbfaab061324af72c4c9e670798222a9e	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REa6e9f33357bbb6669d0b6fce427d6dfa	0	inbound	+18558645656	136	2.47892999649047852	\N	new lead		15	\N	\N	2073
2016-06-16 17:07:32.740896+00	2017-11-29 18:31:18.808715+00	431	completed	Larry	Boye		+14067775860		46	2016-06-16 17:07:32.739032	2016-06-16 17:08:18.517478	CAf4c42eb7ffaf1dc3d5b290df5a07f9fc	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE09795118b105bc0e04cfae37c61e83a9	0	inbound	+18556311439	\N	13.6780409812927246	null	new lead		1	\N	\N	2077
2016-06-16 17:14:25.419521+00	2016-06-16 17:16:22.173054+00	432	completed				+14067775860		112	2016-06-16 17:14:25.418485	2016-06-16 17:16:22.171773	CAfea9b059e586e060165b79650e25bb9b	bacb2c6f-2833-49e2-90e4-7cfcf770bfc6	16			1	outbound	+18556311439	\N	1.26749205589294434	{}	new lead		1	\N	\N	2077
2016-06-16 17:34:01.46419+00	2016-06-16 17:35:35.899523+00	433	completed	Larry	Boye	stevilar@gmail.com	+14067775860		72	2016-06-16 17:34:01.46283	2016-06-16 17:35:35.898168	CA362bd99b5f5a003acdbd066264750da0	07cfd785-7aef-47fb-8d17-7f38ec833934	17		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE8189cdd19daf2988d8c82daf7c652378	1	outbound	+18556311439	\N	18.9025578498840332	{}	new lead		1	\N	\N	2077
2016-11-06 20:53:06.435288+00	2016-11-06 20:53:21.555745+00	2775	completed				+12143496095		15	2016-11-06 20:53:06.433154	2016-11-06 20:53:21.553744	CA44a9047d79c455dcbc57a597e0b701cb	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE962d711b23c4eede2929c7e906174b35	0	inbound	+18557240606	49	2.03966498374938965	null	new lead		1	\N	\N	2090
2016-11-10 20:28:40.78793+00	2017-01-27 21:12:23.814058+00	2843	completed				+12143496095		108	2016-11-10 20:28:40.78672	2016-11-10 20:30:28.565199		\N	\N			0	outbound	+18555343978	48	\N	null	new lead		1	\N	\N	2090
2017-07-28 22:44:01.800216+00	2017-07-28 22:45:57.892479+00	5872	completed	Jasmine	Youngblood	jassysheron525@gmail.com	+16789782054		102	2017-07-28 22:44:01.798667	2017-07-28 22:45:57.150864	CA34e5ec094ad3ac578bdb748b9c3cd9b0	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE1befa026abcb0117e42651424f109daa	1	outbound	+17704009016	\N	13.4191808700561523	{}	new lead		13	\N	\N	2098
2016-11-07 04:18:16.722325+00	2016-11-07 04:18:20.340204+00	2780	completed				+12142872553		4	2016-11-07 04:18:16.720553	2016-11-07 04:18:20.338407	CA0cfd08f0e0f1da19ced3f27738e9f3bf	\N	76			0	inbound	+18557240606	49	2.25644803047180176	null	new lead		1	\N	\N	2106
2016-11-07 04:19:09.764736+00	2016-11-07 04:19:30.410765+00	2781	completed				+12142872553		20	2016-11-07 04:19:09.763552	2016-11-07 04:19:29.980654	CA655ef934e527a7fbc31c9b95bd46eb04	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REb0961dce3a8ad7a0168872a77f48105e	0	inbound	+18557240606	49	1.4363257884979248	null	new lead		1	\N	\N	2106
2016-11-10 20:26:11.503334+00	2017-01-27 21:12:23.814051+00	2842	completed				+12142872553		63	2016-11-10 20:26:11.502283	2016-11-10 20:27:14.848021		\N	\N			0	outbound	+18555343978	48	\N	null	new lead		1	\N	\N	2106
2017-03-08 21:26:42.081867+00	2017-11-29 18:38:53.211889+00	3347	completed				+19497273188		261	2017-03-08 21:26:42.079753	2017-03-08 21:31:03.537953	CA1a6101e1a9b71aba23b937ab7d498932	\N	\N			0	inbound	+12146922088	\N	4.42555880546569824	\N	new lead	fei marketing inc	9	\N	\N	2110
2017-03-08 21:44:54.177386+00	2017-11-29 18:38:53.211918+00	3351	completed				+19497273188		75	2017-03-08 21:44:54.175381	2017-03-08 21:46:09.214042	CA0b3ffcefba741a320bc6f0dab19b2141	\N	\N			0	inbound	+12146922088	\N	7.76860213279724121	\N	new lead	fei marketing inc	9	\N	\N	2110
2016-10-07 19:16:00.577968+00	2017-02-11 20:02:07.77962+00	2235	completed				+19736760266		343	2016-10-07 19:16:00.575965	2016-10-07 19:21:43.355975	CAb81062b00cc80b092f1de655a289971d	\N	\N			0	inbound	+18559763286	\N	1.9396979808807373	null	new lead		3	\N	\N	2112
2017-04-15 20:09:18.356837+00	2017-11-29 18:38:53.214043+00	3975	completed				+16052094460		201	2017-04-15 20:09:18.355753	2017-04-15 20:12:38.990469	CAe5e1dc53d46349c85a008d11eff9271d	\N	\N			0	inbound	+12146922088	\N	4.81639289855957031	\N	new lead	palmer brian   	9	\N	\N	2119
2017-08-18 20:43:36.793897+00	2017-08-18 20:47:27.456683+00	6094	completed				+17064103414		231	2017-08-18 20:43:36.790491	2017-08-18 20:47:27.443455	CA5b91a20f193e3c268b23196c1c264bb2	\N	154			0	inbound	+17707665699	134	1.80364203453063965	\N	new lead		13	\N	\N	2122
2017-08-18 20:48:50.281387+00	2017-08-18 20:51:16.908989+00	6095	completed				+17064103414		147	2017-08-18 20:48:50.279411	2017-08-18 20:51:16.896229	CA36d288c40f0239a3e086252a40f97c7d	\N	154			0	inbound	+17707665699	134	1.23142194747924805	\N	new lead		13	\N	\N	2122
2017-06-28 19:52:12.604275+00	2017-08-17 14:35:21.045493+00	5678	completed				+18178706838		316	2017-06-28 19:52:12.602404	2017-06-28 19:57:28.44281	CA8ba3fc02683801412ae881748af40d19	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE4b9e136691bc13e405ee5e2feb975a19	0	inbound	+18177569010	124	19.9355530738830566	\N	new lead	dallas  tx	12	\N	\N	1086
2017-04-11 18:35:13.801606+00	2017-11-29 18:38:53.213773+00	3791	completed				+12144481181		149	2017-04-11 18:35:13.799468	2017-04-11 18:37:43.09498	CA7d82ed796a420e22c0fb1c7e6c2d440a	\N	99			0	inbound	+12146922088	\N	7.49461793899536133	\N	new lead	dalcan manageme	9	\N	\N	1087
2017-12-29 19:27:04.796906+00	2017-12-29 19:29:28.512348+00	8156	completed				+16823675618		143	2017-12-29 19:27:04.794784	2017-12-29 19:29:27.324818	CAe391d77ea139fedf226300096f4edc41	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE905469c51b289112dbf7eb051fb69b2a	0	inbound	+18177569010	124	69.7803230285644531	\N	new lead	steve martin	12	\N	\N	1090
2017-12-11 13:49:35.089991+00	2017-12-11 13:49:48.403294+00	7773	completed				+17633178643		13	2017-12-11 13:49:35.087637	2017-12-11 13:49:47.632809	CAfe179a08d4360256a8aa352e4010b7f6	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REe582c0ca813cf7fa25e3b33ef8dcd278	0	inbound	+18558645656	136	2.20262694358825684	\N	new lead		15	\N	\N	1092
2017-12-11 20:33:30.851767+00	2017-12-11 20:34:34.208159+00	7791	completed				+17633178643		63	2017-12-11 20:33:30.848959	2017-12-11 20:34:33.556835	CAbe71ecbf2a216f7abe00bfdc13dabfab	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE29c6d4e3da1675545165762ddba878fe	0	inbound	+18558645656	136	2.39020895957946777	\N	new lead		15	\N	\N	1092
2017-12-14 21:14:42.258636+00	2017-12-14 21:15:45.151229+00	7878	completed				+17633178643		62	2017-12-14 21:14:42.256701	2017-12-14 21:15:44.303293	CA29ad7314804d98620141648aaca7e85e	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REa7f6d4705229219965830db53c2da505	0	inbound	+18558645656	136	2.31688809394836426	\N	new lead		15	\N	\N	1092
2017-08-18 20:52:46.822323+00	2017-08-18 20:56:08.204675+00	6097	completed				+17064103414		201	2017-08-18 20:52:46.820695	2017-08-18 20:56:08.191124	CA9ee50fc96cf6b6c46bb13468969c8de0	\N	154			0	inbound	+17707665699	134	0.778982877731323242	\N	new lead		13	\N	\N	2122
2017-08-31 14:00:51.283094+00	2017-08-31 14:01:45.456832+00	6215	completed	Joseph	Wisham	brittbrat95.bb@gmail.com	+14703180452		31	2017-08-31 14:00:51.281572	2017-08-31 14:01:31.848858	CAefe3c355f1098905af829086ed5ac5af	0427608a-ae09-4db0-a1e8-374423ee28c3	152			1	outbound	+17704009016	\N	7.58029913902282715	{}	new lead		13	\N	\N	2123
2017-10-13 20:46:07.458903+00	2017-10-13 20:54:35.603816+00	6706	completed				+12292216518		508	2017-10-13 20:46:07.456857	2017-10-13 20:54:35.599946	CAb26866e816ea32f32b0927e29ed3c2b6	\N	153			0	inbound	+17707665732	133	350.287975072860718	\N	new lead		13	\N	\N	2124
2017-08-25 18:23:27.946187+00	2017-08-25 18:24:10.509415+00	6162	completed	Jasmine	Champion	Championjasmine@yahoo.com	+17066120043		20	2017-08-25 18:23:27.9449	2017-08-25 18:24:06.057962	CA9f73218d696a80ce23aa31841d2bf628	0427608a-ae09-4db0-a1e8-374423ee28c3	150			1	outbound	+17704009016	\N	14.3299071788787842	{}	new lead		13	\N	\N	2125
2017-12-11 13:29:09.172301+00	2017-12-11 13:29:33.529137+00	7769	missed				+14235827979		24	2017-12-11 13:29:09.170596	2017-12-11 13:29:33.520269	CA68b43fa9d40405849e5821f416b8e867	\N	\N			0	inbound	+17706597466	137	\N	\N	new lead		14	\N	\N	2127
2017-12-11 13:29:45.110452+00	2017-12-11 13:30:09.599086+00	7770	missed				+14235827979		24	2017-12-11 13:29:45.109249	2017-12-11 13:30:09.5858	CAa7f2c6590cc0df13d03437d1fb1321ef	\N	\N			0	inbound	+17706597466	137	\N	\N	new lead		14	\N	\N	2127
2017-12-11 13:41:14.641809+00	2017-12-11 13:41:39.073699+00	7771	missed				+14235827979		24	2017-12-11 13:41:14.639984	2017-12-11 13:41:39.057699	CA8fc4d27cacd2d5506fe891447c8eb47a	\N	\N			0	inbound	+17706597466	137	\N	\N	new lead		14	\N	\N	2127
2017-12-11 13:46:42.924668+00	2017-12-11 13:47:07.400547+00	7772	missed				+14235827979		24	2017-12-11 13:46:42.921343	2017-12-11 13:47:07.383128	CA247e825f51be945c88d580c3c0363596	\N	\N			0	inbound	+17706597466	137	\N	\N	new lead		14	\N	\N	2127
2017-12-11 13:59:43.328239+00	2017-12-11 14:00:07.83737+00	7774	missed				+14235827979		24	2017-12-11 13:59:43.326399	2017-12-11 14:00:07.820884	CA0410fd20344e611b0ff2fd8f3bcf6817	\N	\N			0	inbound	+17706597466	137	\N	\N	new lead		14	\N	\N	2127
2017-05-08 15:58:36.750474+00	2017-11-29 18:38:53.215362+00	4843	completed				+13124462844		429	2017-05-08 15:58:36.747688	2017-05-08 16:05:46.116695	CA29c922ce3144106881a5e4a42c36cbe0	\N	\N			0	inbound	+12146922088	\N	1.48127102851867676	\N	new lead	smith ramon    	9	\N	\N	2130
2016-07-07 14:02:12.481403+00	2016-07-07 14:27:27.391534+00	798	completed	Ryan	Sano		+19377761554		\N	2016-07-07 14:02:12.480458	\N		0886dca9-9e47-4273-a1a9-5ee0047f3a6e	\N			0	outbound	+18552959002	\N	\N	{}	new lead		1	\N	\N	2131
2016-07-07 13:57:25.970918+00	2016-07-07 14:27:52.308856+00	796	completed	Ryan	Sano		+19377761554		\N	2016-07-07 13:57:25.969628	\N		0886dca9-9e47-4273-a1a9-5ee0047f3a6e	\N			0	outbound	+18552959002	\N	\N	{}	new lead		1	\N	\N	2131
2016-07-07 13:51:36.19178+00	2016-07-07 14:28:29.247734+00	793	completed	Ryan	Sano		+19377761554		\N	2016-07-07 13:51:36.190891	\N		0886dca9-9e47-4273-a1a9-5ee0047f3a6e	\N			0	outbound	+18552959002	\N	\N	{}	new lead		1	\N	\N	2131
2016-07-07 13:51:26.427791+00	2016-07-07 14:28:46.680091+00	792	completed	Ryan	Sano		+19377761554		\N	2016-07-07 13:51:26.426632	\N		0886dca9-9e47-4273-a1a9-5ee0047f3a6e	\N			0	outbound	+18552959002	\N	\N	{}	new lead		1	\N	\N	2131
2016-07-07 14:01:44.790174+00	2016-07-07 14:27:39.410851+00	797	completed	Ryan	Sano		+19377761554		\N	2016-07-07 14:01:44.789016	\N		0886dca9-9e47-4273-a1a9-5ee0047f3a6e	\N			0	outbound	+18552959002	\N	\N	{}	new lead		1	\N	\N	2131
2016-07-07 13:53:55.791541+00	2016-07-07 14:28:05.542328+00	795	completed	Ryan	Sano		+19377761554		\N	2016-07-07 13:53:55.790382	\N		0886dca9-9e47-4273-a1a9-5ee0047f3a6e	\N			0	outbound	+18552959002	\N	\N	{}	new lead		1	\N	\N	2131
2016-07-07 14:30:51.020695+00	2016-07-07 14:31:19.492421+00	803	completed	Ryan	Sano		+19377761554		\N	2016-07-07 14:30:51.019698	\N		0886dca9-9e47-4273-a1a9-5ee0047f3a6e	\N			0	outbound	+18552959002	\N	\N	{}	new lead		1	\N	\N	2131
2016-07-07 14:54:08.262801+00	2016-07-07 14:55:31.38649+00	808	completed	Ryan	Sano		+19377761554		78	2016-07-07 14:54:08.261263	2016-07-07 14:55:31.384369	CA34e3517e11f4e0780d628efe68fb75fc	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	2.2186279296875	{}	new lead		1	\N	\N	2131
2016-06-29 16:36:03.4126+00	2016-06-29 16:40:13.130245+00	650	completed	Ryan	Sano	capnsano3@yahoo.com	+19377761554		244	2016-06-29 16:36:03.411654	2016-06-29 16:40:13.129196	CA731659418713aa5684d53e04e34a654c	d33a481e-e0af-47ac-9f90-260f20b69de5	17		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE20cd4527ca97f2402f609cf75836980b	1	outbound	+18552959002	\N	1.3100731372833252	{}	new lead		1	\N	\N	2131
2016-07-10 18:36:30.467624+00	2017-11-29 18:32:13.821451+00	838	completed	Mark	Beacom Sr.		+13305593842		43	2016-07-10 18:36:30.46569	2016-07-10 18:37:13.355206	CAd5760b556991b78936f56be6da6cca8e	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REa465b13b8ba4940c5a2a38b9788c166c	0	inbound	+18555983683	\N	\N	null	new lead		1	\N	\N	649
2016-05-25 14:39:20.451055+00	2016-05-25 14:40:14.337819+00	195	completed	TISHA	COOLEY	tcooley@safehavenhealth.com	+19379442067		41	2016-05-25 14:39:20.449845	2016-05-25 14:40:14.336714	CAd69ecdcf16cf69ea634d66100785a27e	25d0200e-983d-4413-94ae-eb664b99711c	18		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE3f2179d5edcfd34dbab47803301fba67	1	outbound	+18556311490	\N	9.73907089233398438	{}	new lead		1	\N	\N	1093
2016-05-25 17:14:18.441148+00	2017-11-29 18:32:01.93548+00	218	completed	Unknown			+18556311513		8	2016-05-25 17:14:18.440187	2016-05-25 17:14:26.552436	CAb6fdf9beddbcf779660a622f143d5036	\N	17			0	inbound	+18556311513	\N	1.44730210304260254	null	new lead		1	\N	\N	355
2017-04-08 21:10:08.145354+00	2017-11-29 18:38:53.213519+00	3747	completed				+18068912530		36	2017-04-08 21:10:08.143404	2017-04-08 21:10:44.411903	CA22a8621cae5b7ebd5df9fe9e37f2aef3	\N	99			0	inbound	+12146922088	\N	1.81820511817932129	\N	new lead	cell phone   tx	9	\N	\N	1249
2016-06-03 13:29:37.338085+00	2017-11-29 18:31:05.368874+00	362	completed	Unknown			+15855077716		17	2016-06-03 13:29:37.336797	2016-06-03 13:29:54.113267	CAc775d61d38bee3e06a61ffce064af89b	\N	16			0	inbound	+18557824539	\N	3.81887483596801758	null	new lead		1	\N	\N	94
2016-06-22 20:22:41.08615+00	2017-11-29 18:31:14.616454+00	449	completed	Unknown			+13123303326		9	2016-06-22 20:22:41.083729	2016-06-22 20:22:50.033661	CA9c76a4407815a709443ac92a59b0b1b3	\N	16			0	inbound	+18556311541	\N	0.665128946304321289	null	new lead		1	\N	\N	271
2017-09-06 15:41:23.039125+00	2017-11-29 18:31:56.600465+00	6272	missed				+15708421887		11	2017-09-06 15:41:23.037257	2017-09-06 15:41:34.483394	CA7a73608b76d8b4acf4ee14018c93de63	\N	\N			0	inbound	+18556311397	\N	\N	\N	new lead		1	\N	\N	1458
2016-05-23 22:54:41.60732+00	2016-05-25 17:19:16.897235+00	181	completed	Austin	Jones	Spumanni@sbcglobal.net	+13305245122		\N	2016-05-23 22:54:41.605962	\N		36dfa45c-0f7c-41c7-b250-561251aebceb	\N			0	outbound	+18556311528	\N	\N	{}	new lead		1	\N	\N	114
2016-05-25 16:17:53.89713+00	2016-05-25 18:16:26.475258+00	199	completed				+19289160196		44	2016-05-25 16:17:53.894366	2016-05-25 16:18:43.175907	CAa944d56827d56dc84ce0d02f6dfc3455	1b57cdfb-d740-4953-b96e-8faa81f78a40	\N			1	outbound	+18557824539	\N	2.06913995742797852	{}	new lead		1	\N	\N	1538
2016-08-02 22:27:03.392697+00	2017-11-29 18:31:37.368504+00	1160	missed				+16615330613		16	2016-08-02 22:27:03.391504	2016-08-02 22:27:18.922383	CA38449e6226f84cc07c38428b5c2901d2	\N	\N			0	inbound	+18555472453	\N	\N	null	new lead		1	\N	\N	1031
2016-11-01 13:23:08.838192+00	2016-11-01 13:23:08.86405+00	2455	missed	Fred	Harroway	fharroway@lycos.com	+17705722464		\N	2016-11-01 13:23:08.837094	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	1005
2016-07-07 13:52:04.926707+00	2016-07-07 14:28:18.160041+00	794	completed	Ryan	Sano		+19377761554		\N	2016-07-07 13:52:04.925746	\N		0886dca9-9e47-4273-a1a9-5ee0047f3a6e	\N			0	outbound	+18552959002	\N	\N	{}	new lead		1	\N	\N	2131
2016-07-07 14:18:52.776653+00	2016-07-07 14:26:39.824203+00	802	completed	Ryan	Sano		+19377761554		\N	2016-07-07 14:18:52.775621	\N		0886dca9-9e47-4273-a1a9-5ee0047f3a6e	\N			0	outbound	+18552959002	\N	\N	{}	new lead		1	\N	\N	2131
2016-11-01 21:35:39.551833+00	2016-11-01 21:35:39.588825+00	2511	missed	gerald	nyaayo	jerryokz@yahoo.com	+18176961678		\N	2016-11-01 21:35:39.550562	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	325
2017-04-12 12:41:52.378475+00	2017-11-29 18:31:10.262796+00	3807	completed	Vickie	Williams		+15137858796		61	2017-04-12 12:41:52.376606	2017-04-12 12:42:53.621781		\N	16			0	outbound	+18556311490	\N	\N	\N	general interest		1	\N	\N	2694
2016-11-05 22:09:27.095975+00	2016-11-05 22:09:27.130087+00	2762	missed	Robert	Kincaid	kincaidlaw@yahoo.com	+19728674368		\N	2016-11-05 22:09:27.094789	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	1002
2016-11-08 01:27:05.026868+00	2016-11-08 01:27:05.063309+00	2800	missed						\N	2016-11-08 01:27:05.025083	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	\N
2017-11-28 12:49:35.846314+00	2017-11-28 12:49:36.512543+00	7356	missed				+17065259655		1	2017-11-28 12:49:35.844207	2017-11-28 12:49:36.502296	CA54e5d3026969bb1f73c5e7c74d5780b9	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead	norcross  ga	13	\N	\N	2951
2016-11-23 20:27:55.64159+00	2016-11-23 20:27:55.667979+00	2972	missed	Pedro Raciel	Gutierrez	praciel2006@gmail.com	+19137104268		\N	2016-11-23 20:27:55.640637	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	new lead		1	\N	\N	856
2016-12-06 18:47:27.820327+00	2016-12-06 18:47:27.844626+00	3056	missed	Richard	Yargus	dyargus@gmail.com	+17135530605		\N	2016-12-06 18:47:27.819158	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	1959
2017-04-24 09:56:37.621393+00	2017-04-24 09:56:37.663893+00	4244	missed	VirgilclarM	VirgilclarM	virgil50@mail.ru	83234996282		\N	2017-04-24 09:56:37.61943	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	\N
2017-05-15 17:54:58.6048+00	2017-05-15 17:54:58.640169+00	5079	missed	5919eb5d5563e	5919eb5d55680	mazdaspdracer@yahoo.com			\N	2017-05-15 17:54:58.603442	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	\N
2017-05-15 17:45:08.034316+00	2017-05-15 17:45:08.07279+00	5078	missed	5919e8f27d05c	5919e8f27d09f	ogeztmojyhe2tgobz@mail.mercadolibre.com			\N	2017-05-15 17:45:08.032183	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	\N
2017-05-15 22:44:19.968013+00	2017-05-15 22:44:19.99829+00	5091	missed	591a2ee83986b	591a2ee8398ab	dbphotoms@gmail.com			\N	2017-05-15 22:44:19.966872	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	\N
2017-05-16 23:56:19.1159+00	2017-05-16 23:56:19.151972+00	5134	missed	591b92bcc4a4b	591b92bcc4a8b	doodyer@yahoo.com			\N	2017-05-16 23:56:19.114519	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	\N
2017-05-17 06:45:30.153976+00	2017-05-17 06:45:30.190387+00	5135	missed	591bf234445fc	591bf2344463b	shevaun2010@live.com			\N	2017-05-17 06:45:30.152273	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	\N
2017-05-17 09:26:30.62457+00	2017-05-17 09:26:30.665409+00	5136	missed	591c171311566	591c1713115a9	ibisbayevents@gmail.com			\N	2017-05-17 09:26:30.622784	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	\N
2017-05-17 12:53:09.276809+00	2017-05-17 12:53:09.31215+00	5137	missed	591c48c2a0dec	591c48c2a0e2b	ryankmason@gmail.com			\N	2017-05-17 12:53:09.275379	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	\N
2017-05-17 13:28:54.285686+00	2017-05-17 13:28:54.324674+00	5138	missed	591c50dc44f2a	591c50dc44f6b	triciastaple1@gmail.com			\N	2017-05-17 13:28:54.284175	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	\N
2017-05-17 13:46:08.677449+00	2017-05-17 13:46:08.72527+00	5139	missed	591c540b1d3c3	591c540b1d3fe	uipangie@gmail.com			\N	2017-05-17 13:46:08.676024	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	\N
2017-05-17 14:01:38.11932+00	2017-05-17 14:01:38.158257+00	5140	missed	591c58dfa6250	591c58dfa6297	murselilucasj@gmail.com			\N	2017-05-17 14:01:38.117923	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	\N
2017-05-17 14:10:13.92188+00	2017-05-17 14:10:13.959768+00	5141	missed	591c5b0d2c364	591c5b0d2c3a6	barbara.e.maldonado@gmail.com			\N	2017-05-17 14:10:13.920249	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	\N
2017-05-17 14:47:56.230987+00	2017-05-17 14:47:56.27135+00	5144	missed	591c6256df442	591c6256df484	triciastaple1@gmail.com			\N	2017-05-17 14:47:56.229331	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	\N
2017-09-02 12:38:28.610861+00	2017-11-29 18:31:01.155621+00	6238	missed				+14198743179		12	2017-09-02 12:38:28.608851	2017-09-02 12:38:40.584041	CA99f71c21ae78df7ee23fb9c69b4be255	\N	\N			0	inbound	+18556313454	\N	\N	\N	new lead		1	\N	\N	21
2016-06-01 21:31:33.552108+00	2017-11-29 18:31:10.26085+00	332	completed	Unknown			+15136154957		42	2016-06-01 21:31:33.550269	2016-06-01 21:32:16.018405	CA18126f356b7ab4cc156a033d5c7488b1	\N	\N			0	inbound	+18556311490	\N	\N	null	new lead		1	\N	\N	1699
2017-03-27 21:55:04.281219+00	2017-11-29 18:31:10.262667+00	3601	missed				+15138511156		15	2017-03-27 21:55:04.278867	2017-03-27 21:55:19.736505	CAd68584f01b7ae74fd560d0f44266569b	\N	\N			0	inbound	+18556311490	\N	\N	\N	new lead		1	\N	\N	1703
2016-06-28 15:10:04.524063+00	2017-11-29 18:31:41.490192+00	581	completed	David	Nash		+16144196663		24	2016-06-28 15:10:04.522875	2016-06-28 15:10:28.452394	CA1ca209ae869fbdefac294bdd1207507f	\N	\N			0	inbound	+18552959002	\N	14.2245631217956543	null	new lead		1	\N	\N	249
2017-10-02 17:30:11.351513+00	2017-11-29 18:31:56.600486+00	6558	missed				+15708221869		7	2017-10-02 17:30:11.349477	2017-10-02 17:30:18.285784	CAa8e7284db50868bd2afe2460a3410f9c	\N	\N			0	inbound	+18556311397	\N	\N	\N	new lead		1	\N	\N	151
2016-01-29 15:26:45.421297+00	2016-01-29 15:27:11.970208+00	6	completed	Gareth			99999999		\N	2016-01-29 15:26:45.418593	\N	CA8b1ed285f1267e8c93347176e3feec0f	\N	1			0	inbound		\N	\N	\N	new lead		1	\N	\N	\N
2016-05-16 18:20:52.44442+00	2016-05-16 18:20:52.444444+00	97	ringing	Harry			+sdfsdsdfsdf		\N	2016-05-16 18:20:52.443226	\N		53da9e33-88fb-4b04-baca-339193fd55f7	\N			0	outbound	+17735469660	\N	\N	{}	new lead		1	\N	\N	\N
2017-05-09 20:25:34.864277+00	2017-11-29 18:38:49.810704+00	4931	completed				+12146505961		85	2017-05-09 20:25:34.862368	2017-05-09 20:27:00.015076	CAb96c5c1a2ca7012234c3900e0deccbc3	\N	105			0	inbound	+12147122250	\N	2.2412559986114502	\N	new lead	roberson liz	9	\N	\N	3532
2016-10-07 18:07:30.062317+00	2016-12-10 01:05:18.401096+00	2231	completed				+266696687		124	2016-10-07 18:07:30.061209	2016-10-07 18:09:33.973137	CA2fcbb3d4520a5ef827b75d5c09ff9e73	\N	24			0	inbound	+18557088731	\N	1.31618595123291016	null	new lead		3	\N	\N	\N
2016-10-07 18:12:04.278959+00	2016-12-10 01:05:18.40111+00	2233	completed				+266696687		39	2016-10-07 18:12:04.277206	2016-10-07 18:12:43.497192	CA85cf8ee51cae6d8f754ffded065f0024	\N	24			0	inbound	+18557088731	\N	1.47850489616394043	null	new lead		3	\N	\N	\N
2016-10-07 18:12:47.032911+00	2016-12-10 01:05:18.401116+00	2234	completed				+266696687		293	2016-10-07 18:12:47.032003	2016-10-07 18:17:39.763227	CAfcf9881543c37ffe1d4b6830885e3f0f	\N	24			0	inbound	+18557088731	\N	1.20561504364013672	null	new lead		3	\N	\N	\N
2016-09-21 20:15:24.051683+00	2017-02-11 20:02:12.400307+00	2071	completed				+16103576138		28	2016-09-21 20:15:24.049903	2016-09-21 20:15:51.639362	CAc1e8c9d32982a184c1c90cdf2651105b	\N	\N			0	inbound	+18555597024	\N	14.4713389873504639	null	new lead		3	\N	\N	3699
2016-10-24 19:14:57.105766+00	2016-12-10 01:00:18.568524+00	2342	missed				+16199476798		37	2016-10-24 19:14:57.104274	2016-10-24 19:15:33.74425	CA3ffb6d662b2e98037d97fca42e69a64e	\N	\N			0	inbound	+18556775511	\N	\N	null	new lead		3	\N	\N	807
2016-08-06 11:36:51.54614+00	2016-12-10 00:55:45.165171+00	1306	missed				+16104540831		6	2016-08-06 11:36:51.54522	2016-08-06 11:36:57.066528	CAf7c7306a82bf8e4483dce27ef2ff665a	\N	\N			0	inbound	+18557129406	\N	\N	null	new lead		3	\N	\N	1785
2016-07-07 16:35:28.619243+00	2016-12-10 00:57:54.467621+00	814	missed				+19283493105		13	2016-07-07 16:35:28.617569	2016-07-07 16:35:41.787711	CA32d1296e89ffa0fdea26eaed0a18bdcf	\N	\N			0	inbound	+18559651592	\N	1.76342105865478516	null	new lead		3	\N	\N	1130
2017-08-02 18:41:56.008013+00	2017-08-02 18:47:48.878322+00	5917	missed				+12144860779		23	2017-08-02 18:41:56.006026	2017-08-02 18:42:18.759997	CA48138c66f19b7c00f4c4409124b1cb17	\N	\N			0	inbound	+17704009016	132	\N	\N	new lead		13	\N	\N	947
2016-11-02 14:18:22.680705+00	2017-01-27 21:12:23.813904+00	2543	missed				+17049333055		72	2016-11-02 14:18:22.679405	2016-11-02 14:19:34.847929		\N	\N			0	outbound	+18557240606	49	\N	null	select status		1	\N	\N	4129
2017-12-07 15:19:26.875788+00	2017-12-07 15:22:23.652684+00	7681	unanswered	craig	stumbles	craigstumbles@hotmail.com	+19702013511		29	2017-12-07 15:19:26.874399	2017-12-07 15:21:43.858082	CA33372dfd8c8957a6ccfbf69ab29599b7	243bc1c1-c430-4ccb-b9d9-71662ebbb896	\N			3	outbound	+18558645656	\N	107.648035049438477	{}	new lead		15	\N	\N	171
2016-10-12 11:27:16.151838+00	2016-12-10 01:05:18.40116+00	2271	completed				+16104763633		25	2016-10-12 11:27:16.149759	2016-10-12 11:27:40.725598	CAb9224e07bbd09ea487cd254b2a5200dc	\N	24			0	inbound	+18557088731	\N	1.40898609161376953	null	new lead		3	\N	\N	4144
2017-03-19 06:24:27.177008+00	2017-11-29 18:47:25.067863+00	3502	missed				+19035561947		17	2017-03-19 06:24:27.173807	2017-03-19 06:24:43.83631	CA7d442c633ffffe76db8d2f61cf02a7ab	\N	\N			0	inbound	+19728330116	\N	\N	\N	new lead	howard nancy c	8	\N	\N	705
2017-04-11 21:05:23.879082+00	2017-11-29 18:38:53.21378+00	3792	completed				+12132472083		76	2017-04-11 21:05:23.876692	2017-04-11 21:06:40.1922	CAe657e422796229f1e782eb04150e7702	\N	105			0	inbound	+12146922088	\N	7.25779318809509277	\N	new lead	cell phone   ca	9	\N	\N	560
2017-04-16 18:04:27.675471+00	2017-11-29 18:38:53.214057+00	3981	completed				+266696687		33	2017-04-16 18:04:27.672792	2017-04-16 18:05:00.36095	CA793c4dd44b0f6a0ad479053c5de08589	\N	105			0	inbound	+12146922088	\N	5.09227299690246582	\N	new lead	restricted	9	\N	\N	\N
2017-04-12 22:49:41.414703+00	2017-11-29 18:38:53.21383+00	3848	completed				+19728768941		309	2017-04-12 22:49:41.412602	2017-04-12 22:54:50.570058	CA9a5a4b7f5ea7949e235256b246dce02a	\N	107			0	inbound	+12146922088	\N	6.04785704612731934	\N	new lead		9	\N	\N	489
2016-09-07 17:29:42.771269+00	2016-12-10 01:04:42.413678+00	1920	missed				+19093053663		0	2016-09-07 17:29:42.770333	2016-09-07 17:29:43.054071	CA4ef8d97f1d4e810bc2a584940c70c285	\N	\N			0	inbound	+18552187903	\N	\N	null	new lead		3	\N	\N	421
2017-04-19 19:41:12.560142+00	2017-11-29 18:38:53.214269+00	4095	completed				+16016705009		181	2017-04-19 19:41:12.557085	2017-04-19 19:44:13.879096	CAbaa7ff58b6c3a772c80986d0072659f7	\N	\N			0	inbound	+12146922088	\N	5.29129600524902344	\N	new lead	bay springs  ms	9	\N	\N	52
2016-10-31 15:03:13.900481+00	2016-10-31 15:05:21.854448+00	2379	completed				+14694427261		127	2016-10-31 15:03:13.898968	2016-10-31 15:05:21.081442	CAc595db47b5c2de05bca635f9bed6dbf5	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REbf9a12ca905cdc01c21a12e82592bbb3	0	inbound	+18557240606	49	2.31377291679382324	null	new lead		1	\N	\N	2134
2017-12-15 16:15:52.906168+00	2017-12-15 16:20:24.575182+00	7892	completed				+266696687		270	2017-12-15 16:15:52.904291	2017-12-15 16:20:23.355803	CA2de8f6baa4bcf6483f564de8ead9b387	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE53f94f7c173ad7b3cb7268420561d2ae	0	inbound	+17707665732	133	12.6648409366607666	\N	new lead	restricted	13	\N	\N	\N
2017-04-22 15:37:56.023189+00	2017-11-29 18:38:53.214412+00	4213	completed				+19725507259		30	2017-04-22 15:37:56.022052	2017-04-22 15:38:25.833614	CAb72e087108767a71525b8e7901a03fb4	\N	103			0	inbound	+12146922088	\N	1.64515495300292969	\N	new lead	amerilife      	9	\N	\N	268
2017-04-24 22:17:03.013626+00	2017-11-29 18:38:53.214518+00	4270	completed				+12146816685		263	2017-04-24 22:17:03.011132	2017-04-24 22:21:26.346653	CA3a78ced42e1f13a57f8e17692c9f209d	\N	105			0	inbound	+12146922088	\N	3.94646716117858887	\N	new lead	bumper tim	9	\N	\N	1419
2016-08-09 19:40:37.091547+00	2017-01-27 21:12:23.812993+00	1367	completed				+16612562500		175	2016-08-09 19:40:37.090305	2016-08-09 19:43:32.172027		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	667
2017-12-18 15:55:40.482104+00	2017-12-18 15:55:40.770511+00	7965	missed				+18177893702		0	2017-12-18 15:55:40.480368	2017-12-18 15:55:40.761763	CA084f71bccb8e4e1cc23c37d629347006	\N	\N			0	inbound	+18177569010	124	\N	\N	new lead	johnson adrienn	12	\N	\N	257
2017-04-28 16:45:39.15987+00	2017-11-29 18:38:53.214745+00	4425	completed				+12103508936		73	2017-04-28 16:45:39.158022	2017-04-28 16:46:52.049347	CA500c76fd2a4f278b523851a0e7d5e91d	\N	133			0	inbound	+12146922088	\N	6.4516289234161377	\N	new lead	mustang gt     	9	\N	\N	118
2017-12-19 17:50:40.056767+00	2017-12-19 18:13:40.395051+00	8004	completed	robert	havelin	mckemyave@gmail.com	+16027082545		1377	2017-12-19 17:50:40.055348	2017-12-19 18:13:40.393666	CA3e0b3a67e500e38ce8ba43d0fb0b9085	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.5279080867767334	{}	new lead		15	\N	\N	1543
2016-07-02 20:24:39.87783+00	2017-11-29 18:31:41.490311+00	740	completed	Micky			+16145615880		16	2016-07-02 20:24:39.875903	2016-07-02 20:24:55.886477	CAbcf7c620bb621b455f8d355985038879	\N	\N			0	inbound	+18552959002	\N	\N	null	new lead		1	\N	\N	855
2017-04-12 18:09:34.176868+00	2017-11-29 18:38:49.804621+00	3830	missed				+14692314617		39	2017-04-12 18:09:34.173617	2017-04-12 18:10:13.064922	CA49ec0215cb44ff5f45cd6de5ee3ce8d2	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead		9	\N	\N	377
2016-07-15 22:06:48.851881+00	2016-12-10 01:05:11.337003+00	881	completed				+17186988800		9	2016-07-15 22:06:48.850003	2016-07-15 22:06:58.062812	CAdeda959bdcf606de01182d60c2c7cac3	\N	25			0	inbound	+18555693686	\N	1.65291690826416016	null	new lead		3	\N	\N	890
2017-04-12 18:05:20.435871+00	2017-11-29 18:38:49.804599+00	3827	completed				+13176889605		87	2017-04-12 18:05:20.433093	2017-04-12 18:06:47.562219	CAc86318c2181d32ef93f181ffae9b1a60	\N	127			0	inbound	+12147122250	\N	3.28396987915039062	\N	new lead		9	\N	\N	17
2016-08-03 16:51:30.377499+00	2017-11-29 18:31:37.368568+00	1177	completed				+16615403899		277	2016-08-03 16:51:30.375607	2016-08-03 16:56:07.575187		\N	\N			0	outbound	+18555472453	\N	\N	null	application submitted - autopay		1	\N	\N	1119
2017-07-21 13:06:42.091968+00	2017-07-21 13:12:22.188484+00	5821	missed				+17707668934		9	2017-07-21 13:06:42.090016	2017-07-21 13:06:51.160367	CAeca6cd085cc2c615a9316f725f8d3def	\N	\N			0	inbound	+17707665732	133	\N	\N	new lead		13	\N	\N	952
2017-05-10 18:02:59.273939+00	2017-11-29 18:47:25.068432+00	4965	missed				+19154224776		58	2017-05-10 18:02:59.272575	2017-05-10 18:03:56.914684	CA4168f5ae91b9573f7c9c34e767fa40ec	\N	\N			0	inbound	+19728330116	\N	378.897315979003906	\N	new lead	el paso  tx	8	\N	\N	2927
2017-06-23 14:44:21.312588+00	2017-06-24 13:45:04.894069+00	5640	completed				+17063514551		108	2017-06-23 14:44:21.309397	2017-06-23 14:46:09.157222	CA6928ad129c86b5c8ed34fd734643f0c9	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE7abf0fa75f5aa3d41bb9925c55b08f7a	0	inbound	+17704009016	132	9.14964509010314941	\N	new lead		13	\N	\N	935
2017-04-12 22:47:58.343263+00	2017-11-29 18:38:49.8047+00	3847	completed				+19728768941		48	2017-04-12 22:47:58.34039	2017-04-12 22:48:46.308681	CA836f7861b7a6597062505e54c86dd219	\N	105			0	inbound	+12147122250	\N	5.13305902481079102	\N	new lead		9	\N	\N	489
2017-05-25 17:45:39.289778+00	2017-05-25 17:45:51.451759+00	5401	completed				+266696687		12	2017-05-25 17:45:39.287756	2017-05-25 17:45:51.439858	CAe6c4c76a6b06fb87e598be6a3d15f25c	\N	129			0	inbound	+18172104002	126	3.6661219596862793	\N	new lead	restricted	12	\N	\N	\N
2017-07-01 01:59:43.219753+00	2017-07-01 01:59:49.714987+00	5703	missed				+13405144008		6	2017-07-01 01:59:43.217779	2017-07-01 01:59:49.703823	CA29b7c107a9a12c1ce434fd37a4ca1fe1	\N	\N			0	inbound	+17704009016	132	\N	\N	new lead		13	\N	\N	953
2017-09-14 12:50:29.850856+00	2017-09-14 12:50:30.248369+00	6340	missed	Kayla	Reed		+16789376421		0	2017-09-14 12:50:29.849637	2017-09-14 12:50:30.24035	CAb34a8df2b98a6f40ef2e1db29ba01694	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	1818
2017-07-08 16:35:42.817312+00	2017-07-08 16:42:05.891503+00	5738	completed				+17063386442		383	2017-07-08 16:35:42.815181	2017-07-08 16:42:05.653381	CA668cb094de8151b9b2bcf54033f957be	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE2fbf1f60266e2867f9ef179199167a2b	0	inbound	+17704009016	132	325.110152006149292	\N	new lead		13	\N	\N	258
2017-07-17 13:17:27.051889+00	2017-07-17 13:20:34.644263+00	5787	completed				+17062865316		186	2017-07-17 13:17:27.050158	2017-07-17 13:20:33.473626	CA66836f1b662ba305a9c8ef199315b44a	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE5d76113f51e47eee12b3bee534b3841d	0	inbound	+17704009016	132	12.0742771625518799	\N	new lead		13	\N	\N	5
2016-08-09 14:32:55.894425+00	2017-01-27 21:12:23.81293+00	1355	completed	Michael	Costa	buzz5m@hotmail.com	+15132265257		91	2016-08-09 14:32:55.893303	2016-08-09 14:34:27.391827		\N	\N			0	outbound	+18555343978	48	\N	null	new lead		1	\N	\N	1631
2017-08-13 19:06:15.694923+00	2017-08-13 19:06:15.74338+00	6011	missed	Kayundrae	Jefferson	kenyarsmith@yahoo.com	+17063804266		\N	2017-08-13 19:06:15.693486	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	488
2016-10-31 15:06:04.216677+00	2016-10-31 15:28:59.393466+00	2380	completed				+14694427261		1370	2016-10-31 15:06:04.215327	2016-10-31 15:28:54.331631	CA9ee39c4521f9e835346c5421da09ccef	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE39e2624ce47df08564c3a496ac55ca06	0	inbound	+18557240606	49	1.93492507934570312	null	new lead		1	\N	\N	2134
2017-09-13 19:37:32.825278+00	2017-09-13 19:37:48.099797+00	6335	completed				+17706808248		15	2017-09-13 19:37:32.82307	2017-09-13 19:37:48.088362	CA180246de9ad430d5705e0d0f124a3fd6	\N	154			0	inbound	+17707665699	134	1.26343584060668945	\N	new lead		13	\N	\N	2138
2017-09-13 19:38:07.164621+00	2017-09-13 19:39:15.112466+00	6336	completed				+17706808248		68	2017-09-13 19:38:07.163345	2017-09-13 19:39:15.095958	CAf0a1647960fbbe167012be4da62e33ce	\N	154			0	inbound	+17707665699	134	1.06800508499145508	\N	new lead		13	\N	\N	2138
2017-03-16 16:11:42.499107+00	2017-11-29 18:38:53.212425+00	3461	completed				+12069096469		129	2017-03-16 16:11:42.497331	2017-03-16 16:13:51.560419	CA544555fdb7dcad191f542a3191606918	\N	105			0	inbound	+12146922088	\N	6.84794402122497559	\N	new lead		9	\N	\N	2146
2016-11-16 20:52:25.184358+00	2016-11-16 20:52:25.211652+00	2926	missed	Justin	Bostian	halocrazy90@hotmail.com	+19802670937		\N	2016-11-16 20:52:25.182977	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2155
2016-06-27 16:40:00.973799+00	2017-11-29 18:31:29.180642+00	524	completed	Susan	Westfall		+12165733731		31	2016-06-27 16:40:00.972751	2016-06-27 16:40:31.485032	CA85a17bd0a3e0917b5342081c75150bff	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REd61d7f7df98703eeaaae2928bbe16ab9	0	inbound	+18556311528	\N	14.6202239990234375	null	new lead		1	\N	\N	2156
2016-06-27 18:20:02.946361+00	2016-06-27 18:21:54.591812+00	537	completed				+12165733731		107	2016-06-27 18:20:02.944834	2016-06-27 18:21:54.590115	CA933f58417c6e0e04c7206417f4334bbf	d74ffd1c-7b90-4327-b9bc-e1ebf9391484	16			1	outbound	+18556311528	\N	1.39564800262451172	{}	new lead		1	\N	\N	2156
2016-06-27 17:13:37.812723+00	2016-06-27 17:15:14.647142+00	527	completed				+12165733731		92	2016-06-27 17:13:37.811862	2016-06-27 17:15:14.645885	CAa4c3649fd9b7a7487c20bbceb1f7adbc	d74ffd1c-7b90-4327-b9bc-e1ebf9391484	16			1	outbound	+18556311528	\N	0.758637905120849609	{}	new lead		1	\N	\N	2156
2016-11-27 20:07:47.34925+00	2016-11-27 20:07:47.373438+00	2987	missed	Dorothy 	Coaston	blackangeldc@hotmail.com	+19727627790		\N	2016-11-27 20:07:47.348345	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2173
2017-12-06 16:10:50.921478+00	2017-12-06 16:33:50.303268+00	7633	completed				+14172918402		1376	2017-12-06 16:10:50.919473	2017-12-06 16:33:47.085996	CAaa5e4d5e021f32b75b79f450035355db	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE356051e48712417fc95bd187c9e0461a	0	inbound	+18558645656	136	2.40551304817199707	\N	new lead		15	\N	\N	2175
2017-12-06 20:30:46.144944+00	2017-12-06 20:32:26.218039+00	7657	completed				+14172918402		99	2017-12-06 20:30:46.143116	2017-12-06 20:32:25.075175	CA4f2dee4a12a95e17b7004be2067bb8f3	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REdba2a0e0d9c74b08e16f19f2e3bfadb9	0	inbound	+18558645656	136	2.57604098320007324	\N	new lead		15	\N	\N	2175
2017-05-03 14:27:54.636034+00	2017-11-29 18:38:49.809008+00	4615	missed				+17184754969		24	2017-05-03 14:27:54.634102	2017-05-03 14:28:18.464088	CAaaa923d3cb2e43eb844b5900eea85084	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	manhattan  ny	9	\N	\N	2202
2016-07-08 05:22:56.762473+00	2016-07-08 11:14:46.436997+00	824	completed	Bettie	Morton	arzureemorton@yahoo.com	+13135848136		\N	2016-07-08 05:22:56.760938	\N		ee869226-e246-4ab4-aaaa-e9403e2ddd39	\N			0	outbound	+18555983683	\N	\N	{}	new lead		1	\N	\N	2203
2016-06-28 17:13:40.671686+00	2017-11-29 18:32:13.820764+00	599	completed	Betty	Morton		+13135848136		54	2016-06-28 17:13:40.670514	2016-06-28 17:14:34.641855	CAd3b686d63bf09083d6d02335aecde327	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE5d301b8e4b29ddfac9cbfbfc778b3d2e	0	inbound	+18555983683	\N	14.1238579750061035	null	new lead		1	\N	\N	2203
2016-06-28 17:15:06.600492+00	2017-11-29 18:32:13.820791+00	601	completed	Betty	Morton		+13135848136		54	2016-06-28 17:15:06.598784	2016-06-28 17:16:00.828074	CA4ff9068ca85bb517674aad3153a63a0d	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REef2df65165601a57f7307e3c79bff58b	0	inbound	+18555983683	\N	14.2869038581848145	null	new lead		1	\N	\N	2203
2016-06-30 20:24:38.914746+00	2017-11-29 18:32:13.821127+00	688	completed	Betty	Morton		+13135848136		83	2016-06-30 20:24:38.912767	2016-06-30 20:26:01.763699	CA9e2a2bb3f603ccbd177d69fdbaf48baf	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE53920cfa8b352ce80f26e5363413ce69	0	inbound	+18555983683	\N	14.5269889831542969	null	new lead		1	\N	\N	2203
2017-05-15 19:12:13.254407+00	2017-11-29 18:38:49.811572+00	5080	missed				+14698544946		17	2017-05-15 19:12:13.252137	2017-05-15 19:12:30.282616	CA981d757e747218257ac76b034acf42d7	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	dallas  tx	9	\N	\N	2249
2017-09-15 12:23:37.105285+00	2017-09-15 12:23:37.577422+00	6362	missed				+17063519992		0	2017-09-15 12:23:37.103422	2017-09-15 12:23:37.563639	CAa6d880349d0ab5a43446a530bc83b2c1	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	605
2017-05-05 20:17:39.574766+00	2017-11-29 18:38:53.215156+00	4785	completed				+12144223197		6	2017-05-05 20:17:39.571688	2017-05-05 20:17:45.089182	CAbd652376f9ba35f6a0bbbf0876597c16	\N	\N			0	inbound	+12146922088	\N	\N	\N	new lead	guzman edgar	9	\N	\N	2278
2017-10-19 17:18:30.85422+00	2017-10-19 17:20:19.854229+00	6751	completed				+16823176731		109	2017-10-19 17:18:30.85193	2017-10-19 17:20:19.474888	CAd114730fb53d3f6113c9f7f98a3cd7b9	\N	155		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE50aea2a4c31d34b669133ebcf3b40eae	0	inbound	+18177569010	124	8.20377516746520996	\N	new lead	cehand brandon	12	\N	\N	2287
2017-10-19 17:20:41.549703+00	2017-10-19 17:23:03.694307+00	6752	completed				+16823176731		141	2017-10-19 17:20:41.547158	2017-10-19 17:23:02.573448	CAa3ae2c67e93d11862f036be3a9f93065	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REf7d665e5002368e2d43b33cc22e4a96c	0	inbound	+18177569010	124	14.1349170207977295	\N	new lead	cehand brandon	12	\N	\N	2287
2017-10-19 17:32:27.558819+00	2017-10-19 17:32:55.217989+00	6753	completed				+16823176731		27	2017-10-19 17:32:27.554974	2017-10-19 17:32:54.137274	CA75bbe34f062cf6b08832ac757f0098e0	\N	155		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE23e033ef46d1165d8cb450420f1d42c8	0	inbound	+18177569010	124	11.8156960010528564	\N	new lead	cehand brandon	12	\N	\N	2287
2016-11-01 20:23:55.012468+00	2016-11-01 20:35:47.953636+00	2503	completed				+19199342017		709	2016-11-01 20:23:55.011368	2016-11-01 20:35:44.48003	CA21e7fad74601eef3afbfe306ee33fb86	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REca8db68a60a711d402c333c94231c03f	0	inbound	+18557240606	49	5.91161012649536133	null	new lead		1	\N	\N	2314
2016-10-31 23:50:46.28588+00	2016-10-31 23:50:46.314206+00	2442	missed	cesar	florez	cphlorex_3708@hotmail.com	+17047848911		\N	2016-10-31 23:50:46.284635	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2321
2017-08-05 19:23:47.769847+00	2017-08-05 19:45:39.239976+00	5940	missed				+18177569798		9	2017-08-05 19:23:47.767942	2017-08-05 19:23:56.918622	CA3efc04b2438a2266c9948edbf8d3ca8e	\N	\N			0	inbound	+18177569010	124	1289.78617787361145	\N	new lead	dallas  tx	12	\N	\N	2335
2017-10-03 14:43:53.36928+00	2017-10-03 14:49:56.444377+00	6563	completed	Tamera	Mosley	tamera.mosley@gmail.com	+14784148506		349	2017-10-03 14:43:53.367533	2017-10-03 14:49:55.900714	CA8c2d2352d4b37c760bbe1b122caa9466	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REc5c8cd5073faaa14c744ddd92a6cf636	1	outbound	+17704009016	\N	20.2658491134643555	{}	new lead		13	\N	\N	2336
2017-10-18 21:20:19.229427+00	2017-10-18 21:26:13.333561+00	6745	missed	Tamera	Mosley	tamera.mosley@gmail.com	+14784148506		0	2017-10-18 21:20:19.227026	2017-10-18 21:26:13.329195	CAbebe92d5e4f400d686450b19967849ce	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			3	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	2336
2016-08-12 12:39:54.38653+00	2016-08-17 21:03:06.583869+00	1435	missed	CURTIS	LAMBERT	LLAMBERT@GAIG.COM	+15137619620		\N	2016-08-12 12:39:54.385672	\N		25d0200e-983d-4413-94ae-eb664b99711c	\N			0	outbound	+18556311490	\N	\N	{}	application submitted - autopay		1	\N	\N	2338
2017-10-05 13:40:50.111528+00	2017-11-29 18:32:01.93555+00	6590	missed				+17813448346		22	2017-10-05 13:40:50.109442	2017-10-05 13:41:11.623415	CA9f905aed2a647bf17a4be002b4b39dec	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE18824ef7d0d080151b4ce2191fdafcf9	0	inbound	+18556311513	\N	\N	\N	new lead		1	\N	\N	2340
2017-10-05 17:05:33.409603+00	2017-10-05 17:16:35.539906+00	6594	completed	Jacarra	Smith	Brandismith2626@gmail.com	+16786151234		52	2017-10-05 17:05:33.407691	2017-10-05 17:12:22.63797	CA27d5ebd53e2360e0dc7ada908be2b16e	0427608a-ae09-4db0-a1e8-374423ee28c3	150			3	outbound	+17704009016	\N	356.482550859451294	{}	new lead		13	\N	\N	2341
2017-10-05 18:29:40.445336+00	2017-10-05 18:30:40.165344+00	6595	completed	Jacarra	Smith		+16786151234		57	2017-10-05 18:29:40.442508	2017-10-05 18:30:37.704753	CA099f14c53387294488983934b96a79d1	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REc3bdb2183348af7cf0b908e7fab70ccd	0	inbound	+17704009016	132	6.01364898681640625	\N	new lead		13	\N	\N	2341
2017-10-11 14:52:52.73955+00	2017-10-11 14:55:32.796298+00	6658	completed	Jacarra	Smith 	Brandismith2626@gmail.com	+16786151234		149	2017-10-11 14:52:52.737599	2017-10-11 14:55:31.525447	CAd4090d87ae18011f0603ef7fe897af4b	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REdcec62289669da9e1809013cce33788e	1	outbound	+17704009016	\N	14.3233428001403809	{}	new lead		13	\N	\N	2341
2017-05-06 14:39:06.952434+00	2017-11-29 18:38:49.810166+00	4797	completed				+18177914684		210	2017-05-06 14:39:06.948904	2017-05-06 14:42:37.054967	CA67d598722821dc9c14d8c1589943a3dc	\N	\N			0	inbound	+12147122250	\N	4.94850993156433105	\N	new lead	vu le	9	\N	\N	2343
2017-12-07 15:36:08.701336+00	2017-12-07 15:46:05.221493+00	7683	completed				+17543222809		596	2017-12-07 15:36:08.699679	2017-12-07 15:46:04.546423	CA0c0c5ec52bfcea0aa7686b59859be452	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REf117c2e26ec75a3a1625381191cf8a00	0	inbound	+18558645656	136	2.17533206939697266	\N	new lead		15	\N	\N	2344
2017-08-17 13:31:19.65219+00	2017-08-17 13:37:32.423723+00	6063	completed				+17063915374		373	2017-08-17 13:31:19.650221	2017-08-17 13:37:32.421407	CA869adb41cefd8bd940a43925163e1a5b	\N	153			0	inbound	+17707665732	133	349.25664496421814	\N	new lead		13	\N	\N	2345
2017-04-19 20:13:03.255353+00	2017-11-29 18:38:49.805739+00	4096	completed				+12143015957		79	2017-04-19 20:13:03.251986	2017-04-19 20:14:22.194006	CAd6b91bee5b46e6497969569f6bca1b13	\N	127			0	inbound	+12147122250	\N	1.11259078979492188	\N	new lead	dallas  tx	9	\N	\N	2347
2017-04-19 20:17:28.475407+00	2017-11-29 18:38:49.805746+00	4097	completed				+12143015957		163	2017-04-19 20:17:28.473367	2017-04-19 20:20:11.505784	CA7364ede1e641ec74b73ea0a0617d108d	\N	125			0	inbound	+12147122250	\N	2.01893997192382812	\N	new lead	dallas  tx	9	\N	\N	2347
2017-04-06 23:22:04.674738+00	2017-11-29 18:38:53.213388+00	3713	completed				+17086456445		271	2017-04-06 23:22:04.671905	2017-04-06 23:26:35.422726	CAaf2008d3712984ba947f49daa4ee4d5c	\N	105			0	inbound	+12146922088	\N	7.93938517570495605	\N	new lead	amro abrahim	9	\N	\N	2353
2017-04-17 23:28:31.293869+00	2017-11-29 18:38:49.805377+00	4019	completed				+17086456445		270	2017-04-17 23:28:31.291966	2017-04-17 23:33:01.078323	CAae29e3a3be2d8ed820c5774fdd156cc5	\N	107			0	inbound	+12147122250	\N	6.58635997772216797	\N	new lead	amro abrahim	9	\N	\N	2353
2017-12-19 18:56:49.576654+00	2017-12-19 19:08:26.435644+00	8007	completed				+12817828648		694	2017-12-19 18:56:49.574184	2017-12-19 19:08:23.20993	CA0a4f0ef7b2f672b550dea7cfe4becd9e	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE908593fc26f08d57ee214c3cba8a5065	0	inbound	+18558645656	136	2.20792198181152344	\N	new lead		15	\N	\N	2356
2017-10-21 17:30:33.538774+00	2017-10-21 17:31:28.208137+00	6776	completed				+18179185617		53	2017-10-21 17:30:33.536597	2017-10-21 17:31:27.022718	CAc49ee99aec1a9904bc8de66925747a24	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REfc435c27defe93861828c4a6b4d040c6	0	inbound	+18177569010	124	17.2123279571533203	\N	new lead	najera mariana	12	\N	\N	2359
2017-08-18 21:36:36.689269+00	2017-08-18 21:43:00.209098+00	6099	completed				+18177564529		382	2017-08-18 21:36:36.686944	2017-08-18 21:42:59.105098	CA5d5d28b28d2ce19bac704c72349997c0	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE9f34355dc70f75be850874c3352930b7	0	inbound	+18177569010	124	353.835129976272583	\N	new lead	dallas  tx	12	\N	\N	2412
2017-04-24 16:03:32.99644+00	2017-11-29 18:47:25.068256+00	4246	completed				+18503214892		474	2017-04-24 16:03:32.993705	2017-04-24 16:11:26.93434	CAe892abccb599b04de7ba4bee0ba477de	\N	82		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE662a28451c337a54a4738a1a2417a12c	0	inbound	+19728330116	\N	386.149778127670288	\N	new lead	nguyen tam     	8	\N	\N	2470
2017-04-27 21:29:04.060888+00	2017-11-29 18:38:49.807186+00	4405	completed				+18069286415		53	2017-04-27 21:29:04.05926	2017-04-27 21:29:56.872758	CA24a52aa8f8a90f3b2063dd45d46325c4	\N	125			0	inbound	+12147122250	\N	2.2427520751953125	\N	new lead	sanders ryan   	9	\N	\N	2473
2017-09-16 11:12:14.384087+00	2017-09-16 11:12:14.446796+00	6375	missed	Kasey	Roberts	kasey.rosser18@gmail.com	+17069639640		\N	2017-09-16 11:12:14.382041	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	832
2017-04-28 14:58:27.107711+00	2017-11-29 18:38:49.807229+00	4417	completed				+18069286415		76	2017-04-28 14:58:27.1049	2017-04-28 14:59:43.373639	CA0fe88fdd4e37cef8da13f96daa6e5e3b	\N	127			0	inbound	+12147122250	\N	1.32715296745300293	\N	new lead	sanders ryan   	9	\N	\N	2473
2017-04-28 14:59:35.888126+00	2017-11-29 18:38:49.807236+00	4418	completed				+18069286415		200	2017-04-28 14:59:35.886134	2017-04-28 15:02:55.978048	CA095ba2cfa838b8e263d9041eb5078b75	\N	105			0	inbound	+12147122250	\N	6.15511107444763184	\N	new lead	sanders ryan   	9	\N	\N	2473
2017-09-21 01:12:51.832956+00	2017-09-21 01:12:51.899389+00	6412	missed	Mieshia 	Harden 	mieshiaharden256@gmail.com	+16786985356		\N	2017-09-21 01:12:51.830537	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	2485
2016-05-31 19:40:30.041689+00	2016-12-09 17:06:50.452145+00	298	missed	Unknown			+12342283055		13	2016-05-31 19:40:30.039839	2016-05-31 19:40:43.186185	CAc1ba9c47c67219b6db8f116f6ff19911	\N	\N			0	inbound	+18557355502	\N	2.33214402198791504	null	new lead		3	\N	\N	2487
2017-05-01 16:17:35.683414+00	2017-11-29 18:38:49.807888+00	4507	completed				+19037382879		58	2017-05-01 16:17:35.680866	2017-05-01 16:18:33.418853	CA6422767df9f038461e30f9dda2780335	\N	125			0	inbound	+12147122250	\N	1.87719988822937012	\N	new lead	cell phone   tx	9	\N	\N	2490
2017-05-01 16:18:24.02551+00	2017-11-29 18:38:49.8079+00	4508	completed				+19037382879		60	2017-05-01 16:18:24.023572	2017-05-01 16:19:23.641946	CAef36296e35d6da4d0ad7a9cc34cf6344	\N	\N			0	inbound	+12147122250	\N	4.57061600685119629	\N	new lead	cell phone   tx	9	\N	\N	2490
2017-05-01 17:48:58.858556+00	2017-11-29 18:38:49.808026+00	4520	completed				+19037382879		56	2017-05-01 17:48:58.855637	2017-05-01 17:49:54.880177	CAf64ba498358cd1945817bb911904063a	\N	124			0	inbound	+12147122250	\N	1.52567911148071289	\N	new lead	cell phone   tx	9	\N	\N	2490
2017-05-01 19:02:40.810704+00	2017-11-29 18:38:49.808237+00	4535	completed				+19037382879		54	2017-05-01 19:02:40.807169	2017-05-01 19:03:34.821173	CA3a8e6c3219380a9f1c0bbfe57abc85bd	\N	124			0	inbound	+12147122250	\N	2.1133420467376709	\N	new lead	cell phone   tx	9	\N	\N	2490
2017-05-01 19:03:29.142243+00	2017-11-29 18:38:49.808254+00	4536	completed				+19037382879		65	2017-05-01 19:03:29.138776	2017-05-01 19:04:33.69196	CA40d179e310465e0b333e15908947623d	\N	125			0	inbound	+12147122250	\N	2.2526390552520752	\N	new lead	cell phone   tx	9	\N	\N	2490
2017-05-04 17:44:46.212067+00	2017-11-29 18:38:49.809643+00	4715	completed				+19037382879		55	2017-05-04 17:44:46.210242	2017-05-04 17:45:41.476754	CA7afafcafa713241554cb71d92ce2551d	\N	124			0	inbound	+12147122250	\N	2.07871890068054199	\N	new lead	cell phone   tx	9	\N	\N	2490
2017-05-04 17:45:40.148198+00	2017-11-29 18:38:49.80965+00	4716	missed				+19037382879		24	2017-05-04 17:45:40.146646	2017-05-04 17:46:04.398895	CAaee80a34abf17476ee3819e863aa6d66	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	cell phone   tx	9	\N	\N	2490
2017-05-08 16:02:12.319347+00	2017-11-29 18:38:49.810273+00	4845	completed				+19037382879		129	2017-05-08 16:02:12.317723	2017-05-08 16:04:21.270917	CAa7d0cbdb78666a603b4a9f050fe14b27	\N	124			0	inbound	+12147122250	\N	1.11461806297302246	\N	new lead	cell phone   tx	9	\N	\N	2490
2017-05-08 16:04:36.106004+00	2017-11-29 18:38:49.81028+00	4846	completed				+19037382879		65	2017-05-08 16:04:36.103843	2017-05-08 16:05:40.799774	CA8143c8a3bdeed970e2e0189325ff0366	\N	124			0	inbound	+12147122250	\N	1.43525218963623047	\N	new lead	cell phone   tx	9	\N	\N	2490
2017-05-10 17:55:19.732565+00	2017-11-29 18:38:49.810825+00	4961	completed				+19037382879		51	2017-05-10 17:55:19.731159	2017-05-10 17:56:10.99708	CA75cd4c67976654c41f7fe699f00f1664	\N	124			0	inbound	+12147122250	\N	0.813828945159912109	\N	new lead	cell phone   tx	9	\N	\N	2490
2017-12-11 02:47:08.269909+00	2017-12-11 02:48:29.322023+00	7768	completed	Alaina	Grace	Gracewedding101015@gmail.com	+14695256898		78	2017-12-11 02:47:08.268395	2017-12-11 02:48:29.320196	CA85007a634b6a3a957345408be6750867	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.45995593070983887	{}	new lead		15	\N	\N	2491
2017-03-23 18:45:39.049732+00	2017-11-29 18:38:53.212833+00	3559	completed				+12144860186		94	2017-03-23 18:45:39.047056	2017-03-23 18:47:12.693803	CA1d7f7cf5e3510c17fb8d3c2bc6443ee3	\N	\N			0	inbound	+12146922088	\N	3.67312812805175781	\N	new lead	trigg yolonda	9	\N	\N	2492
2017-03-23 18:47:19.350648+00	2017-11-29 18:38:53.21284+00	3560	completed				+12144860186		103	2017-03-23 18:47:19.349054	2017-03-23 18:49:02.486056	CA7257f0631ecd9ffe603ab35c28efc6f2	\N	\N			0	inbound	+12146922088	\N	8.61953306198120117	\N	new lead	trigg yolonda	9	\N	\N	2492
2017-05-23 23:21:43.923861+00	2017-08-17 14:35:21.04532+00	5341	completed				+18175658976		293	2017-05-23 23:21:43.921898	2017-05-23 23:26:37.409893	CAec99a51afbb1d93f706e84d4502d110e	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE46f5bc6214714f6158ef895aefbefc92	0	inbound	+18177569010	124	5.5547640323638916	\N	new lead	armour charles 	12	\N	\N	2494
2017-12-06 23:24:58.594319+00	2017-12-06 23:26:58.746631+00	7667	completed				+15128443254		120	2017-12-06 23:24:58.59276	2017-12-06 23:26:58.169083	CAd29932d115756b09f213df37e8645c76	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE1e3072c0cfef391b461330c13b59ac0a	0	inbound	+18558645656	136	2.06763100624084473	\N	new lead		15	\N	\N	2496
2017-09-06 07:19:44.887973+00	2017-09-06 07:19:44.940946+00	6270	missed	Turkessa	Sheats	Teekay100.t@gmail.com	+17062484214		\N	2017-09-06 07:19:44.88655	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	2497
2017-05-16 18:56:04.242468+00	2017-11-29 18:38:49.811811+00	5118	completed				+19176875996		114	2017-05-16 18:56:04.240385	2017-05-16 18:57:58.201782	CA172c6d6152978dd3ac6f9ec360aa75cb	\N	133			0	inbound	+12147122250	\N	9.37285518646240234	\N	new lead	alioune ndiaye	9	\N	\N	2498
2016-08-26 19:28:45.780193+00	2017-11-29 18:31:14.616545+00	1792	missed				+19204994711		11	2016-08-26 19:28:45.778037	2016-08-26 19:28:57.177128	CA22f87697d2ac8d0325a04f008defa00b	\N	\N			0	inbound	+18556311541	\N	5.71775102615356445	null	new lead		1	\N	\N	2540
2016-08-26 19:29:33.071933+00	2017-01-27 21:12:23.813792+00	1793	completed				+19204994711		46	2016-08-26 19:29:33.07073	2016-08-26 19:30:18.9509		\N	\N			0	outbound	+18555343978	48	\N	null	new lead		1	\N	\N	2540
2016-11-01 18:06:54.56969+00	2016-11-01 18:09:16.114878+00	2483	completed				+17707815599		141	2016-11-01 18:06:54.567401	2016-11-01 18:09:15.558293	CA34fa89876bfc2db49476d3d198e4b665	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE5130ecc354856ce814d746f911faae14	0	inbound	+18557240606	49	1.5654749870300293	null	new lead		1	\N	\N	2541
2016-11-02 17:27:09.378219+00	2016-11-02 17:27:09.406174+00	2576	missed	michael	sales sr	msalessr@bellsouth.net	+17707815599		\N	2016-11-02 17:27:09.37683	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2541
2016-11-03 14:29:30.445699+00	2016-11-03 14:38:28.899534+00	2623	completed	michael	sales sr		+17707815599		537	2016-11-03 14:29:30.444286	2016-11-03 14:38:26.981504	CA7664453458d0aa5eff8c565437e29894	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE77c71d9a57ce5df89cd671328532e469	0	inbound	+18557240606	49	2.20236802101135254	null	new lead		1	\N	\N	2541
2016-11-12 18:28:35.315618+00	2016-12-09 17:06:53.906112+00	2877	completed				+12159139905		64	2016-11-12 18:28:35.313705	2016-11-12 18:29:39.753156	CAac1c2d5130165b308ca7e6d179815583	\N	21			0	inbound	+18558021330	\N	2.98285603523254395	null	new lead		3	\N	\N	2542
2016-11-11 18:31:18.229712+00	2016-12-09 17:06:53.906105+00	2864	completed				+12159139905		107	2016-11-11 18:31:18.228249	2016-11-11 18:33:05.231308	CAf139ee0eba3b66fda83523635318dd78	\N	21			0	inbound	+18558021330	\N	2.75543093681335449	null	new lead		3	\N	\N	2542
2016-11-02 15:54:31.729069+00	2016-11-02 15:59:53.311988+00	2557	completed				+19032687156		321	2016-11-02 15:54:31.726942	2016-11-02 15:59:52.821485	CAf127cc73c2177035c1bda025f1a1639d	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REfa2b62ea33b217fb7f41ecea924be003	0	inbound	+18557240606	49	1.9657890796661377	null	new lead		1	\N	\N	2543
2016-11-02 16:03:26.607333+00	2016-11-02 16:05:39.8087+00	2561	completed				+19032687156		133	2016-11-02 16:03:26.606331	2016-11-02 16:05:39.106493	CA5fd4c0cd2dbb95050d3fdb41fa80337a	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REc383b8954208e51304657f00ceb32867	0	inbound	+18557240606	49	2.19801998138427734	null	new lead		1	\N	\N	2543
2016-11-02 17:25:39.38775+00	2016-11-02 18:03:12.21525+00	2575	completed				+19032687156		2249	2016-11-02 17:25:39.385106	2016-11-02 18:03:08.259089	CA4b7182d758744962d28bf9eb156f78d1	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE42d5e9ffa60777ebe126c89aa2abe4d5	0	inbound	+18557240606	49	2.72213101387023926	null	new lead		1	\N	\N	2543
2016-08-11 21:19:13.287713+00	2017-11-29 18:31:41.490681+00	1430	missed				+16147884510		58	2016-08-11 21:19:13.286268	2016-08-11 21:20:11.291635	CAf5a5b4cb21d6b8f701e7ad77fab0b776	\N	\N			0	inbound	+18552959002	\N	31.5846660137176514	null	application started		1	\N	\N	2546
2016-08-03 18:24:17.733956+00	2017-11-29 18:31:41.490611+00	1183	completed				+16147884510		111	2016-08-03 18:24:17.732795	2016-08-03 18:26:09.175878	CA5d17693c0f00c09f379b2da3b9ec9391	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REe925b7420ecf34351793184d00f73af9	0	inbound	+18552959002	\N	7.49019193649291992	null	application started		1	\N	\N	2546
2017-04-18 21:08:18.938455+00	2017-11-29 18:38:49.80558+00	4064	completed				+17133306556		82	2017-04-18 21:08:18.936999	2017-04-18 21:09:40.757851	CA44e86649e0fe441e6bced28c5a8844ca	\N	127			0	inbound	+12147122250	\N	1.37585687637329102	\N	new lead	nguyen david   	9	\N	\N	2548
2017-04-18 21:09:38.617781+00	2017-11-29 18:38:49.805587+00	4065	completed				+17133306556		56	2017-04-18 21:09:38.615128	2017-04-18 21:10:34.584089	CA2884113eccf309034eb9b35e9182e720	\N	125			0	inbound	+12147122250	\N	2.26149797439575195	\N	new lead	nguyen david   	9	\N	\N	2548
2017-04-18 21:10:57.119218+00	2017-11-29 18:38:49.805595+00	4066	completed				+17133306556		83	2017-04-18 21:10:57.117418	2017-04-18 21:12:20.575339	CA28c0d78dc03220eef4a4feb7a3ae7d83	\N	127			0	inbound	+12147122250	\N	1.19894909858703613	\N	new lead	nguyen david   	9	\N	\N	2548
2017-04-20 19:46:00.493297+00	2017-11-29 18:38:49.806024+00	4147	completed				+17133306556		64	2017-04-20 19:46:00.490515	2017-04-20 19:47:04.411587	CA9d6bc56d4ad094923210a95f21afcf6f	\N	125			0	inbound	+12147122250	\N	1.06671905517578125	\N	new lead	nguyen david   	9	\N	\N	2548
2017-04-20 19:47:16.993112+00	2017-11-29 18:38:49.806032+00	4148	completed				+17133306556		80	2017-04-20 19:47:16.990852	2017-04-20 19:48:36.734631	CAbf2e0989b0deb6db4c49e33372b7aa70	\N	126			0	inbound	+12147122250	\N	1.19237017631530762	\N	new lead	nguyen david   	9	\N	\N	2548
2017-04-20 19:48:29.829451+00	2017-11-29 18:38:49.806039+00	4149	completed				+17133306556		79	2017-04-20 19:48:29.827117	2017-04-20 19:49:48.706302	CA1200841762c59aee8dcfa91a85580b84	\N	127			0	inbound	+12147122250	\N	1.58697414398193359	\N	new lead	nguyen david   	9	\N	\N	2548
2017-04-17 20:02:15.967649+00	2017-11-29 18:38:49.805275+00	4004	completed				+12144504498		113	2017-04-17 20:02:15.965259	2017-04-17 20:04:09.439065	CA2f74a9d83756f73cc27c3d83294e4705	\N	127			0	inbound	+12147122250	\N	1.22801995277404785	\N	new lead	scott hunter   	9	\N	\N	2549
2017-09-27 21:05:26.209369+00	2017-09-27 21:09:09.836807+00	6499	completed	Jonnathan	Miller	Jonnathanmiller1984@gmail.com	+17067281999		214	2017-09-27 21:05:26.207665	2017-09-27 21:09:08.436488	CA24ab64c4ff96ba8516d73818af034988	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE593cc280d9337a1ddd29b5d6253b7abf	1	outbound	+17704009016	\N	7.11417484283447266	{}	new lead		13	\N	\N	2550
2017-04-06 20:20:01.674067+00	2017-11-29 18:38:53.213381+00	3711	completed				+16365303250		142	2017-04-06 20:20:01.672319	2017-04-06 20:22:24.158062	CAe135fda0031caac409667008075f04b4	\N	107			0	inbound	+12146922088	\N	9.39994692802429199	\N	new lead	wells fargo adv	9	\N	\N	2552
2017-05-06 20:49:20.003687+00	2017-11-29 18:38:53.215199+00	4814	completed				+18585411616		196	2017-05-06 20:49:20.001834	2017-05-06 20:52:36.32658	CA73c30627fb10ed0de94036eaa4781b1b	\N	\N			0	inbound	+12146922088	\N	6.44595623016357422	\N	new lead	porter r	9	\N	\N	2554
2017-12-02 18:12:46.997859+00	2017-12-02 18:27:18.874833+00	7490	completed				+19284464194		869	2017-12-02 18:12:46.99567	2017-12-02 18:27:15.576876	CA13dfd75bcb908273295ea8b3a11c0087	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE3657b8ef31137fc981e63a949a79981c	0	inbound	+18558645656	136	2.12307310104370117	\N	new lead		15	\N	\N	2559
2016-11-02 02:36:29.397901+00	2016-11-02 02:36:29.429027+00	2537	missed	Emil	Shumanov	viki_krumova@abv.bg	+18324206055		\N	2016-11-02 02:36:29.396467	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2563
2017-12-22 14:18:23.481493+00	2017-12-22 14:18:28.131215+00	8064	completed				+15738980161		5	2017-12-22 14:18:23.479442	2017-12-22 14:18:28.121425	CAec9ed33ffd786db01e46c70beee02820	\N	120			0	inbound	+18036184106	123	3.17374205589294434	\N	new lead		10	\N	\N	2564
2017-10-10 20:47:36.572592+00	2017-10-10 20:48:18.217681+00	6652	completed	Thelma	Lockman	jessica0887@gmail.com	+17708995286		28	2017-10-10 20:47:36.570419	2017-10-10 20:48:17.246254	CA8fb2ea901cc313117bce83b33a9ad967	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE131e86a0ffae9362e38ff4f5291bd54d	1	outbound	+17704009016	\N	17.4097831249237061	{}	new lead		13	\N	\N	2571
2017-07-06 17:05:10.037154+00	2017-07-06 17:15:56.851831+00	5723	completed	Sujuan	Glenn	Donnique23@yahoo.com	+16789341498		41	2017-07-06 17:05:10.035234	2017-07-06 17:11:28.742498	CAf1c6e0fe8a5a9423981bd051f9ff7375	0427608a-ae09-4db0-a1e8-374423ee28c3	153			3	outbound	+17704009016	\N	337.856942892074585	{}	new lead		13	\N	\N	2573
2017-08-07 17:37:58.683622+00	2017-08-07 17:43:30.841934+00	5954	completed				+17707664120		332	2017-08-07 17:37:58.68048	2017-08-07 17:43:30.508411	CAa141a872a7167506c67b6a03b00e72a1	\N	153			0	inbound	+17707665732	133	318.503941059112549	\N	new lead		13	\N	\N	2580
2017-03-16 17:03:44.703509+00	2017-11-29 18:38:53.212446+00	3464	completed				+14698181462		131	2017-03-16 17:03:44.700603	2017-03-16 17:05:55.982472	CAdc50ef8cafec95667084b757855508ef	\N	105			0	inbound	+12146922088	\N	4.63813304901123047	\N	new lead		9	\N	\N	2582
2017-11-15 19:02:43.589442+00	2017-11-29 18:31:56.600514+00	7066	missed				+15708221914		6	2017-11-15 19:02:43.587289	2017-11-15 19:02:49.750678	CA8c02b12c82561cc0802efa6d8fdc2e30	\N	\N			0	inbound	+18556311397	\N	\N	\N	new lead		1	\N	\N	2583
2017-05-05 19:50:54.196205+00	2017-11-29 18:38:53.215149+00	4783	completed				+13107732962		261	2017-05-05 19:50:54.194042	2017-05-05 19:55:15.554659	CA610cdfda753e862bc3a0366440743180	\N	\N			0	inbound	+12146922088	\N	1.33809494972229004	\N	new lead	lakhani ali	9	\N	\N	2585
2016-09-09 14:58:04.796113+00	2016-12-09 17:10:17.413441+00	1974	completed				+19084547662		263	2016-09-09 14:58:04.793666	2016-09-09 15:02:28.060393	CAa4e8277ff6fcb7bff8de9db4a8fff056	\N	27			0	inbound	+18552716856	\N	6.60893392562866211	null	new lead		3	\N	\N	2586
2017-09-05 20:21:18.319134+00	2017-09-05 20:22:38.717339+00	6263	completed	Marcus	Harris	mdrharris@gmail.com	+14049641093		62	2017-09-05 20:21:18.317707	2017-09-05 20:22:37.626916	CA25fed679fece4ec6312090b071d2e6a5	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE0598ed4275e098981990a1bf312dd4c4	1	outbound	+17704009016	\N	15.8725440502166748	{}	new lead		13	\N	\N	2589
2017-12-01 22:19:44.829208+00	2017-12-01 22:26:26.388058+00	7455	completed	Pernell	Roberts	flameless@aol.com	+17709123770		53	2017-12-01 22:19:44.827848	2017-12-01 22:26:25.2485	CAb915a1f728c9ec27b8b268cf37917e8a	e611622e-d408-4b1f-85fa-8cba4306b7ab	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REfe7e727246477b1a9fdcd9ba2544cbd1	3	outbound	+17704009016	\N	346.225340127944946	{}	new lead		13	\N	\N	2594
2017-12-01 22:20:33.233032+00	2017-12-01 22:21:18.03631+00	7456	completed	Pernell	Roberts	flameless@aol.com	+17709123770		37	2017-12-01 22:20:33.231447	2017-12-01 22:21:16.812545	CA13665b72f35cdec7225ea3065a6fcca7	e611622e-d408-4b1f-85fa-8cba4306b7ab	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE5a986b4d68da4f3e5092c9d27edf37a4	1	outbound	+17704009016	\N	14.8043701648712158	{}	new lead		13	\N	\N	2594
2017-12-01 22:18:55.514828+00	2017-12-01 22:20:03.274224+00	7454	completed	Pernell	Roberts	flameless@aol.com	+17709123770		61	2017-12-01 22:18:55.511392	2017-12-01 22:20:03.12563	CA33394b50d5219e53abebf4b184f717eb	e611622e-d408-4b1f-85fa-8cba4306b7ab	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REaa30dcb954a4af6393aa442a9d3e33a0	1	outbound	+17704009016	\N	11.6159889698028564	{}	new lead		13	\N	\N	2594
2017-12-01 22:37:42.303988+00	2017-12-01 22:42:57.48736+00	7460	completed	Pernell	Roberts	flameless@aol.com	+17709123770		31	2017-12-01 22:37:42.302062	2017-12-01 22:38:20.569422	CA56564535f7e9a1c4f1bfb6dd6cb4d1cf	e611622e-d408-4b1f-85fa-8cba4306b7ab	153			1	outbound	+17704009016	\N	11.6928579807281494	{}	new lead		13	\N	\N	2594
2017-12-05 04:04:21.019133+00	2017-12-05 04:05:43.77246+00	7575	completed				+12487550777		82	2017-12-05 04:04:21.016892	2017-12-05 04:05:42.587016	CAd6b896235ecf4843de0099d949c6aa30	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REea726ef6799834b7106e9ea26ad90ebd	0	inbound	+18558645656	136	2.6162109375	\N	new lead		15	\N	\N	4083
2017-12-01 22:45:54.088261+00	2017-12-01 22:48:05.476556+00	7461	completed	Pernell	Roberts	flameless@aol.com	+17709123770		118	2017-12-01 22:45:54.086072	2017-12-01 22:48:04.135989	CA6ecf342b629f0aa05e42c0debef7c78e	e611622e-d408-4b1f-85fa-8cba4306b7ab	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE28884c5f82b8dd286eeaf49de7066969	1	outbound	+17704009016	\N	15.2556028366088867	{}	new lead		13	\N	\N	2594
2016-10-05 15:39:36.778882+00	2016-12-10 01:01:00.200197+00	2177	completed				+16199408382		222	2016-10-05 15:39:36.776989	2016-10-05 15:43:19.152309	CAd1cf688919a6d2ffc3b43443f87dbe7b	\N	57			0	inbound	+18557860909	\N	7.20401096343994141	null	new lead		3	\N	\N	2602
2016-09-07 12:57:44.445476+00	2016-12-10 00:55:45.165463+00	1898	completed				+16105179008		60	2016-09-07 12:57:44.443381	2016-09-07 12:58:44.843541	CA9ee557c98dc010f159ef3ab13bb2dd96	\N	24			0	inbound	+18557129406	\N	1.29131817817687988	null	new lead		3	\N	\N	2603
2016-09-07 12:58:49.282452+00	2016-12-10 00:55:45.16547+00	1899	completed				+16105179008		223	2016-09-07 12:58:49.280775	2016-09-07 13:02:32.468836	CAc0376e87de6e307f04fc2f963bb3d4da	\N	24			0	inbound	+18557129406	\N	1.1155550479888916	null	new lead		3	\N	\N	2603
2016-08-25 22:57:47.370875+00	2016-12-10 00:55:45.165441+00	1784	completed				+16105179008		69	2016-08-25 22:57:47.369216	2016-08-25 22:58:56.374312	CA620d40806c5db51919f59dcff6e6c3f5	\N	24			0	inbound	+18557129406	\N	2.17107486724853516	null	new lead		3	\N	\N	2603
2016-10-04 16:02:09.8196+00	2016-12-10 01:01:51.440988+00	2138	completed				+16196721755		224	2016-10-04 16:02:09.816728	2016-10-04 16:05:53.872391	CA35cb178ac3bc0edda58ed0042306e9bb	\N	50			0	inbound	+18559693782	\N	2.04745316505432129	null	new lead		3	\N	\N	2606
2017-07-14 17:03:43.189586+00	2017-07-14 17:06:19.926927+00	5777	completed				+16786565503		156	2017-07-14 17:03:43.186985	2017-07-14 17:06:19.212303	CA58b3b161e8976aa246bf022ed1223829	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE071bb9ead2a9a063d08e54377b6e1826	0	inbound	+17704009016	132	11.5823221206665039	\N	new lead		13	\N	\N	2607
2017-04-26 18:25:52.619002+00	2017-11-29 18:38:53.214596+00	4330	completed				+12102195045		217	2017-04-26 18:25:52.617108	2017-04-26 18:29:29.212885	CAda57c771a50eec25725117517c94be42	\N	\N			0	inbound	+12146922088	\N	6.45240998268127441	\N	new lead	berlanga darlen	9	\N	\N	2608
2016-10-06 18:54:20.209547+00	2016-12-10 01:00:18.56849+00	2220	completed				+16198840788		404	2016-10-06 18:54:20.206836	2016-10-06 19:01:04.402246	CA2e1019a31ddcd87404748eb01356f2d7	\N	56			0	inbound	+18556775511	\N	4.73813295364379883	null	new lead		3	\N	\N	2609
2017-12-01 16:23:23.092651+00	2017-12-01 16:23:47.224332+00	7428	completed				+18176929226		24	2017-12-01 16:23:23.09064	2017-12-01 16:23:46.927292	CA748c5efc350cba09d53ebd975ca1cc85	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE762eff5ca89837305132a34f9b676dc3	0	inbound	+18177569010	124	9.31867790222167969	\N	new lead	rios leslie	12	\N	\N	2613
2017-07-18 19:47:36.287842+00	2017-08-17 14:35:21.045623+00	5802	completed				+18177568414		39	2017-07-18 19:47:36.285171	2017-07-18 19:48:15.398133	CA90e83d12adca7aa139bd2eb76f2b05af	\N	\N			0	inbound	+18177569010	124	13.4354228973388672	\N	new lead	dallas  tx	12	\N	\N	3645
2017-07-27 15:55:38.095694+00	2017-08-17 14:35:21.045673+00	5861	completed				+14697794720		44	2017-07-27 15:55:38.093948	2017-07-27 15:56:22.198341	CA747f8890850b6fdc4369eeeb71be3181	\N	\N			0	inbound	+18177569010	124	19.4898300170898438	\N	new lead	progressive ins	12	\N	\N	2183
2016-12-23 12:59:54.267223+00	2017-11-29 18:31:41.490807+00	3092	missed				+17277747678		11	2016-12-23 12:59:54.265594	2016-12-23 13:00:05.612365	CA3321d15ec4d0d1c1b155ea4e601ecf21	\N	\N			0	inbound	+18552959002	\N	\N	null	new lead		1	\N	\N	3076
2017-09-28 20:38:40.077557+00	2017-09-28 20:38:40.211244+00	6513	missed				+14049147800		0	2017-09-28 20:38:40.075797	2017-09-28 20:38:40.200521	CAe164026c87d123f585d6edfdeb0e44c3	\N	\N			0	inbound	+17707665732	133	\N	\N	new lead		13	\N	\N	2885
2017-09-30 19:53:29.847702+00	2017-09-30 19:57:53.800847+00	6553	completed				+266696687		264	2017-09-30 19:53:29.845922	2017-09-30 19:57:53.777506	CAa9c71becf71c2042c897b7001b3c5db9	\N	152			0	inbound	+17707665732	133	10.4313299655914307	\N	new lead		13	\N	\N	\N
2017-09-30 20:04:07.711247+00	2017-09-30 20:04:56.418797+00	6554	completed				+266696687		49	2017-09-30 20:04:07.708739	2017-09-30 20:04:56.410162	CA1ef8bc15e7121644f93f1e4f4bf0c1d3	\N	152			0	inbound	+17707665732	133	12.5988531112670898	\N	new lead		13	\N	\N	\N
2017-10-12 00:32:11.294371+00	2017-10-12 00:32:11.365263+00	6670	missed	Vernon	Collins	Collinsvernon34@gmail.com	+17064272135		\N	2017-10-12 00:32:11.292505	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	402
2017-10-17 15:32:30.46372+00	2017-10-17 15:57:08.64926+00	6732	missed				+266696687		80	2017-10-17 15:32:30.460759	2017-10-17 15:33:50.920193	CA418bb4549d26c8f593e129481096c595	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE26c94d4e8f1c45392aecc6aef11263ba	0	inbound	+18177569010	124	1412.63025379180908	\N	new lead	restricted	12	\N	\N	\N
2017-11-03 21:31:49.244757+00	2017-11-03 21:33:04.928851+00	6923	completed				+16787606006		76	2017-11-03 21:31:49.242842	2017-11-03 21:33:04.917436	CA18790d9162c32130a79cc4059ff777e8	\N	150			0	inbound	+17707665732	133	15.4969010353088379	\N	new lead		13	\N	\N	378
2017-11-11 20:21:30.664428+00	2017-11-11 20:44:40.795704+00	7027	missed				+527774905641		6	2017-11-11 20:21:30.662411	2017-11-11 20:21:36.819897	CAb423fc0d4832ea49bd9d1bd5d6e8b751	\N	\N			0	inbound	+18172104002	126	1365.73982691764832	\N	new lead	restricted	12	\N	\N	\N
2017-12-01 16:37:17.960702+00	2017-12-01 16:38:07.048351+00	7431	completed				+18176929226		48	2017-12-01 16:37:17.958658	2017-12-01 16:38:06.410637	CA9c4333d9271e227b391c9eb8da894797	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE877f383ae5d5341e6626fa315076000b	0	inbound	+18177569010	124	12.1168828010559082	\N	new lead	rios leslie	12	\N	\N	2613
2017-04-27 19:27:57.827591+00	2017-11-29 18:38:49.807073+00	4385	completed				+19722520084		80	2017-04-27 19:27:57.826381	2017-04-27 19:29:17.949641	CA2df96147f888dff987a71667a65a9856	\N	124			0	inbound	+12147122250	\N	1.30258321762084961	\N	new lead	big t branding 	9	\N	\N	422
2016-01-31 17:07:59.011948+00	2016-01-31 17:07:59.01197+00	14		Sally	Jones		+7732909650		\N	2016-01-31 17:07:59.010251	\N		\N	\N			0	inbound		\N	\N	\N	new lead		2	\N	\N	\N
2017-03-04 18:45:12.182447+00	2017-11-29 18:47:25.067587+00	3324	completed				+14692451714		450	2017-03-04 18:45:12.177875	2017-03-04 18:52:42.200016	CAfaa8bc0a21aeee376ac15765fdcd43f9	\N	83		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REdb32a6d7e5fc20f02b32ce432797c23f	0	inbound	+19728330116	\N	9.08647298812866211	\N	new lead	linda edwards	8	\N	\N	1851
2017-03-04 19:23:08.091637+00	2017-11-29 18:47:25.067594+00	3325	completed				+14692451714		1462	2017-03-04 19:23:08.089522	2017-03-04 19:47:30.436692	CAf8a3bd1650710597d5f177c2a7e1d215	\N	83		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE442cbfdc18470a4e1f052bee850775a0	0	inbound	+19728330116	\N	1321.10472702980042	\N	new lead	linda edwards	8	\N	\N	1851
2017-03-04 19:26:08.984699+00	2017-11-29 18:47:25.067601+00	3326	completed				+14692451714		294	2017-03-04 19:26:08.983161	2017-03-04 19:31:02.791778	CAb7f750549945f1b28d1b4d8fa1cd10af	\N	82		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE691c835df8694bdb09c721da03212b35	0	inbound	+19728330116	\N	7.88985013961791992	\N	new lead	linda edwards	8	\N	\N	1851
2017-03-04 19:47:37.709629+00	2017-11-29 18:47:25.067609+00	3327	completed				+14692451714		94	2017-03-04 19:47:37.7083	2017-03-04 19:49:11.390301	CA01e910acc8b437476d128000c8ed53c2	\N	83			0	inbound	+19728330116	\N	11.4247679710388184	\N	new lead	linda edwards	8	\N	\N	1851
2016-06-27 16:42:41.005664+00	2017-11-29 18:31:29.180649+00	525	completed	Susan	Westfall		+12165733731		26	2016-06-27 16:42:41.004614	2016-06-27 16:43:07.28192	CA65837336f91b6949056edf3b8f3e9097	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE24809957b14a89fe355c5061475d5de5	0	inbound	+18556311528	\N	14.6233358383178711	null	new lead		1	\N	\N	2156
2017-12-29 14:45:15.785959+00	2017-12-29 14:51:59.61023+00	8146	completed	Michael	Wylie	Michaelwylie@yahoo.con	+17069494342		53	2017-12-29 14:45:15.784304	2017-12-29 14:51:59.584523	CA08466458f6c64e76fdb72bfff1fba368	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REf78131faddbb27f51f88bf8647c318ef	3	outbound	+17704009016	\N	348.033182144165039	{}	new lead		13	\N	\N	2157
2016-09-19 20:44:01.096727+00	2016-12-09 17:10:17.413463+00	2053	completed				+19088593920		79	2016-09-19 20:44:01.093733	2016-09-19 20:45:20.336706	CAcd74db6ddac8c1cda15d401ee768eff2	\N	27			0	inbound	+18552716856	\N	6.60634398460388184	null	new lead		3	\N	\N	2164
2016-11-04 22:03:24.363808+00	2016-11-04 22:03:24.390512+00	2733	missed	PRASHANT	TYAGI	prashant.tyagi1@gmail.com	+16023736660		\N	2016-11-04 22:03:24.36256	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2168
2017-12-22 16:16:31.161806+00	2017-12-22 16:21:35.574074+00	8067	completed	Jason	Groth	Jpgroth@msn.com	+14046009339		284	2017-12-22 16:16:31.159998	2017-12-22 16:21:33.141593	CA0d74704627982f350dcdcfa77aa2f27a	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE26c9e7137507a0404f9b668875b7e204	1	outbound	+17704009016	\N	18.9397311210632324	{}	new lead		13	\N	\N	2169
2016-08-05 17:31:27.095997+00	2016-12-10 00:55:45.165108+00	1277	completed				+16105040508		220	2016-08-05 17:31:27.094755	2016-08-05 17:35:06.892782	CA69bb9d6b33d9421ae3ef21d6ee9be136	\N	24			0	inbound	+18557129406	\N	2.15407705307006836	null	new lead		3	\N	\N	2171
2016-08-05 20:46:19.082018+00	2016-12-10 00:55:45.165123+00	1285	completed				+16105040508		228	2016-08-05 20:46:19.080802	2016-08-05 20:50:06.628368	CA91b18caabe38c5f3e3b3269787c25e24	\N	24			0	inbound	+18557129406	\N	1.63568615913391113	null	new lead		3	\N	\N	2171
2017-07-13 14:07:26.540647+00	2017-07-13 14:13:10.954256+00	5769	missed				+17707668996		11	2017-07-13 14:07:26.538793	2017-07-13 14:07:37.873413	CA9f35853ee88c09bd03f48c11153e2b85	\N	\N			0	inbound	+17707665732	133	\N	\N	new lead		13	\N	\N	2172
2017-04-14 18:03:18.069768+00	2017-11-29 18:31:10.262832+00	3932	completed	Steve Robert	Williams		+15134776285		45	2017-04-14 18:03:18.068433	2017-04-14 18:04:02.85845		\N	16			0	outbound	+18556311490	\N	\N	\N	application submitted - autopay		1	\N	\N	2616
2017-04-14 17:47:20.883599+00	2017-11-29 18:31:10.262825+00	3926	missed	Steve Robert	Williams		+15134776285		23	2017-04-14 17:47:20.88184	2017-04-14 17:47:44.090815	CA149429de902a70524654848cf021a4c3	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE3962e675c44eef6c9c21be27cacc154c	0	inbound	+18556311490	\N	\N	\N	application submitted - autopay		1	\N	\N	2616
2017-06-26 14:45:51.912968+00	2017-06-26 14:52:10.083597+00	5657	missed				+16785487310		45	2017-06-26 14:45:51.910368	2017-06-26 14:46:37.142115	CAd302d79fd96b8f2395491343b399586a	\N	\N			0	inbound	+17704009016	132	359.038129091262817	\N	new lead		13	\N	\N	2617
2017-03-13 19:50:58.070372+00	2017-11-29 18:47:25.067728+00	3405	missed				+14693872963		7	2017-03-13 19:50:58.066753	2017-03-13 19:51:04.576865	CA17a22399411322ea98d8aee05b2a21cd	\N	\N			0	inbound	+19728330116	\N	334.976016044616699	\N	new lead	amd dealership 	8	\N	\N	260
2017-04-01 23:16:41.187373+00	2017-11-29 18:47:25.067975+00	3665	missed				+19039100947		6	2017-04-01 23:16:41.185777	2017-04-01 23:16:46.874778	CAf4e81d76959c920b9ddcadd21a56846c	\N	\N			0	inbound	+19728330116	\N	329.068017959594727	\N	new lead	cell phone   tx	8	\N	\N	909
2016-07-06 14:55:38.617735+00	2016-12-09 17:06:53.905715+00	770	completed				+18472591942		38	2016-07-06 14:55:38.615324	2016-07-06 14:56:16.472814	CAd3f3008919e152f7c3c31cb90457eec5	\N	21			0	inbound	+18558021330	\N	2.51629900932312012	null	new lead		3	\N	\N	986
2017-08-07 19:46:20.13835+00	2017-08-07 19:53:07.032288+00	5955	completed	Kimberly	Adkins	Kimberlyadkins94@gmail.com	+17063512849		65	2017-08-07 19:46:20.136689	2017-08-07 19:53:07.030973	CAd9bc100fe2132093f7e893a6681ec492	0427608a-ae09-4db0-a1e8-374423ee28c3	153			3	outbound	+17704009016	\N	341.300129890441895	{}	new lead		13	\N	\N	2177
2017-07-17 19:07:16.297141+00	2017-07-17 19:09:35.206018+00	5793	completed				+16785587409		138	2017-07-17 19:07:16.295718	2017-07-17 19:09:33.994852	CA2fb5c914c9b729243d38e34fc0a362a0	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE2a235a66b0b194fda08db0f1d6ccfcf0	0	inbound	+17704009016	132	8.78918886184692383	\N	new lead		13	\N	\N	2187
2016-05-18 23:54:14.758011+00	2016-05-18 23:54:59.052466+00	133	completed	Patrick			+1773 969 9892		34	2016-05-18 23:54:14.754778	2016-05-18 23:54:59.050352	CA5fb74acf85e50fb6485824461fcf1e0c	53da9e33-88fb-4b04-baca-339193fd55f7	1			1	outbound	+17735469660	\N	9.4579157829284668	{}	new lead		1	\N	\N	\N
2016-04-01 09:44:04.812332+00	2016-04-01 09:44:04.81236+00	66	missed	Mihai	Ciumeica	cmihai@gmail.com	+49 17681979265		\N	\N	\N		9b21a638-88bc-4cb5-b742-7449f686c42c	\N			1	outbound		\N	\N	\N	new lead		2	\N	\N	\N
2016-04-01 09:45:49.328119+00	2016-04-01 09:45:49.328146+00	67	missed	Mihai	Ciumeica	cmihai@gmail.com	+49 17681979265		\N	\N	\N		9b21a638-88bc-4cb5-b742-7449f686c42c	\N			1	outbound		\N	\N	\N	new lead		2	\N	\N	\N
2016-04-01 09:50:08.764212+00	2016-04-01 09:50:08.764259+00	68	ringing	Mihai	Ciumeica	cmihai@gmail.com	+49 17681979265		\N	2016-04-01 09:50:08.762391	\N		9b21a638-88bc-4cb5-b742-7449f686c42c	\N			0	outbound	+17735707582	\N	\N	\N	new lead		2	\N	\N	\N
2017-04-07 22:55:27.380941+00	2017-11-29 18:38:53.213446+00	3735	completed				+19184304219		546	2017-04-07 22:55:27.378908	2017-04-07 23:04:33.13649	CAfa6d328bf5db62b4187f6f66c223d1b6	\N	107			0	inbound	+12146922088	\N	8.28652310371398926	\N	new lead	evans max      	9	\N	\N	2190
2017-12-27 18:47:33.946086+00	2017-12-27 18:54:21.714031+00	8121	completed				+12543492081		407	2017-12-27 18:47:33.943726	2017-12-27 18:54:20.614739	CAea5c356cea46f238c859cda6b673b695	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE087272faefeed121594139ce0ad19523	0	inbound	+18177569010	124	15.0914139747619629	\N	new lead	kimbrell robert	12	\N	\N	2193
2017-04-14 19:00:20.495029+00	2017-11-29 18:38:49.804981+00	3934	completed				+18174941235		784	2017-04-14 19:00:20.492161	2017-04-14 19:13:24.972265	CA8e9a2cd755474b87c9703154e0e9445f	\N	127			0	inbound	+12147122250	\N	1.25315213203430176	\N	new lead	imc	9	\N	\N	2198
2017-04-14 19:02:00.138494+00	2017-11-29 18:38:49.804988+00	3935	completed				+18174941235		112	2017-04-14 19:02:00.136508	2017-04-14 19:03:52.626994	CAd7f188c72de70a5a6b5dc3cef98e10a1	\N	127			0	inbound	+12147122250	\N	0.998212099075317383	\N	new lead	imc	9	\N	\N	2198
2017-04-25 14:36:11.330963+00	2017-11-29 18:38:49.806547+00	4279	missed				+17184754969		21	2017-04-25 14:36:11.328111	2017-04-25 14:36:32.548086	CA96da57bf075da570fbcebc239180af1a	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	manhattan  ny	9	\N	\N	2202
2017-05-10 19:10:39.613286+00	2017-11-29 18:38:49.810868+00	4969	missed				+17184754969		20	2017-05-10 19:10:39.610564	2017-05-10 19:11:00.10095	CAb41803951b40deae83cc07e973dee589	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	manhattan  ny	9	\N	\N	2202
2017-05-02 23:51:55.274437+00	2017-11-29 18:38:49.808972+00	4611	missed				+17184754969		0	2017-05-02 23:51:55.27219	2017-05-02 23:51:55.411651	CAe92b8e4983a136e71cba0d30e23c6a1d	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	manhattan  ny	9	\N	\N	2202
2017-07-11 16:53:32.494412+00	2017-07-11 16:54:55.721792+00	5759	completed				+16785487310		82	2017-07-11 16:53:32.492243	2017-07-11 16:54:54.834656	CA04589299a1adbd3cc73ee1b1d64fe8fd	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REd0cf2cf38a869b09fc1c04ee56e2737e	0	inbound	+17704009016	132	11.3729510307312012	\N	new lead		13	\N	\N	2617
2017-04-25 14:56:58.658708+00	2017-11-29 18:38:49.806561+00	4281	completed				+14699097590		62	2017-04-25 14:56:58.656682	2017-04-25 14:58:00.970092	CAdf73abc3b12584fbc02c87826130af3b	\N	125			0	inbound	+12147122250	\N	1.79856705665588379	\N	new lead	siskin sara	9	\N	\N	2620
2017-04-25 14:57:52.405886+00	2017-11-29 18:38:49.806575+00	4283	completed				+14699097590		79	2017-04-25 14:57:52.40431	2017-04-25 14:59:11.615533	CAfabab596c76bdaf86dd81e22ef8b06ac	\N	103			0	inbound	+12147122250	\N	12.9825379848480225	\N	new lead	siskin sara    	9	\N	\N	2620
2017-04-25 15:00:49.726502+00	2017-11-29 18:38:49.806582+00	4285	completed				+14699097590		87	2017-04-25 15:00:49.724913	2017-04-25 15:02:16.547893	CAdca82081167d90093e4f0e9ce524092b	\N	124			0	inbound	+12147122250	\N	0.998327970504760742	\N	new lead	siskin sara	9	\N	\N	2620
2017-04-25 20:29:45.987516+00	2017-11-29 18:38:49.806681+00	4305	missed				+14699097590		0	2017-04-25 20:29:45.985423	2017-04-25 20:29:46.371857	CA776417069de25d5a3b6c70bb48307981	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	siskin sara	9	\N	\N	2620
2017-05-01 16:19:55.607581+00	2017-11-29 18:38:49.807911+00	4509	completed				+14699097590		70	2017-05-01 16:19:55.605855	2017-05-01 16:21:05.37072	CA935e1726a42d96a0ee294c74cc36472f	\N	125			0	inbound	+12147122250	\N	2.41019582748413086	\N	new lead	siskin sara    	9	\N	\N	2620
2016-05-18 23:57:50.296832+00	2016-05-18 23:59:16.230284+00	134	missed	Sean			+1773 969 9892		0	2016-05-18 23:57:50.295319	2016-05-18 23:59:16.229188	CA49c651287b5a3964ba7cea03311c5cbd	53da9e33-88fb-4b04-baca-339193fd55f7	\N			3	outbound	+17735469660	\N	13.2498061656951904	{}	new lead		1	\N	\N	\N
2016-07-09 20:04:14.503496+00	2016-12-10 01:05:18.400651+00	835	completed				+16104097895		98	2016-07-09 20:04:14.501209	2016-07-09 20:05:52.793307	CA7bf4560ed8aa98400858bc5397be48ae	\N	24			0	inbound	+18557088731	\N	1.4278562068939209	null	new lead		3	\N	\N	87
2017-05-01 21:26:42.985261+00	2017-11-29 18:38:49.808404+00	4550	completed				+18178991309		200	2017-05-01 21:26:42.980851	2017-05-01 21:30:03.255894	CA1977113c23f377718bae3da4bb4c7340	\N	105			0	inbound	+12147122250	\N	3.60009908676147461	\N	new lead	bra bra	9	\N	\N	1637
2017-07-29 16:13:15.340565+00	2017-11-29 18:47:25.068544+00	5874	completed				+12148452654		317	2017-07-29 16:13:15.338554	2017-07-29 16:18:31.935359	CA1582ce4a32941023d4ac9518f20a6330	\N	83		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE91724aa0d66d0b91b0ffb2f32a18ef80	0	inbound	+19728330116	\N	24.0065619945526123	\N	new lead	dallas  tx	8	\N	\N	1877
2017-05-01 20:03:13.80557+00	2017-11-29 18:38:49.80832+00	4543	completed				+12144460011		67	2017-05-01 20:03:13.802562	2017-05-01 20:04:21.087995	CA75efbdb54bc42bf5fc3f82867079b62e	\N	125			0	inbound	+12147122250	\N	1.93387198448181152	\N	new lead	dallas       tx	9	\N	\N	1965
2017-05-01 20:04:14.238389+00	2017-11-29 18:38:49.808336+00	4544	completed				+12144460011		71	2017-05-01 20:04:14.236462	2017-05-01 20:05:24.809907	CAb45c7c9da35802d82dbf421d83cecb64	\N	124			0	inbound	+12147122250	\N	1.56927394866943359	\N	new lead	dallas       tx	9	\N	\N	1965
2016-06-30 20:32:56.265014+00	2017-11-29 18:32:13.821143+00	691	completed	Unknown			+13135848136		46	2016-06-30 20:32:56.264074	2016-06-30 20:33:42.605044	CAd7b4b5ab4f638571b8e3618fa5b04144	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE00a46b1d8e9a355ab04b5b7aeb5eb76a	0	inbound	+18555983683	\N	14.1393938064575195	null	new lead		1	\N	\N	2203
2016-06-28 17:23:36.259193+00	2016-06-28 17:24:13.549068+00	605	completed				+13135848136		33	2016-06-28 17:23:36.25772	2016-06-28 17:24:13.548063	CA6abb1ae1e639fb4fceb15ae94a14d513	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.30121707916259766	{}	new lead		1	\N	\N	2203
2016-06-30 20:31:32.890693+00	2016-06-30 20:32:53.204243+00	690	completed				+13135848136		76	2016-06-30 20:31:32.889575	2016-06-30 20:32:53.203127	CA4d97d6543ff28b129ab56a9ab593da83	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.59397721290588379	{}	new lead		1	\N	\N	2203
2016-06-30 20:37:58.653982+00	2016-06-30 20:46:13.906038+00	693	completed				+13135848136		490	2016-06-30 20:37:58.653053	2016-06-30 20:46:13.90492	CA8bd35fc5a01278e3d33b368c1614319b	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.62295198440551758	{}	new lead		1	\N	\N	2203
2016-06-13 21:35:41.95976+00	2016-06-13 21:45:47.813881+00	410	completed	Christopher	Berardi	cb422cd@cb422cd.us	+17089273565		0	2016-06-13 21:35:41.958687	2016-06-13 21:36:08.27553	CA3d6786caff44bfd10844b2dc786cc90f	07cfd785-7aef-47fb-8d17-7f38ec833934	\N			1	outbound	+18556311439	\N	\N	{}	new lead		1	\N	\N	2208
2017-03-27 15:40:58.680131+00	2017-11-29 18:38:53.212972+00	3587	completed				+15025338888		344	2017-03-27 15:40:58.677258	2017-03-27 15:46:42.480191	CAdd7a0d95b3ee1078c1e9ec8776c20367	\N	107			0	inbound	+12146922088	\N	6.07648801803588867	\N	new lead	nadar krishna	9	\N	\N	2209
2016-08-24 20:16:48.088272+00	2016-12-10 01:01:00.199756+00	1751	completed				+16197944535		95	2016-08-24 20:16:48.086071	2016-08-24 20:18:23.580644	CAe1acc56b6ea7d8b38387b06e32a52f48	\N	57			0	inbound	+18557860909	\N	4.10995793342590332	null	new lead		3	\N	\N	590
2017-05-02 14:37:23.740218+00	2017-11-29 18:38:49.808517+00	4563	completed				+18708200576		83	2017-05-02 14:37:23.738455	2017-05-02 14:38:46.994329	CAcb62060b941372b81386c84c5afa10cd	\N	124			0	inbound	+12147122250	\N	0.917993068695068359	\N	new lead	green michael  	9	\N	\N	1574
2017-05-02 15:49:04.061855+00	2017-11-29 18:38:49.808586+00	4569	missed				+18708200576		28	2017-05-02 15:49:04.058935	2017-05-02 15:49:31.732413	CA7cbb5b7190dd914f2c32772983c29519	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	green michael  	9	\N	\N	1574
2017-05-02 15:49:33.567545+00	2017-11-29 18:38:49.808597+00	4570	completed				+18708200576		75	2017-05-02 15:49:33.566276	2017-05-02 15:50:48.820988	CA2164159d7a3f1f1033825212f0b4d62a	\N	124			0	inbound	+12147122250	\N	1.26594090461730957	\N	new lead	green michael  	9	\N	\N	1574
2017-05-02 15:50:54.565098+00	2017-11-29 18:38:49.808608+00	4571	completed				+18708200576		559	2017-05-02 15:50:54.56389	2017-05-02 16:00:13.894874	CA1e0aaf30a27834c45dc5b18b2fd95f7f	\N	125			0	inbound	+12147122250	\N	1.0137031078338623	\N	new lead	green michael  	9	\N	\N	1574
2016-05-20 19:13:01.029385+00	2017-11-29 18:31:10.260188+00	141	completed	Unknown			+15138600822		56	2016-05-20 19:13:01.028111	2016-05-20 19:13:57.034945	CAf11fbabd0936e375829450bb562baac5	\N	17		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE98d9d4e62529410611184c20fac19296	0	inbound	+18556311490	\N	38.4447071552276611	null	new lead		1	\N	\N	2211
2016-05-20 19:14:13.934487+00	2017-11-29 18:31:10.260228+00	142	completed	Unknown			+15138600822		71	2016-05-20 19:14:13.933417	2016-05-20 19:15:24.856063	CA1e6ff1850aba0495f4b5acd53e4ed945	\N	17		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REb499c53e380150c365552c13de6684f2	0	inbound	+18556311490	\N	25.9693441390991211	null	new lead		1	\N	\N	2211
2017-05-02 18:48:16.700675+00	2017-11-29 18:38:49.808756+00	4589	completed				+16466923535		62	2017-05-02 18:48:16.697218	2017-05-02 18:49:18.839849	CA911bfd69226124966be0a01935dba9d7	\N	127			0	inbound	+12147122250	\N	1.78309202194213867	\N	new lead	manhattan  ny	9	\N	\N	628
2016-02-12 21:13:13.618667+00	2016-02-12 21:13:38.652363+00	51	missed	hermiesa@telkomsa.net			#**		\N	2016-02-12 21:13:13.61773	\N	CA0d76686bf13dbf042e967cfba6abbdbd	53da9e33-88fb-4b04-baca-339193fd55f7	2			1	inbound		\N	\N	\N	new lead		1	\N	\N	\N
2017-05-03 17:05:56.755389+00	2017-11-29 18:38:49.809303+00	4641	missed				+17193091454		20	2017-05-03 17:05:56.752829	2017-05-03 17:06:16.457877	CA04dc3d3a95b4886c6b0c4794554a94e6	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	colorado sp  co	9	\N	\N	416
2017-05-03 16:31:14.411251+00	2017-11-29 18:38:49.809236+00	4632	completed				+19173374264		80	2017-05-03 16:31:14.409713	2017-05-03 16:32:34.038051	CA9dfab70a4e3299d7810df4419236d7e9	\N	127			0	inbound	+12147122250	\N	1.99354290962219238	\N	new lead	queens  ny	9	\N	\N	698
2017-05-03 16:32:41.053412+00	2017-11-29 18:38:49.809252+00	4633	completed				+19173374264		119	2017-05-03 16:32:41.05207	2017-05-03 16:34:39.919168	CA536ea81e762ad05a181fd537d938e8b7	\N	105			0	inbound	+12147122250	\N	7.37126016616821289	\N	new lead	queens  ny	9	\N	\N	698
2017-11-29 20:16:34.493619+00	2017-11-29 20:20:07.423547+00	7399	completed				+19033055034		212	2017-11-29 20:16:34.491667	2017-11-29 20:20:06.267004	CA9923a8aa331c3d4e74450f8f24ecb072	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE226ab9f7f068a4f33757101412601ea7	0	inbound	+18177569010	124	7.97473406791687012	\N	new lead	cell phone   tx	12	\N	\N	747
2017-05-03 19:08:57.245064+00	2017-11-29 18:38:49.809346+00	4649	completed				+19039313074		83	2017-05-03 19:08:57.243572	2017-05-03 19:10:20.517278	CAd98517d153cb7915581f747d88aa7de3	\N	127			0	inbound	+12147122250	\N	1.19924688339233398	\N	new lead	thomas david   	9	\N	\N	885
2017-05-03 19:10:20.597067+00	2017-11-29 18:38:49.809353+00	4650	completed				+19039313074		45	2017-05-03 19:10:20.595667	2017-05-03 19:11:05.228011	CA33496a3087489ac42fa54f95d05f7c53	\N	125			0	inbound	+12147122250	\N	1.76750516891479492	\N	new lead	thomas david   	9	\N	\N	885
2017-05-03 17:19:36.287051+00	2017-11-29 18:38:49.809318+00	4643	completed				+14694178306		80	2017-05-03 17:19:36.284845	2017-05-03 17:20:56.647459	CA3a4286b774d4960affd57562d11042a1	\N	127			0	inbound	+12147122250	\N	2.49487495422363281	\N	new lead	mendoza miguel 	9	\N	\N	1957
2017-05-03 17:20:50.386524+00	2017-11-29 18:38:49.809325+00	4644	completed				+14694178306		111	2017-05-03 17:20:50.38488	2017-05-03 17:22:41.375277	CA68726bd8ba360026c886a0a1239012aa	\N	107			0	inbound	+12147122250	\N	12.0857779979705811	\N	new lead	mendoza miguel 	9	\N	\N	1957
2017-10-16 17:39:11.607526+00	2017-10-16 17:45:41.710171+00	6721	completed				+17063001322		389	2017-10-16 17:39:11.605873	2017-10-16 17:45:40.496827	CAeea050d115ed6997bb4cfb95037ecc51	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REc07087b9eb2b925afd9ca1533c1a127f	0	inbound	+17704009016	132	342.506798028945923	\N	new lead		13	\N	\N	2212
2017-10-16 17:50:08.266833+00	2017-10-16 17:56:35.728707+00	6722	completed				+17063001322		387	2017-10-16 17:50:08.263461	2017-10-16 17:56:35.72469	CA163a3cf565dd418a98a7a29b9651c8ea	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE0c99dafd25101da305d86d75b89e7d58	0	inbound	+17704009016	132	349.611078977584839	\N	new lead		13	\N	\N	2212
2017-05-03 19:11:00.317914+00	2017-11-29 18:38:49.809369+00	4651	completed				+19039313074		55	2017-05-03 19:11:00.315838	2017-05-03 19:11:55.653708	CA7c200334abc34563c9952886bcac3f1c	\N	124			0	inbound	+12147122250	\N	1.06682515144348145	\N	new lead	thomas david   	9	\N	\N	885
2017-05-03 19:11:54.584185+00	2017-11-29 18:38:49.809385+00	4652	completed				+19039313074		57	2017-05-03 19:11:54.581782	2017-05-03 19:12:51.116494	CA613d7c0963fcf9f9d9d3fb32ecdfa37f	\N	126			0	inbound	+12147122250	\N	2.25186491012573242	\N	new lead	thomas david   	9	\N	\N	885
2017-05-03 19:12:47.437519+00	2017-11-29 18:38:49.809393+00	4653	completed				+19039313074		23	2017-05-03 19:12:47.436118	2017-05-03 19:13:10.179276	CA0ef8c3ec1f335066c090e02ebdaeab31	\N	105			0	inbound	+12147122250	\N	3.36439013481140137	\N	new lead	thomas david   	9	\N	\N	885
2017-11-30 14:52:50.104211+00	2017-11-30 15:19:18.260655+00	7407	completed				+14705353606		193	2017-11-30 14:52:50.102006	2017-11-30 14:56:03.404097	CA657f19cc0a2a959d256c1be3078f2b04	\N	153			0	inbound	+17707665732	133	14.0581121444702148	\N	select status	mond deanna	13	\N	\N	894
2017-11-29 22:13:35.559529+00	2017-11-29 22:14:06.340215+00	7403	missed	Mike			+12248758574		20	2017-11-29 22:13:35.557235	2017-11-29 22:14:05.052477	CA9c4dbd129743433fe4272e0f6b348f23	53da9e33-88fb-4b04-baca-339193fd55f7	\N			1	outbound	+17735469660	\N	9.27186203002929688	{}	new lead		1	\N	\N	1022
2017-11-29 22:15:06.217748+00	2017-11-29 22:16:02.096449+00	7404	completed	Jason			+12248758574		47	2017-11-29 22:15:06.215743	2017-11-29 22:16:02.095182	CA50750afa575dfb06c35321e79996dda0	53da9e33-88fb-4b04-baca-339193fd55f7	1			1	outbound	+17735469660	\N	8.35570001602172852	{}	new lead		1	\N	\N	1022
2017-11-29 20:47:14.658284+00	2017-11-29 20:48:11.058971+00	7401	completed	Connor	Kroshus	connor.kroshus@yahoo.com	+17202265551		53	2017-11-29 20:47:14.655827	2017-11-29 20:48:11.056866	CA43b3d8576725e5706fea62075dc8cb9a	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.98733282089233398	{}	new lead		15	\N	\N	1820
2016-08-08 13:53:16.19868+00	2017-01-27 21:12:23.812777+00	1317	completed				+15702821953		69	2016-08-08 13:53:16.197245	2016-08-08 13:54:25.438885		\N	\N			0	outbound	+18555343978	48	\N	null	do not contact		1	\N	\N	2214
2016-08-06 01:05:10.676514+00	2017-11-29 18:31:56.600147+00	1301	missed				+15702821953		11	2016-08-06 01:05:10.674792	2016-08-06 01:05:21.798012	CA240e1c2e7d5de7f81622d9569cb1e7bf	\N	\N			0	inbound	+18556311397	\N	\N	null	do not contact		1	\N	\N	2214
2016-11-02 15:46:44.230896+00	2016-11-02 15:46:44.257742+00	2555	missed	PAUL	SIMMS	paulsimms511@comcast.net	+17705923627		\N	2016-11-02 15:46:44.229551	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2224
2017-04-27 19:53:14.451374+00	2017-11-29 18:38:49.807109+00	4390	completed				+17036759756		56	2017-04-27 19:53:14.449619	2017-04-27 19:54:10.056407	CAfc1a67a83d551faff7d8ea321b7520bb	\N	126			0	inbound	+12147122250	\N	1.85117483139038086	\N	new lead	sean petro	9	\N	\N	2225
2016-06-29 12:43:13.991343+00	2017-11-29 18:31:41.490234+00	629	completed	Unknown			+16148049922		37	2016-06-29 12:43:13.989657	2016-06-29 12:43:51.235298	CA54d9f5f0dcdbc7d691832563a43d5580	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE5c40a7b3c0d62dd96cf5d4afa4d9020d	0	inbound	+18552959002	\N	0.568120002746582031	null	new lead		1	\N	\N	2226
2016-06-29 15:23:43.788836+00	2016-06-29 15:25:05.895806+00	646	completed				+16148049922		77	2016-06-29 15:23:43.787859	2016-06-29 15:25:05.894756	CA3b3ac791923d3855a9aafce6755c34b5	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	1.51007986068725586	{}	new lead		1	\N	\N	2226
2017-09-18 13:11:57.687435+00	2017-09-18 13:12:47.359412+00	6384	completed				+16786023770		50	2017-09-18 13:11:57.685557	2017-09-18 13:12:47.343961	CA752f7a11702b1be1aef48a0df91e996e	\N	150			0	inbound	+17707665732	133	41.0421350002288818	\N	new lead		13	\N	\N	2227
2017-05-03 22:06:48.547378+00	2017-11-29 18:38:49.809507+00	4672	completed				+18319174193		78	2017-05-03 22:06:48.546103	2017-05-03 22:08:06.784522	CA78384cb8eb34196d26cb33ff29f5066b	\N	105			0	inbound	+12147122250	\N	2.3526771068572998	\N	new lead	williamson alys	9	\N	\N	604
2017-05-03 22:08:20.670541+00	2017-11-29 18:38:49.809514+00	4673	completed				+18319174193		276	2017-05-03 22:08:20.66925	2017-05-03 22:12:56.174084	CA50b93798f1891345d8fe2a9f859450c9	\N	105			0	inbound	+12147122250	\N	7.58385300636291504	\N	new lead	williamson alys	9	\N	\N	604
2016-09-07 18:22:41.386521+00	2016-12-10 01:04:42.413734+00	1933	completed				+19097719676		72	2016-09-07 18:22:41.384101	2016-09-07 18:23:53.492057	CA0c8680db329229fce7e41e13ed8b1d4e	\N	58			0	inbound	+18552187903	\N	1.32829189300537109	null	new lead		3	\N	\N	611
2017-05-03 21:54:29.235827+00	2017-11-29 18:38:49.809493+00	4670	completed				+13182001367		52	2017-05-03 21:54:29.234465	2017-05-03 21:55:21.564976	CA1e289bca29c64099e140c15603c0cfe1	\N	125			0	inbound	+12147122250	\N	1.07576799392700195	\N	new lead	singleton ld	9	\N	\N	884
2017-05-03 19:13:20.886971+00	2017-11-29 18:38:49.809401+00	4654	completed				+19039313074		244	2017-05-03 19:13:20.885584	2017-05-03 19:17:25.24266	CAc476f70c5a9ebc4694fa8e4c4184f390	\N	127			0	inbound	+12147122250	\N	1.97393989562988281	\N	new lead	thomas david   	9	\N	\N	885
2017-05-03 20:02:59.443993+00	2017-11-29 18:38:49.809415+00	4656	missed				+17146052552		43	2017-05-03 20:02:59.440617	2017-05-03 20:03:42.154631	CA9c2a1de8f3b62a60040404ccfb0629c8	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	lopez michael	9	\N	\N	931
2017-05-03 20:03:53.434115+00	2017-11-29 18:38:49.809422+00	4657	completed				+17146052552		25	2017-05-03 20:03:53.432888	2017-05-03 20:04:17.997806	CA790e185213c4d1b338a69a6c53fe81ee	\N	105			0	inbound	+12147122250	\N	4.69734001159667969	\N	new lead	lopez michael	9	\N	\N	931
2017-05-03 19:34:48.140422+00	2017-11-29 18:38:49.809408+00	4655	missed				+17185301541		30	2017-05-03 19:34:48.137154	2017-05-03 19:35:18.392761	CA102423e5df24ce0362e9b272da029f13	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	manhattan  ny	9	\N	\N	1251
2016-07-16 13:09:12.449937+00	2016-12-10 00:55:45.164917+00	882	completed				+16107929852		194	2016-07-16 13:09:12.447592	2016-07-16 13:12:26.196301	CA69bf82b3f15b41b8f01c33f94490433c	\N	24			0	inbound	+18557129406	\N	1.94322609901428223	null	new lead		3	\N	\N	1716
2017-09-18 13:19:07.830115+00	2017-09-18 13:23:44.840359+00	6385	completed				+16786023770		277	2017-09-18 13:19:07.826361	2017-09-18 13:23:44.825059	CA5d184b13bb94812cbfc2738e0dcdbe9e	\N	153			0	inbound	+17707665732	133	9.89123201370239258	\N	new lead		13	\N	\N	2227
2017-11-30 23:44:39.84002+00	2017-11-30 23:49:06.661559+00	7420	completed				+14705387747		267	2017-11-30 23:44:39.837915	2017-11-30 23:49:06.648327	CA0ea7cb9698e866f029c8b7fa3d0291b7	\N	153			0	inbound	+17707665732	133	9.20064902305603027	\N	new lead	norcross  ga	13	\N	\N	272
2017-12-01 01:33:15.159709+00	2017-12-01 01:48:39.394537+00	7422	completed	Amy	Tho,mpson	nami102@aol.com	+18154849199		921	2017-12-01 01:33:15.158008	2017-12-01 01:48:39.39206	CA1298d7de752930e5d723f21f71264e9a	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.4454338550567627	{}	new lead		15	\N	\N	352
2016-09-07 18:24:15.201119+00	2016-12-10 01:04:42.413755+00	1937	completed				+19097719676		57	2016-09-07 18:24:15.200121	2016-09-07 18:25:12.638126	CAd43f623a5d7013d2b15cb9c30827f696	\N	58			0	inbound	+18552187903	\N	1.22137713432312012	null	new lead		3	\N	\N	611
2016-06-02 12:09:37.095798+00	2016-12-09 17:06:53.905666+00	340	missed	Unknown			+13612937569		13	2016-06-02 12:09:37.09446	2016-06-02 12:09:50.432614	CAb1f834045ded287da4cb9d32b1c946e5	\N	\N			0	inbound	+18558021330	\N	2.64209485054016113	null	new lead		3	\N	\N	1558
2017-12-22 20:30:22.185803+00	2017-12-22 20:32:36.59023+00	8071	completed				+17709055172		133	2017-12-22 20:30:22.183786	2017-12-22 20:32:35.162167	CA86b35e22691dae1fecbe3869e27567a8	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE66d3933de7019339649b508bd35cfb28	0	inbound	+17707665732	133	48.0590128898620605	\N	new lead	atlanta  ga	13	\N	\N	2229
2016-11-02 01:27:54.449513+00	2016-11-02 01:27:54.478905+00	2535	missed	Bryan	Bolton	brybolton@gmail.com	+16824657545		\N	2016-11-02 01:27:54.448093	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2232
2016-11-11 16:36:58.870397+00	2016-11-11 16:36:58.908645+00	2860	missed	Thomas	Beasley	ThomasBeasley88@aol.com	+18324655653		\N	2016-11-11 16:36:58.868268	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2235
2016-06-02 11:59:43.765482+00	2017-11-29 18:31:37.368233+00	339	completed	Spam			+13236605918		317	2016-06-02 11:59:43.762903	2016-06-02 12:05:00.51881	CAdfaa5f5ea2ac7014ea556e6287184509	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE7047aafc6829db2d486b7f3ca6151eb5	0	inbound	+18555472453	\N	\N	null	new lead		1	\N	\N	2238
2017-04-19 15:19:22.050566+00	2017-11-29 18:47:25.068129+00	4086	completed				+19032745722		144	2017-04-19 15:19:22.04853	2017-04-19 15:21:46.239689	CAcf3c79ce4a50dc9774d02f50a0d7a542	\N	83		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REaae79ce49e04396fa161fdc3aff7c009	0	inbound	+19728330116	\N	6.11635684967041016	\N	new lead	fortner john   	8	\N	\N	2241
2017-09-23 23:34:01.996598+00	2017-09-23 23:57:15.657927+00	6470	missed				+16827605836		47	2017-09-23 23:34:01.992953	2017-09-23 23:34:48.998131	CA54a3ead53e5582d73576e1e7419407b2	\N	\N			0	inbound	+18177569010	124	1369.33639001846313	\N	new lead	euless  tx	12	\N	\N	2242
2017-11-29 16:08:19.13966+00	2017-11-29 16:08:25.716005+00	7391	missed				+16692851257		7	2017-11-29 16:08:19.136999	2017-11-29 16:08:25.703741	CA4e739f3f11567bb715b7d5cdbefacb68	\N	\N			0	inbound	+18036184545	119	\N	\N	new lead		6	\N	\N	2243
2017-05-04 16:33:49.361573+00	2017-11-29 18:38:49.809628+00	4712	completed				+13187925199		136	2017-05-04 16:33:49.357084	2017-05-04 16:36:05.628021	CA941190f316c3b53c159a4b2feb31e985	\N	\N			0	inbound	+12147122250	\N	1.33113193511962891	\N	new lead	becker chase   	9	\N	\N	19
2017-05-04 17:06:30.507359+00	2017-11-29 18:38:49.809636+00	4713	completed				+19083917090		439	2017-05-04 17:06:30.504388	2017-05-04 17:13:49.333868	CAc06c801bf9aa065a3b7c184f9918f465	\N	\N			0	inbound	+12147122250	\N	0.86034703254699707	\N	new lead	jamie marchand 	9	\N	\N	116
2017-12-01 14:55:51.711616+00	2017-12-01 15:10:00.915472+00	7425	completed	Reginald 	Peoples	reginaldp@sbcglobal.net	+12547168069		845	2017-12-01 14:55:51.709938	2017-12-01 15:10:00.91318	CA2e6649f94f385ed7b353bc14831b5bfe	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.74301600456237793	{}	new lead		15	\N	\N	2095
2017-06-27 22:02:21.665294+00	2017-06-27 22:03:12.148855+00	5673	completed				+16786302028		49	2017-06-27 22:02:21.66227	2017-06-27 22:03:10.933266	CAc85cd680b5a0cd748cf300f420aa38a3	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE2dbe03b14c1cf81e6f54126a784aa8f8	0	inbound	+17704009016	132	16.8796939849853516	\N	new lead		13	\N	\N	2251
2016-11-02 19:42:41.02678+00	2016-11-02 19:47:37.839306+00	2589	completed				+17048587120		296	2016-11-02 19:42:41.025518	2016-11-02 19:47:37.132601	CA486f030770d9e0c9f581a238f46dcbdb	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REbc4105e65d72fb09a6c7b500e2314465	0	inbound	+18557240606	49	2.05431294441223145	null	new lead		1	\N	\N	2255
2017-05-13 20:25:54.164351+00	2017-05-17 15:41:07.22448+00	5060	completed				+13252320813		122	2017-05-13 20:25:54.162541	2017-05-13 20:27:56.010765	CA701515fe5447730224adde252445d2a9	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REf6e0a204b20e2b710e0b9babe6b212a8	0	inbound	+18177569010	124	11.4774529933929443	\N	new lead	reyesvalverde f	12	\N	\N	2259
2016-07-23 20:19:23.715855+00	2016-07-25 13:02:35.123204+00	923	completed	Kelly	Thomas	Kthomas@miamisburg.k12.oh.us	+19375421066		\N	2016-07-23 20:19:23.714635	\N		253cd8e5-09ac-4056-92ec-7e351aa19233	\N			0	outbound	+18557824539	\N	\N	{}	new lead		1	\N	\N	2260
2017-07-18 14:29:54.531315+00	2017-08-17 14:35:21.045615+00	5798	completed				+16822213164		102	2017-07-18 14:29:54.529272	2017-07-18 14:31:36.831436	CA6c57413dcda9507081997694a6bc87b6	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REba8b60cd665cd851e6bf28f644a32b16	0	inbound	+18177569010	124	8.48553204536437988	\N	new lead	banks johnathan	12	\N	\N	2262
2017-05-04 18:06:08.407614+00	2017-11-29 18:38:49.809657+00	4717	completed				+19083917090		162	2017-05-04 18:06:08.405138	2017-05-04 18:08:50.402592	CA672e703831079e31a6e33c02d450988f	\N	\N			0	inbound	+12147122250	\N	2.25482392311096191	\N	new lead	jamie marchand 	9	\N	\N	116
2017-05-04 21:01:09.403713+00	2017-11-29 18:38:49.809707+00	4727	missed				+19723318384		29	2017-05-04 21:01:09.400653	2017-05-04 21:01:38.494782	CAb458039d63e1f9069c3a9f837bd27015	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	plasma group	9	\N	\N	262
2017-05-04 19:40:01.11628+00	2017-11-29 18:38:49.809671+00	4720	completed				+19728003374		74	2017-05-04 19:40:01.114457	2017-05-04 19:41:15.102521	CAd36e96db6924a3fd7ed6bbcdc4a4af91	\N	127			0	inbound	+12147122250	\N	1.1328120231628418	\N	new lead	jallah ivor    	9	\N	\N	566
2017-12-01 17:21:12.326804+00	2017-12-01 17:34:47.355717+00	7434	completed				+18156032948		812	2017-12-01 17:21:12.324922	2017-12-01 17:34:44.096034	CA7c3c0497dd9821619e5ec7c444cdb335	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REf760fe3c91f10e5b7fe1e3e9a7e81501	0	inbound	+18558645656	136	2.48670005798339844	\N	new lead		15	\N	\N	773
2017-12-01 17:13:12.511316+00	2017-12-01 17:18:04.405682+00	7433	completed				+17062545030		279	2017-12-01 17:13:12.508753	2017-12-01 17:17:51.109352	CA822e48d1f59584711e3bf4922d43ad29	\N	152			0	inbound	+17707665732	133	20.3363370895385742	\N	select status	athens  ga	13	\N	\N	1167
2017-12-01 16:43:06.999308+00	2017-12-01 17:08:17.282075+00	7432	completed				+17024673356		1507	2017-12-01 16:43:06.997097	2017-12-01 17:08:14.19915	CAc801ee61948aa59c1e520ce548da4e2b	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE2349b9bc5027eae5ac9b4075ae61e2b4	0	inbound	+18558645656	136	2.23917317390441895	\N	new lead		15	\N	\N	1398
2017-05-05 15:18:03.177033+00	2017-11-29 18:38:49.809776+00	4739	completed				+18179097577		71	2017-05-05 15:18:03.174753	2017-05-05 15:19:14.379691	CAfd8efb0c93cc265934f7d9f92eec8692	\N	126			0	inbound	+12147122250	\N	1.26060295104980469	\N	new lead	hart chris     	9	\N	\N	361
2017-05-05 15:19:09.871448+00	2017-11-29 18:38:49.809783+00	4740	completed				+18179097577		66	2017-05-05 15:19:09.86856	2017-05-05 15:20:15.542311	CA1640404aa51c815562b42841242063df	\N	125			0	inbound	+12147122250	\N	2.23147296905517578	\N	new lead	hart chris	9	\N	\N	361
2017-05-05 15:20:07.50617+00	2017-11-29 18:38:49.809797+00	4742	completed				+18179097577		60	2017-05-05 15:20:07.503512	2017-05-05 15:21:07.944173	CAcfaf30477d77d2d6ce0022859e3c9320	\N	124			0	inbound	+12147122250	\N	1.06366991996765137	\N	new lead	hart chris	9	\N	\N	361
2017-05-05 15:24:45.41719+00	2017-11-29 18:38:49.80984+00	4748	completed				+18179097577		66	2017-05-05 15:24:45.415739	2017-05-05 15:25:51.850499	CA2caa53c9632d2d54b1621aa937b573ad	\N	126			0	inbound	+12147122250	\N	1.09234809875488281	\N	new lead	hart chris	9	\N	\N	361
2017-05-05 15:25:43.263558+00	2017-11-29 18:38:49.809847+00	4749	completed				+18179097577		140	2017-05-05 15:25:43.262149	2017-05-05 15:28:02.891045	CA87a21c3f95496fe039ca5c34bc4559d7	\N	\N			0	inbound	+12147122250	\N	1.04749608039855957	\N	new lead	hart chris	9	\N	\N	361
2017-12-01 18:14:17.088743+00	2017-12-01 18:17:54.837189+00	7438	completed	Alexia	Carter	Alexia_carter17@yahoo.com	+14702773390		173	2017-12-01 18:14:17.087025	2017-12-01 18:17:21.711773	CAe3f6cfdf75dfc847ed9c3caf405c334c	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE7ce6739d9430b08ae37f334529913e2f	1	outbound	+17704009016	\N	16.4380850791931152	{}	select status		13	\N	\N	1685
2017-08-15 13:07:51.132039+00	2017-08-15 13:09:24.986703+00	6032	completed	Valerie	parks	amandap91284@gmail.com	+17705197468		74	2017-08-15 13:07:51.130481	2017-08-15 13:09:24.644586	CA8c7395d33d0677b28f401cae1f9f8e58	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REa5aa6e4c50e52c99edabc757465d44c5	1	outbound	+17704009016	\N	19.0044651031494141	{}	new lead		13	\N	\N	2265
2017-12-01 19:03:26.895025+00	2017-12-01 19:27:44.663918+00	7441	completed				+16148638971		1455	2017-12-01 19:03:26.89291	2017-12-01 19:27:41.483381	CA5f3ea7b877be55030cee4545be2acf46	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE8913f5e218db439ec38a34b82ea615ef	0	inbound	+18558645656	136	2.61073207855224609	\N	new lead		15	\N	\N	335
2017-12-01 19:42:39.365461+00	2017-12-01 19:44:41.021519+00	7444	completed	emily	cuthbertson	emmy0720@gmail.com	+14048218281		76	2017-12-01 19:42:39.364117	2017-12-01 19:44:07.216198	CA17bee7ed6b308dbdeb08eadc6ac0286d	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REb39696bf1e61b074c0d73389432a92bb	1	outbound	+17704009016	\N	16.1747407913208008	{}	select status		13	\N	\N	357
2016-08-05 21:39:54.242721+00	2016-12-10 00:57:42.908363+00	1291	completed				+15132276499		13	2016-08-05 21:39:54.239603	2016-08-05 21:40:06.867004	CAffb1ba885d740e06e83e214c9205c1e9	\N	31			0	inbound	+18555435678	\N	2.51987719535827637	null	new lead		3	\N	\N	979
2017-12-01 18:38:09.399448+00	2017-12-01 18:39:11.799782+00	7440	completed	Alexia	Carter		+14702773390		61	2017-12-01 18:38:09.397574	2017-12-01 18:39:10.549312	CA46988ca71e92b3d41ec05271fedb474b	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE512948ba2c0256080afefcb02b2f1c7c	0	inbound	+17704009016	132	11.0615720748901367	\N	select status	cell phone   ga	13	\N	\N	1685
2017-12-01 19:07:04.123332+00	2017-12-01 19:07:57.538085+00	7442	completed				+19407811146		52	2017-12-01 19:07:04.121496	2017-12-01 19:07:56.340029	CA4880fb026626b9fdc1bbb3b889bff516	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REd86535b969d1bc0acbab473f2a48abd3	0	inbound	+18558645656	136	3.3523409366607666	\N	new lead		15	\N	\N	2128
2017-04-08 16:05:05.13691+00	2017-11-29 18:38:53.213476+00	3741	completed				+19729773900		71	2017-04-08 16:05:05.134677	2017-04-08 16:06:16.351981	CAa3a1021e561d4a8e93cfd0b830f3a16c	\N	105			0	inbound	+12146922088	\N	5.49135422706604004	\N	new lead	william will	9	\N	\N	2266
2016-11-17 03:51:44.501214+00	2016-11-17 03:51:44.526435+00	2930	missed	Brian	Baker	brianbaker04@hotmail.com	+19404524653		\N	2016-11-17 03:51:44.500173	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2268
2017-12-01 19:46:28.889945+00	2017-12-01 20:07:39.164384+00	7445	completed	emily	cuthbertson		+14048218281		1270	2017-12-01 19:46:28.887392	2017-12-01 20:07:39.161863	CAeb33c599e4816edcaf60f9639f97d64d	\N	153			0	inbound	+17704009016	132	323.290379047393799	\N	select status	e cuthbertson	13	\N	\N	357
2017-12-01 20:02:06.572068+00	2017-12-01 20:08:28.569351+00	7446	completed	emily	cuthbertson		+14048218281		381	2017-12-01 20:02:06.568631	2017-12-01 20:08:27.322616	CA304b2caa18100301d791cd5c0ff8ba50	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE9272ffee2cedc607d3f938d7ef839df9	0	inbound	+17704009016	132	329.720088005065918	\N	select status	e cuthbertson	13	\N	\N	357
2017-10-20 15:47:29.702821+00	2017-10-20 15:48:41.772665+00	6765	completed				+17063008019		72	2017-10-20 15:47:29.70084	2017-10-20 15:48:41.738909	CAeb33441e1f6ec5ec62d49705d800266c	\N	150			0	inbound	+17707665732	133	15.7355749607086182	\N	new lead		13	\N	\N	1499
2017-05-05 16:46:01.807689+00	2017-11-29 18:38:49.809959+00	4766	completed				+18708200576		77	2017-05-05 16:46:01.806279	2017-05-05 16:47:18.554577	CA8278e00a8ae2b2d806f3654c93da600c	\N	126			0	inbound	+12147122250	\N	1.40788698196411133	\N	new lead	green michael  	9	\N	\N	1574
2017-12-01 20:55:53.24928+00	2017-12-01 20:55:53.285582+00	7450	missed	marie	cajuste	joealezi@yahoo.com	+14072220898		\N	2017-12-01 20:55:53.247706	\N		243bc1c1-c430-4ccb-b9d9-71662ebbb896	\N			0	outbound	+18558645656	\N	\N	{}	new lead		15	\N	\N	1646
2017-06-01 21:33:02.478895+00	2017-11-29 18:38:49.814446+00	5562	completed				+14807077524		163	2017-06-01 21:33:02.475974	2017-06-01 21:35:45.261686	CAf2f4efa7271be1fa6097fc143c9ea1e1	\N	105			0	inbound	+12147122250	\N	4.17714190483093262	\N	new lead	otterson kevin 	9	\N	\N	2269
2017-09-18 15:08:25.015351+00	2017-09-18 15:12:28.878094+00	6388	completed	Melissa	Scales	Sarahhuston37@yahoo.com	+14705955480		235	2017-09-18 15:08:25.013991	2017-09-18 15:12:28.566249	CA04c806cb904da886a75032bccf1e0100	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE690c21820d3d9a8b44ab1e5bbab48df0	1	outbound	+17704009016	\N	7.68894314765930176	{}	new lead		13	\N	\N	2270
2017-09-18 19:41:58.467764+00	2017-09-18 19:48:28.492771+00	6391	completed	Melissa	Scales		+14705955480		390	2017-09-18 19:41:58.465586	2017-09-18 19:48:28.206743	CAdcf809c0a9ec46523437f327dbf32d83	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE50f8df95c235b154d0ed3f085114f5ac	0	inbound	+17704009016	132	311.912950992584229	\N	new lead		13	\N	\N	2270
2017-02-12 19:22:02.805103+00	2017-02-20 02:31:36.101286+00	3168	completed				+17735469660		29	2017-02-12 19:22:02.803015	2017-02-12 19:22:31.351501	CA248e1df4ced1e94a6b4db9607f8a5246	\N	\N			0	inbound	+17732950301	104	10.6404409408569336	null	new lead		1	\N	\N	794
2017-04-28 19:50:55.514567+00	2017-04-28 19:51:10.477539+00	4440	completed				+18175035189		15	2017-04-28 19:50:55.512554	2017-04-28 19:51:10.463016	CA9c3f0b97b1088d73663acfcc76ec149f	\N	129			0	inbound	+18172104002	126	6.1672060489654541	\N	new lead	rodriguez karla	12	\N	\N	2272
2016-08-10 15:19:57.697305+00	2017-01-27 21:12:23.813034+00	1385	completed				+14155681351		106	2016-08-10 15:19:57.695851	2016-08-10 15:21:43.207687		\N	\N			0	outbound	+18555343978	48	\N	null	do not contact		1	\N	\N	2274
2016-08-10 15:30:32.881752+00	2017-01-27 21:12:23.813041+00	1386	completed				+14155681351		161	2016-08-10 15:30:32.880551	2016-08-10 15:33:13.981923	CA9da7503d8c598dcdb971053ba0f40669	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE4c08f588f4d20ef5116ef73fabc22a1e	0	inbound	+18555343978	48	6.99625802040100098	null	do not contact		1	\N	\N	2274
2016-08-10 00:43:48.043135+00	2017-11-29 18:31:10.262118+00	1374	missed				+14155681351		20	2016-08-10 00:43:48.041366	2016-08-10 00:44:08.455662	CA9ac0c7df30bffdbf53fa7279da1492e3	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REf68af5d398855501201f5b4a88205df9	0	inbound	+18556311490	\N	\N	null	do not contact		1	\N	\N	2274
2017-05-10 13:11:36.372122+00	2017-11-29 18:38:53.215541+00	4943	completed				+15856109488		442	2017-05-10 13:11:36.370138	2017-05-10 13:18:58.030504	CA8e6a52d7f2f654f34d60080e972ebca9	\N	133		https://api.twilio.com/2010-04-01/Accounts/AC5422b9b221417a7a84556a92f6edc492/Recordings/RE0bff9d4f0375f344cb9643f189142810	0	inbound	+12146922088	\N	7.11357307434082031	\N	new lead	marble jeffrey	9	\N	\N	2275
2017-05-27 16:52:20.534062+00	2017-11-29 18:38:49.813862+00	5466	completed				+15856109488		62	2017-05-27 16:52:20.531891	2017-05-27 16:53:22.959202	CA28b813f2a656850ea4d5eb9d8bd14354	\N	125			0	inbound	+12147122250	\N	1.00903201103210449	\N	new lead	cell phone   ny	9	\N	\N	2275
2017-05-27 16:53:18.769696+00	2017-11-29 18:38:49.813869+00	5467	completed				+15856109488		61	2017-05-27 16:53:18.767135	2017-05-27 16:54:19.578084	CAfb591e07a0f9a48d48681a953f600749	\N	105			0	inbound	+12147122250	\N	6.69293403625488281	\N	new lead	cell phone   ny	9	\N	\N	2275
2017-05-27 18:59:36.530688+00	2017-11-29 18:38:49.813919+00	5474	completed				+15856109488		59	2017-05-27 18:59:36.528175	2017-05-27 19:00:35.62624	CA9baa4cc86589399c0348a1b2d5e79fe4	\N	124			0	inbound	+12147122250	\N	1.1181488037109375	\N	new lead	cell phone   ny	9	\N	\N	2275
2017-05-27 19:00:43.251608+00	2017-11-29 18:38:49.813926+00	5475	completed				+15856109488		66	2017-05-27 19:00:43.25031	2017-05-27 19:01:49.542687	CA73e9fb7c3edb6b561ffcec9535e0ce25	\N	124			0	inbound	+12147122250	\N	0.957520008087158203	\N	new lead	cell phone   ny	9	\N	\N	2275
2017-12-01 22:29:32.949595+00	2017-12-01 22:29:32.992059+00	7458	missed	Steven	Vantil	stevenvantil@yahoo.com	+16162185140		\N	2017-12-01 22:29:32.948065	\N		243bc1c1-c430-4ccb-b9d9-71662ebbb896	\N			0	outbound	+18558645656	\N	\N	{}	new lead		15	\N	\N	465
2017-12-01 23:39:35.522199+00	2017-12-01 23:52:36.796295+00	7462	completed	Jonathan	Rocha	rocha_jonathan94@yahoo.com	+15593028869		778	2017-12-01 23:39:35.520501	2017-12-01 23:52:36.794184	CAb927825135dfc7df6ea63f7d8e6e4b56	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	3.34710693359375	{}	new lead		15	\N	\N	612
2017-12-01 22:33:46.423951+00	2017-12-01 22:56:49.604126+00	7459	completed				+16465151862		1380	2017-12-01 22:33:46.421408	2017-12-01 22:56:46.247069	CAc4ecece093a73991642122dadc1f119e	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE0afdb930c929382ed9444aab4453c89a	0	inbound	+18558645656	136	3.12677097320556641	\N	new lead		15	\N	\N	1541
2017-05-05 17:51:58.689211+00	2017-11-29 18:38:49.809996+00	4771	completed				+18008748822		117	2017-05-05 17:51:58.687509	2017-05-05 17:53:55.236342	CA15d54c9729ebb55e4cdaa3a16ff5f800	\N	125			0	inbound	+12147122250	\N	1.36636900901794434	\N	new lead	toyota         	9	\N	\N	2049
2017-05-05 21:33:37.651206+00	2017-11-29 18:38:49.810116+00	4789	completed				+12144223197		83	2017-05-05 21:33:37.649003	2017-05-05 21:35:01.01809	CA8ec544c81192ecaeba20a01a743b70d1	\N	126			0	inbound	+12147122250	\N	1.26304793357849121	\N	new lead	guzman edgar	9	\N	\N	2278
2016-08-10 16:22:38.311349+00	2017-11-29 18:31:37.368796+00	1389	completed	Antonio	Chavez		+17606840090		135	2016-08-10 16:22:38.30986	2016-08-10 16:24:53.643758	CA43f93a3adf2c8a4fdab9a5b37362df62	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE09634aecc37eb299d376c776052053d8	0	inbound	+18555472453	\N	5.27056694030761719	null	application submitted - autopay		1	\N	\N	2282
2016-08-02 17:55:48.07748+00	2016-08-05 12:50:20.371655+00	1128	completed	Antonio	Chavez	NA@noemail.com	+17606840090		86	2016-08-02 17:55:48.076486	2016-08-02 17:57:39.780119	CA17c0361e1505ef96e5f4b8a7b6b24020	99186475-9344-4e80-b3b1-0ed2e7856585	18		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REdcfcc8e1539cfc2ede7f3d2c1ccb18b4	1	outbound	+18555472453	\N	24.3248260021209717	{}	application submitted - autopay		1	\N	\N	2282
2016-08-02 17:46:09.319851+00	2017-11-29 18:31:37.368417+00	1127	completed	Antonia	Chavez		+17606840090		563	2016-08-02 17:46:09.318176	2016-08-02 17:55:32.727921		\N	16			0	outbound	+18555472453	\N	\N	null	application submitted - autopay		1	\N	\N	2282
2016-08-19 16:28:29.203288+00	2017-11-29 18:31:37.368982+00	1610	missed	Antonio	Chavez		+17606840090		90	2016-08-19 16:28:29.201915	2016-08-19 16:29:58.840549	CA2e22740bd19907cdb19428507ba6254c	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE13dd7ddae7fa38eddda56b8d6b801100	0	inbound	+18555472453	\N	31.7423350811004639	null	application submitted - autopay		1	\N	\N	2282
2016-08-25 00:57:12.38269+00	2016-12-10 01:00:18.5683+00	1756	completed				+15593624714		17	2016-08-25 00:57:12.380762	2016-08-25 00:57:29.76083	CA35a470acdc29147d479d32f15a39ad00	\N	56			0	inbound	+18556775511	\N	8.89057612419128418	null	new lead		3	\N	\N	56
2017-12-02 10:48:24.661862+00	2017-12-02 10:49:45.475044+00	7466	completed	Corlin	Cosby	corlinbruce@gmail.com	+19185347430		78	2017-12-02 10:48:24.660277	2017-12-02 10:49:45.473228	CA630c251021a543b64ff3ae06df1c989e	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.33947014808654785	{}	new lead		15	\N	\N	685
2017-12-02 14:26:26.837817+00	2017-12-02 14:28:00.463206+00	7475	completed				+17062545030		94	2017-12-02 14:26:26.835607	2017-12-02 14:28:00.450432	CA43bdaedf80d958b98906c773914f1db7	\N	150			0	inbound	+17707665732	133	12.4131720066070557	\N	select status	athens  ga	13	\N	\N	1167
2016-07-06 20:27:56.223952+00	2016-12-10 01:05:18.400609+00	789	completed				+16102873383		89	2016-07-06 20:27:56.223031	2016-07-06 20:29:25.252729	CA78322cc8c699421ee9378e8833771b8c	\N	24			0	inbound	+18557088731	\N	2.44051003456115723	null	new lead		3	\N	\N	1748
2016-07-06 21:03:16.165724+00	2016-12-10 01:05:18.400616+00	791	completed				+16102693400		121	2016-07-06 21:03:16.163937	2016-07-06 21:05:16.772337	CAeffe685c4cebe055dd7f86d1ad4aff97	\N	24			0	inbound	+18557088731	\N	1.66804409027099609	null	new lead		3	\N	\N	1752
2017-05-05 18:59:25.277743+00	2017-11-29 18:38:49.81008+00	4780	completed				+12149803852		193	2017-05-05 18:59:25.275798	2017-05-05 19:02:38.451043	CA5e4275c7928a4909f916b4773e9fc58c	\N	\N			0	inbound	+12147122250	\N	1.16783690452575684	\N	new lead	threadgill rach	9	\N	\N	2042
2016-08-02 16:34:29.502825+00	2017-11-29 18:31:37.36841+00	1122	completed	Antonia	Chavez		+17606840090		144	2016-08-02 16:34:29.501232	2016-08-02 16:36:53.969671	CAc0b28a1dddfe2b91348378cc5059d46d	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REf7f71e9780eb4935a9f6842a2adf76e6	0	inbound	+18555472453	\N	9.74464702606201172	null	application submitted - autopay		1	\N	\N	2282
2016-08-16 18:54:35.584219+00	2017-11-29 18:31:37.36896+00	1543	completed	Antonio	Chavez		+17606840090		244	2016-08-16 18:54:35.58249	2016-08-16 18:58:39.465183	CAf1d747d24a0abd8949ab89d01fd0dcab	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE6c28c3ca259b5a673cc45c21dc9d31d0	0	inbound	+18555472453	\N	6.37297606468200684	null	application submitted - autopay		1	\N	\N	2282
2016-08-22 16:12:00.844027+00	2017-11-29 18:31:37.369003+00	1641	missed	Antonio	Chavez		+17606840090		94	2016-08-22 16:12:00.842364	2016-08-22 16:13:35.329263	CAb68947b25b1f81f882bce248bfd3e15e	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE5782c15736d5931a2a7c6027b79e790e	0	inbound	+18555472453	\N	31.6464738845825195	null	application submitted - autopay		1	\N	\N	2282
2016-08-22 18:56:28.851591+00	2017-11-29 18:31:37.369034+00	1645	missed	Antonio	Chavez		+17606840090		28	2016-08-22 18:56:28.849693	2016-08-22 18:56:57.200702	CAd2bb873dc02de85cd87122d40c087b1b	\N	\N			0	inbound	+18555472453	\N	3.52781486511230469	null	application submitted - autopay		1	\N	\N	2282
2017-05-01 16:21:09.959377+00	2017-11-29 18:38:49.807922+00	4510	completed				+14699097590		67	2017-05-01 16:21:09.957304	2017-05-01 16:22:17.31987	CA075b63c8f483baac7b9f3b68abb4015f	\N	\N			0	inbound	+12147122250	\N	2.88898801803588867	\N	new lead	siskin sara	9	\N	\N	2620
2017-12-02 15:34:50.895797+00	2017-12-02 15:55:38.456576+00	7478	completed				+13043822752		1244	2017-12-02 15:34:50.893658	2017-12-02 15:55:34.819437	CAadb1ccc8bb88caa8d34c19050a1c7475	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REbcab5606ecd1c44734f03bc3ea0c09c0	0	inbound	+18558645656	136	2.86654806137084961	\N	new lead		15	\N	\N	190
2017-12-02 15:58:22.948684+00	2017-12-02 15:59:28.607854+00	7480	completed				+17633178640		64	2017-12-02 15:58:22.946604	2017-12-02 15:59:27.305443	CA8a35c285714a7f3aff76218c4a9e3cbe	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE0240350756535b1c3fcae25946572b75	0	inbound	+18558645656	136	2.91142010688781738	\N	new lead		15	\N	\N	288
2017-12-02 16:16:20.889541+00	2017-12-02 16:16:55.210812+00	7481	completed				+17633178640		33	2017-12-02 16:16:20.887664	2017-12-02 16:16:53.989272	CA38497edf248792179cf422e5e0dabf25	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REb54c87e92e20771922b7e33bc4b36159	0	inbound	+18558645656	136	2.96494102478027344	\N	new lead		15	\N	\N	288
2017-12-02 16:55:20.747501+00	2017-12-02 16:55:21.17495+00	7483	missed				+14044924782		0	2017-12-02 16:55:20.745438	2017-12-02 16:55:21.163126	CA07523334ba5d90ebdbf7bea99e1bab45	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead	johnson wendoli	13	\N	\N	858
2017-12-02 16:55:26.459583+00	2017-12-02 16:55:26.825473+00	7484	missed				+14044924782		0	2017-12-02 16:55:26.458449	2017-12-02 16:55:26.817173	CA53952244c3832dca1bb428369da096ba	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead	johnson wendoli	13	\N	\N	858
2017-12-02 16:57:25.290451+00	2017-12-02 18:14:39.212724+00	7485	completed				+16785772467		103	2017-12-02 16:57:25.288299	2017-12-02 16:59:08.10351	CA217b52805a0ec9d7b2ba2113d28755ff	\N	153			0	inbound	+17707665732	133	15.0032241344451904	\N	select status	roswell  ga	13	\N	\N	1128
2016-08-24 20:34:36.533668+00	2017-11-29 18:31:37.369083+00	1752	completed	Antonio	Chavez		+17606840090		151	2016-08-24 20:34:36.532687	2016-08-24 20:37:07.225502	CA31e34c5b8a1a984154e73477c190af62	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE0f914a2f4d1ee117be0d5e4416e00111	0	inbound	+18555472453	\N	4.5117042064666748	null	application submitted - autopay		1	\N	\N	2282
2017-03-01 22:24:47.492335+00	2017-11-29 18:38:53.21162+00	3275	completed				+12147731756		20	2017-03-01 22:24:47.490588	2017-03-01 22:25:07.091666	CA8c6a23a9ce764f1f9543d8907bcfcb2b	\N	99			0	inbound	+12146922088	\N	8.62779712677001953	\N	new lead	DESIGN BUILD RE	9	\N	\N	2283
2017-03-01 22:29:24.692831+00	2017-11-29 18:38:53.211666+00	3280	retry-pending				+12147731756		0	2017-03-01 22:29:24.691488	2017-03-01 22:29:25.180057	CA4d5de790c8c1bf92b80164f916b372a6	\N	\N			0	inbound	+12146922088	\N	\N	\N	new lead	DESIGN BUILD RE	9	\N	\N	2283
2017-03-01 22:51:24.603437+00	2017-11-29 18:38:53.211674+00	3281	completed				+12147731756		19	2017-03-01 22:51:24.601872	2017-03-01 22:51:44.032256	CAce12597e5c96f6cbbfe37d9263df4330	\N	99			0	inbound	+12146922088	\N	8.70160412788391113	\N	new lead	DESIGN BUILD RE	9	\N	\N	2283
2017-12-06 17:35:20.516445+00	2017-12-06 17:36:50.209491+00	7644	completed				+16789274222		89	2017-12-06 17:35:20.514716	2017-12-06 17:36:49.052202	CAde520eed85bfe661bb1794be06aa5cdf	\N	157		https://api.twilio.com/2010-04-01/Accounts/ACbd7756819f4882feb347788ad7959655/Recordings/REab71c12d58f747e16a9632abc619ab6e	0	inbound	+17706597466	137	5.58456182479858398	\N	new lead		14	\N	\N	2285
2017-10-19 17:34:42.451189+00	2017-10-19 17:35:12.900061+00	6755	completed				+16823176731		29	2017-10-19 17:34:42.44871	2017-10-19 17:35:11.842955	CA1fedfdc801c37299430e039bb024ad14	\N	155		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE2236930e343549b057950423d7c2c65e	0	inbound	+18177569010	124	7.88392019271850586	\N	new lead	cehand brandon	12	\N	\N	2287
2017-05-01 16:22:23.594667+00	2017-11-29 18:38:49.807945+00	4512	completed				+14699097590		74	2017-05-01 16:22:23.593128	2017-05-01 16:23:38.091302	CA0c5b7949cd76012595ca4a8dd38971f5	\N	124			0	inbound	+12147122250	\N	1.39770913124084473	\N	new lead	siskin sara    	9	\N	\N	2620
2017-05-01 16:23:35.784868+00	2017-11-29 18:38:49.807956+00	4513	completed				+14699097590		64	2017-05-01 16:23:35.782025	2017-05-01 16:24:40.125174	CA3f527808f283b20c81aff0481cf65750	\N	126			0	inbound	+12147122250	\N	1.03792405128479004	\N	new lead	siskin sara    	9	\N	\N	2620
2017-05-01 16:24:36.144772+00	2017-11-29 18:38:49.807968+00	4514	completed				+14699097590		66	2017-05-01 16:24:36.142808	2017-05-01 16:25:42.370505	CAe8e761e401561f8219572d51062da6d3	\N	107			0	inbound	+12147122250	\N	7.08262801170349121	\N	new lead	siskin sara    	9	\N	\N	2620
2017-05-09 16:10:28.524117+00	2017-11-29 18:38:49.810562+00	4903	completed				+12317307713		494	2017-05-09 16:10:28.522821	2017-05-09 16:18:42.680357	CA383744e4f3bc1bae1014b449b8dbf852	\N	\N			0	inbound	+12147122250	\N	1.05891799926757812	\N	new lead	shoenmaker josh	9	\N	\N	2623
2017-12-02 18:38:16.598787+00	2017-12-02 18:42:07.792356+00	7493	completed				+16782837236		143	2017-12-02 18:38:16.597121	2017-12-02 18:40:39.268159	CAce09d394cc822178d5486bf8d6bf8a10	\N	153			0	inbound	+17707665732	133	11.8472261428833008	\N	select status	dickerson thoma	13	\N	\N	55
2017-09-29 13:28:06.812405+00	2017-12-02 18:42:07.804338+00	6524	completed				+16782837236		204	2017-09-29 13:28:06.809906	2017-09-29 13:31:30.731463	CA0c740a7a9d27190b4a9c1516eff9e42d	\N	150			0	inbound	+17707665732	133	16.2037510871887207	\N	select status		13	\N	\N	55
2017-12-02 18:36:56.498416+00	2017-12-02 18:42:07.804367+00	7491	missed				+16782837236		0	2017-12-02 18:36:56.496573	2017-12-02 18:36:56.814137	CA60bf39ca32fe7bbc457de2c2f806eef8	\N	\N			0	inbound	+17707665699	134	\N	\N	select status	dickerson thoma	13	\N	\N	55
2017-12-02 18:37:09.268632+00	2017-12-02 18:42:07.804375+00	7492	missed				+16782837236		0	2017-12-02 18:37:09.267266	2017-12-02 18:37:09.641478	CA447d2c998ea53db073fb3d8de8f20346	\N	\N			0	inbound	+17707665699	134	\N	\N	select status	dickerson thoma	13	\N	\N	55
2017-10-19 17:33:03.533804+00	2017-10-19 17:34:08.992755+00	6754	completed				+16823176731		64	2017-10-19 17:33:03.531531	2017-10-19 17:34:07.930917	CA957510d6d57f7051aedefdfe79f98a45	\N	155		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE6eba0a1880eb50818c1e4164b50bf9ca	0	inbound	+18177569010	124	10.2146399021148682	\N	new lead	cehand brandon	12	\N	\N	2287
2017-05-26 16:30:50.117348+00	2017-11-29 18:38:49.813621+00	5433	completed				+13126376192		151	2017-05-26 16:30:50.115295	2017-05-26 16:33:21.290267	CA35b1ddebd8d7aee815520625b134788f	\N	127			0	inbound	+12147122250	\N	6.1889960765838623	\N	new lead	yelp inc	9	\N	\N	2289
2017-09-06 17:26:34.664215+00	2017-09-06 17:29:37.874292+00	6273	completed				+17063912362		183	2017-09-06 17:26:34.662121	2017-09-06 17:29:37.8585	CAfa991c7b3e78e17da96718cd0d8fd760	\N	150			0	inbound	+17707665732	133	15.2618579864501953	\N	new lead		13	\N	\N	2290
2016-11-04 01:00:55.265097+00	2016-11-04 01:00:55.296237+00	2679	missed	Al	Myers	Doinitdoinitproductions@gmail.com	+13126009595		\N	2016-11-04 01:00:55.263782	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2297
2017-07-10 13:47:40.494813+00	2017-07-10 13:51:03.186585+00	5742	completed	Terrence	Gaither	booskigd@aol.com	+14703851424		194	2017-07-10 13:47:40.493098	2017-07-10 13:51:02.817425	CA3e48101182a02b7ce83ccd5a97399065	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE6932699f85febf9523ad2a0f3d645855	1	outbound	+17704009016	\N	14.8111138343811035	{}	new lead		13	\N	\N	2298
2017-12-13 14:50:56.503241+00	2017-12-13 15:18:31.066022+00	7841	completed				+14404098103		1651	2017-12-13 14:50:56.501363	2017-12-13 15:18:27.693299	CA20cd3f66a9c2d31d4131b48032bc9f06	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE0808099b1dd8a66af3dafac618322be1	0	inbound	+18558645656	136	3.01279902458190918	\N	new lead		15	\N	\N	2300
2016-06-01 17:00:48.509792+00	2017-11-29 18:31:37.368226+00	312	completed	Unknown			+16614446247		40	2016-06-01 17:00:48.508664	2016-06-01 17:01:28.274196	CAadba4869aabe192ac8f22935fa6b508d	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE70e4daffebbe11c2707bcb2a05409f91	0	inbound	+18555472453	\N	14.1560490131378174	null	new lead		1	\N	\N	2302
2016-05-25 20:44:33.482683+00	2016-05-25 21:29:39.206599+00	234	completed	Cristobal	Ojeda	crisojeda@att.net	+16614446247		20	2016-05-25 20:44:33.481762	2016-05-25 20:45:02.107372	CAe20e8bb67f1cdf81782ff72fcfe55640	99186475-9344-4e80-b3b1-0ed2e7856585	\N			1	outbound	+18555472453	\N	14.831618070602417	{}	new lead		1	\N	\N	2302
2017-12-03 04:23:09.991771+00	2017-12-03 04:23:10.487241+00	7506	missed	Jamarious	Mattox		+14702170830		0	2017-12-03 04:23:09.989374	2017-12-03 04:23:10.478454	CA030a66549283284b81d75a7ecc3600fc	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead	j mattox	13	\N	\N	964
2017-12-02 23:52:30.115207+00	2017-12-03 00:14:46.092104+00	7503	completed				+14697654687		1333	2017-12-02 23:52:30.112662	2017-12-03 00:14:42.646016	CA9340f01ff66e7f665d929e45cb9cca72	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE234c717c8b6f373747525cdab81d3965	0	inbound	+18558645656	136	2.37458205223083496	\N	new lead		15	\N	\N	1091
2016-06-01 17:21:15.401504+00	2016-06-01 17:22:45.811844+00	315	completed				+16614446247		85	2016-06-01 17:21:15.400226	2016-06-01 17:22:45.810715	CA41f764e9b600645f757f17fa7d6c30e9	8f30d55b-8601-40b9-9d7f-11bfe29c5449	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE6ddd58339abcf19e39f68f223c00562d	1	outbound	+18555472453	\N	1.49215507507324219	{}	new lead		1	\N	\N	2302
2016-05-25 20:45:27.75487+00	2017-11-29 18:31:37.368197+00	235	completed	Unknown			+16614446247		47	2016-05-25 20:45:27.753676	2016-05-25 20:46:14.739772	CAa724176cb2254014df9f3e34d0362588	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE3d646923d384717d4a361e08a9e41248	0	inbound	+18555472453	\N	3.00130391120910645	null	new lead		1	\N	\N	2302
2016-11-02 16:16:01.787109+00	2016-12-09 17:06:53.906077+00	2563	completed				+17142513012		143	2016-11-02 16:16:01.785769	2016-11-02 16:18:25.060158	CA67e390e3800e5184c52161188c0b5822	\N	21			0	inbound	+18558021330	\N	2.82749390602111816	null	new lead		3	\N	\N	2303
2017-04-04 18:17:25.10256+00	2017-11-29 18:38:53.213331+00	3686	completed				+13475437449		256	2017-04-04 18:17:25.100628	2017-04-04 18:21:40.775916	CA1d87866b491533983260b8ce64e3465c	\N	107			0	inbound	+12146922088	\N	8.63467597961425781	\N	new lead	perry young	9	\N	\N	2305
2016-07-27 20:45:45.469746+00	2017-11-29 18:31:10.261658+00	976	completed				+15133177946		251	2016-07-27 20:45:45.468482	2016-07-27 20:49:56.963823	CAd5d5a4cb0d830d60239fb5400314a5bf	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE6bbd2d0ca11a2412df15438a3b07a073	0	inbound	+18556311490	\N	10.7744669914245605	null	general interest		1	\N	\N	2307
2017-03-20 15:36:04.207069+00	2017-11-29 18:47:25.06787+00	3505	completed				+13239018629		364	2017-03-20 15:36:04.203982	2017-03-20 15:42:07.775948	CAa78a42dd3502577214dfbee6d532a817	\N	117			0	inbound	+19728330116	\N	323.916589975357056	\N	new lead	mc prada b	8	\N	\N	2308
2017-05-10 20:16:48.47053+00	2017-11-29 18:38:49.810925+00	4978	completed				+16016024500		55	2017-05-10 20:16:48.467926	2017-05-10 20:17:43.462341	CA7f7c9e3d86a834fde42a0d680e288d84	\N	\N			0	inbound	+12147122250	\N	2.73835992813110352	\N	new lead	pace auto sales	9	\N	\N	2309
2017-05-11 14:00:19.674459+00	2017-11-29 18:38:49.811074+00	4996	completed				+16016024500		44	2017-05-11 14:00:19.672264	2017-05-11 14:01:03.730007	CAd5783ce23a63c15f487b6c5f706576ae	\N	105			0	inbound	+12147122250	\N	3.99131417274475098	\N	new lead	pace auto sales	9	\N	\N	2309
2016-11-30 15:58:54.986279+00	2017-11-29 18:31:33.775615+00	3006	missed				+14403959551		82	2016-11-30 15:58:54.98439	2016-11-30 16:00:17.469838	CA917285a9a6df0a79fccec2833bb0e10c	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE86dd719b7fc540b7e79f439d70987432	0	inbound	+18556311350	\N	31.9815680980682373	null	new lead		1	\N	\N	2311
2017-12-06 17:07:52.05993+00	2017-12-06 17:19:56.976413+00	7641	completed				+14072334561		722	2017-12-06 17:07:52.058244	2017-12-06 17:19:53.748288	CA3f0394791faafd0b90ccfa50d48e072f	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE4707e07417313b68dcfd91852fe4e533	0	inbound	+18558645656	136	2.86211395263671875	\N	new lead		15	\N	\N	2312
2017-12-15 15:39:31.500131+00	2017-12-15 15:41:53.41031+00	7890	completed				+14072334561		141	2017-12-15 15:39:31.497897	2017-12-15 15:41:52.681751	CA2573a97583afbbaae7f56779c991c705	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE54a95c70f639466bf80620d1765b9cd4	0	inbound	+18558645656	136	2.94576907157897949	\N	new lead		15	\N	\N	2312
2017-09-22 23:26:08.109298+00	2017-09-22 23:26:08.161338+00	6438	missed	Charolette	Gaudlock	justinethompson937@yahoo.com	+16783572653		\N	2017-09-22 23:26:08.107857	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	2624
2017-04-13 22:20:48.025247+00	2017-11-29 18:38:53.213865+00	3899	completed				+18177972763		50	2017-04-13 22:20:48.02267	2017-04-13 22:21:37.774381	CA1c78d5c1c4d827095aac6cd53cccdf70	\N	105			0	inbound	+12146922088	\N	10.8791859149932861	\N	new lead		9	\N	\N	2625
2016-01-29 20:40:51.888536+00	2016-01-29 20:41:16.665055+00	12	completed						\N	2016-01-29 20:40:51.884602	\N	CAa7bd8947a77a7cf48125ab675fe95f17	\N	1			0	inbound		\N	\N	\N	new lead		1	\N	\N	\N
2017-09-16 23:25:14.540774+00	2017-09-16 23:31:15.776892+00	6380	completed				+18039990451		361	2017-09-16 23:25:14.538882	2017-09-16 23:31:15.773093	CA0a265850ee80fd5bf579a9d06dd1d477	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE06d70052668069d0816fa13702261adc	0	inbound	+18177569010	124	68.3328909873962402	\N	new lead	lekhums micheal	12	\N	\N	2322
2017-10-10 17:17:55.20489+00	2017-10-10 17:22:19.736861+00	6646	completed				+16786300908		265	2017-10-10 17:17:55.202915	2017-10-10 17:22:19.717589	CA4bafed28f5a46921092d37ca4089f390	\N	150			0	inbound	+17707665732	133	13.1972968578338623	\N	new lead		13	\N	\N	2323
2017-10-17 15:12:54.277098+00	2017-10-17 15:14:09.471927+00	6731	completed	Marlon	Hooks	malarjacor03@yahoo.com	+17707092479		61	2017-10-17 15:12:54.27414	2017-10-17 15:14:09.434153	CA4f569fd8b6a56983dee88a70c12324bf	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REfd0da1dcfbc2c861f43d56489aee9c74	1	outbound	+17704009016	\N	12.8528511524200439	{}	new lead		13	\N	\N	2325
2017-09-20 17:39:41.59329+00	2017-09-20 17:43:49.805308+00	6407	completed	Kimberley	Butts	Kbutts714@gmail.com	+17863002422		234	2017-09-20 17:39:41.59183	2017-09-20 17:43:48.967942	CA0c296cc589f65199aa7b10ad25340596	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE5e19242f8a894aee3f81af38a2c4aae4	1	outbound	+17704009016	\N	14.9748249053955078	{}	new lead		13	\N	\N	2327
2017-09-22 14:54:22.461286+00	2017-09-22 14:55:44.277754+00	6431	completed	Kimberley	Butts		+17863002422		82	2017-09-22 14:54:22.459495	2017-09-22 14:55:44.26096	CA86ebfdb0d7077510b8e3feb37d7e5f82	\N	152			0	inbound	+17707665732	133	12.6715950965881348	\N	new lead		13	\N	\N	2327
2017-05-04 20:24:00.211113+00	2017-11-29 18:38:49.809686+00	4723	missed				+18702268537		47	2017-05-04 20:24:00.209108	2017-05-04 20:24:47.417953	CA10bbab3f175c1ce7da5877652f6bb0f6	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	warren pub scho	9	\N	\N	2328
2017-05-05 16:39:18.454379+00	2017-11-29 18:38:49.809945+00	4764	completed				+18702268537		104	2017-05-05 16:39:18.4525	2017-05-05 16:41:02.624542	CA356da9255516509b5a04d4eba51f5406	\N	127			0	inbound	+12147122250	\N	1.63205504417419434	\N	new lead	warren pub scho	9	\N	\N	2328
2017-03-09 17:57:54.959055+00	2017-11-29 18:38:53.211975+00	3362	completed				+19036474020		28	2017-03-09 17:57:54.956843	2017-03-09 17:58:22.478894	CA3dd54f261f2638961e6d225e9066d20d	\N	107			0	inbound	+12146922088	\N	6.53101801872253418	\N	new lead	cell phone   tx	9	\N	\N	2629
2017-08-02 09:20:54.655853+00	2017-11-29 18:32:10.406571+00	5913	missed				+12692351514		13	2017-08-02 09:20:54.653839	2017-08-02 09:21:08.040534	CA7badce943053becb512eb2207175bc86	\N	\N			0	inbound	+18552791533	\N	\N	\N	new lead		1	\N	\N	2632
2017-04-19 16:35:19.754425+00	2017-11-29 18:47:25.068137+00	4090	completed				+18174707015		152	2017-04-19 16:35:19.752134	2017-04-19 16:37:51.867947	CA88c3ec48060b06141a9a8aa4df6ff24e	\N	115		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REfbc54f770a2949d3d68d3aff79d5005b	0	inbound	+19728330116	\N	13.2888259887695312	\N	new lead	cell phone   tx	8	\N	\N	2638
2017-05-05 20:43:01.412398+00	2017-11-29 18:38:49.810109+00	4787	completed				+13057753233		65	2017-05-05 20:43:01.4094	2017-05-05 20:44:06.250084	CAc6e8b48c456e7558218af9bb835324dd	\N	\N			0	inbound	+12147122250	\N	2.10511112213134766	\N	new lead	knoepffler carl	9	\N	\N	2641
2016-05-22 19:18:43.541337+00	2016-05-25 17:04:30.503361+00	161	completed	Jessica	Middleton	jdixiemiddleton@yahoo.com	+15137063355		\N	2016-05-22 19:18:43.540004	\N		25d0200e-983d-4413-94ae-eb664b99711c	\N			0	outbound	+18556311490	\N	\N	{}	new lead		1	\N	\N	2642
2016-05-25 15:49:00.036209+00	2016-05-25 15:50:14.418557+00	198	completed				+15137063355		69	2016-05-25 15:49:00.034628	2016-05-25 15:50:14.417181	CAade4213d5aed448d2916f0c707d5e1b9	cd89e433-4bde-4f86-9b22-8f52c2413fcd	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE999f76576908aa24db1031c4bb63ebe1	1	outbound	+18556311490	\N	2.23369693756103516	{}	new lead		1	\N	\N	2642
2016-05-25 20:34:24.655495+00	2017-11-29 18:31:10.260391+00	233	completed	Unknown			+15137063355		226	2016-05-25 20:34:24.654362	2016-05-25 20:38:11.00309	CAd84fdc948d446cb08c54c749d7fb8c6e	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE035588220feb754a6f976176838c8e1b	0	inbound	+18556311490	\N	3.6658329963684082	null	new lead		1	\N	\N	2642
2017-04-21 17:00:12.327835+00	2017-11-29 18:38:53.214376+00	4182	completed				+12122496350		280	2017-04-21 17:00:12.324818	2017-04-21 17:04:52.654084	CA8bc98e7d299a482001df2b6ffe536474	\N	\N			0	inbound	+12146922088	\N	4.98599815368652344	\N	new lead	friedberg eric	9	\N	\N	2645
2016-11-07 03:16:16.889837+00	2016-11-07 03:16:16.933021+00	2779	missed	Dale	Heatherly	annybell@icloud.com	+12243816676		\N	2016-11-07 03:16:16.888638	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2649
2017-07-25 15:42:25.770574+00	2017-07-25 15:47:28.97358+00	5849	completed				+17064619079		302	2017-07-25 15:42:25.767735	2017-07-25 15:47:27.796806	CA7f3a48de9d8d0619bf9b15d87374c010	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REf386920dd0de8e879068577979355840	0	inbound	+17704009016	132	13.2742660045623779	\N	new lead		13	\N	\N	2650
2017-08-30 00:10:32.43674+00	2017-08-30 00:10:32.47377+00	6201	missed	Laura	Harms	lharms06@gmail.com	+19364466257		\N	2017-08-30 00:10:32.435367	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2651
2017-11-17 23:36:47.63785+00	2017-11-17 23:37:45.790606+00	7120	completed				+16782627861		57	2017-11-17 23:36:47.636248	2017-11-17 23:37:44.558608	CA33d005e391cae2513432b287a7881714	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE180b97d5b89347b2f0bf1acb24c07567	0	inbound	+17704009016	132	14.6268320083618164	\N	new lead		13	\N	\N	2653
2017-09-19 20:34:54.850604+00	2017-09-19 20:37:11.191973+00	6401	completed				+18174781137		135	2017-09-19 20:34:54.848739	2017-09-19 20:37:10.043767	CA39222acbb2d93be92a43a5b2c4cbdc03	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REad41d9a3c8fa22a7e9b4699e60a91655	0	inbound	+18177569010	124	41.8358089923858643	\N	new lead	speed fab-crete	12	\N	\N	2658
2017-05-25 17:17:43.265131+00	2017-11-29 18:38:49.813423+00	5397	completed				+17023229263		99	2017-05-25 17:17:43.26335	2017-05-25 17:19:21.811796	CA5df2540f5db5f3cf3ba4f879d93ca803	\N	125			0	inbound	+12147122250	\N	2.03546285629272461	\N	new lead	crb	9	\N	\N	2659
2016-04-28 18:24:01.499926+00	2016-04-28 18:25:01.560655+00	82	completed	Steve	Neu	steveneu@live.com	+18035462731		36	2016-04-28 18:24:01.495416	2016-04-28 18:25:01.55908	CA8f83d0f2815530b6675f3bd49d0567a4	5544043e-a40f-4084-a2ef-ee0d0a6c5c76	11			1	outbound	+17735707582	\N	\N	\N	new lead		2	\N	\N	1527
2017-04-20 20:01:42.282976+00	2017-11-29 18:38:49.806061+00	4154	missed				+12143015957		72	2017-04-20 20:01:42.281265	2017-04-20 20:02:54.343274	CAaa42ee07153ad0b54dcfaa150dac115c	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	dallas  tx	9	\N	\N	2347
2017-04-21 18:03:14.792201+00	2017-11-29 18:38:49.806195+00	4189	missed				+12143015957		35	2017-04-21 18:03:14.790409	2017-04-21 18:03:49.849663	CAbc24d43456aab947e27be36672ae748f	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	dallas  tx	9	\N	\N	2347
2017-12-01 18:02:55.710703+00	2017-12-01 18:03:43.54913+00	7435	completed				+13308583694		47	2017-12-01 18:02:55.708271	2017-12-01 18:03:42.265624	CAd0d1bf5f0b3c7dbc0940b88ed2066b88	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REfc3fe72c271592a2840765d93c3a10da	0	inbound	+18558645656	136	2.87675094604492188	\N	new lead		15	\N	\N	2348
2017-12-01 18:04:17.663629+00	2017-12-01 18:18:47.34708+00	7436	completed				+13308583694		866	2017-12-01 18:04:17.661724	2017-12-01 18:18:44.116489	CA426c7a31362d704732270863ee7007aa	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE589cf5b398e59da9aa9b12f3df53aa05	0	inbound	+18558645656	136	2.89205479621887207	\N	new lead		15	\N	\N	2348
2017-04-17 22:53:22.530028+00	2017-11-29 18:38:49.805362+00	4017	completed				+18322294802		141	2017-04-17 22:53:22.527782	2017-04-17 22:55:43.952717	CAc6a5c27a9e606da7fe955893db6df0c8	\N	125			0	inbound	+12147122250	\N	2.11234188079833984	\N	new lead	cell phone   tx	9	\N	\N	2352
2017-04-17 22:56:05.329148+00	2017-11-29 18:38:49.805369+00	4018	completed				+18322294802		156	2017-04-17 22:56:05.327086	2017-04-17 22:58:41.683671	CAda232aef0bfa70dc523b29fada20e90d	\N	127			0	inbound	+12147122250	\N	1.9033510684967041	\N	new lead	cell phone   tx	9	\N	\N	2352
2017-04-20 17:41:53.63596+00	2017-11-29 18:38:49.805953+00	4137	completed				+18322294802		69	2017-04-20 17:41:53.632836	2017-04-20 17:43:02.175852	CAb0578d25993f00309bf3451f85f2b528	\N	125			0	inbound	+12147122250	\N	1.47426486015319824	\N	new lead	cell phone   tx	9	\N	\N	2352
2016-05-06 15:05:55.15433+00	2016-05-06 15:06:34.34935+00	91	missed	Jason			773		7	2016-05-06 15:05:55.151395	2016-05-06 15:06:34.348337	CA24a7d72b46b09f0abcbe9bb4459c0432	53da9e33-88fb-4b04-baca-339193fd55f7	\N			3	outbound	+17735469660	\N	30.6697049140930176	{}	new lead		1	\N	\N	\N
2017-04-20 17:42:58.63054+00	2017-11-29 18:38:49.80596+00	4138	completed				+18322294802		56	2017-04-20 17:42:58.628804	2017-04-20 17:43:55.10228	CA3eb601b58028dc80feef959c1a5da24f	\N	126			0	inbound	+12147122250	\N	0.725634098052978516	\N	new lead	cell phone   tx	9	\N	\N	2352
2017-04-20 17:43:57.592119+00	2017-11-29 18:38:49.805967+00	4139	completed				+18322294802		64	2017-04-20 17:43:57.590727	2017-04-20 17:45:01.65499	CAd3fc0f8b807e66fc06096798289b0ca0	\N	124			0	inbound	+12147122250	\N	1.14432191848754883	\N	new lead	cell phone   tx	9	\N	\N	2352
2017-04-20 17:44:51.415304+00	2017-11-29 18:38:49.805974+00	4140	completed				+18322294802		56	2017-04-20 17:44:51.41362	2017-04-20 17:45:46.989251	CA28c4a5b470d7f59841f4aa912878b4a2	\N	\N			0	inbound	+12147122250	\N	3.00013899803161621	\N	new lead	cell phone   tx	9	\N	\N	2352
2017-04-20 17:45:47.096761+00	2017-11-29 18:38:49.805982+00	4141	completed				+18322294802		144	2017-04-20 17:45:47.095409	2017-04-20 17:48:11.404975	CA7cb25833de196c72320969b50e44badb	\N	\N			0	inbound	+12147122250	\N	2.8834841251373291	\N	new lead	cell phone   tx	9	\N	\N	2352
2017-04-21 18:30:48.960988+00	2017-11-29 18:38:49.806223+00	4193	completed				+18322294802		71	2017-04-21 18:30:48.958439	2017-04-21 18:32:00.292251	CAcc6fadb144a62ac16d911895e86e7235	\N	125			0	inbound	+12147122250	\N	1.14924097061157227	\N	new lead	cell phone   tx	9	\N	\N	2352
2017-04-21 18:31:56.906707+00	2017-11-29 18:38:49.80623+00	4194	completed				+18322294802		359	2017-04-21 18:31:56.905562	2017-04-21 18:37:56.308906	CAa38da28d96ef0898a5dc805d1c5b1b5e	\N	105			0	inbound	+12147122250	\N	3.33258414268493652	\N	new lead	cell phone   tx	9	\N	\N	2352
2017-05-10 17:35:00.51579+00	2017-11-29 18:38:53.215583+00	4958	completed				+12103214200		171	2017-05-10 17:35:00.513302	2017-05-10 17:37:51.628066	CAba0a74d952145b9ed5e2ec7c95526f5c	\N	\N		https://api.twilio.com/2010-04-01/Accounts/AC5422b9b221417a7a84556a92f6edc492/Recordings/RE4768c0ee7c5c05618cc5e9ff1a29dfc2	0	inbound	+12146922088	\N	4.94282197952270508	\N	new lead	us govt	9	\N	\N	2661
2016-08-10 23:02:25.146407+00	2016-08-11 12:20:49.474101+00	1403	missed	Latashia	Leath	Leathtashia@hotmail.com	+19377251795		\N	2016-08-10 23:02:25.145062	\N		25d0200e-983d-4413-94ae-eb664b99711c	\N			0	outbound	+18556311490	\N	\N	{}	application submitted - autopay		1	\N	\N	2669
2017-12-06 13:50:37.225077+00	2017-12-06 13:58:27.608543+00	7625	completed				+17136721993		469	2017-12-06 13:50:37.223105	2017-12-06 13:58:26.313119	CA8b240e6f8447a226d17c315e9cd2bb64	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE3d219bf8394cc7a37ff77fb3561d84db	0	inbound	+18558645656	136	2.4996330738067627	\N	new lead		15	\N	\N	2675
2017-05-06 18:34:53.043191+00	2017-11-29 18:38:49.810188+00	4808	completed				+19724671769		137	2017-05-06 18:34:53.041448	2017-05-06 18:37:09.686748	CA23283643c8f66bd75fdbc532e0c57ffd	\N	105			0	inbound	+12147122250	\N	4.54981184005737305	\N	new lead	holsan john	9	\N	\N	31
2017-05-06 18:38:53.209359+00	2017-11-29 18:38:49.810195+00	4809	completed				+19724671769		92	2017-05-06 18:38:53.207565	2017-05-06 18:40:25.213242	CAe6962bae161796e56c6c9df9fba1cf9b	\N	105			0	inbound	+12147122250	\N	5.98361396789550781	\N	new lead	holsan john	9	\N	\N	31
2016-09-09 16:19:11.987368+00	2016-09-09 16:19:40.613431+00	1977	completed	RESTRICTED			+266696687		29	2016-09-09 16:19:11.986311	2016-09-09 16:19:40.608372	CAede36529b9352e5579ec880048f03f36	\N	1			0	inbound	+17735469660	16	8.94902205467224121	null	new lead		1	\N	\N	\N
2017-05-08 18:35:27.911428+00	2017-11-29 18:38:49.810351+00	4859	completed				+16466923535		67	2017-05-08 18:35:27.909248	2017-05-08 18:36:34.95653	CA075fb6bfcd65eda949d508b315e344f8	\N	127			0	inbound	+12147122250	\N	1.96238994598388672	\N	new lead	manhattan  ny	9	\N	\N	628
2017-05-09 16:35:28.242818+00	2017-11-29 18:38:49.810569+00	4904	completed				+17864060996		216	2017-05-09 16:35:28.240334	2017-05-09 16:39:04.33495	CAe7f3d3a18863756b20077ebfbdf59940	\N	\N			0	inbound	+12147122250	\N	1.98073291778564453	\N	new lead	gonzalez guille	9	\N	\N	1052
2017-05-08 18:55:03.801466+00	2017-11-29 18:38:49.810396+00	4863	completed				+12146806313		83	2017-05-08 18:55:03.799391	2017-05-08 18:56:26.98593	CAdf5af4afd2b141f5e2539070e9b1adad	\N	126			0	inbound	+12147122250	\N	1.51339006423950195	\N	new lead	wilkins r	9	\N	\N	1141
2016-09-09 16:20:02.580707+00	2016-09-09 16:20:23.532901+00	1978	missed	RESTRICTED			+266696687		\N	2016-09-09 16:20:02.577992	\N		\N	1			0	outbound	+17735469660	16	\N	null	new lead		1	\N	\N	\N
2016-07-11 20:34:52.886151+00	2016-12-10 01:05:18.400679+00	852	completed				+16104097895		133	2016-07-11 20:34:52.884172	2016-07-11 20:37:05.484771	CAd3d552a900806555a7de00706cbf7da2	\N	24			0	inbound	+18557088731	\N	2.21971511840820312	null	new lead		3	\N	\N	87
2017-05-09 22:17:33.62471+00	2017-11-29 18:38:49.810747+00	4938	completed				+18179097577		61	2017-05-09 22:17:33.621308	2017-05-09 22:18:34.690671	CA8a025b16824163f63a3c3d84dbc3b87b	\N	125			0	inbound	+12147122250	\N	1.19819188117980957	\N	new lead	hart chris	9	\N	\N	361
2017-05-09 22:18:27.611559+00	2017-11-29 18:38:49.810754+00	4939	completed				+18179097577		71	2017-05-09 22:18:27.609449	2017-05-09 22:19:38.311494	CAdf8d3c4fe550a2f49554e92a9add0712	\N	126			0	inbound	+12147122250	\N	1.24175810813903809	\N	new lead	hart chris     	9	\N	\N	361
2017-05-09 20:25:26.363293+00	2017-11-29 18:38:49.810697+00	4930	completed				+19728003374		75	2017-05-09 20:25:26.36077	2017-05-09 20:26:41.530451	CA32b541c43b6bcdf0c7e233a097b40049	\N	124			0	inbound	+12147122250	\N	1.24515891075134277	\N	new lead	jallah ivor    	9	\N	\N	566
2017-05-09 20:26:35.631372+00	2017-11-29 18:38:49.810711+00	4932	missed				+19728003374		25	2017-05-09 20:26:35.629962	2017-05-09 20:27:00.862092	CA757beb780da5edf80045530065b6c244	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	jallah ivor    	9	\N	\N	566
2017-05-11 18:29:26.847697+00	2017-11-29 18:38:49.811125+00	5013	completed				+19726795448		86	2017-05-11 18:29:26.845608	2017-05-11 18:30:52.661885	CAb72b432006092419d1de6b118830dfe0	\N	124			0	inbound	+12147122250	\N	1.19304394721984863	\N	new lead	yanke karyn    	9	\N	\N	356
2017-05-16 15:01:43.065455+00	2017-11-29 18:38:49.811685+00	5102	completed				+18646544653		371	2017-05-16 15:01:43.062398	2017-05-16 15:07:53.947466	CA2a0136e411247f9873cf5671ae5e1f8e	\N	107			0	inbound	+12147122250	\N	6.38859200477600098	\N	new lead	golds gym of cl	9	\N	\N	158
2017-04-21 20:12:49.243268+00	2017-11-29 18:38:53.214397+00	4201	completed				+12142960341		187	2017-04-21 20:12:49.239829	2017-04-21 20:15:56.343974	CAac8685d9a5f79621df8920d6c8272338	\N	105			0	inbound	+12146922088	\N	8.5428769588470459	\N	new lead	m5 networks	9	\N	\N	3407
2017-05-18 14:45:26.398791+00	2017-11-29 18:38:49.812132+00	5183	completed				+18009150927		49	2017-05-18 14:45:26.396314	2017-05-18 14:46:15.600014	CA5441f639b92f51a15e0b6452d35465d3	\N	125			0	inbound	+12147122250	\N	5.1846308708190918	\N	new lead	800 service    	9	\N	\N	828
2017-05-18 16:36:28.22569+00	2017-11-29 18:38:49.812153+00	5203	completed				+19729550440		144	2017-05-18 16:36:28.223154	2017-05-18 16:38:52.117075	CA99fd532da76eee6546e3f6527378712a	\N	\N			0	inbound	+12147122250	\N	6.25791501998901367	\N	new lead	cell phone   tx	9	\N	\N	878
2017-05-18 23:35:08.834849+00	2017-11-29 18:38:49.812245+00	5224	missed				+13142787744		97	2017-05-18 23:35:08.83268	2017-05-18 23:36:46.198906	CA4f63f43b365c7d13eef8ef6c2bef5221	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	kingsmen servic	9	\N	\N	936
2016-07-15 16:20:35.725705+00	2016-11-09 15:43:50.981579+00	874	missed				+19842550883		14	2016-07-15 16:20:35.724207	2016-07-15 16:20:49.538425	CA0938991079f1fe80653b11e790a51d44	\N	\N			0	inbound	+18554186369	\N	2.63100886344909668	null	new lead		3	\N	\N	3459
2016-07-20 14:52:29.827459+00	2016-12-10 01:05:18.400708+00	902	completed				+16106364818		70	2016-07-20 14:52:29.825733	2016-07-20 14:53:40.203018	CAebee66cc3603934f8783202b44b36de3	\N	24			0	inbound	+18557088731	\N	2.74816989898681641	null	new lead		3	\N	\N	53
2017-05-19 21:52:59.900266+00	2017-11-29 18:38:49.812331+00	5240	missed				+16784109202		20	2017-05-19 21:52:59.898131	2017-05-19 21:53:20.340804	CA6024d1d75f23355c3023a2ebcdf7a3c9	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	dba myles truck	9	\N	\N	199
2017-05-19 21:53:21.588306+00	2017-11-29 18:38:49.812338+00	5241	completed				+16784109202		222	2017-05-19 21:53:21.587002	2017-05-19 21:57:03.533178	CA984329865ad90872123193653a0bddc4	\N	133			0	inbound	+12147122250	\N	4.60019302368164062	\N	new lead	dba myles truck	9	\N	\N	199
2017-05-20 16:53:44.117871+00	2017-11-29 18:38:49.812391+00	5248	completed				+19723702345		216	2017-05-20 16:53:44.115531	2017-05-20 16:57:20.287749	CA7da0fef9a3c54747102c88d9b844fe3e	\N	99			0	inbound	+12147122250	\N	4.2086341381072998	\N	new lead	land rover frisco	9	\N	\N	774
2017-05-20 18:57:57.376171+00	2017-11-29 18:38:49.81242+00	5255	completed				+17138983164		76	2017-05-20 18:57:57.37439	2017-05-20 18:59:13.85083	CA0215ee1e29a38736f995e738efd37a2e	\N	127			0	inbound	+12147122250	\N	0.859514951705932617	\N	new lead	cell phone   tx	9	\N	\N	1263
2017-05-20 18:59:05.731657+00	2017-11-29 18:38:49.812428+00	5256	completed				+17138983164		71	2017-05-20 18:59:05.729903	2017-05-20 19:00:16.914889	CA29649724e97ae3748e523d72da3a5e9d	\N	103			0	inbound	+12147122250	\N	10.1408751010894775	\N	new lead	cell phone   tx	9	\N	\N	1263
2017-05-20 18:31:17.406617+00	2017-11-29 18:38:49.812413+00	5254	missed				+16823004455		3	2017-05-20 18:31:17.401894	2017-05-20 18:31:20.254644	CAa3e9a813bc45ed10c0ee9e1c31344f4d	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	johnson etta	9	\N	\N	1293
2017-05-19 21:21:54.728503+00	2017-11-29 18:38:49.812324+00	5239	completed				+19158814093		80	2017-05-19 21:21:54.726187	2017-05-19 21:23:14.510539	CA1c626837ab43aa96b8cf06a21d50aa49	\N	127			0	inbound	+12147122250	\N	2.49187994003295898	\N	new lead	allstate ins	9	\N	\N	1316
2017-05-19 22:23:08.362448+00	2017-11-29 18:38:49.812369+00	5245	missed				+14692353465		44	2017-05-19 22:23:08.359683	2017-05-19 22:23:52.817229	CAa4ea3d0f78dd8b3987e199d951579534	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	wireless caller	9	\N	\N	1856
2016-08-10 23:15:27.444998+00	2016-08-10 23:15:27.470607+00	1405	missed						\N	2016-08-10 23:15:27.443893	\N		030c4f8d-8f6a-470d-a473-e83e32d9e8c0	\N			0	outbound	+17735469660	\N	\N	{}	new lead		1	\N	\N	\N
2016-08-02 17:21:55.495667+00	2016-12-10 01:05:18.400743+00	1125	completed				+16107185769		148	2016-08-02 17:21:55.49445	2016-08-02 17:24:23.080226	CA49cbadf772b4739e9fcaf74efb765b7b	\N	24			0	inbound	+18557088731	\N	1.66632890701293945	null	new lead		3	\N	\N	542
2016-08-01 16:14:24.74746+00	2016-12-10 01:05:18.400729+00	1073	completed				+16104689562		268	2016-08-01 16:14:24.745644	2016-08-01 16:18:52.950912	CA52ec3cac79ced69cd558abfc3ff26552	\N	24			0	inbound	+18557088731	\N	10.8738009929656982	null	new lead		3	\N	\N	1920
2017-10-21 19:37:24.586313+00	2017-10-21 19:38:14.693446+00	6777	completed				+18179185617		49	2017-10-21 19:37:24.583131	2017-10-21 19:38:13.765826	CA6a14bbe619aa0fa1bda848381ca54b0d	\N	155		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REef3a6f6275938ab7efd3ce2947bbdb59	0	inbound	+18177569010	124	13.589371919631958	\N	new lead	najera mariana	12	\N	\N	2359
2017-03-30 20:07:59.666557+00	2017-11-29 18:31:56.600331+00	3633	missed				+19789790158		16	2017-03-30 20:07:59.664611	2017-03-30 20:08:16.056662	CA31f59dd0557db7ad48fcc2da6d1e73c1	\N	\N			0	inbound	+18556311397	\N	\N	\N	general interest		1	\N	\N	2362
2017-03-30 19:33:29.040386+00	2017-11-29 18:31:56.600324+00	3629	missed				+19789790158		40	2017-03-30 19:33:29.038185	2017-03-30 19:34:09.09298	CA99580d36692cb724aa17b1006dafd0be	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE2617d81f9ad90c52943219f80b2c3675	0	inbound	+18556311397	\N	\N	\N	general interest		1	\N	\N	2362
2017-04-04 21:49:30.191629+00	2017-11-29 18:31:56.600345+00	3689	completed				+19789790158		26	2017-04-04 21:49:30.189749	2017-04-04 21:49:56.269165		\N	16			0	outbound	+18556311397	\N	\N	\N	general interest		1	\N	\N	2362
2017-05-17 19:59:21.207148+00	2017-05-17 20:20:44.627789+00	5172	missed				+18177563877		11	2017-05-17 19:59:21.205211	2017-05-17 19:59:32.095065	CA155fc4a63f940ce69f00a4b1923a6c7a	\N	\N			0	inbound	+18177569010	124	1261.84566187858582	\N	new lead	dallas  tx	12	\N	\N	2367
2016-07-07 18:06:14.484458+00	2016-12-10 01:05:18.40063+00	816	completed				+19085008552		488	2016-07-07 18:06:14.482875	2016-07-07 18:14:22.787865	CA204582fcce5e57e66d36b137e2c1204f	\N	24			0	inbound	+18557088731	\N	2.36975002288818359	null	new lead		3	\N	\N	2371
2017-04-29 19:22:59.362206+00	2017-11-29 18:38:49.807469+00	4470	completed				+16823656438		738	2017-04-29 19:22:59.35819	2017-04-29 19:35:16.876295	CA4754a43d1bdd054a736fc76bbf92ceed	\N	99			0	inbound	+12147122250	\N	13.7182910442352295	\N	new lead	latimer candace	9	\N	\N	2378
2017-08-31 20:37:56.21652+00	2017-08-31 20:59:43.161612+00	6224	missed				+18178511372		30	2017-08-31 20:37:56.214318	2017-08-31 20:38:26.370186	CA4e7489891b59a32c3634c068def14e38	\N	\N			0	inbound	+18177569010	124	356.01111888885498	\N	new lead	shunniking	12	\N	\N	2386
2016-07-11 18:25:16.177737+00	2016-07-12 12:48:23.876904+00	850	completed	mika	takenaka	mikadublin1@hotmail.com	+16144252908		13	2016-07-11 18:25:16.175696	2016-07-11 18:25:40.55196	CA41dc91ee5d310f91757a284622716488	d33a481e-e0af-47ac-9f90-260f20b69de5	\N			1	outbound	+18552959002	\N	8.26565098762512207	{}	new lead		1	\N	\N	2391
2016-07-21 19:24:05.576976+00	2017-11-29 18:31:41.49054+00	914	completed	mika	takenaka		+16144252908		52	2016-07-21 19:24:05.574791	2016-07-21 19:24:57.883746	CAebab26926327d623caba3b26f6a5faca	\N	17		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REd9367af7ada23674b344d9fd0c97d4e9	0	inbound	+18552959002	\N	11.0133528709411621	null	new lead		1	\N	\N	2391
2017-10-14 20:48:40.383104+00	2017-10-14 20:48:42.624292+00	6715	missed				+14046808686		2	2017-10-14 20:48:40.380936	2017-10-14 20:48:42.31221	CAf1ca0f51bea0fbf0591807615947061d	\N	\N			0	inbound	+17707665699	134	1.37884998321533203	\N	new lead		13	\N	\N	2392
2017-04-27 21:51:06.783726+00	2017-11-29 18:38:53.214696+00	4408	completed				+12148688012		128	2017-04-27 21:51:06.781382	2017-04-27 21:53:14.906832	CAd354485ffd538084188e6d648df04154	\N	99			0	inbound	+12146922088	\N	10.9656121730804443	\N	new lead	wireless caller	9	\N	\N	2677
2017-12-04 14:11:37.374894+00	2017-12-04 14:24:26.438683+00	7523	completed				+13215059185		766	2017-12-04 14:11:37.372519	2017-12-04 14:24:23.070828	CA45bc9a4ebe6dbee6a219ccc6801c47c4	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE3f5ffaccf539746b2e169444ed0106a4	0	inbound	+18558645656	136	2.47345995903015137	\N	new lead		15	\N	\N	37
2017-12-04 13:18:36.644461+00	2017-12-04 13:19:36.305358+00	7521	completed	Dan	Perruquet	perkypet@sbcglobal.net	+18156410939		55	2017-12-04 13:18:36.642673	2017-12-04 13:19:36.303912	CAfbcf9acb767dc03bfc80ee14975330f1	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.78825592994689941	{}	new lead		15	\N	\N	75
2017-05-22 15:22:53.478762+00	2017-11-29 18:38:49.812522+00	5270	completed				+16784109202		68	2017-05-22 15:22:53.477452	2017-05-22 15:24:01.310247	CA1065065b5b23b333b14410ccf1a401c9	\N	99			0	inbound	+12147122250	\N	5.19458985328674316	\N	new lead	dba myles truck	9	\N	\N	199
2017-12-04 14:15:16.357605+00	2017-12-04 14:17:04.347149+00	7524	completed	David	Ocampo	Davidocampo120@gmail.com	+16785426220		82	2017-12-04 14:15:16.356255	2017-12-04 14:17:04.344779	CA471b3cf8e16eb4dadb742adbcd51daab	cd009b81-ec25-40d7-a806-e428c0f41965	157			1	outbound	+17706597466	\N	25.266956090927124	{}	new lead		14	\N	\N	596
2017-12-04 08:23:25.852309+00	2017-12-04 14:20:29.485471+00	7520	missed	Aron	Griffin	real100griffin975@gmail.com	+17708950254		\N	2017-12-04 08:23:25.849808	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	801
2017-12-04 14:18:12.461556+00	2017-12-04 14:20:29.473987+00	7525	completed	Aron	Griffin	real100griffin975@gmail.com	+17708950254		58	2017-12-04 14:18:12.459175	2017-12-04 14:19:10.169632		\N	150			0	outbound	+17704009016	132	\N	\N	select status		13	\N	\N	801
2017-05-22 16:16:23.919297+00	2017-11-29 18:38:49.812572+00	5278	completed				+18009150927		54	2017-05-22 16:16:23.917406	2017-05-22 16:17:18.335547	CA5d0f4bb2b44abaaae58f585935c12991	\N	\N			0	inbound	+12147122250	\N	2.61693406105041504	\N	new lead	800 service	9	\N	\N	828
2017-05-22 16:17:26.725077+00	2017-11-29 18:38:49.812579+00	5279	completed				+18009150927		77	2017-05-22 16:17:26.723709	2017-05-22 16:18:43.494944	CAf6791313b898e9a9ed1d32527445bc7a	\N	133			0	inbound	+12147122250	\N	4.58112406730651855	\N	new lead	800 service	9	\N	\N	828
2017-05-22 19:11:12.21597+00	2017-11-29 18:38:49.812643+00	5291	completed				+12146413188		99	2017-05-22 19:11:12.214001	2017-05-22 19:12:50.760579	CAe4413886556440a26d8225efcae973cd	\N	125			0	inbound	+12147122250	\N	1.05772113800048828	\N	new lead	leyva jose	9	\N	\N	35
2017-05-22 19:13:09.486457+00	2017-11-29 18:38:49.812657+00	5293	completed				+12146413188		116	2017-05-22 19:13:09.484782	2017-05-22 19:15:05.450498	CA202ce609aae32a667ecd2cdff660fce7	\N	124			0	inbound	+12147122250	\N	1.31722617149353027	\N	new lead	leyva jose	9	\N	\N	35
2017-12-04 14:36:57.477703+00	2017-12-04 14:54:08.165723+00	7528	completed				+17737917749		1027	2017-12-04 14:36:57.475762	2017-12-04 14:54:04.882043	CA18973eef1657cc5436b10dc9ae3ef278	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REec35bd7c031d702103b2dc2c199b4c3b	0	inbound	+18558645656	136	2.61706805229187012	\N	new lead		15	\N	\N	708
2017-05-22 19:12:48.57481+00	2017-11-29 18:38:49.81265+00	5292	completed				+19497347896		84	2017-05-22 19:12:48.57315	2017-05-22 19:14:12.255693	CA54babf44543714facd6c5fc3d1346fb0	\N	105			0	inbound	+12147122250	\N	5.37585806846618652	\N	new lead	los angeles  ca	9	\N	\N	1406
2017-05-22 19:14:04.554744+00	2017-11-29 18:38:49.812664+00	5294	completed				+19497347896		82	2017-05-22 19:14:04.552364	2017-05-22 19:15:26.613324	CAaa3eed5cc7cb3b0e1542057693778477	\N	125			0	inbound	+12147122250	\N	1.28361105918884277	\N	new lead	los angeles  ca	9	\N	\N	1406
2017-05-22 19:15:22.552307+00	2017-11-29 18:38:49.812671+00	5295	completed				+19497347896		82	2017-05-22 19:15:22.550283	2017-05-22 19:16:44.466248	CAf31778646aad833b148f3958bae29110	\N	127			0	inbound	+12147122250	\N	1.04981803894042969	\N	new lead	los angeles  ca	9	\N	\N	1406
2017-05-22 19:16:37.520319+00	2017-11-29 18:38:49.812678+00	5296	completed				+19497347896		65	2017-05-22 19:16:37.51854	2017-05-22 19:17:42.043255	CAb0545247c92134d16c62cc89f80261a2	\N	125			0	inbound	+12147122250	\N	1.22655200958251953	\N	new lead	los angeles  ca	9	\N	\N	1406
2016-08-25 13:54:11.479158+00	2016-12-09 17:07:47.979223+00	1766	completed				+14435282812		10	2016-08-25 13:54:11.477141	2016-08-25 13:54:21.626903	CA9dfd3cfd497e85a8c1901228a8c0761d	\N	55			0	inbound	+18556708891	\N	2.44935202598571777	null	new lead		3	\N	\N	1910
2017-10-12 16:13:06.342042+00	2017-10-12 16:16:24.785183+00	6678	completed				+18177620285		197	2017-10-12 16:13:06.339696	2017-10-12 16:16:23.682601	CA137258682d27aee46e2de50e3c4f15ac	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE688483665fcf0f8e1209ff857c6bf03d	0	inbound	+18177569010	124	19.6934831142425537	\N	new lead	tellez j	12	\N	\N	2395
2016-08-23 13:04:15.24553+00	2017-11-29 18:31:41.490793+00	1664	missed	Allen 	Gucci		+13133738000		19	2016-08-23 13:04:15.24381	2016-08-23 13:04:33.825552	CA8670fa1d283b5b258a0261528830f8a0	\N	\N			0	inbound	+18552959002	\N	\N	null	select status		1	\N	\N	2397
2016-08-24 14:20:12.161537+00	2017-01-27 21:12:23.8137+00	1698	completed	Allen 	Gucci		+13133738000		34	2016-08-24 14:20:12.160428	2016-08-24 14:20:46.13416		\N	\N			0	outbound	+18555343978	48	\N	null	select status		1	\N	\N	2397
2016-08-22 12:39:50.535653+00	2017-11-29 18:31:41.490779+00	1636	missed	Allen 	Gucci		+13133738000		65	2016-08-22 12:39:50.533745	2016-08-22 12:40:55.242613	CA00b55863c94d806697f50358653916d3	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REa5fa4b24f24770731a5c895b84c52c45	0	inbound	+18552959002	\N	\N	null	select status		1	\N	\N	2397
2016-08-07 01:00:27.988648+00	2016-12-10 01:05:11.337059+00	1309	missed				+17184201472		6	2016-08-07 01:00:27.986998	2016-08-07 01:00:34.064899	CA5a9f2f8f2062fd3e55a88a8d2383bab2	\N	\N			0	inbound	+18555693686	\N	\N	null	new lead		3	\N	\N	106
2017-02-13 20:02:43.396059+00	2017-02-13 20:03:56.884054+00	3172	completed	GREENFIELD	STEV		+16785769972		73	2017-02-13 20:02:43.392643	2017-02-13 20:03:56.878769	CA79898246bf7461e4dd3488cb7055a4a6	\N	79			0	inbound	+17735469660	16	55.497189998626709	null	new lead		1	\N	\N	655
2016-09-09 18:37:55.598401+00	2016-12-10 01:04:42.413783+00	1980	completed				+19092335356		398	2016-09-09 18:37:55.597317	2016-09-09 18:44:33.934966	CA8f1142bf6bdb41043083f5ae6dadd63b	\N	58			0	inbound	+18552187903	\N	0.889359951019287109	null	new lead		3	\N	\N	730
2016-08-10 23:57:27.066283+00	2016-08-10 23:57:27.088612+00	1408	missed						\N	2016-08-10 23:57:27.065142	\N		030c4f8d-8f6a-470d-a473-e83e32d9e8c0	\N			0	outbound	+17735469660	\N	\N	{}	new lead		1	\N	\N	\N
2017-02-12 18:59:47.984738+00	2017-02-12 19:00:08.573595+00	3164	missed				+17735469660		21	2017-02-12 18:59:47.983181	2017-02-12 19:00:08.569248	CA50f7b2353f4d2da0da0c3b5d357dcf2b	\N	\N			0	inbound	+17732950301	104	13.440803050994873	null	new lead		1	\N	\N	794
2017-02-12 19:01:56.802481+00	2017-02-12 19:02:16.818317+00	3166	missed				+17735469660		20	2017-02-12 19:01:56.800754	2017-02-12 19:02:16.816266	CA0f416c793c2f9ab16f990bd460d1e62b	\N	\N			0	inbound	+17732950301	104	14.7014138698577881	null	new lead		1	\N	\N	794
2017-02-12 19:26:18.562848+00	2017-02-20 02:31:36.101346+00	3171	completed				+17735469660		21	2017-02-12 19:26:18.56151	2017-02-12 19:26:39.576422	CAb84973f742d72f47a49a096e210b3556	\N	\N			0	inbound	+17732950301	104	8.32488703727722168	null	new lead		1	\N	\N	794
2017-12-04 15:47:07.923862+00	2017-12-04 15:48:24.61486+00	7531	completed				+17703697220		77	2017-12-04 15:47:07.921937	2017-12-04 15:48:24.598828	CA9773c7f80315b923e5ebf40a0de01e85	\N	150			0	inbound	+17707665732	133	11.1906399726867676	\N	new lead	bell shay	13	\N	\N	1497
2017-04-24 19:44:24.358665+00	2017-11-29 18:38:49.806455+00	4259	completed				+18177264794		212	2017-04-24 19:44:24.356623	2017-04-24 19:47:56.417917	CA3d02795a9d694a9903b2f049ab0e2ffe	\N	105			0	inbound	+12147122250	\N	4.59285497665405273	\N	new lead	carroll jim	9	\N	\N	2399
2017-11-30 23:35:43.395244+00	2017-11-30 23:38:39.466976+00	7419	completed				+18175245081		175	2017-11-30 23:35:43.393212	2017-11-30 23:38:38.859421	CA49db803747f102ba58834bb4e9a0ab07	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE054fd654d5443a48f389695fa410ef54	0	inbound	+18177569010	124	9.84868407249450684	\N	new lead	deanthony wheat	12	\N	\N	2402
2016-07-30 20:32:54.401696+00	2016-08-01 14:08:44.756462+00	1063	missed	Otto	Diaz	otto_diaz@yahoo.com	+16615754023		\N	2016-07-30 20:32:54.400429	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - autopay		1	\N	\N	2404
2016-11-02 18:09:35.047539+00	2017-11-29 18:31:37.369269+00	2580	completed	Otto	Diaz		+16615754023		675	2016-11-02 18:09:35.046231	2016-11-02 18:20:49.598654	CA692c375a42942eda8b06723f0fb58542	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE8d295ed5e812dd5fd2d0cc52de62b974	0	inbound	+18555472453	\N	7.57903003692626953	null	application submitted - autopay		1	\N	\N	2404
2017-09-14 14:20:39.51023+00	2017-09-14 14:43:46.737389+00	6348	missed				+19723176152		100	2017-09-14 14:20:39.507182	2017-09-14 14:22:19.262657	CA767d565ea813d6cb8e9d13f31b624514	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REf97c8db3c3920702aebe26a6a691eebe	0	inbound	+18177569010	124	\N	\N	new lead	eaquinto lenae	12	\N	\N	2405
2017-09-27 23:12:56.793421+00	2017-09-27 23:12:56.848207+00	6502	missed	Angelica	Johnsin	babygurl223388@gmail.com	+17065436555		\N	2017-09-27 23:12:56.791839	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	2408
2016-11-26 17:18:21.949089+00	2017-11-29 18:31:33.775607+00	2981	missed				+12162339620		53	2016-11-26 17:18:21.947321	2016-11-26 17:19:15.246716	CA9a38034734895693492eec414dfd85c1	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE4624becb4b33ff3654f39b7121d753f0	0	inbound	+18556311350	\N	\N	null	application submitted - credit union		1	\N	\N	2411
2016-11-30 17:08:41.757522+00	2016-11-30 18:38:28.005225+00	3007	missed	Richard	Stibrick	rstibrick@roadrunner.com	+12162339620		\N	2016-11-30 17:08:41.756259	\N		ea8e48b7-042e-42ec-8dde-d03bf75a9bad	\N			0	outbound	+18556311350	\N	\N	{}	application submitted - credit union		1	\N	\N	2411
2017-04-27 21:55:04.629659+00	2017-11-29 18:38:53.214703+00	4409	completed				+12148688012		54	2017-04-27 21:55:04.625166	2017-04-27 21:55:58.673239	CA59a8d7f1112ac7cad81b4ec1bc8e698b	\N	133			0	inbound	+12146922088	\N	6.3771510124206543	\N	new lead	wireless caller	9	\N	\N	2677
2016-08-09 15:05:07.808915+00	2016-12-10 00:55:45.165205+00	1356	completed				+14845352232		229	2016-08-09 15:05:07.807336	2016-08-09 15:08:56.83691	CA90f7122d30acac091576dfe021140e78	\N	24			0	inbound	+18557129406	\N	2.09455990791320801	null	new lead		3	\N	\N	45
2017-12-04 16:13:59.908149+00	2017-12-04 16:14:00.871677+00	7533	missed				+16789936069		1	2017-12-04 16:13:59.906109	2017-12-04 16:14:00.855756	CAb26629665e1805d609c0ac6f6c8810e7	\N	\N			0	inbound	+17706597466	137	\N	\N	new lead		14	\N	\N	248
2017-12-04 16:14:32.865295+00	2017-12-04 16:16:09.127793+00	7534	completed				+16789936069		96	2017-12-04 16:14:32.863107	2017-12-04 16:16:08.60074	CAf39dda0d10a06fd3d9c50c0e9fda7876	\N	157		https://api.twilio.com/2010-04-01/Accounts/ACbd7756819f4882feb347788ad7959655/Recordings/REa073942611fecf2f3fb73c39d4bc95b8	0	inbound	+17706597466	137	5.01011204719543457	\N	new lead		14	\N	\N	248
2017-05-23 14:49:53.64725+00	2017-11-29 18:38:49.812756+00	5310	missed				+14698544955		1	2017-05-23 14:49:53.64462	2017-05-23 14:49:54.271618	CAb67d4925a5d2719eafe13bc95e49714e	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	dallas  tx	9	\N	\N	631
2017-12-04 16:18:53.335627+00	2017-12-04 16:22:32.910791+00	7536	completed	Marco	Robinson		+14049519017		218	2017-12-04 16:18:53.334481	2017-12-04 16:22:31.593978	CAed111f17e0ec1fb5b54d29999bc78bfe	\N	157		https://api.twilio.com/2010-04-01/Accounts/ACbd7756819f4882feb347788ad7959655/Recordings/REa0d0066248e795447a9f5de4d390d6fc	0	inbound	+17706597466	137	15.9318530559539795	\N	new lead		14	\N	\N	769
2017-12-04 16:18:39.613668+00	2017-12-04 16:19:44.920982+00	7535	completed	Marco	Robinson	iversonrobinson42@gmail.com	+14049519017		55	2017-12-04 16:18:39.611461	2017-12-04 16:19:44.919373	CA264b3a8aaf90cbdca7e8c7e53758c48f	cd009b81-ec25-40d7-a806-e428c0f41965	157			1	outbound	+17706597466	\N	10.1017899513244629	{}	new lead		14	\N	\N	769
2017-05-23 15:24:44.415232+00	2017-11-29 18:38:49.812763+00	5313	completed				+18009150927		46	2017-05-23 15:24:44.41329	2017-05-23 15:25:30.632543	CA5223f85a8e7c36157fa08cbd91e9f428	\N	125			0	inbound	+12147122250	\N	2.36492609977722168	\N	new lead	800 service    	9	\N	\N	828
2017-05-23 00:23:11.119218+00	2017-11-29 18:38:49.812749+00	5309	completed				+14054768937		94	2017-05-23 00:23:11.116603	2017-05-23 00:24:45.40881	CA3702a9a5d9319193eb08edc6d677753b	\N	124			0	inbound	+12147122250	\N	1.07585906982421875	\N	new lead	oklahoma ci  ok	9	\N	\N	1498
2016-09-13 23:15:51.189835+00	2016-12-10 01:05:18.400965+00	2008	completed				+16108644417		124	2016-09-13 23:15:51.188319	2016-09-13 23:17:55.6462	CA3a10f6115a21de1cab48b7a8db0a6911	\N	24			0	inbound	+18557088731	\N	1.07543087005615234	null	new lead		3	\N	\N	2414
2016-09-15 20:32:16.406102+00	2016-12-10 01:05:18.400979+00	2028	completed				+16108644417		322	2016-09-15 20:32:16.402962	2016-09-15 20:37:38.247298	CA7cf888871cce2c11513772c1bd0298e0	\N	24			0	inbound	+18557088731	\N	1.24826812744140625	null	new lead		3	\N	\N	2414
2016-08-11 22:30:32.889086+00	2016-11-09 15:43:21.094473+00	1431	missed				+13477896471		1	2016-08-11 22:30:32.88718	2016-08-11 22:30:33.678587	CA766362101e29c0031fef89b94823b71b	\N	\N			0	inbound	+18555291701	\N	\N	null	new lead		3	\N	\N	165
2016-08-10 14:40:37.651578+00	2016-08-10 14:57:16.412591+00	1382	missed	Louisa	DICKERSON	DANIDICKERSON@HOTMAIL.COM	+15135604019		\N	2016-08-10 14:40:37.650457	\N		25d0200e-983d-4413-94ae-eb664b99711c	\N			0	outbound	+18556311490	\N	\N	{}	application submitted - credit union		1	\N	\N	757
2016-08-11 19:25:52.292043+00	2016-12-10 01:05:18.40075+00	1422	completed				+16107333043		341	2016-08-11 19:25:52.290523	2016-08-11 19:31:33.535572	CA9f612f9e101ebc8f3c1c5c07c13ff7ce	\N	24			0	inbound	+18557088731	\N	1.68041610717773438	null	new lead		3	\N	\N	1756
2016-08-10 13:02:39.733837+00	2016-12-10 00:55:45.165219+00	1375	completed				+16103262915		169	2016-08-10 13:02:39.731795	2016-08-10 13:05:28.95911	CAe6819d323f82bf40dd10dcc293d6c850	\N	24			0	inbound	+18557129406	\N	2.4368140697479248	null	new lead		3	\N	\N	2121
2017-12-04 16:43:52.067573+00	2017-12-04 17:06:25.366524+00	7539	completed				+13042740922		1351	2017-12-04 16:43:52.064831	2017-12-04 17:06:22.660232	CAf5415a20b0c6f9b36f096c48756d6802	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REb3d5c4b96de8d0f05a525be15032cf8f	0	inbound	+18558645656	136	2.50646591186523438	\N	new lead		15	\N	\N	2135
2016-09-16 15:05:56.253111+00	2016-12-10 01:05:18.400986+00	2032	completed				+16108644417		110	2016-09-16 15:05:56.252161	2016-09-16 15:07:46.225005	CA7bf6cbf3ff392ee826dd2fecebe6cca6	\N	24			0	inbound	+18557088731	\N	1.43159914016723633	null	new lead		3	\N	\N	2414
2016-09-19 16:05:06.478013+00	2016-12-10 01:05:18.400993+00	2044	completed				+16108644417		86	2016-09-19 16:05:06.475403	2016-09-19 16:06:32.789368	CA5c2b80cf945bcaeac2654f194bf8392f	\N	24			0	inbound	+18557088731	\N	1.07891702651977539	null	new lead		3	\N	\N	2414
2016-09-19 17:47:18.184092+00	2016-12-10 01:05:18.400999+00	2049	completed				+16108644417		255	2016-09-19 17:47:18.182687	2016-09-19 17:51:33.628772	CAaeed632233a228c9599d04f181544825	\N	24			0	inbound	+18557088731	\N	1.23255610466003418	null	new lead		3	\N	\N	2414
2016-09-20 13:28:06.626519+00	2016-12-10 01:05:18.401006+00	2057	completed				+16108644417		104	2016-09-20 13:28:06.621341	2016-09-20 13:29:50.192766	CA44ad38483660cdd94594ea1edd6ea590	\N	24			0	inbound	+18557088731	\N	1.54862594604492188	null	new lead		3	\N	\N	2414
2016-09-20 13:55:36.630335+00	2016-12-10 01:05:18.401013+00	2058	completed				+16108644417		150	2016-09-20 13:55:36.62883	2016-09-20 13:58:06.718172	CA75f7b8bffc068f8fec6271f13a35f947	\N	24			0	inbound	+18557088731	\N	1.82432794570922852	null	new lead		3	\N	\N	2414
2016-09-20 14:32:52.606998+00	2016-12-10 01:05:18.40102+00	2060	completed				+16108644417		96	2016-09-20 14:32:52.605706	2016-09-20 14:34:28.258649	CA800f2ac4ee5c4cfb4eba62ac933bc2c5	\N	24			0	inbound	+18557088731	\N	1.18220210075378418	null	new lead		3	\N	\N	2414
2016-09-20 14:56:11.698951+00	2016-12-10 01:05:18.401027+00	2061	completed				+16108644417		95	2016-09-20 14:56:11.69642	2016-09-20 14:57:46.468905	CAbbb280ad9395e34a31a7e3d08b412618	\N	24			0	inbound	+18557088731	\N	1.1731560230255127	null	new lead		3	\N	\N	2414
2017-05-23 17:22:47.868556+00	2017-11-29 18:38:49.812841+00	5324	completed				+14092566143		145	2017-05-23 17:22:47.866181	2017-05-23 17:25:12.430025	CA96a95e0cb2721b218dea712ff0576c39	\N	133			0	inbound	+12147122250	\N	7.61900615692138672	\N	new lead	arser marian   	9	\N	\N	338
2016-08-12 16:29:51.159291+00	2016-12-10 00:55:45.165233+00	1439	completed				+12156946318		226	2016-08-12 16:29:51.158227	2016-08-12 16:33:37.152317	CA08e346563c1c0dcf777cd81641333e6d	\N	24			0	inbound	+18557129406	\N	1.74264311790466309	null	new lead		3	\N	\N	1951
2016-08-12 18:09:38.618302+00	2016-12-10 01:05:11.337074+00	1447	completed				+17184482938		12	2016-08-12 18:09:38.617162	2016-08-12 18:09:50.930242	CA2030fd310f157137d6f54f581b3f9e9b	\N	25			0	inbound	+18555693686	\N	1.32471013069152832	null	new lead		3	\N	\N	2294
2017-12-02 15:25:45.546351+00	2017-12-02 15:44:41.373748+00	7477	completed				+13862951423		1133	2017-12-02 15:25:45.544222	2017-12-02 15:44:38.22631	CAc66d6b415b9eda0dc1fdec4614d6e456	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REfbfd8a603ab0ac553e99d20d874194f2	0	inbound	+18558645656	136	2.14982318878173828	\N	new lead		15	\N	\N	2418
2016-05-18 21:22:43.406913+00	2016-05-25 16:32:10.949758+00	132	completed	Makr	Test	test@yahoo.com	+19995558888		\N	2016-05-18 21:22:43.405006	\N		25d0200e-983d-4413-94ae-eb664b99711c	\N			0	outbound	+18556311490	\N	\N	{}	new lead		1	\N	\N	2420
2016-09-08 20:15:27.409539+00	2016-12-10 01:01:51.440884+00	1969	completed				+16192274794		173	2016-09-08 20:15:27.407107	2016-09-08 20:18:20.387058	CAf9def96d2de09b751bfb15438fa9e729	\N	50			0	inbound	+18559693782	\N	2.15258502960205078	null	new lead		3	\N	\N	2421
2016-09-08 20:32:11.126209+00	2016-12-10 01:01:51.440891+00	1970	completed				+16192274794		295	2016-09-08 20:32:11.124846	2016-09-08 20:37:06.535051	CA017962dcba6367fd3940bb986f46b42b	\N	50			0	inbound	+18559693782	\N	1.98229002952575684	null	new lead		3	\N	\N	2421
2016-11-03 17:07:57.222661+00	2016-11-03 17:33:22.684244+00	2641	completed				+16234663963		1515	2016-11-03 17:07:57.220803	2016-11-03 17:33:12.505945	CAb7767f3b75b047cee5528c77238b5f3e	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE7c7ab809c081cb1a0be87f8109fba3a2	0	inbound	+18557240606	49	1.6784060001373291	null	new lead		1	\N	\N	2423
2017-11-06 21:01:46.166047+00	2017-11-06 21:03:11.539814+00	6952	completed				+16012874651		83	2017-11-06 21:01:46.163112	2017-11-06 21:03:09.442741	CAd602eab80675f7c4006732da866b67db	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REbc5234fe46766f2f34f6a83e4c077cb4	0	inbound	+18177569010	124	8.50511288642883301	\N	new lead	willison corey	12	\N	\N	2424
2017-05-01 13:32:14.586268+00	2017-11-29 18:38:49.807565+00	4489	completed				+14044297230		70	2017-05-01 13:32:14.583443	2017-05-01 13:33:24.284784	CAfdd99366ead2057f4dc82119d2c8ef99	\N	105			0	inbound	+12147122250	\N	7.52429413795471191	\N	new lead	allen chris    	9	\N	\N	2425
2017-05-01 14:05:45.785696+00	2017-11-29 18:38:49.807632+00	4493	completed				+14044297230		201	2017-05-01 14:05:45.782313	2017-05-01 14:09:06.638661	CA0ec639616ecf74db904ebe89fda0453a	\N	133			0	inbound	+12147122250	\N	8.59524393081665039	\N	new lead	allen chris    	9	\N	\N	2425
2017-12-27 01:58:07.540827+00	2017-12-27 01:58:34.081628+00	8113	completed				+17633254561		26	2017-12-27 01:58:07.538983	2017-12-27 01:58:33.299666	CA3f0aa81482539ca6fc4048a62e14d39e	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE8777d3d25a57394a41615bcbde3de377	0	inbound	+18558645656	136	2.54010105133056641	\N	new lead		15	\N	\N	2427
2017-11-18 20:51:01.126676+00	2017-11-18 20:52:45.175557+00	7132	completed				+18178930155		104	2017-11-18 20:51:01.125453	2017-11-18 20:52:45.172669	CAe63e828c46facfa370bce658c6b14112	\N	146			0	inbound	+18177569010	124	24.8505311012268066	\N	new lead	waites micheal	12	\N	\N	2678
2017-05-23 23:22:00.365897+00	2017-11-29 18:38:49.812925+00	5342	completed				+18172711966		66	2017-05-23 23:22:00.364042	2017-05-23 23:23:05.921638	CA4440f488c94ed0de404933f7f7c96625	\N	\N			0	inbound	+12147122250	\N	4.90165591239929199	\N	new lead	cell phone   tx	9	\N	\N	1
2017-05-23 19:31:50.210722+00	2017-11-29 18:38:49.812897+00	5333	completed				+19722514550		68	2017-05-23 19:31:50.208617	2017-05-23 19:32:58.154206	CA5fdbcd6e94682f78121048eeb0333dee	\N	126			0	inbound	+12147122250	\N	1.24166607856750488	\N	new lead	cfb-20	9	\N	\N	1204
2017-05-23 20:15:00.155871+00	2017-11-29 18:38:49.812904+00	5334	completed				+16305902000		67	2017-05-23 20:15:00.152798	2017-05-23 20:16:06.792005	CA6f8abcc26a2c7af1e47dbc1f7f0cace9	\N	125			0	inbound	+12147122250	\N	2.86321115493774414	\N	new lead	vauto inc	9	\N	\N	2005
2017-05-24 14:01:40.771946+00	2017-11-29 18:38:49.812973+00	5347	missed				+14402308404		28	2017-05-24 14:01:40.769385	2017-05-24 14:02:08.621305	CA5e62cdabeced04d83de94fb846049239	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	voip call	9	\N	\N	2008
2017-05-24 00:09:07.153885+00	2017-11-29 18:38:49.812953+00	5346	completed				+12144532500		112	2017-05-24 00:09:07.152036	2017-05-24 00:10:59.60213	CA2e3c9206e9c15ea2378370a39d65cb49	\N	124			0	inbound	+12147122250	\N	2.1067039966583252	\N	new lead	dallas  tx	9	\N	\N	2236
2017-08-25 13:50:33.377636+00	2017-08-25 13:57:13.62922+00	6157	completed				+15619722489		399	2017-08-25 13:50:33.375443	2017-08-25 13:57:12.450376	CA3d410a00a5f50ed370b9ce5c83fe648a	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE5ca699af2a234fa4037c5d254caef39f	0	inbound	+17704009016	132	370.007957935333252	\N	new lead		13	\N	\N	2430
2017-12-04 17:19:00.817283+00	2017-12-04 17:19:26.171427+00	7542	completed				+17703347120		24	2017-12-04 17:19:00.815361	2017-12-04 17:19:24.898081	CAce7fa1db7a3fe442ccfb721cf3c99e15	\N	157		https://api.twilio.com/2010-04-01/Accounts/ACbd7756819f4882feb347788ad7959655/Recordings/RE74b975dc9f386445a58f6c9cf098bb04	0	inbound	+17706597466	137	5.796051025390625	\N	new lead		14	\N	\N	2431
2016-11-04 22:17:48.94496+00	2016-11-04 22:18:16.808748+00	2734	completed				+14698770845		27	2016-11-04 22:17:48.943712	2016-11-04 22:18:15.998259	CAa7f7f9e8818ca6f77e1340823d3fb700	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE8b3f662349032d97b8cbf94d7fbd22c7	0	inbound	+18557240606	49	3.15617585182189941	null	new lead		1	\N	\N	2432
2017-12-22 00:12:39.702142+00	2017-12-22 00:34:53.167355+00	8063	missed				+18175843038		36	2017-12-22 00:12:39.699573	2017-12-22 00:13:15.722648	CA88180bb6e7668746a6c1f3034ba13ee7	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REdc819ebc17622082049360baf29b2bbe	0	inbound	+18177569010	124	382.855137825012207	\N	new lead	shumake robert	12	\N	\N	2433
2016-11-03 17:35:57.159459+00	2016-11-03 17:35:57.20018+00	2644	missed	fanping	zhang	dianezfp@gmail.com	+18176092266		\N	2016-11-03 17:35:57.158348	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2435
2016-08-24 18:47:52.665721+00	2016-12-09 17:10:17.413288+00	1741	missed				+14842415954		0	2016-08-24 18:47:52.66458	2016-08-24 18:47:52.879899	CA2031e706ad2df92e1d8bf11b8335a3ee	\N	\N			0	inbound	+18552716856	\N	\N	null	new lead		3	\N	\N	684
2017-05-24 16:22:05.403253+00	2017-11-29 18:38:49.813044+00	5353	completed				+16784730286		72	2017-05-24 16:22:05.400955	2017-05-24 16:23:17.237843	CA4d23eba8f8f10042d424285ff661f4f8	\N	125			0	inbound	+12147122250	\N	2.29869604110717773	\N	new lead	1st citizens ba	9	\N	\N	1112
2017-05-24 16:23:15.070862+00	2017-11-29 18:38:49.813052+00	5354	completed				+16784730286		37	2017-05-24 16:23:15.069359	2017-05-24 16:23:52.265752	CAdf327f58d450bcc16b45c98957fb2fc6	\N	124			0	inbound	+12147122250	\N	1.55777096748352051	\N	new lead	1st citizens ba	9	\N	\N	1112
2017-05-24 15:26:30.816161+00	2017-11-29 18:38:49.812996+00	5350	completed				+14697042738		301	2017-05-24 15:26:30.81373	2017-05-24 15:31:32.19249	CA8d4ebb25425695284339b07bb53be5e8	\N	107			0	inbound	+12147122250	\N	4.86407995223999023	\N	new lead	mullins howard	9	\N	\N	1432
2017-05-24 16:24:23.509886+00	2017-11-29 18:38:49.813067+00	5356	completed				+16784739627		130	2017-05-24 16:24:23.508489	2017-05-24 16:26:33.612359	CAe1ea6d78d56f4e913a2014e504e16e84	\N	126			0	inbound	+12147122250	\N	1.62549901008605957	\N	new lead	1st citizens ba	9	\N	\N	1570
2017-05-24 16:26:52.14994+00	2017-11-29 18:38:49.813074+00	5357	completed				+16784739627		69	2017-05-24 16:26:52.148432	2017-05-24 16:28:01.454129	CA8daff88c902bcfd9c71a5bcbe9e70d53	\N	124			0	inbound	+12147122250	\N	1.52169489860534668	\N	new lead	1st citizens ba	9	\N	\N	1570
2017-05-24 16:28:20.653749+00	2017-11-29 18:38:49.813082+00	5358	completed				+16784739627		43	2017-05-24 16:28:20.651188	2017-05-24 16:29:03.364244	CAf7196e533585c773d77f2de74d45e3c9	\N	\N			0	inbound	+12147122250	\N	11.1505451202392578	\N	new lead	1st citizens ba	9	\N	\N	1570
2017-05-24 15:02:14.629049+00	2017-11-29 18:38:49.812988+00	5349	missed				+12144460011		0	2017-05-24 15:02:14.62669	2017-05-24 15:02:15.075175	CA679fdf022fcaf37c4ed56cc620e4c349	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	dallas       tx	9	\N	\N	1965
2017-05-24 17:51:18.223551+00	2017-11-29 18:38:49.813104+00	5361	completed				+12148034150		177	2017-05-24 17:51:18.220224	2017-05-24 17:54:14.768359	CA6b525753b1171b2cbecaccaf7bcfffe9	\N	99			0	inbound	+12147122250	\N	6.27731704711914062	\N	new lead	fry johnny     	9	\N	\N	2357
2016-07-08 15:11:07.647707+00	2017-11-29 18:31:41.490361+00	829	completed				+16145441011		9	2016-07-08 15:11:07.645885	2016-07-08 15:11:16.934647	CA46832a8496e9ddd1549ea040397ceb43	\N	\N			0	inbound	+18552959002	\N	\N	null	new lead		1	\N	\N	2436
2016-10-27 16:44:31.411319+00	2017-11-29 18:31:37.369211+00	2356	missed				+16612696329		62	2016-10-27 16:44:31.409037	2016-10-27 16:45:33.877216	CA2c75f1b1131a6f28e51631842a331dda	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE4dc7f34e23030c0858c4da86a21a2aaa	0	inbound	+18555472453	\N	33.3165879249572754	null	new lead		1	\N	\N	2679
2017-05-24 18:28:59.942332+00	2017-11-29 18:38:49.813118+00	5363	completed				+16032856516		113	2017-05-24 18:28:59.939118	2017-05-24 18:30:52.564173	CAc0c708e2fa5d5a09d10f89176f5122ec	\N	127			0	inbound	+12147122250	\N	1.20053887367248535	\N	new lead	delta managemen	9	\N	\N	251
2016-08-25 15:58:04.818422+00	2016-12-10 01:05:18.400833+00	1772	completed				+16107801308		352	2016-08-25 15:58:04.816643	2016-08-25 16:03:56.584733	CAd619419af49441fe098ae1814d7e8c96	\N	24			0	inbound	+18557088731	\N	2.14263010025024414	null	new lead		3	\N	\N	401
2017-05-24 18:31:04.502579+00	2017-11-29 18:38:49.813125+00	5364	completed				+13253741790		127	2017-05-24 18:31:04.501283	2017-05-24 18:33:11.78493	CA6a88b0ed7b7e777139d65c8b7d38604e	\N	127			0	inbound	+12147122250	\N	1.93976616859436035	\N	new lead	northstar const	9	\N	\N	973
2017-04-13 16:07:56.476536+00	2017-11-29 18:38:49.804757+00	3865	missed				+12145320159		37	2017-04-13 16:07:56.473773	2017-04-13 16:08:33.775013	CA402aa1ed6705284e39138d1365574449	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead		9	\N	\N	1207
2016-08-15 21:10:39.048805+00	2016-12-20 22:16:06.426509+00	1519	completed				+12157414200		171	2016-08-15 21:10:39.047754	2016-08-15 21:13:29.714958	CA2a29198f4f0d019b7d4f6ce55070542a	\N	12		https://api.twilio.com/2010-04-01/Accounts/AC0c010b259762ed5fecf508ef97abf3c6/Recordings/RE3270440426ba722fbe3cbc744405fda6	0	inbound	+18557343030	\N	21.7155289649963379	null	new lead		3	\N	\N	1721
2017-02-23 21:45:54.368619+00	2017-11-29 18:47:25.0674+00	3251	completed				+19492805308		247	2017-02-23 21:45:54.367076	2017-02-23 21:50:01.790003	CA8661ab7f7f4e391597dcf63b200b42c0	\N	84		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REef4628640c8a854857fc57dab3788a62	0	inbound	+19728330116	\N	6.19091010093688965	\N	new lead		8	\N	\N	1842
2016-09-09 21:13:12.00663+00	2016-12-10 01:04:25.504906+00	1985	completed				+14435282812		39	2016-09-09 21:13:12.004394	2016-09-09 21:13:50.627313	CA8da46f64d735f1ee0665e1ce52a8d31e	\N	61			0	inbound	+18556322533	\N	32.9063119888305664	null	new lead		3	\N	\N	1910
2016-07-08 15:15:28.923187+00	2017-11-29 18:31:41.490368+00	830	completed	Trisha	Podvin		+16145441011		55	2016-07-08 15:15:28.921327	2016-07-08 15:16:24.223215	CA6ec41a4a7c23ab1c8c3c67f2e8f3f572	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REa3c38de19c3f8adaf91657d64e1b919b	0	inbound	+18552959002	\N	14.9169321060180664	null	new lead		1	\N	\N	2436
2017-08-29 22:27:12.29855+00	2017-08-29 22:32:55.413303+00	6199	completed	Kim	Murphy	milo30558@yahoo.com	+16789275361		329	2017-08-29 22:27:12.297278	2017-08-29 22:32:54.035705	CA45015b5871de0d3584a7abc90d2119aa	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE1e979483152fe7cc9acbba9fdb785aca	1	outbound	+17704009016	\N	12.2237980365753174	{}	new lead		13	\N	\N	2437
2017-09-29 14:22:20.817453+00	2017-09-29 14:27:38.837474+00	6526	completed	Kim	Murphy		+16789275361		318	2017-09-29 14:22:20.815601	2017-09-29 14:27:38.823879	CA7d9844b48e7aed20f5c717105f0f487d	\N	154			0	inbound	+17707665699	134	3.24535608291625977	\N	new lead		13	\N	\N	2437
2017-11-21 23:54:12.151083+00	2017-11-22 00:00:21.699037+00	7168	missed	Kaitlyn	Chilli	kaitlynchilli@gmail.com	+17064506883		20	2017-11-21 23:54:12.149841	2017-11-22 00:00:21.697253	CA866e5ec97ad30f4df9e64ae38a530133	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			3	outbound	+17704009016	\N	349.019028902053833	{}	new lead		13	\N	\N	2438
2016-09-10 19:49:19.089284+00	2016-12-10 01:01:51.440919+00	1988	completed				+12248292717		97	2016-09-10 19:49:19.087597	2016-09-10 19:50:55.823566	CAfc0a49c3802651f34eb0b797acd19b31	\N	50			0	inbound	+18559693782	\N	1.82138800621032715	null	new lead		3	\N	\N	77
2017-12-04 19:58:30.906475+00	2017-12-04 20:26:53.758071+00	7552	completed				+19366818344		1700	2017-12-04 19:58:30.904287	2017-12-04 20:26:50.495843	CAd56b8aed4046da73c9ff787d6ab1dbe2	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE1d53828bda84e82371fb3ad994d3df07	0	inbound	+18558645656	136	2.34047603607177734	\N	new lead		15	\N	\N	681
2016-08-19 19:16:07.035626+00	2016-12-10 00:55:45.165377+00	1623	completed				+16109556013		16	2016-08-19 19:16:07.03346	2016-08-19 19:16:22.664649	CA547b86b362328f29665acead59432eb9	\N	24			0	inbound	+18557129406	\N	2.12248897552490234	null	new lead		3	\N	\N	1061
2016-08-19 19:19:30.224569+00	2016-12-10 00:55:45.165384+00	1624	completed				+16109556013		16	2016-08-19 19:19:30.223383	2016-08-19 19:19:45.854369	CA71bb994078e04fbe40017f547054a9bb	\N	24			0	inbound	+18557129406	\N	2.29286503791809082	null	new lead		3	\N	\N	1061
2016-09-09 22:46:49.28898+00	2016-12-09 17:10:17.413449+00	1986	completed				+18642452222		36	2016-09-09 22:46:49.287306	2016-09-09 22:47:24.903584	CAd5e44218300381283b4b4d1c3ff82967	\N	27			0	inbound	+18552716856	\N	5.94044804573059082	null	new lead		3	\N	\N	1838
2017-02-24 16:58:25.788755+00	2017-11-29 18:47:25.067451+00	3255	completed				+19492805308		174	2017-02-24 16:58:25.787225	2017-02-24 17:01:19.890215	CA5b5a9448e36bcaeac64be687b42ac0a9	\N	81		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE3fcc57418bb238eceba7a38318e40169	0	inbound	+19728330116	\N	13.7296838760375977	\N	new lead		8	\N	\N	1842
2016-12-08 14:16:18.102177+00	2016-12-08 14:17:27.998619+00	3062	completed				+16786105111		69	2016-12-08 14:16:18.100222	2016-12-08 14:17:27.451097	CAd5c4d8ba711486becd65590271f44195	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE646e399962ac169e97fa3c0115ab08e6	0	inbound	+18557240606	49	2.13182711601257324	null	new lead		1	\N	\N	2440
2016-12-08 14:18:09.221604+00	2016-12-08 14:18:17.885545+00	3063	completed				+16786105111		8	2016-12-08 14:18:09.220433	2016-12-08 14:18:17.178377	CA021fdc452b226b017527741ae9fff746	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE0ff8fea8deed4d6a7ada2249f734c4fd	0	inbound	+18557240606	49	2.06682896614074707	null	new lead		1	\N	\N	2440
2016-12-09 17:02:31.323881+00	2016-12-09 17:05:33.979281+00	3071	completed				+16786105111		182	2016-12-09 17:02:31.321055	2016-12-09 17:05:33.667854	CA1628c232a208441b2cb78fc891f8ef1c	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE82ed51654af2ed6824c10252c4401c92	0	inbound	+18557240606	49	2.5993340015411377	null	new lead		1	\N	\N	2440
2017-12-13 17:03:43.051243+00	2017-12-13 17:17:35.340571+00	7846	completed				+13866275568		829	2017-12-13 17:03:43.048904	2017-12-13 17:17:31.984456	CA594566b8442879164f21601353097d99	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REb0a78d3b1a4b4d36147891daf504b17c	0	inbound	+18558645656	136	2.7425539493560791	\N	new lead		15	\N	\N	2441
2016-11-10 20:43:26.856111+00	2017-01-27 21:12:23.814093+00	2848	completed				+18326030153		42	2016-11-10 20:43:26.855031	2016-11-10 20:44:08.712098		\N	\N			0	outbound	+18555343978	48	\N	null	new lead		1	\N	\N	2444
2016-11-03 02:21:10.731088+00	2016-11-03 02:21:45.625017+00	2611	completed				+18326030153		34	2016-11-03 02:21:10.730022	2016-11-03 02:21:44.643562	CA72eb4549f833c2578fe7413a0ff6fd72	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE7455df12f613fedd02fac83c44306225	0	inbound	+18557240606	49	1.99214792251586914	null	new lead		1	\N	\N	2444
2016-11-03 11:19:14.534904+00	2016-11-03 11:19:15.891538+00	2617	missed				+18326030153		1	2016-11-03 11:19:14.533441	2016-11-03 11:19:15.889684	CAf53a320fbd1e1df1d02a90f2973af749	\N	\N			0	inbound	+18557240606	49	\N	null	new lead		1	\N	\N	2444
2017-11-21 00:44:33.293816+00	2017-11-21 01:06:16.57153+00	7150	missed				+18179078802		31	2017-11-21 00:44:33.291499	2017-11-21 00:45:04.420435	CA46e0afe9e3ef5903cb48df4d794ede56	\N	\N			0	inbound	+18177569010	124	1281.84795904159546	\N	new lead	euless  tx	12	\N	\N	2447
2016-09-10 19:51:20.608458+00	2016-12-10 01:01:51.440926+00	1989	completed				+12248292717		51	2016-09-10 19:51:20.607183	2016-09-10 19:52:11.878783	CAa2f6959d93116cb9e9d281299f182414	\N	50			0	inbound	+18559693782	\N	1.89304709434509277	null	new lead		3	\N	\N	77
2016-08-24 17:08:34.635589+00	2016-12-10 01:01:00.19968+00	1717	missed				+16197944535		2	2016-08-24 17:08:34.634019	2016-08-24 17:08:36.328177	CA004b3f75c139b705f74ff4dc4cccfc63	\N	\N			0	inbound	+18557860909	\N	\N	null	new lead		3	\N	\N	590
2017-12-04 20:48:28.762526+00	2017-12-04 21:12:47.897086+00	7558	completed				+17275600703		1456	2017-12-04 20:48:28.760414	2017-12-04 21:12:44.689204	CAa13e67e682dc19b2b69844afc0a40b05	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REfe823b1612b8de5acee892704ed13f46	0	inbound	+18558645656	136	2.57990908622741699	\N	new lead		15	\N	\N	888
2017-12-04 20:44:50.973114+00	2017-12-04 20:47:00.37036+00	7556	completed				+18179537882		128	2017-12-04 20:44:50.970734	2017-12-04 20:46:59.370857	CA5ff7e8a195355994a662de3376ced9df	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REac261ed565cc6eab8cbcf14e708857cd	0	inbound	+18177569010	124	10.6363329887390137	\N	new lead	pls financial	12	\N	\N	2176
2017-05-31 16:56:36.921147+00	2017-08-17 14:35:21.045398+00	5529	completed				+19189339707		703	2017-05-31 16:56:36.918858	2017-05-31 17:08:20.022761	CA84de56af519404c14dd8e841401b293c	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE6ffd062891fb3080395370bfb9ccae4b	0	inbound	+18177569010	124	392.268882036209106	\N	new lead	gibbs rexella	12	\N	\N	2448
2017-05-04 15:55:46.31672+00	2017-11-29 18:38:49.809621+00	4711	completed				+14696093930		74	2017-05-04 15:55:46.31394	2017-05-04 15:57:00.56806	CAb1be2cf1be41b33d1bdc6dbff7fb74a3	\N	127			0	inbound	+12147122250	\N	1.23192191123962402	\N	new lead	dallas  tx	9	\N	\N	2449
2017-05-05 16:02:46.676009+00	2017-11-29 18:38:49.809903+00	4758	completed				+14696093930		92	2017-05-05 16:02:46.674408	2017-05-05 16:04:18.519794	CA61e364db661208b6b4d1bbb327558de3	\N	125			0	inbound	+12147122250	\N	1.44531393051147461	\N	new lead	dallas  tx	9	\N	\N	2449
2017-05-08 14:36:05.181849+00	2017-11-29 18:38:49.810244+00	4836	completed				+14696093930		78	2017-05-08 14:36:05.179402	2017-05-08 14:37:23.020245	CAbbcc7bf11ebfb4e8fcc32a3c46dd099a	\N	127			0	inbound	+12147122250	\N	1.33788681030273438	\N	new lead	dallas  tx	9	\N	\N	2449
2017-05-09 14:46:41.637643+00	2017-11-29 18:38:49.810533+00	4897	completed				+14696093930		64	2017-05-09 14:46:41.634872	2017-05-09 14:47:45.357377	CA89c589979283db97e0e0d995abf46dcc	\N	124			0	inbound	+12147122250	\N	2.04734706878662109	\N	new lead	dallas  tx	9	\N	\N	2449
2017-05-09 18:45:28.424795+00	2017-11-29 18:38:49.810662+00	4923	completed				+14696093930		79	2017-05-09 18:45:28.422682	2017-05-09 18:46:47.076606	CA5a28eae834014d9ca09f66b5338347a9	\N	124			0	inbound	+12147122250	\N	1.245819091796875	\N	new lead	dallas  tx	9	\N	\N	2449
2017-12-06 19:28:43.085363+00	2017-12-06 19:53:21.877301+00	7653	completed				+17085180872		1475	2017-12-06 19:28:43.083698	2017-12-06 19:53:18.569263	CA5c3110a50a2b2eb7b4707c7fe1f95828	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE04b057d9982026420ee5c997ef69bc85	0	inbound	+18558645656	136	2.64319515228271484	\N	new lead		15	\N	\N	2451
2017-07-24 20:32:47.199236+00	2017-07-24 20:34:13.89017+00	5844	completed	TAMMIE	HERRING	tammieherring1@gmail.com	+17706548576		74	2017-07-24 20:32:47.195626	2017-07-24 20:34:13.591767	CAbf4a10128c1d10f0999ae2247f5b4c35	e611622e-d408-4b1f-85fa-8cba4306b7ab	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REe809b13960dd939ce8c34453c6f5730d	1	outbound	+17704009016	\N	20.7348580360412598	{}	new lead		13	\N	\N	2452
2017-07-24 20:43:23.256436+00	2017-07-24 20:45:44.085331+00	5846	completed	TAMMIE	HERRING	tammieherring1@gmail.com	+17706548576		116	2017-07-24 20:43:23.254166	2017-07-24 20:45:43.248578	CAd9edf508b43906b6204baf8bd67624bf	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE2442456194ee4f65f757ee6f6d1f60c2	1	outbound	+17704009016	\N	22.8249590396881104	{}	new lead		13	\N	\N	2452
2016-08-24 17:13:18.915367+00	2016-12-10 01:01:00.199733+00	1718	completed				+16197944535		317	2016-08-24 17:13:18.914062	2016-08-24 17:18:35.85826	CA28269da76a4636b0787aea0fa6c2fff2	\N	57			0	inbound	+18557860909	\N	22.6002528667449951	null	new lead		3	\N	\N	590
2017-02-24 17:01:27.044076+00	2017-11-29 18:47:25.067458+00	3256	completed				+19492805308		143	2017-02-24 17:01:27.042526	2017-02-24 17:03:50.167253	CA3a18b155dbb8bcc98a3ab25f27b4c480	\N	84		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REfe5d05e1c860982f7b7efa43e2fe37b7	0	inbound	+19728330116	\N	6.97425985336303711	\N	new lead		8	\N	\N	1842
2017-02-24 17:05:34.380761+00	2017-11-29 18:47:25.067465+00	3257	completed				+19492805308		418	2017-02-24 17:05:34.378606	2017-02-24 17:12:32.59324	CAf9fec9a55e7d23ce07a544c7f414faf1	\N	82		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE2408eb1e35551e6524453bc8b7e5de11	0	inbound	+19728330116	\N	7.78952908515930176	\N	new lead		8	\N	\N	1842
2017-03-27 15:23:47.485942+00	2017-11-29 18:38:53.212965+00	3586	completed				+19722772380		159	2017-03-27 15:23:47.48395	2017-03-27 15:26:26.796419	CAc93ef6a6fed1f073e507f0ccb6d6090a	\N	107			0	inbound	+12146922088	\N	7.37693190574645996	\N	new lead	glazers whlsl  	9	\N	\N	2455
2017-06-23 13:10:49.468374+00	2017-06-24 13:45:04.894054+00	5638	completed				+14702723152		69	2017-06-23 13:10:49.466267	2017-06-23 13:11:58.409905	CAb449bae79b23ed354c6cead8fe6b7ccb	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE91894f969cb529da40426ced9630f8e3	0	inbound	+17704009016	132	14.7407858371734619	\N	new lead		13	\N	\N	2456
2017-06-23 13:26:43.049349+00	2017-06-24 13:45:04.894062+00	5639	completed				+14702723152		90	2017-06-23 13:26:43.046201	2017-06-23 13:28:13.522283	CA79c51593ad9d476fc3745c6497072057	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE5f88755e5acdc22c6200ed31dfcad7bf	0	inbound	+17704009016	132	14.5567989349365234	\N	new lead		13	\N	\N	2456
2017-04-17 20:29:41.266255+00	2017-11-29 18:38:49.805297+00	4007	completed				+15128091608		315	2017-04-17 20:29:41.262398	2017-04-17 20:34:56.015823	CAa5cd35f5f1431226813eb229e3db068c	\N	\N			0	inbound	+12147122250	\N	2.60447192192077637	\N	new lead	castillo arthur	9	\N	\N	2457
2017-04-18 20:40:20.323068+00	2017-11-29 18:38:49.805507+00	4059	completed				+15128091608		78	2017-04-18 20:40:20.32163	2017-04-18 20:41:37.927576	CAcb6c2e0d3141c19a56df2300cd28b537	\N	\N			0	inbound	+12147122250	\N	2.20072102546691895	\N	new lead	castillo arthur	9	\N	\N	2457
2017-04-19 21:38:32.549159+00	2017-11-29 18:38:49.805838+00	4111	completed				+15128091608		60	2017-04-19 21:38:32.547188	2017-04-19 21:39:32.387203	CA6afd8634e97f5d87dfdf342e08486d56	\N	107			0	inbound	+12147122250	\N	8.58201789855957031	\N	new lead	castillo arthur	9	\N	\N	2457
2017-04-19 22:35:22.927354+00	2017-11-29 18:38:49.80586+00	4116	completed				+15128091608		117	2017-04-19 22:35:22.924896	2017-04-19 22:37:20.247063	CA249e3a81c63c10adbdfa91667c9cb0e3	\N	127			0	inbound	+12147122250	\N	2.00097298622131348	\N	new lead	castillo arthur	9	\N	\N	2457
2016-08-15 14:01:30.449564+00	2016-12-10 00:55:45.165291+00	1486	completed				+16108277481		15	2016-08-15 14:01:30.447969	2016-08-15 14:01:45.828555	CA3ab95555b182ed893295faf36387d785	\N	24			0	inbound	+18557129406	\N	1.74645495414733887	null	new lead		3	\N	\N	2460
2016-10-27 17:12:36.034352+00	2017-11-29 18:31:37.369218+00	2358	missed				+16612696329		54	2016-10-27 17:12:36.032138	2016-10-27 17:13:30.102834	CAa2775dcbbd88c974251a9d95bfbc9cbf	\N	\N			0	inbound	+18555472453	\N	31.7795510292053223	null	new lead		1	\N	\N	2679
2017-12-04 21:51:11.252901+00	2017-12-04 22:18:18.151178+00	7562	completed				+15134044175		1624	2017-12-04 21:51:11.251102	2017-12-04 22:18:14.951243	CA3f8a357d3ad0c37c21fb2140c24f60fe	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE0e3dd40838ee1f1465eb27e5dbb860e0	0	inbound	+18558645656	136	2.65234589576721191	\N	new lead		15	\N	\N	646
2016-08-27 22:30:08.298383+00	2016-12-10 01:01:00.199816+00	1799	completed				+16194528685		18	2016-08-27 22:30:08.296588	2016-08-27 22:30:26.447132	CAe3401a0757e8e4b0133205d8b6cd49e0	\N	57			0	inbound	+18557860909	\N	5.45162415504455566	null	new lead		3	\N	\N	912
2016-09-01 15:53:31.735283+00	2016-12-09 17:10:17.413361+00	1834	completed				+19084796750		176	2016-09-01 15:53:31.734001	2016-09-01 15:56:27.698496	CA7057ac8ba68e3f047762d7e5b09ad52c	\N	27			0	inbound	+18552716856	\N	4.87805795669555664	null	new lead		3	\N	\N	997
2016-08-15 14:02:05.735713+00	2016-12-10 00:55:45.165299+00	1487	completed				+16108277481		15	2016-08-15 14:02:05.734574	2016-08-15 14:02:21.010853	CA8ba806f70dc2fab036dafd334244d165	\N	24			0	inbound	+18557129406	\N	1.80654406547546387	null	new lead		3	\N	\N	2460
2016-08-15 14:02:51.69453+00	2016-12-10 00:55:45.165306+00	1488	completed				+16108277481		15	2016-08-15 14:02:51.693524	2016-08-15 14:03:06.716744	CA323c9001ea88ea67da0a9634e75ef63c	\N	24			0	inbound	+18557129406	\N	1.56509304046630859	null	new lead		3	\N	\N	2460
2017-06-17 21:37:48.174602+00	2017-06-17 21:48:56.266596+00	5600	completed				+14045736863		668	2017-06-17 21:37:48.172284	2017-06-17 21:48:56.264255	CA0ce22a07f4862e4f97459375867d63a4	\N	150			0	inbound	+17704009016	132	315.704622030258179	\N	new lead		13	\N	\N	2461
2017-09-14 19:05:13.162075+00	2017-09-14 19:06:52.266157+00	6353	completed	Brenda	Thornton	bthornton031@gmail.com	+17063913773		83	2017-09-14 19:05:13.160248	2017-09-14 19:06:52.228264	CA7b8f0c561093f52fe43a0d0245a0ee37	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE892eb0b8f38bb18948ee7007ca3efa09	1	outbound	+17704009016	\N	14.459885835647583	{}	new lead		13	\N	\N	2462
2017-10-30 05:41:53.755356+00	2017-10-30 05:41:53.813257+00	6858	missed	Traci	Darby	swtpeanpunkinsmom@yahoo.com	+14702147392		\N	2017-10-30 05:41:53.753898	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	2463
2016-07-25 15:01:46.201501+00	2016-07-25 15:45:14.663003+00	931	completed	Ricky	Gimmestad	Denisegimmestad@sbcglobal.net	+16612067233		0	2016-07-25 15:01:46.200069	2016-07-25 15:02:12.746564	CAacf467073470dfa142f805613da59796	99186475-9344-4e80-b3b1-0ed2e7856585	\N			1	outbound	+18555472453	\N	24.2956898212432861	{}	new lead		1	\N	\N	2465
2017-12-14 17:03:29.752101+00	2017-12-14 17:04:21.666446+00	7869	completed	Darnell	Davis	darnelldelion@gmail.com	+14042192398		10	2017-12-14 17:03:29.750594	2017-12-14 17:03:48.678422	CA0d31099ca8c0717a9f860dbea32766bb	cd009b81-ec25-40d7-a806-e428c0f41965	157			1	outbound	+17706597466	\N	8.05128788948059082	{}	new lead		14	\N	\N	2466
2017-12-14 17:08:49.982046+00	2017-12-14 17:11:35.496746+00	7870	completed	Darnell	Davis		+14042192398		165	2017-12-14 17:08:49.979839	2017-12-14 17:11:34.768466	CA499b7497afd8da032be005f6e34d92b2	\N	157		https://api.twilio.com/2010-04-01/Accounts/ACbd7756819f4882feb347788ad7959655/Recordings/REfb6b4d0132f020c9e6944840a1dd1e4e	0	inbound	+17706597466	137	10.0999009609222412	\N	new lead		14	\N	\N	2466
2017-12-15 13:36:16.012193+00	2017-12-15 13:36:40.553846+00	7887	missed	Darnell	Davis		+14042192398		25	2017-12-15 13:36:16.010572	2017-12-15 13:36:40.53329	CA62d0ad778bbd7220b3246af179deebc6	\N	\N			0	inbound	+17706597466	137	\N	\N	new lead		14	\N	\N	2466
2017-04-27 16:05:24.358032+00	2017-11-29 18:47:25.068348+00	4362	completed				+16825009079		165	2017-04-27 16:05:24.35618	2017-04-27 16:08:09.161451	CAdf698da9eeef7c3aef5d8f46a9f7f429	\N	117		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE581633b1d3e69c16e04407327af8be62	0	inbound	+19728330116	\N	28.4072589874267578	\N	new lead	duncan terrell	8	\N	\N	2467
2017-04-24 16:05:58.398767+00	2017-11-29 18:47:25.068263+00	4247	completed				+18503214892		31	2017-04-24 16:05:58.394341	2017-04-24 16:06:29.198343	CA697ffccaca2bf55996fdc572989a58ab	\N	118			0	inbound	+19728330116	\N	27.3827290534973145	\N	new lead	nguyen tam     	8	\N	\N	2470
2016-10-11 15:02:28.573414+00	2016-12-10 01:04:42.413832+00	2261	completed				+19093885823		90	2016-10-11 15:02:28.571943	2016-10-11 15:03:58.505069	CAbc34f9d4b69964f3d2e45eecd2014807	\N	58			0	inbound	+18552187903	\N	1.55564498901367188	null	new lead		3	\N	\N	2681
2016-10-13 19:21:21.462293+00	2016-12-09 17:07:47.97928+00	2288	completed				+17067558572		75	2016-10-13 19:21:21.460606	2016-10-13 19:22:36.533062	CAd5e099bfff2fbd2d56e3f6307d3dcbe8	\N	55			0	inbound	+18556708891	\N	2.52209687232971191	null	new lead		3	\N	\N	2682
2016-10-10 16:37:29.530664+00	2016-12-09 17:07:47.979245+00	2247	completed				+17067558572		726	2016-10-10 16:37:29.529297	2016-10-10 16:49:35.22403	CA104c7bcc5f21d4478db0a51ec9232652	\N	55			0	inbound	+18556708891	\N	3.1483769416809082	null	new lead		3	\N	\N	2682
2016-08-29 17:14:58.961099+00	2016-12-10 00:55:45.165448+00	1809	completed				+14046483584		196	2016-08-29 17:14:58.959641	2016-08-29 17:18:14.506957	CA33f24ad50d8d85c17e177382f5db1a8b	\N	24			0	inbound	+18557129406	\N	2.48668003082275391	null	new lead		3	\N	\N	155
2016-08-24 18:50:09.878801+00	2016-12-09 17:10:17.413303+00	1743	completed				+14842415954		56	2016-08-24 18:50:09.877269	2016-08-24 18:51:05.61224	CA91e2ebac013fa42f2efd64ca1abeb7c9	\N	27			0	inbound	+18552716856	\N	6.1457059383392334	null	new lead		3	\N	\N	684
2016-08-24 18:51:23.959023+00	2016-12-09 17:10:17.413311+00	1744	completed				+14842415954		20	2016-08-24 18:51:23.958003	2016-08-24 18:51:44.070301	CAd426b60470fe9ed2566be35f8f9748d5	\N	27			0	inbound	+18552716856	\N	10.4069631099700928	null	new lead		3	\N	\N	684
2017-04-24 16:13:03.086688+00	2017-11-29 18:47:25.06827+00	4248	completed				+18503214892		219	2017-04-24 16:13:03.084733	2017-04-24 16:16:41.968037	CA8b94dd11e2700d8a96d3c25118d0702f	\N	82		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REc8e66cf327ca395db2d065234c4b16d3	0	inbound	+19728330116	\N	11.3480789661407471	\N	new lead	nguyen tam     	8	\N	\N	2470
2017-12-24 21:31:29.666524+00	2017-12-24 21:31:29.730031+00	8092	missed	Misty	Jackson	Mwise0902@gmail.com	+17067681989		\N	2017-12-24 21:31:29.66207	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	2471
2017-04-13 14:27:10.399313+00	2017-11-29 18:38:49.804721+00	3854	missed				+15165450125		29	2017-04-13 14:27:10.396641	2017-04-13 14:27:38.897006	CA07cadfbf25fdb1f0ab0966d32b9dedc7	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead		9	\N	\N	2472
2017-04-13 14:27:33.630131+00	2017-11-29 18:38:49.804728+00	3855	completed				+15165450125		61	2017-04-13 14:27:33.628548	2017-04-13 14:28:34.926775	CA2a0d2f891c8387463781ed448f584426	\N	105			0	inbound	+12147122250	\N	5.75795793533325195	\N	new lead	manhattan  ny	9	\N	\N	2472
2017-04-27 21:28:11.131098+00	2017-11-29 18:38:49.80718+00	4403	completed				+18069286415		56	2017-04-27 21:28:11.128262	2017-04-27 21:29:07.496411	CAc85611a211615418ae88c601369418a4	\N	127			0	inbound	+12147122250	\N	1.11070704460144043	\N	new lead	sanders ryan   	9	\N	\N	2473
2017-04-27 19:09:58.016279+00	2017-11-29 18:38:49.807009+00	4376	completed				+18069286415		46	2017-04-27 19:09:58.012701	2017-04-27 19:10:44.089154	CAda0e41df1575f7db2dc887d667748857	\N	105			0	inbound	+12147122250	\N	4.49571609497070312	\N	new lead	sanders ryan   	9	\N	\N	2473
2017-04-27 19:10:55.174349+00	2017-11-29 18:38:49.807016+00	4377	completed				+18069286415		73	2017-04-27 19:10:55.172592	2017-04-27 19:12:07.797568	CAcd17c93f795467a8240e2e6e581195c3	\N	127			0	inbound	+12147122250	\N	1.40138411521911621	\N	new lead	sanders ryan   	9	\N	\N	2473
2017-04-27 19:20:34.731323+00	2017-11-29 18:38:49.807031+00	4379	completed				+18069286415		63	2017-04-27 19:20:34.729569	2017-04-27 19:21:37.950536	CA805c1d219045571c3e546a3d68f4cd31	\N	125			0	inbound	+12147122250	\N	1.05512809753417969	\N	new lead	sanders ryan   	9	\N	\N	2473
2017-04-27 19:51:22.134429+00	2017-11-29 18:38:49.807102+00	4389	completed				+18069286415		31	2017-04-27 19:51:22.131592	2017-04-27 19:51:53.526951	CA3c149afc4cd368fbd0b95837dcc45d5f	\N	105			0	inbound	+12147122250	\N	3.05627989768981934	\N	new lead	sanders ryan   	9	\N	\N	2473
2017-04-27 20:28:31.504799+00	2017-11-29 18:38:49.807123+00	4393	completed				+18069286415		56	2017-04-27 20:28:31.502564	2017-04-27 20:29:27.004732	CA9db853a61eccc3b1bfcf87471a4f418c	\N	127			0	inbound	+12147122250	\N	1.58034300804138184	\N	new lead	sanders ryan   	9	\N	\N	2473
2017-04-27 21:03:39.540035+00	2017-11-29 18:38:49.807137+00	4395	completed				+18069286415		69	2017-04-27 21:03:39.537999	2017-04-27 21:04:48.314528	CAc7fa912d5108831747bb8a7e04851ad8	\N	124			0	inbound	+12147122250	\N	1.00929903984069824	\N	new lead	sanders ryan   	9	\N	\N	2473
2017-04-27 21:04:41.387995+00	2017-11-29 18:38:49.807144+00	4396	completed				+18069286415		55	2017-04-27 21:04:41.386257	2017-04-27 21:05:36.138353	CAb02a23cc46fcbefbfcca9053099a8c95	\N	126			0	inbound	+12147122250	\N	1.07107400894165039	\N	new lead	sanders ryan   	9	\N	\N	2473
2017-04-27 21:05:29.567993+00	2017-11-29 18:38:49.807151+00	4397	completed				+18069286415		58	2017-04-27 21:05:29.566205	2017-04-27 21:06:27.871057	CAf50c119ed48e8832d8633286d33e027a	\N	127			0	inbound	+12147122250	\N	1.1728510856628418	\N	new lead	sanders ryan   	9	\N	\N	2473
2016-10-10 17:08:26.202095+00	2016-12-09 17:07:47.979252+00	2249	completed				+17067558572		97	2016-10-10 17:08:26.200995	2016-10-10 17:10:03.155796	CAb0e4ba01198fdbd8b62828d660b59e22	\N	55			0	inbound	+18556708891	\N	2.42348384857177734	null	new lead		3	\N	\N	2682
2016-10-10 17:10:49.248768+00	2016-12-09 17:07:47.979259+00	2250	completed				+17067558572		156	2016-10-10 17:10:49.247848	2016-10-10 17:13:24.936685	CA31190205f725e9d49f638aad8891ea6d	\N	55			0	inbound	+18556708891	\N	2.04146099090576172	null	new lead		3	\N	\N	2682
2016-10-10 17:46:17.8911+00	2016-12-09 17:07:47.979266+00	2252	completed				+17067558572		8	2016-10-10 17:46:17.889708	2016-10-10 17:46:26.364937	CA1651183114625716cee76cb7229ad358	\N	55			0	inbound	+18556708891	\N	1.99146485328674316	null	new lead		3	\N	\N	2682
2017-12-04 23:20:37.971536+00	2017-12-04 23:36:46.404106+00	7567	completed				+15136614007		965	2017-12-04 23:20:37.969614	2017-12-04 23:36:43.162757	CAc9eb263a1aa2851ff780b213763553b9	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE3d5aa676c1ab35fc9a9aab0515940e4b	0	inbound	+18558645656	136	2.17139196395874023	\N	new lead		15	\N	\N	291
2016-09-02 15:45:16.011876+00	2016-12-10 01:00:18.568364+00	1863	completed				+16195562472		191	2016-09-02 15:45:16.010279	2016-09-02 15:48:26.799491	CA610c4ff4c031a3278063b6ba78b2c42d	\N	56			0	inbound	+18556775511	\N	6.77597594261169434	null	new lead		3	\N	\N	344
2016-07-20 15:03:47.952767+00	2016-07-22 16:50:20.922644+00	903	completed	Shelley	Hinson	shelleyjhinson@yahoo.com	+16144069486		0	2016-07-20 15:03:47.951316	2016-07-20 15:04:19.027118	CAb71eb9b101a51715b1f3ff4d1110f443	d33a481e-e0af-47ac-9f90-260f20b69de5	\N			1	outbound	+18552959002	\N	23.9431250095367432	{}	new lead		1	\N	\N	2476
2016-07-27 21:04:35.786728+00	2016-07-27 21:05:16.195073+00	978	completed	Shelley	Hinson		+16144069486		36	2016-07-27 21:04:35.785731	2016-07-27 21:05:16.193379	CA443e7698e071f54d23673432784c7f3a	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	2.42665696144104004	{}	new lead		1	\N	\N	2476
2016-07-27 21:04:24.668302+00	2016-07-27 21:06:06.404638+00	977	completed	Shelley	Hinson		+16144069486		97	2016-07-27 21:04:24.667173	2016-07-27 21:06:06.402854	CA2f11e4864560dcc3fce4ffbd58f4184c	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	2.05528616905212402	{}	new lead		1	\N	\N	2476
2016-07-27 21:22:43.962499+00	2017-11-29 18:31:41.490575+00	979	completed	Shelley	Hinson		+16144069486		29	2016-07-27 21:22:43.960193	2016-07-27 21:23:13.036395	CA0205718e31409594c8f7873455dbcb46	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE933e5de077bf8cd81c19ec8f405be91d	0	inbound	+18552959002	\N	4.26520299911499023	null	new lead		1	\N	\N	2476
2016-07-27 21:32:32.26019+00	2016-07-27 21:39:55.894506+00	981	completed	Shelley	Hinson		+16144069486		439	2016-07-27 21:32:32.25796	2016-07-27 21:39:55.89355	CA80c6794d8bc10e252ce74864cc82ea74	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	2.29314613342285156	{}	new lead		1	\N	\N	2476
2016-07-27 21:28:48.937311+00	2017-11-29 18:31:41.490582+00	980	completed	Shelley	Hinson		+16144069486		41	2016-07-27 21:28:48.936018	2016-07-27 21:29:30.348954	CA728cb07cb947d2a072dd390ab995fcc5	\N	\N			0	inbound	+18552959002	\N	\N	null	new lead		1	\N	\N	2476
2017-04-17 22:41:46.714925+00	2017-11-29 18:38:53.214099+00	4016	completed				+12102739030		252	2017-04-17 22:41:46.712182	2017-04-17 22:45:59.063161	CAf2e4fe63f51bf4f8ed9c0df6c5cb4bd5	\N	\N			0	inbound	+12146922088	\N	4.24424099922180176	\N	new lead	baumler shawn  	9	\N	\N	2477
2017-05-29 20:00:28.696166+00	2017-08-17 14:35:21.045377+00	5483	completed				+19728004982		46	2017-05-29 20:00:28.693955	2017-05-29 20:01:15.05422	CA922c92d7ff801a694f23ee6e1d4b2af8	\N	\N			0	inbound	+18177569010	124	10.7168431282043457	\N	new lead	dallas  tx	12	\N	\N	2480
2017-04-03 16:49:12.300525+00	2017-08-17 14:35:21.04493+00	3668	completed				+18175224603		67	2017-04-03 16:49:12.298553	2017-04-03 16:50:19.4611	CA38de66268abb310931e2ad1b1529f31d	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REff09991bcbdbc19b3ac95803edb059c2	0	inbound	+18177569010	124	15.3228621482849121	\N	new lead	nextiva	12	\N	\N	2481
2017-07-07 18:22:12.253268+00	2017-07-07 18:23:33.791249+00	5731	completed				+15155083477		81	2017-07-07 18:22:12.251256	2017-07-07 18:23:33.05796	CA5aaa9209cc488edf62ca99276c528703	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REb6a79a982ca0acd94c57604cc7f6f0f1	0	inbound	+18177569010	124	8.15651202201843262	\N	new lead	allied ins grp	12	\N	\N	2483
2016-11-17 20:18:04.114105+00	2016-11-17 20:18:04.153943+00	2939	missed	Joel	Steed	jadsteed@aol.com	+17135032937		\N	2016-11-17 20:18:04.112031	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2484
2016-10-10 17:46:37.372413+00	2016-12-09 17:07:47.979273+00	2253	completed				+17067558572		304	2016-10-10 17:46:37.37123	2016-10-10 17:51:41.073435	CAed9ce84c115f7429390b4c76e9c1a037	\N	55			0	inbound	+18556708891	\N	1.99976706504821777	null	new lead		3	\N	\N	2682
2016-10-13 19:22:56.588096+00	2016-12-09 17:07:47.979287+00	2289	completed				+17067558572		554	2016-10-13 19:22:56.587004	2016-10-13 19:32:10.891602	CAeb46bdd0c100d531a9abd61a3ba51d19	\N	55			0	inbound	+18556708891	\N	2.93248105049133301	null	new lead		3	\N	\N	2682
2016-10-14 19:26:41.229928+00	2016-12-09 17:07:47.979308+00	2296	completed				+17067558572		31	2016-10-14 19:26:41.22847	2016-10-14 19:27:12.43634	CAcdfe31798fa7df720b059d3b510b647a	\N	55			0	inbound	+18556708891	\N	2.15012907981872559	null	new lead		3	\N	\N	2682
2016-09-01 20:57:49.620361+00	2016-12-10 01:01:51.44075+00	1848	completed				+16199850241		5	2016-09-01 20:57:49.61925	2016-09-01 20:57:54.849053	CA755b3587c5dc9d7c13252ff2345038fc	\N	50			0	inbound	+18559693782	\N	2.06247210502624512	null	new lead		3	\N	\N	173
2016-09-01 19:30:04.229304+00	2016-12-10 01:01:51.440736+00	1842	completed				+16194758865		167	2016-09-01 19:30:04.226157	2016-09-01 19:32:50.967742	CA4e24208a546da6c213b6c05fe7b758e5	\N	50			0	inbound	+18559693782	\N	2.08972907066345215	null	new lead		3	\N	\N	1053
2016-09-01 23:00:40.435305+00	2016-12-10 01:01:51.440765+00	1853	completed				+16193704953		90	2016-09-01 23:00:40.433708	2016-09-01 23:02:10.455067	CAecf0026865fcd4e73d2deaa51bd7331b	\N	50			0	inbound	+18559693782	\N	2.11459994316101074	null	new lead		3	\N	\N	1827
2017-04-12 21:13:40.213679+00	2017-11-29 18:38:49.804678+00	3842	completed				+19037382879		69	2017-04-12 21:13:40.210985	2017-04-12 21:14:49.329775	CAce27cb1dcca5999e75db3817acac9783	\N	124			0	inbound	+12147122250	\N	2.15513300895690918	\N	new lead	cell phone   tx	9	\N	\N	2490
2017-04-12 21:12:30.859194+00	2017-11-29 18:38:49.804671+00	3841	completed				+19037382879		74	2017-04-12 21:12:30.856795	2017-04-12 21:13:44.590139	CAea9b5ffeb8950397b2efb61d7d8e6e40	\N	124			0	inbound	+12147122250	\N	1.14272689819335938	\N	new lead	cell phone   tx	9	\N	\N	2490
2017-04-12 15:45:24.185589+00	2017-11-29 18:38:49.804527+00	3812	completed				+19037382879		191	2017-04-12 15:45:24.182424	2017-04-12 15:48:35.133071	CA03cf26633cc3564ba70f6953aebf7f09	\N	124			0	inbound	+12147122250	\N	1.15978503227233887	\N	new lead	cell phone   tx	9	\N	\N	2490
2017-05-01 15:59:14.711792+00	2017-11-29 18:38:49.807842+00	4503	completed				+19037382879		72	2017-05-01 15:59:14.708944	2017-05-01 16:00:26.971024	CA1ba2c834540b49e415474319c9edbf80	\N	124			0	inbound	+12147122250	\N	1.18102383613586426	\N	new lead	cell phone   tx	9	\N	\N	2490
2017-05-01 16:01:54.880692+00	2017-11-29 18:38:49.807854+00	4504	completed				+19037382879		79	2017-05-01 16:01:54.87799	2017-05-01 16:03:14.149588	CA7019343a9d51e08b622d0461ef0df825	\N	124			0	inbound	+12147122250	\N	1.18281006813049316	\N	new lead	cell phone   tx	9	\N	\N	2490
2017-05-01 16:16:36.544178+00	2017-11-29 18:38:49.807877+00	4506	completed				+19037382879		65	2017-05-01 16:16:36.541893	2017-05-01 16:17:41.837072	CAb15a3a0935651b653f223b645582cef3	\N	124			0	inbound	+12147122250	\N	0.997261762619018555	\N	new lead	cell phone   tx	9	\N	\N	2490
2016-10-14 19:27:21.725035+00	2016-12-09 17:07:47.979315+00	2297	completed				+17067558572		221	2016-10-14 19:27:21.723532	2016-10-14 19:31:03.197257	CAe89ef77ea04ce0674305a78540b61fe1	\N	55			0	inbound	+18556708891	\N	3.3376920223236084	null	new lead		3	\N	\N	2682
2016-10-15 23:11:13.771352+00	2016-12-09 17:07:47.979329+00	2302	completed				+17067558572		12	2016-10-15 23:11:13.769879	2016-10-15 23:11:26.024909	CAb6379b67056a2d7fbdc4a8f0506fbd34	\N	55			0	inbound	+18556708891	\N	3.3667149543762207	null	new lead		3	\N	\N	2682
2016-10-15 21:05:40.411846+00	2016-12-09 17:07:47.979322+00	2300	completed				+17067558572		999	2016-10-15 21:05:40.409211	2016-10-15 21:22:19.374712	CA3c97923a1513f452b03d58dcd6821910	\N	55			0	inbound	+18556708891	\N	2.62602901458740234	null	new lead		3	\N	\N	2682
2016-11-02 00:07:27.79919+00	2016-11-02 00:07:27.82509+00	2526	missed	James	Jackson	jcjackson04@yahoo.com	+12142080435		\N	2016-11-02 00:07:27.797213	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2685
2016-07-28 22:04:09.008917+00	2016-07-29 14:07:40.799331+00	1017	completed	Douglas	Snyder	dsnyder@neo.rr.com	+13307303208		\N	2016-07-28 22:04:09.00779	\N		36dfa45c-0f7c-41c7-b250-561251aebceb	\N			0	outbound	+18556311528	\N	\N	{}	new lead		1	\N	\N	2686
2017-02-09 15:36:46.943087+00	2017-02-09 15:41:31.329817+00	3156	completed				+17133061384		280	2017-02-09 15:36:46.941297	2017-02-09 15:41:27.237968	CA6bcacefd60e7af1fb6e92da07cf6f5df	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE69c068befc351f4200b8f268c689dc65	0	inbound	+18557240606	49	2.48010587692260742	null	new lead		1	\N	\N	2692
2017-04-11 17:21:05.381057+00	2017-11-29 18:31:10.262774+00	3789	completed	Vickie	Williams		+15137858796		43	2017-04-11 17:21:05.378823	2017-04-11 17:21:47.883433		\N	16			0	outbound	+18556311490	\N	\N	\N	general interest		1	\N	\N	2694
2017-04-07 18:16:00.199967+00	2017-11-29 18:31:10.26271+00	3721	completed	Vickie	Williams		+15137858796		458	2017-04-07 18:16:00.198087	2017-04-07 18:23:38.160668		\N	16			0	outbound	+18556311490	\N	\N	\N	general interest		1	\N	\N	2694
2017-04-07 16:10:19.547048+00	2017-11-29 18:31:10.262689+00	3715	missed	Vickie	Williams		+15137858796		42	2017-04-07 16:10:19.54446	2017-04-07 16:11:01.557874	CAbd1b68f1b66e289d99a6b6b23f27bb1a	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REa16042d1f8761b12f15678a6621dd651	0	inbound	+18556311490	\N	\N	\N	general interest		1	\N	\N	2694
2017-04-07 17:59:10.2339+00	2017-11-29 18:31:10.262703+00	3719	missed	Vickie	Williams		+15137858796		48	2017-04-07 17:59:10.230915	2017-04-07 17:59:57.897513	CA8d677424e090619bcaac983288e22ded	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE24b8164e34e9513b4bc8f81699aa7e75	0	inbound	+18556311490	\N	\N	\N	general interest		1	\N	\N	2694
2017-04-07 18:49:36.144725+00	2017-11-29 18:31:10.262717+00	3722	missed	Vickie	Williams		+15137858796		34	2017-04-07 18:49:36.14277	2017-04-07 18:50:10.348631	CAf3a96b5d86db6241e1d21bfe3635b4d6	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REdda59b32b7f9c43a8093a74fc1e53f91	0	inbound	+18556311490	\N	\N	\N	general interest		1	\N	\N	2694
2017-04-07 18:50:24.705907+00	2017-11-29 18:31:10.262724+00	3723	missed	Vickie	Williams		+15137858796		31	2017-04-07 18:50:24.704146	2017-04-07 18:50:56.086915	CA42688b830df92d0a70601a6fc973cb93	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE1407ccf8788cc0157723c37a8cd67765	0	inbound	+18556311490	\N	\N	\N	general interest		1	\N	\N	2694
2017-04-07 18:57:04.454249+00	2017-11-29 18:31:10.262732+00	3724	completed	Vickie	Williams		+15137858796		148	2017-04-07 18:57:04.452024	2017-04-07 18:59:32.275354		\N	16			0	outbound	+18556311490	\N	\N	\N	general interest		1	\N	\N	2694
2017-04-07 18:57:29.431403+00	2017-11-29 18:31:10.262739+00	3725	completed	Vickie	Williams		+15137858796		123	2017-04-07 18:57:29.42986	2017-04-07 18:59:32.207438		\N	16			0	outbound	+18556311490	\N	\N	\N	general interest		1	\N	\N	2694
2017-04-11 17:00:01.379066+00	2017-11-29 18:31:10.262767+00	3788	missed	Vickie	Williams		+15137858796		52	2017-04-11 17:00:01.374986	2017-04-11 17:00:52.968739	CAe9bb6f8774c2b9f0f25396586b1f3818	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE59b6251a4a28c549267221427058bb30	0	inbound	+18556311490	\N	\N	\N	general interest		1	\N	\N	2694
2017-04-11 17:28:21.848178+00	2017-11-29 18:31:10.262782+00	3790	completed	Vickie	Williams		+15137858796		58	2017-04-11 17:28:21.845987	2017-04-11 17:29:19.46593		\N	16			0	outbound	+18556311490	\N	\N	\N	general interest		1	\N	\N	2694
2016-09-07 17:29:23.048716+00	2016-12-10 01:04:42.413671+00	1918	completed				+19093844400		74	2016-09-07 17:29:23.047751	2016-09-07 17:30:37.20887	CAf65563978ea8768c48c33c79401013b7	\N	58			0	inbound	+18552187903	\N	0.843247175216674805	null	new lead		3	\N	\N	39
2016-09-07 18:00:25.348523+00	2016-12-10 01:00:18.568392+00	1928	completed				+16197022187		157	2016-09-07 18:00:25.346799	2016-09-07 18:03:02.661619	CA9be38e18d78318677856ca99966c9482	\N	56			0	inbound	+18556775511	\N	3.54145479202270508	null	new lead		3	\N	\N	1719
2016-09-07 17:26:50.864363+00	2016-12-10 01:05:18.400937+00	1917	completed				+16106669205		199	2016-09-07 17:26:50.862584	2016-09-07 17:30:10.13432	CA4459d9acf58814f2fc623e8d594c8c28	\N	24			0	inbound	+18557088731	\N	1.32472109794616699	null	new lead		3	\N	\N	2160
2016-09-07 18:28:29.19366+00	2016-12-10 00:57:48.461718+00	1940	completed				+18056592344		50	2016-09-07 18:28:29.191828	2016-09-07 18:29:18.86641	CA30ffee5922059b3591da320ba4179947	\N	30			0	inbound	+18559652184	\N	1.76914501190185547	null	new lead		3	\N	\N	2363
2016-09-07 16:04:50.022987+00	2016-12-09 17:10:17.413412+00	1907	completed				+15084501877		131	2016-09-07 16:04:50.021698	2016-09-07 16:07:01.265731	CA6a07988238739fc69f821aac71b54b4c	\N	27			0	inbound	+18552716856	\N	4.97016596794128418	null	new lead		3	\N	\N	2376
2016-09-07 17:23:37.442262+00	2016-12-10 01:04:42.413664+00	1916	completed				+19096476647		114	2016-09-07 17:23:37.440448	2016-09-07 17:25:31.890604	CA1e234d09e32557859b058055f170168d	\N	58			0	inbound	+18552187903	\N	1.40116715431213379	null	new lead		3	\N	\N	2396
2017-11-16 15:44:47.097989+00	2017-11-16 15:46:50.990346+00	7080	completed				+16789144731		124	2017-11-16 15:44:47.096273	2017-11-16 15:46:50.977098	CA279ec2fc5645d5924b976b3729b1731a	\N	153			0	inbound	+17707665732	133	12.2674481868743896	\N	new lead		13	\N	\N	2503
2016-11-03 21:52:43.072433+00	2016-11-03 22:15:00.232384+00	2663	completed				+16023910500		1334	2016-11-03 21:52:43.070961	2016-11-03 22:14:57.342708	CA030abec9749d3a809ea08ceb75bf0269	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE0046f346b5d5662e683581800426fca8	0	inbound	+18557240606	49	2.00733494758605957	null	new lead		1	\N	\N	2508
2017-05-26 14:18:54.431716+00	2017-08-17 14:35:21.045348+00	5427	completed				+16825835395		128	2017-05-26 14:18:54.429558	2017-05-26 14:21:02.627138	CA9adf92c6f4bf812f925cc7e2fe436379	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REed93e4f0878ad0f412ab2075d2340f21	0	inbound	+18177569010	124	71.0253689289093018	\N	new lead	malik sadia	12	\N	\N	2509
2017-05-26 14:21:33.202097+00	2017-08-17 14:35:21.045355+00	5428	completed				+16825835395		442	2017-05-26 14:21:33.200354	2017-05-26 14:28:55.655569	CA54046b07766450e6c45d439f409af1cd	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REe698b8262922d8eedbc3e7bd190cd56e	0	inbound	+18177569010	124	397.631770849227905	\N	new lead	malik sadia	12	\N	\N	2509
2017-10-27 15:03:31.063028+00	2017-10-27 15:03:31.877411+00	6836	missed				+16787698452		1	2017-10-27 15:03:31.061135	2017-10-27 15:03:31.865029	CAaea5845da672a29cf23e1f9bf3a87340	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	2510
2017-10-27 21:01:34.812733+00	2017-10-27 21:15:05.78679+00	6848	completed				+16787698452		811	2017-10-27 21:01:34.810508	2017-10-27 21:15:05.77393	CA6021be2f81dfe355160148bffa8630be	\N	154			0	inbound	+17707665699	134	1.60012388229370117	\N	new lead		13	\N	\N	2510
2016-11-10 20:52:40.812726+00	2016-11-10 20:56:51.836113+00	2849	completed				+17139269773		250	2016-11-10 20:52:40.810716	2016-11-10 20:56:51.117082	CA27637f03c9a7bf82446c79ff89ffca98	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REf8ac4ee6159d72f0d2d8e05875d8cd4b	0	inbound	+18557240606	49	1.84758710861206055	null	new lead		1	\N	\N	2512
2016-09-07 17:08:12.233853+00	2016-12-10 01:04:42.413635+00	1912	missed				+19096932585		0	2016-09-07 17:08:12.232823	2016-09-07 17:08:12.446762	CA1dd0e775f19073277cefe6067fff3646	\N	\N			0	inbound	+18552187903	\N	\N	null	new lead		3	\N	\N	4063
2016-09-07 20:58:46.138413+00	2016-12-09 17:10:17.41342+00	1950	completed				+19088593920		338	2016-09-07 20:58:46.136727	2016-09-07 21:04:24.604511	CAa466c2575ec7cfd79917f4bcb6d2b182	\N	27			0	inbound	+18552716856	\N	4.53198099136352539	null	new lead		3	\N	\N	2164
2017-03-29 22:39:17.530379+00	2017-11-29 18:38:53.213141+00	3626	completed				+15129707736		30	2017-03-29 22:39:17.528195	2017-03-29 22:39:47.909088	CA35766c58042d04246847a75b90cd8e34	\N	107			0	inbound	+12146922088	\N	7.99078106880187988	\N	new lead	texas discount 	9	\N	\N	2520
2016-08-30 15:41:44.876364+00	2016-12-10 01:00:18.568322+00	1816	completed				+18589393461		298	2016-08-30 15:41:44.87459	2016-08-30 15:46:42.931905	CA0315fad8081cac49e9e49bdbf82e9d13	\N	56			0	inbound	+18556775511	\N	7.77422881126403809	null	new lead		3	\N	\N	2528
2017-07-19 16:12:15.986523+00	2017-08-17 14:35:21.04563+00	5812	completed				+16823524860		216	2017-07-19 16:12:15.984676	2017-07-19 16:15:51.836526	CA56e6dca2b6f55e4c88fd0da73587d93b	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE5a6c6331b37b4afb2419b4d0aa4534a6	0	inbound	+18177569010	124	37.967656135559082	\N	new lead	euless  tx	12	\N	\N	2530
2016-11-08 23:35:00.503713+00	2016-11-09 00:25:35.866491+00	2813	completed				+19797321676		3030	2016-11-08 23:35:00.501016	2016-11-09 00:25:30.672685	CA32ba3ca6844e1b9dafef650809ae063e	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE64a42e06ded95fee61bb48f68c2ae420	0	inbound	+18557240606	49	2.18667984008789062	null	new lead		1	\N	\N	2531
2016-11-04 19:02:13.496177+00	2016-11-04 19:05:00.434292+00	2720	completed				+19784065690		166	2016-11-04 19:02:13.494236	2016-11-04 19:04:59.882835	CA572fd354a41ec61609d8df60d93929ad	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REc8953f8f0c47042ae8c60e1d2cc2d5bb	0	inbound	+18557240606	49	1.99133110046386719	null	new lead		1	\N	\N	2536
2017-04-12 12:37:21.426713+00	2017-11-29 18:31:10.262789+00	3806	missed	Vickie	Williams		+15137858796		58	2017-04-12 12:37:21.423572	2017-04-12 12:38:19.17349	CAf5017361a6523415a6d66a68abf09b44	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE806a90edb0dc8cdf6b66d0516ca3effc	0	inbound	+18556311490	\N	\N	\N	general interest		1	\N	\N	2694
2017-04-13 16:42:58.604547+00	2017-11-29 18:31:10.262803+00	3875	missed	Vickie	Williams		+15137858796		43	2017-04-13 16:42:58.602732	2017-04-13 16:43:41.423534	CAbcc6e232fa65849eeb84587abfdb9f6f	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REdc165b78257485e11032bf9f2343cb27	0	inbound	+18556311490	\N	\N	\N	general interest		1	\N	\N	2694
2017-04-13 18:45:16.194365+00	2017-11-29 18:31:10.26281+00	3888	missed	Vickie	Williams		+15137858796		62	2017-04-13 18:45:16.192467	2017-04-13 18:46:18.502323	CAc4a1ee210cc77820eb34737dd9952c64	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REd9bcc755780caf2af75b837373e2c941	0	inbound	+18556311490	\N	\N	\N	general interest		1	\N	\N	2694
2017-04-14 14:56:35.827201+00	2017-11-29 18:31:10.262818+00	3912	completed	Vickie	Williams		+15137858796		195	2017-04-14 14:56:35.82586	2017-04-14 14:59:51.09611		\N	16			0	outbound	+18556311490	\N	\N	\N	general interest		1	\N	\N	2694
2016-07-07 18:41:31.034292+00	2017-11-29 18:31:41.490353+00	817	completed	Bill	Ryan		+17402158681		42	2016-07-07 18:41:31.031018	2016-07-07 18:42:13.179871	CA8ca21a794daacee55a943ee2439c7eff	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE9624eb8eef8b8c073518fb201dd05f64	0	inbound	+18552959002	\N	14.6375820636749268	null	general interest		1	\N	\N	2695
2017-12-12 20:16:25.131947+00	2017-12-12 20:29:39.676628+00	7823	completed	Josephine	Kirchner	jebk1224@gmail.com	+17725211418		791	2017-12-12 20:16:25.130564	2017-12-12 20:29:39.675389	CA614190ab2eec3f5656ce88949343ff04	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.78980016708374023	{}	new lead		15	\N	\N	2697
2016-09-01 14:19:08.772777+00	2016-12-10 01:00:18.568329+00	1830	completed				+16193410137		261	2016-09-01 14:19:08.770751	2016-09-01 14:23:30.093254	CA9eaaa13ef38230ee9e5e3823e5194c51	\N	56			0	inbound	+18556775511	\N	31.8721070289611816	null	new lead		3	\N	\N	2699
2016-12-03 16:01:22.549875+00	2016-12-03 16:19:43.795905+00	3034	missed	Lynn	Bunker	wllbunk@centurytel.net	+19208638654		\N	2016-12-03 16:01:22.548568	\N		4b51c6b2-49f9-4108-8fdf-a8671e497256	\N			0	outbound	+18556311541	\N	\N	{}	application submitted - credit union		1	\N	\N	2700
2017-03-18 21:21:42.43805+00	2017-11-29 18:31:01.155614+00	3497	missed				+18312741073		317	2017-03-18 21:21:42.434735	2017-03-18 21:26:58.95245	CAe5c5c4ffe4f159885bd92b8ad3969b8a	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE451863efe1c31ad11430e53419dedb5e	0	inbound	+18556313454	\N	\N	\N	new lead		1	\N	\N	2701
2017-12-20 19:47:39.486466+00	2017-12-20 19:57:27.557834+00	8036	completed				+12317293616		587	2017-12-20 19:47:39.484557	2017-12-20 19:57:26.364227	CA0cf1ed3cd65c88cf49bd3a4f51a53e5e	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE583530059ce483401e91f00a4875f4bf	0	inbound	+18558645656	136	2.61951899528503418	\N	new lead		15	\N	\N	2702
2017-12-21 14:02:36.261403+00	2017-12-21 14:05:28.637597+00	8048	completed				+12317293616		171	2017-12-21 14:02:36.259669	2017-12-21 14:05:27.33471	CA2b8d1887a364f409be8ddbbeb6268cb7	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE675eac6023cfb6f36e4b24a509a4398f	0	inbound	+18558645656	136	2.93396377563476562	\N	new lead		15	\N	\N	2702
2016-12-05 22:38:49.701513+00	2016-12-05 22:39:50.294471+00	3045	completed				+12145972713		60	2016-12-05 22:38:49.699842	2016-12-05 22:39:49.7591	CA01febc6f9a8ba1b74745373a8fe8b97b	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REec82566f8c29e0a21fee35a15d68747d	0	inbound	+18557240606	49	2.10995697975158691	null	new lead		1	\N	\N	2703
2016-08-05 17:51:38.840573+00	2016-08-16 19:31:15.000181+00	1280	missed	Authur	Ivory	authurivory2013@gmail.com	+16614804014		\N	2016-08-05 17:51:38.839626	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - autopay		1	\N	\N	2709
2016-08-05 17:37:30.362496+00	2017-01-27 21:12:23.812736+00	1278	completed	Arthur	ivory		+16614804014		837	2016-08-05 17:37:30.361269	2016-08-05 17:51:26.876551	CA0bfbce1173d3404ed1b623c112e41c49	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REe29bb0261e639a77d2a733d58fb9ee78	0	inbound	+18555343978	48	10.0831429958343506	null	application submitted - autopay		1	\N	\N	2709
2016-08-05 14:46:20.188578+00	2017-01-27 21:12:23.812708+00	1271	completed	Arthur	ivory	arthurivory2013@gmail.com	+16614804014		96	2016-08-05 14:46:20.187469	2016-08-05 14:47:56.412523		\N	\N			0	outbound	+18555343978	48	\N	null	application submitted - autopay		1	\N	\N	2709
2016-09-14 18:21:08.767557+00	2016-12-10 01:01:00.200065+00	2011	completed				+16192804141		404	2016-09-14 18:21:08.765851	2016-09-14 18:27:52.381123	CA3b99105760c1b3b9cd57a175d91b35d6	\N	57			0	inbound	+18557860909	\N	3.47148299217224121	null	new lead		3	\N	\N	316
2016-09-14 21:09:57.820918+00	2016-12-10 00:57:48.461747+00	2012	completed				+17603512454		218	2016-09-14 21:09:57.819263	2016-09-14 21:13:36.127669	CA8b10acb4476608d96084fda94229724d	\N	30			0	inbound	+18559652184	\N	2.38990092277526855	null	new lead		3	\N	\N	620
2016-09-15 16:37:33.042458+00	2016-12-10 01:05:18.400972+00	2023	completed				+16108644417		151	2016-09-15 16:37:33.040787	2016-09-15 16:40:03.62978	CA376cb1ea51ad48967ec383297aaeef35	\N	24			0	inbound	+18557088731	\N	1.46397686004638672	null	new lead		3	\N	\N	2414
2017-04-20 19:49:41.917523+00	2017-11-29 18:38:49.806046+00	4150	completed				+17133306556		60	2017-04-20 19:49:41.914596	2017-04-20 19:50:41.500015	CA29468a72f2bdbcef714e7ab4c51df1fc	\N	124			0	inbound	+12147122250	\N	1.93883514404296875	\N	new lead	nguyen david   	9	\N	\N	2548
2017-04-20 19:50:35.392669+00	2017-11-29 18:38:49.806054+00	4151	completed				+17133306556		77	2017-04-20 19:50:35.390758	2017-04-20 19:51:52.069123	CA84c46dbb7abd23d3211d1480d3b12310	\N	125			0	inbound	+12147122250	\N	1.79006195068359375	\N	new lead	nguyen david   	9	\N	\N	2548
2017-08-04 16:34:44.339072+00	2017-08-04 16:39:33.863622+00	5935	completed	Christopher 	Schutzman	Jummpers311@gmail.com	+17069731943		276	2017-08-04 16:34:44.337749	2017-08-04 16:39:33.838446	CA74d82ef186126b46642fca7359eb290a	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE43db196e68800c6eed314cd6eadd3d7b	1	outbound	+17704009016	\N	11.4337050914764404	{}	new lead		13	\N	\N	2710
2016-11-29 23:43:57.16866+00	2016-11-29 23:49:20.969211+00	3003	completed				+16232660180		323	2016-11-29 23:43:57.167049	2016-11-29 23:49:20.477354	CA768039a2e4e8f4c1d1fa57349409b726	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE8d9fb0f149a8bcb77ab8d0890f37d8e3	0	inbound	+18557240606	49	2.22019600868225098	null	new lead		1	\N	\N	2711
2017-07-22 19:20:27.40735+00	2017-07-22 19:24:41.510142+00	5833	completed				+18177814280		251	2017-07-22 19:20:27.403835	2017-07-22 19:24:38.321712	CA2ab2b3c88298289866da2bb0c903ce2b	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE71b1ffa99f268ef10a8d12e3a8bf8178	0	inbound	+18177569010	124	14.9090089797973633	\N	new lead	the reynolds co	12	\N	\N	2712
2017-07-24 20:41:54.874065+00	2017-07-24 20:41:55.041332+00	5845	missed				+18177814280		0	2017-07-24 20:41:54.87206	2017-07-24 20:41:55.03104	CAffcfcc57cc89cbc691835dc2d90b2973	\N	\N			0	inbound	+18177569010	124	\N	\N	new lead	the reynolds co	12	\N	\N	2712
2016-07-29 17:57:44.985464+00	2017-11-29 18:31:10.26176+00	1038	completed				+15134894233		83	2016-07-29 17:57:44.984382	2016-07-29 17:59:07.524749	CAfaa91994292151561076f2a7c78158f1	\N	18		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE125066e9da5fcda808936a4f363f7f5b	0	inbound	+18556311490	\N	24.1208999156951904	null	new lead		1	\N	\N	2716
2017-11-01 15:33:03.88701+00	2017-11-01 15:36:10.788472+00	6888	completed				+14708926052		187	2017-11-01 15:33:03.88477	2017-11-01 15:36:10.772079	CAe0487b18d6df98c2a46aa28b58824b3c	\N	154			0	inbound	+17707665699	134	1.21263909339904785	\N	new lead		13	\N	\N	2717
2017-12-06 15:23:08.568009+00	2017-12-06 15:23:17.818255+00	7629	completed				+18032330693		9	2017-12-06 15:23:08.566089	2017-12-06 15:23:17.809496	CAac8121ba273420637118248e34145794	\N	78			0	inbound	+18036184545	119	1.69800400733947754	\N	new lead		6	\N	\N	2718
2016-09-14 13:31:29.806198+00	2016-12-10 00:55:45.165477+00	2010	completed				+16109332320		883	2016-09-14 13:31:29.804824	2016-09-14 13:46:13.171306	CA4f7aac6edfb38712b61c7faa8d8465f7	\N	24			0	inbound	+18557129406	\N	1.57097005844116211	null	new lead		3	\N	\N	2719
2017-01-05 19:02:55.880279+00	2017-01-05 19:03:22.247351+00	3109	missed	Skip Esch			+19492805308		0	2017-01-05 19:02:55.878653	2017-01-05 19:03:22.24485	CAf78a08672ec7e845c937f4ac916cf690	53da9e33-88fb-4b04-baca-339193fd55f7	\N			1	outbound	+17735469660	\N	\N	{}	new lead		1	\N	\N	2722
2017-01-06 22:07:59.188133+00	2017-01-06 22:10:20.209944+00	3110	completed	Skip Esch			+19492805308		120	2017-01-06 22:07:59.186202	2017-01-06 22:10:20.20845	CAafd2b55cc781fd966be4352eb9315af5	53da9e33-88fb-4b04-baca-339193fd55f7	1			1	outbound	+17735469660	\N	20.748445987701416	{}	new lead		1	\N	\N	2722
2017-05-02 19:48:18.519521+00	2017-11-29 18:47:25.068362+00	4592	completed				+14697039067		181	2017-05-02 19:48:18.517425	2017-05-02 19:51:19.428575	CA005bbacd139a42219590ad1f55ad319d	\N	83		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE9c89e936331bfa2c09ca0034e8406e89	0	inbound	+19728330116	\N	24.4987249374389648	\N	new lead	garcia yolanda	8	\N	\N	2723
2016-08-01 21:12:40.040598+00	2016-08-09 17:08:20.713232+00	1099	completed	Aaron	Hyatt	ahyatt9355@aol.com	+18054902098		\N	2016-08-01 21:12:40.039384	\N		99186475-9344-4e80-b3b1-0ed2e7856585	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REe3434588679d0495958627b359ba570e	0	outbound	+18555472453	\N	2.79563307762145996	{}	application submitted - autopay		1	\N	\N	2724
2017-07-29 16:33:54.920924+00	2017-11-29 18:47:25.068565+00	5877	missed				+14696557980		9	2017-07-29 16:33:54.919363	2017-07-29 16:34:03.637766	CA2e4a54280ab9e28444e5389c93780ece	\N	\N			0	inbound	+19728330116	\N	331.827044010162354	\N	new lead	aguilera noemis	8	\N	\N	2733
2017-10-30 14:50:01.899155+00	2017-10-30 14:54:07.680453+00	6865	completed	Arthur	Richardson	arthur.richardson@yahoo.com	+17063515790		227	2017-10-30 14:50:01.897541	2017-10-30 14:54:06.778575	CAda48893343eb1a91cf6c18f1b112e16f	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REa904cf813d290b48504c3c5174d2ea1e	1	outbound	+17704009016	\N	16.9302389621734619	{}	new lead		13	\N	\N	2734
2017-10-30 17:22:16.606576+00	2017-10-30 17:25:02.712104+00	6869	completed	Arthur	Richardson		+17063515790		165	2017-10-30 17:22:16.604399	2017-10-30 17:25:01.51434	CA977324a6bb8d9c5e8e5720cb6f5aa932	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REe33d829637a6fc6a88214958a62b0ef0	0	inbound	+17704009016	132	9.25033092498779297	\N	new lead		13	\N	\N	2734
2017-10-30 17:30:27.358863+00	2017-10-30 17:30:50.526198+00	6870	completed	Arthur	Richardson		+17063515790		23	2017-10-30 17:30:27.355642	2017-10-30 17:30:50.523609		\N	152			0	outbound	+17704009016	132	\N	\N	new lead		13	\N	\N	2734
2017-04-27 16:19:35.452273+00	2017-11-29 18:38:49.806944+00	4365	completed				+18172912553		86	2017-04-27 16:19:35.44984	2017-04-27 16:21:01.061203	CA01aee9cdc2f8efb40a0126ca811b62bc	\N	127			0	inbound	+12147122250	\N	2.08827590942382812	\N	new lead	williams jr rog	9	\N	\N	2735
2017-04-29 17:55:20.326875+00	2017-11-29 18:38:49.807455+00	4469	completed				+18172912553		85	2017-04-29 17:55:20.32258	2017-04-29 17:56:44.852095	CAb741529c02dfda97384301adc7f145fb	\N	\N			0	inbound	+12147122250	\N	4.04854798316955566	\N	new lead	williams jr rog	9	\N	\N	2735
2017-11-14 19:42:07.064798+00	2017-11-14 19:42:41.820604+00	7050	completed				+14782131668		35	2017-11-14 19:42:07.062395	2017-11-14 19:42:41.811734	CA8f6edeccb171b6f726c3d37b384594c0	\N	150			0	inbound	+17707665732	133	19.5949530601501465	\N	new lead		13	\N	\N	2737
2017-11-14 19:42:50.98329+00	2017-11-14 19:47:50.249491+00	7051	completed				+14782131668		299	2017-11-14 19:42:50.981249	2017-11-14 19:47:50.229871	CAcfe9f44cb2d41d1080f093de85b9a6dd	\N	150			0	inbound	+17707665732	133	21.6554861068725586	\N	new lead		13	\N	\N	2737
2016-08-27 19:34:40.048081+00	2016-08-29 12:31:08.461213+00	1797	missed	Robert	Newbrey	robert.newbrey@gmail.com	+16619656279		\N	2016-08-27 19:34:40.046862	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - credit union		1	\N	\N	2741
2016-10-06 15:03:09.124247+00	2016-12-09 17:10:17.413577+00	2213	completed				+16102580580		398	2016-10-06 15:03:09.123246	2016-10-06 15:09:47.592055	CA4f25fbb1cc6d582da3e9869ff7f79c1e	\N	27			0	inbound	+18552716856	\N	6.78127384185791016	null	new lead		3	\N	\N	2517
2016-07-20 16:19:13.557946+00	2017-11-29 18:32:13.821501+00	905	completed				+13308020241		39	2016-07-20 16:19:13.556752	2016-07-20 16:19:52.122912	CA6ba4ab9a0830d60c972fe5af3a04fdc0	\N	17		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REe9b7b2aacda0071c338617a61d08a6ca	0	inbound	+18555983683	\N	6.70395088195800781	null	new lead		1	\N	\N	2596
2017-04-25 22:51:52.343253+00	2017-11-29 18:38:49.806696+00	4311	completed				+13252174185		46	2017-04-25 22:51:52.341237	2017-04-25 22:52:38.357067	CA47bbff31589effb81462100411f1f04c	\N	126			0	inbound	+12147122250	\N	0.985057830810546875	\N	new lead	brooks ricky   	9	\N	\N	2598
2017-04-25 22:52:53.420321+00	2017-11-29 18:38:49.806703+00	4312	completed				+13252174185		92	2017-04-25 22:52:53.418753	2017-04-25 22:54:25.500992	CAbecca2e912778a30690e9d74b3cf168a	\N	126			0	inbound	+12147122250	\N	0.936689138412475586	\N	new lead	brooks ricky   	9	\N	\N	2598
2017-10-11 17:42:07.820404+00	2017-10-11 17:46:14.815039+00	6664	completed				+17065259446		247	2017-10-11 17:42:07.818546	2017-10-11 17:46:14.800302	CA0f37f236f2ff16d84cfafafd6631078a	\N	152			0	inbound	+17707665732	133	7.27733993530273438	\N	new lead		13	\N	\N	2600
2016-11-02 14:15:44.806827+00	2016-11-02 14:15:44.837174+00	2542	missed	Raymond	Stein	ray@logisource.com	+17045624726		\N	2016-11-02 14:15:44.805964	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2742
2017-07-27 22:07:30.153818+00	2017-07-27 22:09:08.178051+00	5866	completed	cody	palmer	codepalm202@yahoo.com	+14705098626		83	2017-07-27 22:07:30.151981	2017-07-27 22:09:08.145595	CA18e353ca81da8ddf594c47085d5bc960	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REde34a3598624788788bd371145758967	1	outbound	+17704009016	\N	10.196972131729126	{}	new lead		13	\N	\N	2744
2016-08-05 13:41:26.779046+00	2016-08-05 13:58:42.403864+00	1267	missed	Theresa	Myers	tjmyers62@aol.com	+17403047826		\N	2016-08-05 13:41:26.777891	\N		d33a481e-e0af-47ac-9f90-260f20b69de5	\N			0	outbound	+18552959002	\N	\N	{}	application submitted - autopay		1	\N	\N	2749
2016-07-18 16:21:11.844656+00	2017-11-29 18:31:41.490458+00	887	completed				+17403047826		40	2016-07-18 16:21:11.842984	2016-07-18 16:21:51.752114	CA655df91300e2122f1ce14bf74cbbe9c8	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REe780b0b058ab2fe4adefae501c3ecdc1	0	inbound	+18552959002	\N	16.4871530532836914	null	application submitted - autopay		1	\N	\N	2749
2016-07-18 16:22:01.240071+00	2017-11-29 18:31:41.490484+00	888	completed				+17403047826		111	2016-07-18 16:22:01.238053	2016-07-18 16:23:51.746193	CA10202cc96c33292eded735b52860d2ce	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REd9c42e62e576b51a77b7be7477397fff	0	inbound	+18552959002	\N	8.8193211555480957	null	application submitted - autopay		1	\N	\N	2749
2016-08-04 14:53:53.181336+00	2017-11-29 18:31:41.490639+00	1202	completed				+17403047826		34	2016-08-04 14:53:53.180262	2016-08-04 14:54:27.588546	CA3359ed8237fb97ba7bf0d317ff1e633a	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REd12bde71f67e2bf9fa574bd5733536da	0	inbound	+18552959002	\N	18.464540958404541	null	application submitted - autopay		1	\N	\N	2749
2017-06-19 15:32:50.822725+00	2017-06-24 13:44:45.085699+00	5607	completed				+16507615027		32	2017-06-19 15:32:50.819128	2017-06-19 15:33:22.70144	CA17ab4c07fe9d8b0076a1757fd1d44210	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE4b25825612f3e35c95fa14d56061a450	0	inbound	+17704009016	132	18.3332328796386719	\N	new lead		13	\N	\N	2759
2017-04-17 22:03:07.838659+00	2017-11-29 18:38:49.805347+00	4014	completed				+16123103140		80	2017-04-17 22:03:07.835544	2017-04-17 22:04:27.801883	CAee537e01ad8a1f2faba7b098e494dc30	\N	127			0	inbound	+12147122250	\N	1.8668668270111084	\N	new lead	webb david     	9	\N	\N	2767
2017-04-17 22:04:25.026829+00	2017-11-29 18:38:49.805355+00	4015	completed				+16123103140		256	2017-04-17 22:04:25.02543	2017-04-17 22:08:40.556359	CAb82708f798a7145c0b4d0460126f4c41	\N	107			0	inbound	+12147122250	\N	7.02088022232055664	\N	new lead	webb david     	9	\N	\N	2767
2017-04-19 21:09:12.892968+00	2017-11-29 18:38:49.805789+00	4104	completed				+16123103140		248	2017-04-19 21:09:12.890013	2017-04-19 21:13:20.756738	CA78214d06c621ab03cf1968559543c6f0	\N	\N			0	inbound	+12147122250	\N	9.24826288223266602	\N	new lead	webb david     	9	\N	\N	2767
2017-04-27 17:32:08.882591+00	2017-11-29 18:38:49.806973+00	4371	completed				+16123103140		89	2017-04-27 17:32:08.880718	2017-04-27 17:33:37.81809	CA7a73d9880825309579e999c4fdc9c683	\N	127			0	inbound	+12147122250	\N	2.23988819122314453	\N	new lead	webb david     	9	\N	\N	2767
2016-11-07 16:52:03.622005+00	2016-11-07 17:20:13.706828+00	2789	completed				+19194160909		1683	2016-11-07 16:52:03.619503	2016-11-07 17:20:06.149849	CA1ef44ae044401538a6dbcfeadee2adb7	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE3baf9e63228673147381416602cc3119	0	inbound	+18557240606	49	2.52951502799987793	null	new lead		1	\N	\N	2769
2016-10-06 15:08:03.462421+00	2017-02-11 20:02:07.779612+00	2214	completed				+19732074177		83	2016-10-06 15:08:03.461516	2016-10-06 15:09:26.192564	CAe0772e7309c07d522e7dda30da7ba139	\N	\N			0	inbound	+18559763286	\N	1.51983308792114258	null	new lead		3	\N	\N	2771
2016-06-25 21:23:38.7812+00	2016-06-27 12:58:58.077454+00	467	completed	CHRISTOPHER	STRAIT	CSTRAIT001@YAHOO.COM	+16145178306		\N	2016-06-25 21:23:38.779806	\N		d33a481e-e0af-47ac-9f90-260f20b69de5	\N			0	outbound	+18552959002	\N	\N	{}	new lead		1	\N	\N	2773
2017-01-13 22:05:20.115864+00	2017-01-13 22:43:03.628002+00	3122	completed				+18322071298		2258	2017-01-13 22:05:20.113895	2017-01-13 22:42:58.137324	CA6dc45c9784f49d18028472d9860164fb	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REfad46afb4b361a13e086c2b104b08d69	0	inbound	+18557240606	49	1.74104499816894531	null	new lead		1	\N	\N	2774
2016-10-06 22:13:44.430364+00	2016-12-10 01:01:00.200386+00	2223	completed				+16198629782		630	2016-10-06 22:13:44.42914	2016-10-06 22:24:14.915072	CAfd38b68664bec7980886628ca57ae3ff	\N	57			0	inbound	+18557860909	\N	35.5697999000549316	null	new lead		3	\N	\N	2776
2017-05-25 18:23:46.000964+00	2017-05-25 18:24:07.357433+00	5405	completed				+12142444767		20	2017-05-25 18:23:45.99899	2017-05-25 18:24:06.259087	CAdff6ab4b9a61c27d26a4982bfe86b36f	\N	129		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE04ebee96c43012c4e45dcded69989663	0	inbound	+18172104002	126	10.3725521564483643	\N	new lead	smithson timmy 	12	\N	\N	2779
2017-05-25 18:24:27.801795+00	2017-05-25 18:24:40.455296+00	5406	completed				+12142444767		13	2017-05-25 18:24:27.800278	2017-05-25 18:24:40.437388	CA0591187db88d7024a4b16c50c87f435b	\N	129			0	inbound	+18172104002	126	5.28146004676818848	\N	new lead	smithson timmy 	12	\N	\N	2779
2017-05-30 15:04:55.27872+00	2017-05-30 15:06:06.382373+00	5491	completed				+12142444767		70	2017-05-30 15:04:55.276943	2017-05-30 15:06:05.589892	CAc76e1710ef5702c49f55f8158b1a7aaf	\N	129		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE9d1e4f2db12a6fe38345dc361828ad8e	0	inbound	+18172104002	126	4.4390559196472168	\N	new lead	smithson timmy 	12	\N	\N	2779
2016-10-08 18:09:32.857053+00	2016-12-10 01:01:47.491799+00	2241	completed				+16199850241		10	2016-10-08 18:09:32.854871	2016-10-08 18:09:43.308068	CA8587ea8ba700ec3f365fead0e52b0c2a	\N	51			0	inbound	+18559584949	\N	2.10381507873535156	null	new lead		3	\N	\N	173
2016-09-19 18:38:24.869118+00	2016-09-19 18:39:18.76154+00	2051	missed	Curtis	Johnson		+16614497598		54	2016-09-19 18:38:24.867378	2016-09-19 18:39:18.75983	CA99b02672f65c3a01ffd83cbb21fce332	\N	\N			0	inbound	+18555343978	48	32.3422231674194336	null	general interest		1	\N	\N	366
2016-10-13 19:45:01.205663+00	2016-12-10 00:57:48.461845+00	2290	completed				+18053207827		125	2016-10-13 19:45:01.203819	2016-10-13 19:47:06.499586	CAbc76504f63ba174119f3cf3c377c9208	\N	30			0	inbound	+18559652184	\N	1.85289907455444336	null	new lead		3	\N	\N	514
2017-05-03 14:35:52.824238+00	2017-11-29 18:38:49.809083+00	4618	completed				+14699097590		63	2017-05-03 14:35:52.822712	2017-05-03 14:36:56.004472	CAb842e47bb8cd27c23d399b899aad8b18	\N	125			0	inbound	+12147122250	\N	1.00304388999938965	\N	new lead	siskin sara    	9	\N	\N	2620
2017-05-03 14:36:51.113382+00	2017-11-29 18:38:49.809098+00	4619	completed				+14699097590		54	2017-05-03 14:36:51.112067	2017-05-03 14:37:45.552209	CA74b622c6939b87bcd472602e815ff54c	\N	124			0	inbound	+12147122250	\N	1.17957210540771484	\N	new lead	siskin sara	9	\N	\N	2620
2017-05-03 14:37:36.811731+00	2017-11-29 18:38:49.809115+00	4620	completed				+14699097590		58	2017-05-03 14:37:36.810011	2017-05-03 14:38:34.742428	CA4d465e42464f369f26adbf6e0f445781	\N	126			0	inbound	+12147122250	\N	1.41333603858947754	\N	new lead	siskin sara	9	\N	\N	2620
2017-05-03 14:38:30.953383+00	2017-11-29 18:38:49.809133+00	4621	completed				+14699097590		52	2017-05-03 14:38:30.951475	2017-05-03 14:39:22.651762	CAf8ed860366c54763d254e82136de64a3	\N	133			0	inbound	+12147122250	\N	23.3371579647064209	\N	new lead	siskin sara	9	\N	\N	2620
2017-05-09 15:55:57.040892+00	2017-11-29 18:38:49.81054+00	4900	completed				+12317307713		84	2017-05-09 15:55:57.038893	2017-05-09 15:57:20.725799	CAa0793e7be4cddb137f7b8ea38c8c8fa7	\N	\N			0	inbound	+12147122250	\N	1.56094908714294434	\N	new lead	shoenmaker josh	9	\N	\N	2623
2017-05-30 15:03:00.378398+00	2017-05-30 15:03:20.556791+00	5490	completed				+12142444767		20	2017-05-30 15:03:00.375396	2017-05-30 15:03:19.951962	CA333ac7e866c2843d26367ec899d643fa	\N	132		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REfefc52cf6c144b9d97e4614594ceb7c9	0	inbound	+18172104002	126	6.41214418411254883	\N	new lead	smithson timmy 	12	\N	\N	2779
2016-11-04 19:25:45.198277+00	2016-11-04 19:29:10.250643+00	2722	completed				+19196220248		205	2016-11-04 19:25:45.197035	2016-11-04 19:29:09.741668	CAa41ec8029bf9bdbd8cf13fb3ce0dbd4b	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REb21c90364e7a4ee6e456f66c9b82fd34	0	inbound	+18557240606	49	2.17568707466125488	null	new lead		1	\N	\N	2783
2016-08-15 16:56:43.44623+00	2016-08-15 18:08:54.335398+00	1496	missed	John	Blanchard	john@theblanchard.com	+16619171687		\N	2016-08-15 16:56:43.445369	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - credit union		1	\N	\N	2786
2017-08-15 18:14:28.758279+00	2017-08-15 18:37:25.04225+00	6036	missed				+14698154117		60	2017-08-15 18:14:28.754846	2017-08-15 18:15:29.006289	CA2f79a51224bf2c149c44365e85fe65a8	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REae1b75f269f6e8b4afad6951cef7c2c7	0	inbound	+18177569010	124	1351.71818804740906	\N	new lead	cell phone   tx	12	\N	\N	2826
2017-08-15 17:46:45.018213+00	2017-08-17 14:35:21.045852+00	6035	completed				+14698154117		1397	2017-08-15 17:46:45.016175	2017-08-15 18:10:02.317443	CAbbc75256a8be66883d51ca9e6dcd4dff	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REb80f35e4a50c8e1f541f5d0bf07e79a8	0	inbound	+18177569010	124	1344.64526700973511	\N	new lead	cell phone   tx	12	\N	\N	2826
2017-08-15 19:45:56.242281+00	2017-08-17 14:35:21.045866+00	6039	completed				+14698154117		113	2017-08-15 19:45:56.240047	2017-08-15 19:47:49.705138	CA1232415bf3e980f720b049d0280f35e6	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE00315a9d15708bedf0dacbceda386333	0	inbound	+18177569010	124	7.05606412887573242	\N	new lead	cell phone   tx	12	\N	\N	2826
2017-04-28 20:23:44.201341+00	2017-11-29 18:38:49.807335+00	4443	completed				+13866476168		74	2017-04-28 20:23:44.199291	2017-04-28 20:24:58.545716	CA426ff38df9fefa9e57258feceefa7879	\N	105			0	inbound	+12147122250	\N	3.25922799110412598	\N	new lead	travis frier   	9	\N	\N	2834
2017-08-18 17:45:48.589053+00	2017-08-18 17:46:52.991826+00	6091	completed	Donte	Holland	Donte.holland@yahoo.com	+14049035121		54	2017-08-18 17:45:48.58754	2017-08-18 17:46:52.539427	CA7ef20c0090f9c259c50ba52749c7cf3b	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REe067ebdb512744b3499f82144f0629b0	1	outbound	+17704009016	\N	16.9482340812683105	{}	new lead		13	\N	\N	2835
2017-04-06 17:06:24.108141+00	2017-04-06 17:28:08.123714+00	3700	missed				+18177409490		14	2017-04-06 17:06:24.106115	2017-04-06 17:06:38.099255	CA9937ba438a5a41febccb64135105eb56	\N	\N			0	inbound	+18177569010	124	1281.86567115783691	\N	new lead	pls loan store	12	\N	\N	2837
2017-04-06 17:12:03.083827+00	2017-04-06 17:35:15.033762+00	3703	missed				+18177409490		99	2017-04-06 17:12:03.082171	2017-04-06 17:13:42.455251	CAaa9b10f6d1092eab21b81c428af68afc	\N	\N			0	inbound	+18177569010	124	1370.2895929813385	\N	new lead	pls group	12	\N	\N	2837
2017-04-06 17:14:14.412924+00	2017-04-06 17:37:05.109303+00	3704	missed				+18177409490		78	2017-04-06 17:14:14.410879	2017-04-06 17:15:32.350165	CA8ad4604d2fe92a00da7d8899e782652c	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE67f645b4fcb757345a49e29b61778dae	0	inbound	+18177569010	124	1348.71718883514404	\N	new lead	pls loan store	12	\N	\N	2837
2017-04-06 17:10:10.498364+00	2017-05-17 15:41:07.224291+00	3702	completed				+18177409490		1438	2017-04-06 17:10:10.496198	2017-04-06 17:34:08.541199	CA21cedb82a76b8a7deb968eb5df5260f3	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE7bcde2966b0bd9e4fd77bb6992bb5eda	0	inbound	+18177569010	124	1332.39828300476074	\N	new lead	pls loan store	12	\N	\N	2837
2017-04-06 17:08:03.161435+00	2017-08-17 14:35:21.044952+00	3701	completed				+18177409490		1431	2017-04-06 17:08:03.158407	2017-04-06 17:31:54.31418	CA4de1aa6f92c69c87912618c2e4632cf9	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REf2a2fe63ec3c2cd6b35112e4299aad11	0	inbound	+18177569010	124	1331.7177300453186	\N	new lead	pls group	12	\N	\N	2837
2017-03-01 22:24:06.583596+00	2017-11-29 18:38:53.211611+00	3274	completed				+19492805308		23	2017-03-01 22:24:06.580528	2017-03-01 22:24:29.081215	CA70f1431bf9d8725d994f205d5dd17638	\N	\N			0	inbound	+12146922088	\N	11.8080270290374756	\N	new lead	ESCH SKIP      	9	\N	\N	2839
2016-09-21 18:19:31.145891+00	2016-12-10 01:04:42.413804+00	2067	completed				+19092130926		136	2016-09-21 18:19:31.144402	2016-09-21 18:21:47.387677	CAf6b5156dafdaabcebc613d59bb4b75a9	\N	58			0	inbound	+18552187903	\N	1.228668212890625	null	new lead		3	\N	\N	79
2016-09-21 18:22:15.744919+00	2016-12-10 01:04:42.413811+00	2068	completed				+19092130926		87	2016-09-21 18:22:15.743831	2016-09-21 18:23:42.903273	CAdb1929def19f8bbe626247b130d1f6f2	\N	58			0	inbound	+18552187903	\N	1.29084992408752441	null	new lead		3	\N	\N	79
2016-09-21 17:28:36.331173+00	2016-12-10 01:01:54.351671+00	2066	completed				+16192141325		192	2016-09-21 17:28:36.329722	2016-09-21 17:31:48.137555	CA246b897bbf72c99cdae2d5cb2eb0c202	\N	49			0	inbound	+18559584242	\N	2.06299686431884766	null	new lead		3	\N	\N	1055
2016-10-10 21:00:15.397906+00	2016-12-10 01:01:51.4411+00	2256	completed				+17605337510		184	2016-10-10 21:00:15.396225	2016-10-10 21:03:19.750491	CA0c4c4cc41d444a3f796c764849cf5da9	\N	50			0	inbound	+18559693782	\N	0.460681915283203125	null	new lead		3	\N	\N	2066
2016-10-10 23:13:49.234248+00	2016-12-10 01:04:42.413825+00	2258	completed				+19092701469		91	2016-10-10 23:13:49.23289	2016-10-10 23:15:19.92555	CAe4e62f54ca018d01e7646177be0afa4a	\N	58			0	inbound	+18552187903	\N	0.883187055587768555	null	new lead		3	\N	\N	2499
2017-04-14 19:51:32.030206+00	2017-11-29 18:38:53.213937+00	3938	completed				+17032162314		438	2017-04-14 19:51:32.028368	2017-04-14 19:58:50.025687	CA4d5da798bfad50469362e88aa6b28734	\N	\N			0	inbound	+12146922088	\N	3.25045013427734375	\N	new lead	mozaffar ahmad 	9	\N	\N	2660
2016-11-05 07:45:20.714104+00	2016-11-05 07:45:20.74514+00	2740	missed	Daymon	Taylor	snaxdabeast36@gmail.com	+16785990819		\N	2016-11-05 07:45:20.712763	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2664
2016-11-03 15:13:07.554934+00	2016-11-03 15:15:24.435706+00	2624	completed				+15732594560		136	2016-11-03 15:13:07.553178	2016-11-03 15:15:23.775779	CAa94732c75ab49cbe4ff81b07cb9cd601	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REb3cbbe5c7d7e91db56c82ce7799cd644	0	inbound	+18557240606	49	2.49205994606018066	null	new lead		1	\N	\N	2841
2017-05-10 17:29:16.979573+00	2017-11-29 18:38:49.810804+00	4957	completed				+17028409205		212	2017-05-10 17:29:16.977397	2017-05-10 17:32:48.666988	CAf9a598c640c171a63aad169fe0b15667	\N	\N			0	inbound	+12147122250	\N	5.14296293258666992	\N	new lead	cell phone   nv	9	\N	\N	2842
2016-11-27 16:20:54.18341+00	2016-11-27 16:20:54.213781+00	2983	missed	Vicki	Evans	vicki.evans2013@gmail.com	+16786127681		\N	2016-11-27 16:20:54.181694	\N		25d0200e-983d-4413-94ae-eb664b99711c	\N			0	outbound	+18556311490	\N	\N	{}	new lead		1	\N	\N	2844
2016-09-29 17:37:00.338203+00	2016-12-10 01:03:35.620594+00	2109	completed				+16177206723		90	2016-09-29 17:37:00.336643	2016-09-29 17:38:30.393123	CA8a6162343341e0d5bd5b79ac1a0b22c1	\N	66			0	inbound	+18557376565	\N	0.3270721435546875	null	new lead		3	\N	\N	2848
2017-08-08 18:49:23.644826+00	2017-08-08 18:57:50.759931+00	5969	completed	david	herculano	hercu.1988@gmail.com	+16787686098		95	2017-08-08 18:49:23.643079	2017-08-08 18:57:50.482791	CAc2f85bf0e51ce68ce4725f01b51c8fd7	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REa77f07bef94230a9e8281e1ea5aa3c28	3	outbound	+17704009016	\N	410.875900983810425	{}	new lead		13	\N	\N	2849
2017-08-10 16:12:57.381694+00	2017-08-10 16:16:01.189365+00	5982	completed	david	herculano		+16787686098		183	2017-08-10 16:12:57.379978	2017-08-10 16:16:00.004841	CA1fe39ef0225966d532055d73feb2123d	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REc2743b5f4d2f4582f22344cdb302ee3b	0	inbound	+17704009016	132	18.6117179393768311	\N	new lead		13	\N	\N	2849
2017-09-28 22:38:49.857395+00	2017-09-28 22:40:19.426456+00	6521	completed	david	herculano		+16787686098		90	2017-09-28 22:38:49.855436	2017-09-28 22:40:19.412506	CAcd023f00eadde2a6f83e27d04ef1d00c	\N	150			0	inbound	+17707665732	133	13.1780669689178467	\N	new lead		13	\N	\N	2849
2017-04-06 16:22:47.685801+00	2017-04-06 16:22:47.723302+00	3698	missed	test	test	test@google.com	+15136665555		\N	2017-04-06 16:22:47.684303	\N		25d0200e-983d-4413-94ae-eb664b99711c	\N			0	outbound	+18556311490	\N	\N	{}	new lead		1	\N	\N	2860
2017-04-06 16:22:49.942731+00	2017-04-06 16:22:49.979785+00	3699	missed	test	test	test@google.com	+15136665555		\N	2017-04-06 16:22:49.941061	\N		25d0200e-983d-4413-94ae-eb664b99711c	\N			0	outbound	+18556311490	\N	\N	{}	new lead		1	\N	\N	2860
2017-08-01 19:17:09.552108+00	2017-08-01 19:19:23.899314+00	5911	completed				+17062021396		134	2017-08-01 19:17:09.5504	2017-08-01 19:19:23.158049	CA164101d9a7c7ded231b27ba1256565cb	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REf31e297de37ec0058d6514f59d303656	0	inbound	+17704009016	132	19.675894021987915	\N	new lead		13	\N	\N	2861
2017-08-01 19:21:49.029475+00	2017-08-01 19:28:27.113159+00	5912	completed	Sardazecha	Allen	benn.mary51@gmail.com	+17062021396		32	2017-08-01 19:21:49.027595	2017-08-01 19:28:26.74418	CA31917aaa609ad86785fa814eac8d5ddb	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE237fb78c371b7f562c5df3c6931cd49d	3	outbound	+17704009016	\N	367.970937013626099	{}	new lead		13	\N	\N	2861
2016-06-28 14:29:42.054666+00	2016-06-28 14:31:31.15106+00	578	completed	Daniel	Teminsky	teminsky@zoominternet.net	+13305013638		0	2016-06-28 14:29:42.05346	2016-06-28 14:30:12.246047	CAabb15e832307eac777c415ca11770d8a	ee869226-e246-4ab4-aaaa-e9403e2ddd39	\N			1	outbound	+18555983683	\N	13.92311692237854	{}	new lead		1	\N	\N	2862
2017-04-15 15:41:03.938607+00	2017-11-29 18:38:49.805067+00	3956	completed				+18709492367		201	2017-04-15 15:41:03.936702	2017-04-15 15:44:25.093822	CAba2b876eb896f9c59302c42bf70f1073	\N	99			0	inbound	+12147122250	\N	5.81604504585266113	\N	new lead	wireless caller	9	\N	\N	2863
2017-12-06 23:27:55.987086+00	2017-12-06 23:32:49.592045+00	7668	completed				+17863992576		291	2017-12-06 23:27:55.985375	2017-12-06 23:32:47.190596	CAbbee6c250f7195fbb15d669676ca371b	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REb6785015c651d77f68d43290c49c0a5e	0	inbound	+18558645656	136	2.98729586601257324	\N	new lead		15	\N	\N	2865
2017-12-28 22:23:39.154015+00	2017-12-28 22:26:20.865352+00	8142	completed	Brian	Mathews	Brianjmathews@gmail.com	+17069627597		149	2017-12-28 22:23:39.152627	2017-12-28 22:26:20.422666	CAead469dc993e019c5ab3b19a8f59270f	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE376882b4929a3fbe55d413641c4fa72c	1	outbound	+17704009016	\N	11.5731880664825439	{}	new lead		13	\N	\N	2866
2017-09-02 19:46:38.560106+00	2017-09-02 19:47:18.817293+00	6242	completed				+14403556956		39	2017-09-02 19:46:38.558187	2017-09-02 19:47:17.667306	CAf572a58f8169da9a8ee0b8e91b256c78	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REd647758a0a7745094d4d23d49cc66f7b	0	inbound	+18177569010	124	9.10172390937805176	\N	new lead	varisco alan	12	\N	\N	2867
2017-12-05 15:40:23.036028+00	2017-12-05 16:07:46.472061+00	7585	completed				+12487550777		1640	2017-12-05 15:40:23.034211	2017-12-05 16:07:43.196948	CA47f612029d1f5fb113f3319c43d53b63	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE7bdc33c66d56966a88beb3a1beb983d1	0	inbound	+18558645656	136	2.5847170352935791	\N	new lead		15	\N	\N	4083
2016-09-23 16:37:09.811205+00	2016-12-09 17:10:17.413485+00	2078	completed				+15733564411		24	2016-09-23 16:37:09.806988	2016-09-23 16:37:33.6819	CA987734de333bbd78c71f7848d4a4193b	\N	27			0	inbound	+18552716856	\N	6.35647201538085938	null	new lead		3	\N	\N	746
2016-09-22 20:27:30.921785+00	2016-12-09 17:10:17.413478+00	2076	completed				+14848098924		154	2016-09-22 20:27:30.919195	2016-09-22 20:30:04.842855	CA442ccbe5876c9ee7c0f486629f614c8e	\N	27			0	inbound	+18552716856	\N	6.38869595527648926	null	new lead		3	\N	\N	1572
2016-11-01 23:51:35.936104+00	2016-11-01 23:51:35.958219+00	2525	missed	Daniel	Garcia	garciada@miamioh.edu	+16144461552		\N	2016-11-01 23:51:35.935155	\N		25d0200e-983d-4413-94ae-eb664b99711c	\N			0	outbound	+18556311490	\N	\N	{}	new lead		1	\N	\N	2689
2017-12-15 18:14:46.366095+00	2017-12-15 18:18:08.65338+00	7899	completed	Victoria	Grier	victoriag3145@live.com	+16786877614		189	2017-12-15 18:14:46.363539	2017-12-15 18:18:08.339745	CA251100105313d6c4fdf9cee5ca81c7ce	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REed569ecff0795683d95d5cf534b900b0	1	outbound	+17704009016	\N	16.3081309795379639	{}	new lead		13	\N	\N	2870
2017-03-15 13:59:54.963128+00	2017-11-29 18:47:25.067757+00	3442	missed				+15627863867		33	2017-03-15 13:59:54.960376	2017-03-15 14:00:28.231074	CAbd863f667cb1409160251e9bcea15f51	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE2f9c29af8913e241a447af5a7d2ed202	0	inbound	+19728330116	\N	\N	\N	new lead	rana vreshingh	8	\N	\N	2871
2017-03-15 14:03:05.004326+00	2017-11-29 18:47:25.067764+00	3443	missed				+15627863867		54	2017-03-15 14:03:05.002321	2017-03-15 14:03:59.352591	CAd9fd186be7e2a7eb287c69b173b49928	\N	\N			0	inbound	+19728330116	\N	379.517411947250366	\N	new lead	rana vreshingh	8	\N	\N	2871
2017-03-15 14:06:39.067847+00	2017-11-29 18:47:25.067771+00	3444	completed				+15627863867		444	2017-03-15 14:06:39.066046	2017-03-15 14:14:02.791448	CAa645a25e672a3c1b107522fd311607fe	\N	83		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REf4a5b8dd3794a16b2ac50a2e9302e967	0	inbound	+19728330116	\N	18.7450850009918213	\N	new lead	rana vreshingh	8	\N	\N	2871
2017-03-15 15:52:06.91577+00	2017-11-29 18:47:25.067778+00	3445	completed				+15627863867		247	2017-03-15 15:52:06.913807	2017-03-15 15:56:13.881962	CA3aee3331a6360d71176c77c9e8864313	\N	83		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REddac176bb72433e269c75f9e74ea85d6	0	inbound	+19728330116	\N	7.99160599708557129	\N	new lead	rana vreshingh	8	\N	\N	2871
2017-03-15 15:59:26.757905+00	2017-11-29 18:47:25.067785+00	3448	completed				+15627863867		137	2017-03-15 15:59:26.756644	2017-03-15 16:01:43.535619	CA79e1e6f13d3347c9040a998ce6673f08	\N	83		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REb6e0767b6c54579f97f3b259cefa3c18	0	inbound	+19728330116	\N	5.44455218315124512	\N	new lead	rana vreshingh	8	\N	\N	2871
2016-08-27 19:45:04.336644+00	2016-08-31 16:57:34.173484+00	1798	missed	Jose	Luna	Joe1rodriguez1988@yahoo.com	+16616093525		\N	2016-08-27 19:45:04.335569	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - autopay		1	\N	\N	2874
2016-08-27 19:17:12.295466+00	2017-11-29 18:31:37.36909+00	1796	missed				+16616093525		15	2016-08-27 19:17:12.293604	2016-08-27 19:17:27.053853	CA5624228e130b3ec2ad972d0426cf6cf0	\N	\N			0	inbound	+18555472453	\N	\N	null	application submitted - autopay		1	\N	\N	2874
2017-11-24 20:24:43.962395+00	2017-11-24 20:25:34.703969+00	7193	completed				+12146216053		50	2017-11-24 20:24:43.960407	2017-11-24 20:25:33.623234	CA986f524bc9dc7bd62b8a05bd6b5a929d	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REbee9205680b6a3f60e1720b7d19df2af	0	inbound	+18177569010	124	10.8871181011199951	\N	new lead	dallas  tx	12	\N	\N	2875
2017-05-03 15:42:39.482092+00	2017-11-29 18:38:49.809167+00	4625	completed				+16465150468		85	2017-05-03 15:42:39.479484	2017-05-03 15:44:04.935593	CAf079437662a0df25efa16f7bc1150f6d	\N	124			0	inbound	+12147122250	\N	1.8423149585723877	\N	new lead	manhattan  ny	9	\N	\N	2876
2017-05-03 15:43:58.652953+00	2017-11-29 18:38:49.809184+00	4626	completed				+16465150468		86	2017-05-03 15:43:58.651243	2017-05-03 15:45:24.216292	CA133942467fac39a6d8232a054e0062cc	\N	103			0	inbound	+12147122250	\N	9.67735791206359863	\N	new lead	manhattan  ny	9	\N	\N	2876
2016-09-09 18:38:40.094171+00	2016-12-10 01:04:25.504879+00	1981	missed				+16092596018		25	2016-09-09 18:38:40.093228	2016-09-09 18:39:05.48508	CAdd1a52cf430e87bef517c84e567fa67f	\N	\N			0	inbound	+18556322533	\N	\N	null	new lead		3	\N	\N	2880
2016-08-25 13:34:03.085528+00	2016-12-10 01:05:11.337089+00	1765	completed				+16092596018		36	2016-08-25 13:34:03.084223	2016-08-25 13:34:39.023193	CAdaf31db352ebe7226b6f0edb88a98c93	\N	25			0	inbound	+18555693686	\N	1.9283900260925293	null	new lead		3	\N	\N	2880
2016-08-25 13:32:13.522684+00	2016-12-10 01:05:14.588947+00	1764	completed				+16092596018		9	2016-08-25 13:32:13.52172	2016-08-25 13:32:22.079103	CA2720f297a79c7acafa215c8bebb449a6	\N	23			0	inbound	+18556216819	\N	2.1733400821685791	null	new lead		3	\N	\N	2880
2016-08-25 13:30:43.941422+00	2016-12-10 01:05:18.400826+00	1763	completed				+16092596018		44	2016-08-25 13:30:43.940404	2016-08-25 13:31:27.77823	CAe03368c0fc73a33a15e265e7ab2df183	\N	24			0	inbound	+18557088731	\N	2.31624007225036621	null	new lead		3	\N	\N	2880
2016-08-11 14:17:51.298402+00	2016-12-10 01:01:51.440694+00	1414	completed				+16092596018		13	2016-08-11 14:17:51.296663	2016-08-11 14:18:04.672883	CA2493c4b5acc8240e2045cb5cc4ac9250	\N	50			0	inbound	+18559693782	\N	2.47319197654724121	null	new lead		3	\N	\N	2880
2016-08-24 16:11:02.790135+00	2016-12-10 01:01:54.351663+00	1707	completed				+16092596018		9	2016-08-24 16:11:02.788826	2016-08-24 16:11:11.512815	CA7fac8e1c0f98f2ddac4b436e38c0da93	\N	49			0	inbound	+18559584242	\N	2.25747799873352051	null	new lead		3	\N	\N	2880
2016-08-24 16:09:40.733022+00	2016-12-09 17:10:17.413117+00	1706	completed				+16092596018		24	2016-08-24 16:09:40.731956	2016-08-24 16:10:04.885743	CA07199c2ba5d3b95ba52d366a1b2d33ee	\N	27			0	inbound	+18552716856	\N	6.81543493270874023	null	new lead		3	\N	\N	2880
2016-08-24 16:15:55.092202+00	2016-12-10 00:57:48.461684+00	1711	completed				+16092596018		9	2016-08-24 16:15:55.090867	2016-08-24 16:16:03.970269	CA112049c2c6a255662c890ce8f838f71c	\N	30			0	inbound	+18559652184	\N	1.91331315040588379	null	new lead		3	\N	\N	2880
2016-08-24 16:17:08.573017+00	2016-12-10 01:05:14.588939+00	1713	completed				+16092596018		8	2016-08-24 16:17:08.571929	2016-08-24 16:17:16.435382	CA4261f9c64fc44612265f674f79a5604a	\N	23			0	inbound	+18556216819	\N	1.13209891319274902	null	new lead		3	\N	\N	2880
2016-08-24 16:08:54.373135+00	2016-12-10 01:05:18.400819+00	1705	completed				+16092596018		8	2016-08-24 16:08:54.372089	2016-08-24 16:09:02.688411	CA3f05ae155efababea309b7e6dc40b47b	\N	24			0	inbound	+18557088731	\N	1.06986498832702637	null	new lead		3	\N	\N	2880
2016-08-31 16:28:17.842029+00	2016-11-09 15:40:25.290965+00	1827	completed				+16092596018		9	2016-08-31 16:28:17.841027	2016-08-31 16:28:26.776284	CAff75b7cc1a1ab83d9fe6977098ecaf10	\N	38			0	inbound	+18554920890	\N	2.39061903953552246	null	new lead		3	\N	\N	2880
2016-08-31 16:27:49.161509+00	2016-11-09 15:42:29.378668+00	1826	completed				+16092596018		9	2016-08-31 16:27:49.160438	2016-08-31 16:27:57.8026	CAf8fc600fb78b740cc6325f2720de683c	\N	36			0	inbound	+18554667033	\N	2.67399978637695312	null	new lead		3	\N	\N	2880
2016-08-31 16:24:33.071413+00	2016-11-09 15:42:56.351301+00	1825	completed				+16092596018		12	2016-08-31 16:24:33.069834	2016-08-31 16:24:44.687128	CA1f5117839d05819ec5219281633c33a9	\N	37			0	inbound	+18556371303	\N	2.82693004608154297	null	new lead		3	\N	\N	2880
2016-09-02 18:19:33.304235+00	2016-12-10 00:59:38.158458+00	1864	completed				+16092596018		11	2016-09-02 18:19:33.301834	2016-09-02 18:19:44.744538	CA1544cb046730591a0af4f709d017b2d4	\N	59			0	inbound	+18559695739	\N	0.86279606819152832	null	new lead		3	\N	\N	2880
2016-09-02 14:16:23.489468+00	2016-11-09 15:42:56.351347+00	1855	completed				+16092596018		10	2016-09-02 14:16:23.48789	2016-09-02 14:16:33.411008	CA39a20d25a92fab333c9286ffdb1f7f08	\N	37			0	inbound	+18556371303	\N	\N	null	new lead		3	\N	\N	2880
2016-09-12 14:06:20.843656+00	2016-11-09 15:47:03.908348+00	1998	completed				+16092596018		8	2016-09-12 14:06:20.84199	2016-09-12 14:06:29.079252	CAf1328dcaf408e9501c3b79d93aec68bf	\N	42			0	inbound	+18556349123	\N	2.17890310287475586	null	new lead		3	\N	\N	2880
2016-09-12 13:55:10.60748+00	2016-12-10 01:04:25.504914+00	1997	completed				+16092596018		14	2016-09-12 13:55:10.606428	2016-09-12 13:55:25.059178	CAda2ea9d5a6cf863de64b84c79a5621c7	\N	58			0	inbound	+18556322533	\N	1.02059102058410645	null	new lead		3	\N	\N	2880
2017-12-05 14:01:16.059022+00	2017-12-05 14:01:42.153765+00	7578	missed	Brittany	Jones	Brittany.mchenry@aol.com	+17062661172		\N	2017-12-05 14:01:16.057394	\N	CAc2b693808145fb9afd54a2e5412a8e83	cd009b81-ec25-40d7-a806-e428c0f41965	\N			0	outbound	+17706597466	\N	\N	{}	new lead		14	\N	\N	76
2016-10-11 17:00:16.541776+00	2017-02-11 20:02:07.779627+00	2264	completed				+15703236714		11	2016-10-11 17:00:16.540281	2016-10-11 17:00:27.367297	CAeb17ebd30500d400ac8dc06771cd1680	\N	\N			0	inbound	+18559763215	\N	0.999665975570678711	null	new lead		3	\N	\N	2288
2016-12-05 22:40:08.588398+00	2016-12-05 22:45:31.1528+00	3046	completed				+12145972713		322	2016-12-05 22:40:08.586873	2016-12-05 22:45:30.315885	CAf802d5ffe3cb6bed6cf7302baf89cca9	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE33aa19c2b4bc124042113be093c8485c	0	inbound	+18557240606	49	2.91334390640258789	null	new lead		1	\N	\N	2703
2017-10-03 22:43:21.823764+00	2017-10-03 23:01:12.04212+00	6574	completed				+17068946702		1070	2017-10-03 22:43:21.822035	2017-10-03 23:01:12.026917	CAe97ad97719c77cd0f3aa96560ada490c	\N	154			0	inbound	+17707665699	134	2.83375811576843262	\N	new lead		13	\N	\N	2705
2016-08-03 15:48:11.007328+00	2016-08-05 12:49:39.637716+00	1171	missed	Cherrita	Powell	powellcherri@yahoo.com	+19092358450		\N	2016-08-03 15:48:11.006336	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - autopay		1	\N	\N	2706
2016-10-05 16:06:20.075978+00	2016-12-10 01:01:51.44103+00	2182	completed				+18083824459		415	2016-10-05 16:06:20.074518	2016-10-05 16:13:15.02807	CAcac82f8b5c0b304ce7d8e97bc8a7de21	\N	50			0	inbound	+18559693782	\N	2.12488508224487305	null	new lead		3	\N	\N	2707
2016-08-05 02:53:20.821542+00	2016-08-16 19:31:15.016135+00	1263	missed	Arthur	ivory	arthurivory2013@gmail.com	+16614804014	\n \n6614804014 \n\n I'm interested in your deal\n\n	\N	2016-08-05 02:53:20.819605	\N		a08a3d1d-0557-4ebb-abba-b39da203b6a6	\N			0	outbound	+18556311439	\N	\N	{}	application submitted - autopay		1	\N	\N	2709
2016-09-12 13:54:24.091621+00	2016-12-10 01:04:28.706353+00	1996	completed				+16092596018		28	2016-09-12 13:54:24.089973	2016-09-12 13:54:52.26023	CAb5f59edc5ea0a349201b9204ec30f037	\N	61			0	inbound	+18557579140	\N	0.757722854614257812	null	new lead		3	\N	\N	2880
2016-09-09 20:43:32.202205+00	2016-11-09 15:46:31.903311+00	1983	completed				+16092596018		26	2016-09-09 20:43:32.200591	2016-09-09 20:43:58.12455	CAbb3694e275160e6f130d4638c77fbbbc	\N	39			0	inbound	+18555983849	\N	5.39417600631713867	null	new lead		3	\N	\N	2880
2016-08-24 16:14:13.220597+00	2016-11-09 15:46:24.350059+00	1709	completed				+16092596018		10	2016-08-24 16:14:13.219056	2016-08-24 16:14:23.304245	CAa89fc67d37fbe4078d5a3c4136b0afc6	\N	41			0	inbound	+18557824409	\N	2.71988797187805176	null	new lead		3	\N	\N	2880
2016-09-09 18:36:45.737165+00	2016-12-10 01:04:28.706321+00	1979	completed				+16092596018		54	2016-09-09 18:36:45.735555	2016-09-09 18:37:40.094409	CAcc4450b7de769ae71f63188a650f6841	\N	61			0	inbound	+18557579140	\N	22.9426500797271729	null	new lead		3	\N	\N	2880
2017-08-20 22:35:10.93929+00	2017-08-20 22:35:10.993737+00	6113	missed	Tarsa	Brown	tarsabrown@gmail.com	+16785212511		\N	2017-08-20 22:35:10.937459	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	2881
2017-08-21 15:48:25.334089+00	2017-08-21 15:58:27.480761+00	6126	completed	Tarsa	Brown	tarsabrown@gmail.com	+16785212511		258	2017-08-21 15:48:25.332469	2017-08-21 15:58:26.672861	CA7ed32f2d674951daa9721e7b5b1a6d60	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REcb1007299864c565aff93ca499a81b49	3	outbound	+17704009016	\N	344.081693887710571	{}	new lead		13	\N	\N	2881
2017-09-18 14:13:18.226008+00	2017-09-18 14:19:22.935842+00	6386	completed				+17064249664		365	2017-09-18 14:13:18.22424	2017-09-18 14:19:22.932005	CAd0eaee46078ed481db4ed68ad10b24be	\N	153			0	inbound	+17707665732	133	343.287763833999634	\N	new lead		13	\N	\N	2882
2017-04-14 20:11:08.079712+00	2017-11-29 18:38:49.805031+00	3939	missed				+17322001186		38	2017-04-14 20:11:08.077257	2017-04-14 20:11:46.318093	CAc2bcfc4d310611f9a9fe7e957162d1a3	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	unbound 32808	9	\N	\N	2883
2017-04-18 15:36:50.486894+00	2017-11-29 18:38:49.805427+00	4036	missed				+17322001186		50	2017-04-18 15:36:50.484985	2017-04-18 15:37:40.246071	CA89fb74634b16d2e0849c65a31ff10485	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	unbound 32808	9	\N	\N	2883
2017-05-01 18:44:48.933293+00	2017-11-29 18:38:49.808184+00	4532	missed				+17322001186		65	2017-05-01 18:44:48.930524	2017-05-01 18:45:53.522468	CA990b3ad8645928f995b389fdff4a0cfa	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	unbound 32808	9	\N	\N	2883
2017-05-31 15:48:57.652612+00	2017-11-29 18:38:49.814203+00	5524	completed				+12142809228		116	2017-05-31 15:48:57.650336	2017-05-31 15:50:53.808199	CAffc3b648bef2b232655ca8a439b5f1de	\N	99			0	inbound	+12147122250	\N	4.50880885124206543	\N	new lead	maverick quant	9	\N	\N	2884
2017-05-31 18:04:49.256507+00	2017-11-29 18:38:49.814239+00	5530	completed				+12142809228		57	2017-05-31 18:04:49.254301	2017-05-31 18:05:45.839737	CA4e7a3b34013bf06dd09f83852829d257	\N	105			0	inbound	+12147122250	\N	3.78603410720825195	\N	new lead	maverick quant	9	\N	\N	2884
2017-05-31 18:43:59.623565+00	2017-11-29 18:38:49.814253+00	5533	completed				+12142809228		83	2017-05-31 18:43:59.621458	2017-05-31 18:45:22.379946	CA17eeba980cd4cc0b4aa8cd7fe55c4bf8	\N	107			0	inbound	+12147122250	\N	6.52490615844726562	\N	new lead	maverick quant	9	\N	\N	2884
2017-07-21 14:28:02.033688+00	2017-07-21 14:34:24.876596+00	5823	completed				+14049147800		383	2017-07-21 14:28:02.031959	2017-07-21 14:34:24.873851	CAe41779f70db1e1c0c797745fe5a3cbf2	\N	153			0	inbound	+17707665732	133	329.283546924591064	\N	new lead		13	\N	\N	2885
2017-06-25 04:11:56.24179+00	2017-06-25 04:11:56.491383+00	5652	missed				+14049147800		0	2017-06-25 04:11:56.238471	2017-06-25 04:11:56.420557	CA0c9ac8a69f40165d003549a245223a1c	\N	\N			0	inbound	+17704009016	132	\N	\N	new lead		13	\N	\N	2885
2017-06-25 14:54:25.249367+00	2017-06-25 14:54:25.574949+00	5653	missed				+14049147800		0	2017-06-25 14:54:25.24721	2017-06-25 14:54:25.563238	CAd402eddbf1616dec09ebefb63165e807	\N	\N			0	inbound	+17704009016	132	\N	\N	new lead		13	\N	\N	2885
2017-09-13 18:17:49.363747+00	2017-09-13 18:29:48.951874+00	6332	completed				+14049147800		720	2017-09-13 18:17:49.36182	2017-09-13 18:29:48.947583	CA70fdd14319d42817df7f32dff5aacf61	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE6368e7f72b89ba91978c0eab93caf4c6	0	inbound	+17704009016	132	408.614756107330322	\N	new lead		13	\N	\N	2885
2017-07-01 01:10:08.764309+00	2017-07-01 01:10:14.257336+00	5702	missed				+14049147800		5	2017-07-01 01:10:08.76257	2017-07-01 01:10:14.2425	CAe22b2b12a104aa54c49498bc2e03c741	\N	\N			0	inbound	+17704009016	132	\N	\N	new lead		13	\N	\N	2885
2017-07-01 20:25:46.033315+00	2017-07-01 20:36:23.12577+00	5709	completed				+14049147800		637	2017-07-01 20:25:46.031622	2017-07-01 20:36:23.123413	CA165bd7e5a59b06df46d3859667382fb6	\N	150			0	inbound	+17704009016	132	325.126442909240723	\N	new lead		13	\N	\N	2885
2016-07-20 21:24:26.780321+00	2016-12-10 00:55:45.16494+00	909	completed				+12155305350		147	2016-07-20 21:24:26.777621	2016-07-20 21:26:54.08871	CAa37d7f1cf0962dfe361b8ff70ca41621	\N	24			0	inbound	+18557129406	\N	2.16884994506835938	null	new lead		3	\N	\N	4086
2016-10-05 15:25:35.776634+00	2016-11-09 15:46:28.725004+00	2172	completed				+13019397722		50	2016-10-05 15:25:35.775678	2016-10-05 15:26:25.685054	CA34686775873d6beac4bd5871ce1b0387	\N	40			0	inbound	+18555571474	\N	2.70095705986022949	null	new lead		3	\N	\N	689
2016-10-12 12:53:40.996632+00	2017-02-11 20:02:07.779634+00	2274	completed				+12016834020		169	2016-10-12 12:53:40.994808	2016-10-12 12:56:30.142763	CA2acfb5dbf29255ff48cc07baa22d1432	\N	\N			0	inbound	+18559763286	\N	1.96583986282348633	null	new lead		3	\N	\N	736
2016-10-05 17:31:56.2717+00	2016-12-10 01:05:18.401061+00	2187	completed				+16109487444		38	2016-10-05 17:31:56.270165	2016-10-05 17:32:34.378425	CA41f47cbbfe2b3cfc51aac3262832a10e	\N	24			0	inbound	+18557088731	\N	1.43199491500854492	null	new lead		3	\N	\N	1704
2016-08-08 14:37:38.799224+00	2016-08-09 17:08:20.722591+00	1323	missed	Aaron	Hyatt		+18054902098		49	2016-08-08 14:37:38.796886	2016-08-08 14:38:27.92992	CA8f991fe8c53d3a80f3ba7af632e685e8	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE651bcf78ad4e17545d9712eb642dcb67	0	inbound	+18555343978	48	8.73099398612976074	null	application submitted - autopay		1	\N	\N	2724
2016-08-08 14:03:38.338961+00	2017-01-27 21:12:23.812791+00	1319	completed	Aaron	Hyatt	ahyatt9355@aol.com	+18054902098		51	2016-08-08 14:03:38.336989	2016-08-08 14:04:29.213902		\N	\N			0	outbound	+18555343978	48	\N	null	application submitted - autopay		1	\N	\N	2724
2016-08-07 01:39:01.455047+00	2016-08-09 17:08:20.722559+00	1311	missed	Aaron	Hyatt	ahyatt9355@aol.com	+18054902098	When will i receive notice about my application?	\N	2016-08-07 01:39:01.453438	\N		a08a3d1d-0557-4ebb-abba-b39da203b6a6	\N			0	outbound	+18556311439	\N	\N	{}	application submitted - autopay		1	\N	\N	2724
2017-04-15 16:02:15.818065+00	2017-11-29 18:38:53.214022+00	3957	completed				+12144298464		295	2017-04-15 16:02:15.816168	2017-04-15 16:07:10.318609	CA5d18263cce46dbf21946dc0fe90718c3	\N	107			0	inbound	+12146922088	\N	6.09240818023681641	\N	new lead	global transmis	9	\N	\N	2728
2017-03-02 17:04:02.154045+00	2017-11-29 18:47:25.067544+00	3292	completed				+14696557980		360	2017-03-02 17:04:02.149467	2017-03-02 17:10:01.859048	CA6b596e2c646ef5ab77ba9f5c05de4c23	\N	82			0	inbound	+19728330116	\N	\N	\N	new lead	aguilera noemis	8	\N	\N	2733
2017-07-24 21:17:56.109897+00	2017-07-24 21:29:26.727464+00	5847	completed				+14049147800		691	2017-07-24 21:17:56.107575	2017-07-24 21:29:26.724466	CAed32281922fe7043aeb3f267623d68db	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE67ce1cf7a6055453a7f6f7dbd83c6052	0	inbound	+17704009016	132	373.538424015045166	\N	new lead		13	\N	\N	2885
2017-05-06 18:48:55.923197+00	2017-11-29 18:47:25.06839+00	4810	completed				+12142595291		463	2017-05-06 18:48:55.921382	2017-05-06 18:56:39.002725	CA9d8e1c91306b33e645aed2f42bbf61bb	\N	84		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE021e32eec738326db1505dfe5841aa12	0	inbound	+19728330116	\N	6.29794502258300781	\N	new lead	wireless caller	8	\N	\N	2893
2017-05-06 22:43:46.11462+00	2017-11-29 18:47:25.068404+00	4817	completed				+12142595291		232	2017-05-06 22:43:46.112128	2017-05-06 22:47:38.146947	CAcfe2f8801a5638f9f68c49557af7719d	\N	83		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REaef323dccc0d06a5a82211c69d7f6cb6	0	inbound	+19728330116	\N	7.47018003463745117	\N	new lead	wireless caller	8	\N	\N	2893
2017-05-02 14:30:45.201086+00	2017-11-29 18:38:49.808506+00	4562	completed				+16144308250		212	2017-05-02 14:30:45.19808	2017-05-02 14:34:17.193783	CA535539a2b1f1844214f4d43a73360f6c	\N	133			0	inbound	+12147122250	\N	5.37168288230895996	\N	new lead	auto loft	9	\N	\N	2899
2017-05-02 15:34:58.508388+00	2017-11-29 18:38:49.80854+00	4565	completed				+16144308250		184	2017-05-02 15:34:58.505574	2017-05-02 15:38:02.084157	CAc4f895256a355ee2e65f2af8174a25d1	\N	\N			0	inbound	+12147122250	\N	4.30898690223693848	\N	new lead	auto loft	9	\N	\N	2899
2017-05-02 15:38:18.134383+00	2017-11-29 18:38:49.808574+00	4568	completed				+16144308250		79	2017-05-02 15:38:18.132796	2017-05-02 15:39:37.275334	CA534075fbd49ba1e64fb1797ae157a322	\N	\N			0	inbound	+12147122250	\N	3.3503720760345459	\N	new lead	auto loft	9	\N	\N	2899
2017-12-15 22:50:42.691559+00	2017-12-15 22:52:46.938225+00	7915	completed				+18133309215		123	2017-12-15 22:50:42.689944	2017-12-15 22:52:45.726978	CAf4eb21a3cbff87a2144fa8e927e19988	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE9745936e1a33923911c9e7945d125884	0	inbound	+18558645656	136	2.77326512336730957	\N	new lead		15	\N	\N	2900
2017-12-16 22:23:01.544975+00	2017-12-16 22:24:24.416903+00	7949	completed				+18133309215		82	2017-12-16 22:23:01.543132	2017-12-16 22:24:23.070854	CAe08fa56c0b9817e5c12b4320b26ba35d	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REffd4037893e4bdfd3484fddcca70ba35	0	inbound	+18558645656	136	2.53520989418029785	\N	new lead		15	\N	\N	2900
2017-12-18 16:08:37.46677+00	2017-12-18 16:10:33.134431+00	7968	completed				+18133309215		115	2017-12-18 16:08:37.46538	2017-12-18 16:10:32.265981	CAcff6947b31def5f15be8a731444f323c	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE4f3b70d09a4d4a85cd95185a46a7f132	0	inbound	+18558645656	136	2.89154410362243652	\N	new lead		15	\N	\N	2900
2017-12-18 21:03:16.7104+00	2017-12-18 21:10:21.175252+00	7977	completed				+18133309215		423	2017-12-18 21:03:16.708751	2017-12-18 21:10:19.920452	CA95adbb9b7179040e307ef8e631488cba	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE312307e8eb82c060cfb668caa24e5fba	0	inbound	+18558645656	136	4.36911106109619141	\N	new lead		15	\N	\N	2900
2017-12-18 21:10:32.596592+00	2017-12-18 21:20:34.473659+00	7978	completed				+18133309215		601	2017-12-18 21:10:32.595394	2017-12-18 21:20:33.964055	CA4915dd9d15c28283beb12c299e792f77	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REaadaa15746d2a3c48c9304fea4f88687	0	inbound	+18558645656	136	2.66246199607849121	\N	new lead		15	\N	\N	2900
2017-05-17 16:55:44.363791+00	2017-11-29 18:38:49.811997+00	5157	completed				+17029474081		84	2017-05-17 16:55:44.36223	2017-05-17 16:57:08.133924	CAd75db3e39c632256de58ed944af1ab62	\N	127			0	inbound	+12147122250	\N	2.07496404647827148	\N	new lead	leavitt ins	9	\N	\N	2907
2017-05-17 16:57:04.618001+00	2017-11-29 18:38:49.812004+00	5158	missed				+17029474081		1	2017-05-17 16:57:04.616159	2017-05-17 16:57:05.500348	CAbf4c8559ae5491362026050e79bb6d9e	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	leavitt ins	9	\N	\N	2907
2017-05-17 16:58:03.365641+00	2017-11-29 18:38:49.812011+00	5159	completed				+17029474081		112	2017-05-17 16:58:03.364097	2017-05-17 16:59:55.770903	CAe571dc99dfcb578feef391d5369aa5be	\N	126			0	inbound	+12147122250	\N	1.98285889625549316	\N	new lead	leavitt ins	9	\N	\N	2907
2017-05-25 15:27:03.142889+00	2017-11-29 18:38:49.813352+00	5387	completed				+12146063107		82	2017-05-25 15:27:03.139238	2017-05-25 15:28:25.358969	CA5b05dbd8304df6a4d7a01a6b0e69853e	\N	127			0	inbound	+12147122250	\N	2.06424784660339355	\N	new lead	johnson terranc	9	\N	\N	85
2017-05-25 15:30:35.045778+00	2017-11-29 18:38:49.813359+00	5388	completed				+12146063107		196	2017-05-25 15:30:35.043694	2017-05-25 15:33:50.948621	CA0d77fd5efe52d9b333c070b71bec1b0c	\N	124			0	inbound	+12147122250	\N	2.00377511978149414	\N	new lead	johnson terranc	9	\N	\N	85
2016-10-12 15:51:56.299441+00	2016-12-10 01:01:51.441107+00	2278	completed				+16199627172		395	2016-10-12 15:51:56.297809	2016-10-12 15:58:31.564985	CAad2d8c11132c17c4dd27c54098d75f22	\N	50			0	inbound	+18559693782	\N	2.31799411773681641	null	new lead		3	\N	\N	354
2017-05-25 16:00:55.373591+00	2017-11-29 18:38:49.81338+00	5391	completed				+18009150927		56	2017-05-25 16:00:55.371317	2017-05-25 16:01:51.526535	CA713894a3c4e7d89d4ea82cdd33f73923	\N	125			0	inbound	+12147122250	\N	1.79377388954162598	\N	new lead	800 service	9	\N	\N	828
2016-10-16 17:10:14.035957+00	2016-10-17 03:11:25.51454+00	2303	missed				+13146621162		63	2016-10-16 17:10:14.034136	2016-10-16 17:11:16.739726	CAf46864a7b3d853a5e1dcf9bcf2d21e93	\N	\N			0	inbound	+18557854273	\N	\N	null	new lead		3	\N	\N	1689
2017-05-25 15:56:31.225395+00	2017-11-29 18:38:49.813373+00	5390	completed				+19497578901		74	2017-05-25 15:56:31.222444	2017-05-25 15:57:45.335974	CAf85a44f3f36f048d3b68eb1c860fcdc2	\N	127			0	inbound	+12147122250	\N	1.03827309608459473	\N	new lead	george neece	9	\N	\N	1710
2017-05-25 16:36:03.962121+00	2017-11-29 18:38:49.813388+00	5392	completed				+12144460011		78	2017-05-25 16:36:03.960193	2017-05-25 16:37:21.51038	CA838e0d90c6316c7e2743480c1845c1b5	\N	127			0	inbound	+12147122250	\N	2.10819101333618164	\N	new lead	dallas       tx	9	\N	\N	1965
2016-10-15 21:36:12.987208+00	2016-12-09 17:06:57.830402+00	2301	missed				+13155072167		0	2016-10-15 21:36:12.985709	2016-10-15 21:36:13.115222	CAaadb18a0a64f0a15ed0c0e4d636cd8fc	\N	\N			0	inbound	+18552000227	\N	\N	null	new lead		3	\N	\N	2453
2016-10-05 15:36:21.928761+00	2016-12-10 01:03:26.83613+00	2176	completed				+19734708986		624	2016-10-05 15:36:21.927361	2016-10-05 15:46:46.114691	CA65fdb70feb677e2927e7da01ee3bc415	\N	68			0	inbound	+18553793442	\N	0.488167047500610352	null	new lead		3	\N	\N	2581
2016-10-17 23:16:10.832419+00	2016-12-10 01:01:00.20044+00	2309	missed				+15595158077		37	2016-10-17 23:16:10.830377	2016-10-17 23:16:47.882641	CA666a58247f88b42f8d940dc539a7bdb3	\N	\N			0	inbound	+18557860909	\N	\N	null	new lead		3	\N	\N	405
2016-08-04 14:54:43.260573+00	2017-11-29 18:31:41.490646+00	1203	completed				+17403047826		45	2016-08-04 14:54:43.259545	2016-08-04 14:55:28.697868	CAa7da35388062dd59572d86a2c9278cd7	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE8a67d71c5b28a662d6aaf91ab9adbc00	0	inbound	+18552959002	\N	20.4075040817260742	null	application submitted - autopay		1	\N	\N	2749
2016-09-12 01:02:24.587346+00	2016-12-10 01:01:51.44094+00	1994	completed				+16193925829		282	2016-09-12 01:02:24.585217	2016-09-12 01:07:06.785916	CA6a957719dae75a94268e572e7c66198c	\N	50			0	inbound	+18559693782	\N	2.07098793983459473	null	new lead		3	\N	\N	2750
2017-07-05 16:42:41.548064+00	2017-07-05 16:45:38.322315+00	5716	completed				+18327635434		176	2017-07-05 16:42:41.545828	2017-07-05 16:45:37.56013	CA7f2d0df009b87a3c7c142585336fee70	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REa0c3dde554008ac0a6d7f95116b86e7c	0	inbound	+18177569010	124	7.09123110771179199	\N	new lead	peterson anthon	12	\N	\N	2754
2016-07-20 16:45:51.648722+00	2016-12-09 17:06:53.905737+00	906	completed				+12156381202		278	2016-07-20 16:45:51.647301	2016-07-20 16:50:29.551685	CAe7ea2455b0c111a0ba56d5b43556fdda	\N	21			0	inbound	+18558021330	\N	3.14445304870605469	null	new lead		3	\N	\N	2756
2017-06-14 16:12:00.926835+00	2017-06-14 16:12:20.56497+00	5581	completed				+12034547303		19	2017-06-14 16:12:00.924159	2017-06-14 16:12:19.761593	CA8b3cbf6399c31ceacc77e3664b7c3fb9	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE201b01d60c8a5a88b7a9efaf109d1b4f	0	inbound	+18557240606	49	3.98956394195556641	\N	new lead		1	\N	\N	2758
2017-05-17 17:18:01.784189+00	2017-11-29 18:38:49.812018+00	5160	completed				+17029474081		87	2017-05-17 17:18:01.780459	2017-05-17 17:19:29.267234	CA3fc2afe6f73b3355d559630ebe7a9bb5	\N	107			0	inbound	+12147122250	\N	4.54862689971923828	\N	new lead	leavitt ins	9	\N	\N	2907
2016-10-05 15:25:38.436058+00	2016-12-10 01:01:00.200177+00	2173	completed				+17602209498		172	2016-10-05 15:25:38.435147	2016-10-05 15:28:30.444724	CA426b8e909baeeb6f39b24bd33c904e23	\N	57			0	inbound	+18557860909	\N	5.03734898567199707	null	new lead		3	\N	\N	2910
2017-08-03 18:22:49.962165+00	2017-08-03 18:28:53.092189+00	5926	missed	Christy	Rivard	Crivard1975@yahoo.com	+17063912144		0	2017-08-03 18:22:49.96062	2017-08-03 18:28:53.090286	CAa9bc17f18a6eb057d4d9a62bf831bd55	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			3	outbound	+17704009016	\N	14.9636671543121338	{}	new lead		13	\N	\N	2911
2016-10-12 16:12:17.718803+00	2016-12-09 17:10:17.413621+00	2280	completed				+16107596189		140	2016-10-12 16:12:17.717623	2016-10-12 16:14:37.756969	CAff4341e17492236ffdc9aaf8a5aea206	\N	27			0	inbound	+18552716856	\N	6.56235003471374512	null	new lead		3	\N	\N	2912
2016-11-04 02:57:55.588793+00	2016-11-04 02:57:55.612044+00	2681	missed	SCOTT	LIENEMANN	azfstop@gmail.com	+14805430351		\N	2016-11-04 02:57:55.587604	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2914
2016-11-10 02:05:19.922613+00	2016-11-10 02:05:19.953078+00	2827	missed	Gary	Baldwin	hippiecow@icloud.com	+19193754975		\N	2016-11-10 02:05:19.920596	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2916
2017-03-01 18:51:50.668479+00	2017-11-29 18:47:25.06748+00	3266	completed				+14698775050		451	2017-03-01 18:51:50.66514	2017-03-01 18:59:21.931065	CA53a0a939bd9c97377628c04c6cc8ccdb	\N	83		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REf751f0b8c0642f9c2fa3a7262fac33a3	0	inbound	+19728330116	\N	358.3853600025177	\N	new lead	SOBYAK FRANK	8	\N	\N	2920
2017-03-01 19:13:01.573263+00	2017-11-29 18:47:25.067487+00	3267	completed				+14698775050		1828	2017-03-01 19:13:01.570528	2017-03-01 19:43:29.283732	CAa743e639c08d7f269086df1b7cb0565d	\N	82		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE65ad070a322aac76a9238b70bf34ec8c	0	inbound	+19728330116	\N	1363.3114070892334	\N	new lead	SOBYAK FRANK	8	\N	\N	2920
2017-03-01 20:26:07.162715+00	2017-11-29 18:47:25.067516+00	3271	completed				+14698775050		13	2017-03-01 20:26:07.158729	2017-03-01 20:26:20.616599	CA98ef00ea09bd108775ca96b9faccb528	\N	82			0	inbound	+19728330116	\N	5.95658588409423828	\N	new lead	SOBYAK FRANK	8	\N	\N	2920
2017-03-01 20:26:57.680834+00	2017-11-29 18:47:25.067523+00	3272	completed				+14698775050		366	2017-03-01 20:26:57.679572	2017-03-01 20:33:03.939552	CA7f56cb2e3daa2c00caa40451feb256f6	\N	82		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REeade3766a59edb0d7dc3b142ebb5f47c	0	inbound	+19728330116	\N	319.867938041687012	\N	new lead	SOBYAK FRANK	8	\N	\N	2920
2017-12-15 14:40:22.877722+00	2017-12-15 14:47:59.160542+00	7888	completed				+16783288238		455	2017-12-15 14:40:22.875969	2017-12-15 14:47:57.930336	CA10d12079d0c8f2964946178d5d97178d	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REed59be62b11b99779b1696ae0ab02379	0	inbound	+17704009016	132	365.465840101242065	\N	new lead	toe roosevelt	13	\N	\N	2922
2017-12-15 17:20:05.982634+00	2017-12-15 17:22:26.56495+00	7894	completed				+16783288238		138	2017-12-15 17:20:05.980796	2017-12-15 17:22:24.329319	CA61d388866e2861a781f745b43c0182c8	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REb3ea17e3eecc500bfba10d6ba16d3971	0	inbound	+17704009016	132	10.2059450149536133	\N	new lead	toe roosevelt	13	\N	\N	2922
2017-11-06 17:56:24.842743+00	2017-11-06 17:57:30.42109+00	6945	completed				+17064108453		66	2017-11-06 17:56:24.840837	2017-11-06 17:57:30.403579	CA7e05d48d3a5ff1d8170226cf8d9491bb	\N	150			0	inbound	+17707665732	133	12.7692949771881104	\N	new lead		13	\N	\N	2940
2017-11-06 18:00:01.035186+00	2017-11-06 18:03:55.196677+00	6946	completed	Halisha	Beasley	Lump161312@gmail.com	+17064108453		217	2017-11-06 18:00:01.033619	2017-11-06 18:03:55.169485	CAd560534fbff38d24b9ce5ca9c6256ca6	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE2a1dab0ea6d7ee119194545418f14cd6	1	outbound	+17704009016	\N	15.2497491836547852	{}	new lead		13	\N	\N	2940
2016-08-02 16:34:49.832765+00	2016-12-10 00:55:45.164997+00	1123	completed				+16109331740		17	2016-08-02 16:34:49.831763	2016-08-02 16:35:06.927982	CAe227bbbc293cce51244c99c48b28438d	\N	24			0	inbound	+18557129406	\N	1.89815902709960938	null	new lead		3	\N	\N	2941
2017-04-25 20:05:47.813869+00	2017-11-29 18:38:53.214546+00	4302	completed				+18182122794		175	2017-04-25 20:05:47.811763	2017-04-25 20:08:43.125268	CA8cea9cd41d066541b7cbce886fe455db	\N	107			0	inbound	+12146922088	\N	6.76226902008056641	\N	new lead	marcusmillichap	9	\N	\N	2943
2017-10-07 15:22:52.20651+00	2017-10-07 15:24:24.705569+00	6616	completed				+18174955381		91	2017-10-07 15:22:52.204728	2017-10-07 15:24:23.583426	CA831f8195457031de4d6cd33e889de51a	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REf3a0c905c76ad42885a11113a2b284b4	0	inbound	+18177569010	124	8.3146979808807373	\N	new lead	faison tamecha	12	\N	\N	2944
2017-05-25 17:43:18.111892+00	2017-11-29 18:38:49.813445+00	5400	completed				+18173994056		113	2017-05-25 17:43:18.109852	2017-05-25 17:45:11.00179	CAa967bee59cb2f29cd8650757d6b548fb	\N	124			0	inbound	+12147122250	\N	1.25197982788085938	\N	new lead	manheim	9	\N	\N	18
2016-10-26 18:18:37.356766+00	2016-12-10 01:03:35.620618+00	2351	completed				+12012458134		21	2016-10-26 18:18:37.354119	2016-10-26 18:18:58.738112	CA95c2d6cbc252bbdd4542a1467cce9de2	\N	66			0	inbound	+18557376565	\N	1.72077393531799316	null	new lead		3	\N	\N	29
2017-05-25 17:18:49.684977+00	2017-11-29 18:38:49.81343+00	5398	completed				+12147073018		54	2017-05-25 17:18:49.682492	2017-05-25 17:19:44.082595	CA38f74405f0d65a8075d2f949f1d6faf6	\N	103			0	inbound	+12147122250	\N	5.11708307266235352	\N	new lead	griffin rodric	9	\N	\N	278
2016-10-28 21:13:24.834154+00	2016-12-10 00:57:48.461887+00	2366	completed				+13104573263		139	2016-10-28 21:13:24.832601	2016-10-28 21:15:43.434977	CA60daf7d46dc0787c55a45c3300c5de93	\N	30			0	inbound	+18559652184	\N	1.92962813377380371	null	new lead		3	\N	\N	923
2017-04-13 00:01:35.950971+00	2017-11-29 18:47:25.068017+00	3850	completed				+14697445787		163	2017-04-13 00:01:35.948126	2017-04-13 00:04:19.350892	CA3cc07d82d2b1bb9980e3d1ba55dfa709	\N	83		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REea7e87806b858cceaafa00d253e4ff69	0	inbound	+19728330116	\N	6.60726690292358398	\N	new lead	cell phone   tx	8	\N	\N	2788
2017-08-17 17:26:29.847318+00	2017-08-17 17:27:34.890089+00	6069	completed	April	Couch	Adcfinancial16@gmail.com	+17062062102		55	2017-08-17 17:26:29.845592	2017-08-17 17:27:33.55731	CAc3f82de59d9ece26a5e10aed3b3554f4	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE11e3aead65308f59e0ebcffd88058090	1	outbound	+17704009016	\N	7.71910595893859863	{}	new lead		13	\N	\N	2789
2017-04-24 17:10:40.666758+00	2017-11-29 18:47:25.068277+00	4251	completed				+12144625725		161	2017-04-24 17:10:40.66484	2017-04-24 17:13:22.072476	CA1350189cdb7f22cbdc78584f02337b35	\N	84		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REec45e212c1cf6b786c0c735fec0465ee	0	inbound	+19728330116	\N	15.970966100692749	\N	new lead	birdsall wendy 	8	\N	\N	2798
2017-04-24 17:29:47.896968+00	2017-11-29 18:47:25.068284+00	4253	completed				+18173448471		392	2017-04-24 17:29:47.895252	2017-04-24 17:36:20.036166	CAc7f9e01bc8d511808f4e47af840f6655	\N	117		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE67f2b68027f11662ee6f10ac48ee1bde	0	inbound	+19728330116	\N	28.2304389476776123	\N	new lead	hoskins carrie	8	\N	\N	2799
2017-04-24 19:53:54.191296+00	2017-11-29 18:47:25.068291+00	4260	completed				+18173448471		499	2017-04-24 19:53:54.188768	2017-04-24 20:02:13.442833	CAa4a57370818f8d2155efd9ef909dddd8	\N	83		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE692bb2529ae5803eb207ecbb338d15b6	0	inbound	+19728330116	\N	14.0960721969604492	\N	new lead	hoskins carrie	8	\N	\N	2799
2016-11-06 19:13:58.693327+00	2016-12-09 17:06:53.906091+00	2771	completed				+12156451483		37	2016-11-06 19:13:58.69059	2016-11-06 19:14:35.854901	CAa39f024cdb56aa3a50e2d1728335966d	\N	21			0	inbound	+18558021330	\N	2.98061800003051758	null	new lead		3	\N	\N	2804
2016-08-10 19:31:25.969069+00	2017-01-27 21:12:23.813076+00	1394	completed	Nancy	koch		+16612776711		54	2016-08-10 19:31:25.967321	2016-08-10 19:32:20.221698		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	2806
2016-08-03 21:18:56.352913+00	2017-11-29 18:31:37.368589+00	1188	completed	Nancy	koch		+16612776711		264	2016-08-03 21:18:56.351047	2016-08-03 21:23:20.479289	CAd5e8a34dbbef8efc16d7aae02b5f9dfc	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REe2d445c242a6fef50818d85b1f529baa	0	inbound	+18555472453	\N	10.989346981048584	null	general interest		1	\N	\N	2806
2017-07-27 19:11:02.759181+00	2017-07-27 19:11:02.809816+00	5864	missed	Michael 	Lopez	lsara_07@live.com	+16026390188		\N	2017-07-27 19:11:02.756167	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2947
2017-05-25 21:24:28.503655+00	2017-11-29 18:38:49.813516+00	5418	completed				+14092566143		45	2017-05-25 21:24:28.501445	2017-05-25 21:25:13.61687	CA89558b262eb239dfa11bb5dda3bd1d08	\N	105			0	inbound	+12147122250	\N	4.72205209732055664	\N	new lead	arser marian   	9	\N	\N	338
2017-05-25 21:26:26.940093+00	2017-11-29 18:38:49.813523+00	5419	completed				+14092566143		81	2017-05-25 21:26:26.938433	2017-05-25 21:27:47.709687	CA77ef287560e0697903d7db91771c09bc	\N	127			0	inbound	+12147122250	\N	1.28910207748413086	\N	new lead	arser marian   	9	\N	\N	338
2017-05-25 21:32:07.542785+00	2017-11-29 18:38:49.813557+00	5422	completed				+14092566143		65	2017-05-25 21:32:07.541208	2017-05-25 21:33:12.700077	CA44316be06dcc7479d5690ba2b7b88c8a	\N	103			0	inbound	+12147122250	\N	9.32881999015808105	\N	new lead	arser marian   	9	\N	\N	338
2017-03-17 19:38:56.784635+00	2017-11-29 18:38:53.212531+00	3477	completed				+12144460011		197	2017-03-17 19:38:56.781843	2017-03-17 19:42:13.548121	CA3d014ebe6ee94103149d89ea8aa943ce	\N	107			0	inbound	+12146922088	\N	5.6537630558013916	\N	new lead		9	\N	\N	1965
2016-11-25 14:54:57.599139+00	2017-02-11 20:02:07.779662+00	2978	completed				+12014063529		98	2016-11-25 14:54:57.597559	2016-11-25 14:56:35.706541	CA2e713dcfadea4e39ff22befbca8f0d27	\N	\N			0	inbound	+18559763286	\N	2.13278603553771973	null	new lead		3	\N	\N	2099
2017-05-25 19:50:25.667898+00	2017-11-29 18:38:49.813501+00	5416	completed				+12143346458		64	2017-05-25 19:50:25.666323	2017-05-25 19:51:29.797163	CAe87587c54941f3e8ffa5777353b530ef	\N	124			0	inbound	+12147122250	\N	1.44795393943786621	\N	new lead	cell phone   tx	9	\N	\N	2687
2016-11-18 20:01:55.347841+00	2017-02-11 20:02:07.779655+00	2946	completed				+19085315667		208	2016-11-18 20:01:55.346665	2016-11-18 20:05:23.66543	CA3a843b771751a6f23fba8934f0ca0986	\N	\N			0	inbound	+18559763286	\N	2.54498505592346191	null	new lead		3	\N	\N	2803
2017-05-18 20:34:52.542476+00	2017-11-29 18:38:49.812224+00	5221	missed				+18554752729		35	2017-05-18 20:34:52.540525	2017-05-18 20:35:27.678366	CAd326b60fb71f0c2c42228ecb520d558e	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	800 service	9	\N	\N	3629
2017-05-26 18:05:25.754263+00	2017-11-29 18:38:49.813657+00	5439	completed				+18172711966		49	2017-05-26 18:05:25.752063	2017-05-26 18:06:15.114133	CA76137b9488f8c11dae5ba3c917253007	\N	105			0	inbound	+12147122250	\N	9.3490140438079834	\N	new lead	cell phone   tx	9	\N	\N	1
2017-05-26 18:08:05.343359+00	2017-11-29 18:38:49.813671+00	5441	completed				+18172711966		80	2017-05-26 18:08:05.342144	2017-05-26 18:09:25.765981	CAc37b3d40e48443a5985b2b4523e5a332	\N	125			0	inbound	+12147122250	\N	1.04665899276733398	\N	new lead	cell phone   tx	9	\N	\N	1
2017-05-30 16:29:54.407056+00	2017-11-29 18:38:49.814018+00	5496	completed				+14699698616		81	2017-05-30 16:29:54.40472	2017-05-30 16:31:15.808932	CA9bee52627dfdde22ec8e5cd566343963	\N	127			0	inbound	+12147122250	\N	1.17871809005737305	\N	new lead	barrett dustin 	9	\N	\N	476
2017-05-30 15:10:14.627769+00	2017-11-29 18:38:49.81399+00	5492	completed				+13134328641		65	2017-05-30 15:10:14.62508	2017-05-30 15:11:19.160681	CA06bbe9589afcd91a21b7444bf1fbf2d7	\N	125			0	inbound	+12147122250	\N	0.917534828186035156	\N	new lead	southfield  mi	9	\N	\N	1694
2017-05-30 15:11:17.291668+00	2017-11-29 18:38:49.813997+00	5493	completed				+13134328641		107	2017-05-30 15:11:17.288751	2017-05-30 15:13:04.05781	CAb64eb43e3c46a1f779d5228616d9f367	\N	124			0	inbound	+12147122250	\N	0.954236030578613281	\N	new lead	southfield  mi	9	\N	\N	1694
2017-05-27 18:21:09.350413+00	2017-11-29 18:38:49.813905+00	5472	completed				+14693549251		103	2017-05-27 18:21:09.348026	2017-05-27 18:22:52.59089	CA0842209bf4496450e6d04e80b086aebd	\N	126			0	inbound	+12147122250	\N	0.880937814712524414	\N	new lead	cell phone   tx	9	\N	\N	1872
2017-05-30 20:21:04.527948+00	2017-11-29 18:38:49.814118+00	5510	completed				+14696206126		402	2017-05-30 20:21:04.525955	2017-05-30 20:27:46.346092	CAaa110e0af1017622a9e17d506c95d13d	\N	107			0	inbound	+12147122250	\N	6.81066513061523438	\N	new lead	mariscal r	9	\N	\N	204
2017-05-30 21:41:47.222482+00	2017-11-29 18:38:49.814139+00	5514	completed				+19728003374		69	2017-05-30 21:41:47.220094	2017-05-30 21:42:56.157096	CAa155e5801e37b871f6a1b0b2d3db5af3	\N	124			0	inbound	+12147122250	\N	2.00797605514526367	\N	new lead	jallah ivor    	9	\N	\N	566
2016-11-01 16:26:28.400218+00	2016-12-09 17:08:31.908836+00	2472	completed				+18667809456		131	2016-11-01 16:26:28.39854	2016-11-01 16:28:38.950444	CAa39cbd9747a3f64935873a7e8a5975e4	\N	67			0	inbound	+18552576059	\N	2.23949980735778809	null	new lead		3	\N	\N	690
2017-05-30 19:27:54.822756+00	2017-11-29 18:38:49.814096+00	5507	completed				+19039313074		82	2017-05-30 19:27:54.819025	2017-05-30 19:29:16.966115	CA16e5dafab4e1db66ac06f3dcf3ccf8e3	\N	124			0	inbound	+12147122250	\N	1.47068405151367188	\N	new lead	thomas david   	9	\N	\N	885
2017-06-01 20:14:34.137699+00	2017-11-29 18:38:49.814417+00	5558	completed				+16145603597		79	2017-06-01 20:14:34.133178	2017-06-01 20:15:53.095251	CAb7b2bb58a7403657c7885487f8af835b	\N	105			0	inbound	+12147122250	\N	3.52625584602355957	\N	new lead	cell phone   oh	9	\N	\N	269
2017-05-31 20:32:18.470514+00	2017-11-29 18:38:49.814288+00	5539	completed				+19726397710		114	2017-05-31 20:32:18.468506	2017-05-31 20:34:12.222953	CA6c7685da00baefcaad97a8aadc74379b	\N	127			0	inbound	+12147122250	\N	1.24448204040527344	\N	new lead	luna renaida   	9	\N	\N	434
2017-05-31 19:50:50.560608+00	2017-11-29 18:38:49.814267+00	5536	completed				+12147358615		80	2017-05-31 19:50:50.558944	2017-05-31 19:52:10.190708	CA56425c5cccac18f550eae115567506f0	\N	124			0	inbound	+12147122250	\N	2.17326593399047852	\N	new lead	dallas  tx	9	\N	\N	854
2017-05-31 19:52:04.49534+00	2017-11-29 18:38:49.814274+00	5537	completed				+12147358615		63	2017-05-31 19:52:04.493815	2017-05-31 19:53:07.728728	CAb5d5ab0e0db8d057b8c2a238696e92bd	\N	105			0	inbound	+12147122250	\N	7.16819095611572266	\N	new lead	dallas  tx	9	\N	\N	854
2017-06-01 16:50:59.250456+00	2017-11-29 18:38:49.814353+00	5548	completed				+14167815443		216	2017-06-01 16:50:59.247753	2017-06-01 16:54:34.969686	CA3db7d1add4a2eb407d47ca1626b8c661	\N	99			0	inbound	+12147122250	\N	8.41173100471496582	\N	new lead	toronto  on	9	\N	\N	1370
2017-05-31 19:47:49.577581+00	2017-11-29 18:38:49.81426+00	5535	completed				+14699123592		131	2017-05-31 19:47:49.575216	2017-05-31 19:50:00.761039	CA7e7527952e641dc30b9a1b9eb3170c7a	\N	126			0	inbound	+12147122250	\N	2.09925699234008789	\N	new lead	caliber homes	9	\N	\N	1786
2017-06-01 17:36:12.883443+00	2017-11-29 18:38:49.814381+00	5553	completed				+18582637031		116	2017-06-01 17:36:12.882275	2017-06-01 17:38:08.5468	CA8365906e208ec3a5085bdf2a24d5e946	\N	126			0	inbound	+12147122250	\N	1.31065797805786133	\N	new lead	jakes motorcar	9	\N	\N	2522
2017-08-17 20:30:31.927031+00	2017-08-17 20:31:23.342022+00	6079	completed				+14043527300		51	2017-08-17 20:30:31.924797	2017-08-17 20:31:23.328737	CA4cda844b8272ce18931ef331afac3230	\N	154			0	inbound	+17707665699	134	0.903587102890014648	\N	new lead		13	\N	\N	2950
2017-06-27 16:20:58.161743+00	2017-11-29 18:38:49.814489+00	5670	missed				+266696687		16	2017-06-27 16:20:58.159359	2017-06-27 16:21:13.776234	CA1bbf3c0f6054c1c54ccc4b0e21589f51	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	restricted	9	\N	\N	\N
2017-03-01 23:47:07.900918+00	2017-11-29 18:38:53.211688+00	3283	missed				+19725229856		12	2017-03-01 23:47:07.898424	2017-03-01 23:47:20.173271	CA16c5b5c436f23f32747a82360813a072	\N	\N			0	inbound	+12146922088	\N	\N	\N	new lead	GENNESIS AUTOMO	9	\N	\N	814
2017-03-01 22:29:12.584493+00	2017-11-29 18:38:53.21165+00	3279	completed				+16823004455		17	2017-03-01 22:29:12.581798	2017-03-01 22:29:29.872335	CA0a4117d28aaaa3b02c6fe50b56fc5c5c	\N	\N			0	inbound	+12146922088	\N	8.78580904006958008	\N	new lead	JOHNSON ETTA	9	\N	\N	1293
2017-03-02 21:47:32.864764+00	2017-11-29 18:38:53.211817+00	3312	missed				+12148129395		83	2017-03-02 21:47:32.863216	2017-03-02 21:48:56.136529	CA396ea164e9a1eeb52e7dfca6fbd83d04	\N	\N		https://api.twilio.com/2010-04-01/Accounts/AC5422b9b221417a7a84556a92f6edc492/Recordings/RE73d01abe24dc7b229ad509a84017092a	0	inbound	+12146922088	\N	34.5877950191497803	\N	new lead	empire exotic m	9	\N	\N	1569
2016-11-12 12:43:59.945966+00	2016-12-09 17:08:31.908894+00	2874	completed				+16094300845		192	2016-11-12 12:43:59.944215	2016-11-12 12:47:11.854262	CA75f404839c9c99c56d009abdf98c5a63	\N	67			0	inbound	+18552576059	\N	2.00137996673583984	null	new lead		3	\N	\N	495
2017-03-08 21:42:38.121452+00	2017-11-29 18:38:53.211903+00	3349	completed				+19494363261		26	2017-03-08 21:42:38.119848	2017-03-08 21:43:04.155987	CAca7f78899c60c4eb33a3617a5b5e9ba4	\N	\N			0	inbound	+12146922088	\N	6.9486091136932373	\N	new lead	hsu angela     	9	\N	\N	880
2017-03-08 21:43:33.424609+00	2017-11-29 18:38:53.211911+00	3350	completed				+19494363261		26	2017-03-08 21:43:33.423249	2017-03-08 21:43:59.041912	CA38c51bba95d9dfde23a664d36da8d189	\N	\N			0	inbound	+12146922088	\N	7.8599998950958252	\N	new lead	hsu angela     	9	\N	\N	880
2017-03-09 17:47:59.685882+00	2017-11-29 18:38:53.211961+00	3360	completed				+14699895605		387	2017-03-09 17:47:59.683732	2017-03-09 17:54:27.11721	CA4324b3bbb7e35dd668fd948cad7bc116	\N	107			0	inbound	+12146922088	\N	7.49240493774414062	\N	new lead	trucking llc a	9	\N	\N	971
2017-03-21 01:28:06.783891+00	2017-11-29 18:38:53.2127+00	3517	completed				+266696687		23	2017-03-21 01:28:06.781823	2017-03-21 01:28:29.974307	CA1d0e9e5792bc08ec861319433c543648	\N	99			0	inbound	+12146922088	\N	6.38428711891174316	\N	new lead		9	\N	\N	\N
2016-11-12 18:38:33.588432+00	2016-12-10 01:01:00.200606+00	2878	completed				+16195926498		309	2016-11-12 18:38:33.586979	2016-11-12 18:43:42.361658	CA451c8b1468302336bc6604dcd153c8ba	\N	57			0	inbound	+18557860909	\N	3.86850714683532715	null	new lead		3	\N	\N	7
2016-12-05 14:41:21.152918+00	2016-12-09 17:10:17.413735+00	3038	completed				+16107593183		153	2016-12-05 14:41:21.150285	2016-12-05 14:43:53.916998	CA16a76d9650111b7d3c33c3eb4ecb0dd6	\N	27			0	inbound	+18552716856	\N	6.58572196960449219	null	new lead		3	\N	\N	709
2017-03-27 15:19:32.548259+00	2017-11-29 18:38:53.212951+00	3584	completed				+12106838180		380	2017-03-27 15:19:32.547101	2017-03-27 15:25:52.914409	CA04671dab9b7dc43f436c144652f8f58a	\N	\N			0	inbound	+12146922088	\N	4.43764400482177734	\N	new lead	montano shirley	9	\N	\N	15
2017-04-01 14:23:53.406846+00	2017-11-29 18:38:53.21322+00	3651	completed				+19726793334		196	2017-04-01 14:23:53.40468	2017-04-01 14:27:09.5383	CA608c2e08af8c344d09c734e7b81b5187	\N	\N			0	inbound	+12146922088	\N	10.6626369953155518	\N	new lead	sewell advisory	9	\N	\N	34
2017-04-07 23:27:09.560092+00	2017-11-29 18:38:53.213454+00	3736	completed				+18178915296		390	2017-04-07 23:27:09.558377	2017-04-07 23:33:39.810943	CAac8f2b40ac90d93f85777dc503da8444	\N	\N			0	inbound	+12146922088	\N	4.7939448356628418	\N	new lead	alaa ajabri	9	\N	\N	810
2017-04-04 13:57:59.793585+00	2017-11-29 18:38:53.213316+00	3681	completed				+12143958871		24	2017-04-04 13:57:59.791734	2017-04-04 13:58:24.229154	CA471405b8e4766d1dbda1d79df52823f3	\N	\N			0	inbound	+12146922088	\N	6.88978004455566406	\N	new lead	fort worth  tx	9	\N	\N	1175
2017-04-09 16:39:38.47531+00	2017-11-29 18:38:53.213623+00	3754	missed				+12145778155		3	2017-04-09 16:39:38.473649	2017-04-09 16:39:41.262781	CAf79dfc527ead72a7de29df7bd0643304	\N	\N			0	inbound	+12146922088	\N	\N	\N	new lead	marrero michael	9	\N	\N	583
2017-04-10 21:54:29.077372+00	2017-11-29 18:38:53.213695+00	3775	completed				+19725229856		25	2017-04-10 21:54:29.07562	2017-04-10 21:54:54.373641	CA5f09e37c76a5d5afcaea2780be71e065	\N	99			0	inbound	+12146922088	\N	3.78397488594055176	\N	new lead	gennesis automo	9	\N	\N	814
2016-11-05 12:39:39.553894+00	2016-12-10 01:02:30.610675+00	2742	completed				+12035006331		11	2016-11-05 12:39:39.550899	2016-11-05 12:39:50.632929	CAba444a3328fd49e8ab9f33111afa0424	\N	75			0	inbound	+18555208916	\N	5.03571796417236328	null	new lead		3	\N	\N	403
2017-08-13 21:40:47.654552+00	2017-11-29 18:38:53.215646+00	6013	completed				+266696687		18	2017-08-13 21:40:47.652855	2017-08-13 21:41:05.223823	CAa191c7ac04d66b517639d893e3aa87ca	\N	133		https://api.twilio.com/2010-04-01/Accounts/AC5422b9b221417a7a84556a92f6edc492/Recordings/RE7eff0f6d3ae34520945e50c1c5858462	0	inbound	+12146922088	\N	10.0355792045593262	\N	new lead	restricted	9	\N	\N	\N
2016-08-16 12:56:45.56336+00	2016-11-09 15:43:21.094516+00	1536	completed				+19042211703		15	2016-08-16 12:56:45.562018	2016-08-16 12:57:00.129598	CAccb4c3afd71c6c64044b375aff6894ab	\N	35			0	inbound	+18555291701	\N	2.47494387626647949	null	new lead		3	\N	\N	1449
2017-06-01 14:28:52.904651+00	2017-11-29 18:38:53.215639+00	5545	completed				+12145284844		40	2017-06-01 14:28:52.899835	2017-06-01 14:29:32.951332	CAfee59b7c44d961691e7c1548602a0cfc	\N	133		https://api.twilio.com/2010-04-01/Accounts/AC5422b9b221417a7a84556a92f6edc492/Recordings/REcd33184ce9f8e35ace74546c9b5b7ea0	0	inbound	+12146922088	\N	8.52101397514343262	\N	new lead	eisenlohr john 	9	\N	\N	2445
2016-08-03 16:17:16.677683+00	2017-11-29 18:31:37.368533+00	1172	completed				+16612776711		45	2016-08-03 16:17:16.673792	2016-08-03 16:18:01.990051	CAe670978aadade1ba668ef17c10b03a9d	\N	18		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE2efc80801f69229142e9e6720a944134	0	inbound	+18555472453	\N	3.90616297721862793	null	general interest		1	\N	\N	2806
2016-11-10 22:11:41.678773+00	2017-01-27 21:12:23.8141+00	2854	completed				+14044917319		86	2016-11-10 22:11:41.676269	2016-11-10 22:13:07.333032	CA41b0163e398df84bdaf60c58963bd516	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REc89172d8d6624925e70aa7d35e4626db	0	inbound	+18555343978	48	6.69571304321289062	null	new lead		1	\N	\N	2807
2016-11-05 01:35:53.734671+00	2016-11-05 01:36:16.376454+00	2738	completed				+14044917319		22	2016-11-05 01:35:53.7327	2016-11-05 01:36:15.89496	CA740d3d5ee55303763f43e87351827552	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REf3c8445121565f1cdbfa0aaffef07dd2	0	inbound	+18557240606	49	1.8695530891418457	null	new lead		1	\N	\N	2807
2016-11-10 20:31:11.689514+00	2017-01-27 21:12:23.814065+00	2844	completed				+14044917319		57	2016-11-10 20:31:11.687567	2016-11-10 20:32:08.611077		\N	\N			0	outbound	+18555343978	48	\N	null	new lead		1	\N	\N	2807
2017-07-07 18:41:20.313655+00	2017-07-07 18:46:43.699623+00	5733	completed	Dominque	Petty	pettyboi822@gmail.com	+16788201548		308	2017-07-07 18:41:20.311471	2017-07-07 18:46:43.680372	CA193a04f1770cb1c6a15ac83173753012	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REfec0f96a77604de075ab06c0490ee93b	1	outbound	+17704009016	\N	19.2391400337219238	{}	new lead		13	\N	\N	2809
2017-12-04 22:38:58.074642+00	2017-12-04 22:54:01.223627+00	7565	completed				+15862221354		901	2017-12-04 22:38:58.072526	2017-12-04 22:53:58.761363	CA7e1374caa9e0bc9261126801cbb78599	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REd7c45c1d9370f8e912b40be21b70e1ea	0	inbound	+18558645656	136	2.64589691162109375	\N	new lead		15	\N	\N	2812
2017-08-16 18:01:04.729959+00	2017-08-16 18:03:35.234991+00	6051	completed				+16789282599		150	2017-08-16 18:01:04.728057	2017-08-16 18:03:35.213406	CA95c97a98828879c051e672051384b221	\N	154			0	inbound	+17707665699	134	1.13297486305236816	\N	new lead		13	\N	\N	2813
2017-08-19 21:30:29.485263+00	2017-08-19 21:31:18.05307+00	6108	completed				+16789282599		49	2017-08-19 21:30:29.483627	2017-08-19 21:31:18.036882	CA356025874b89cf97533801caccefb6a2	\N	150			0	inbound	+17707665732	133	14.1802031993865967	\N	new lead		13	\N	\N	2813
2017-12-04 20:43:03.976043+00	2017-12-04 20:44:21.127323+00	7555	completed	Carol	Bowen	clb1181479@att.net	+15862431145		74	2017-12-04 20:43:03.973972	2017-12-04 20:44:21.125499	CA588b8f19304dbabb5197e2af368f73bd	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.57600116729736328	{}	new lead		15	\N	\N	2814
2017-12-04 20:45:52.284627+00	2017-12-04 21:02:04.605443+00	7557	completed	Carol	Bowen		+15862431145		969	2017-12-04 20:45:52.282767	2017-12-04 21:02:01.5933	CA166aec7901c9929f429d416f4bde8434	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE0e9d51c3ae4f32a25ad8ed4f6666440f	0	inbound	+18558645656	136	4.87209391593933105	\N	new lead		15	\N	\N	2814
2016-07-15 19:46:10.057301+00	2016-11-09 15:43:50.981607+00	879	missed				+17042009872		13	2016-07-15 19:46:10.053125	2016-07-15 19:46:23.484509	CAd05b24c6d75d3139f2783708fd647436	\N	\N			0	inbound	+18554186369	\N	2.20868301391601562	null	new lead		3	\N	\N	1462
2016-11-05 16:33:06.921486+00	2016-12-10 01:01:00.200592+00	2748	completed				+16192781976		138	2016-11-05 16:33:06.919866	2016-11-05 16:35:25.317507	CA1043d940d4ba7111fc3bbfd02c295bb2	\N	57			0	inbound	+18557860909	\N	6.94828009605407715	null	new lead		3	\N	\N	2544
2016-11-01 23:17:20.391652+00	2016-11-01 23:29:52.260477+00	2518	completed				+19192913507		748	2016-11-01 23:17:20.390428	2016-11-01 23:29:48.528227	CAc5b1b64a247e7d1dbfc2299d826e3784	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE8dae93a7dc60a780db80e5f591a8de04	0	inbound	+18557240606	49	1.91406917572021484	null	new lead		1	\N	\N	2818
2017-10-26 15:27:56.994143+00	2017-10-26 15:30:16.320047+00	6817	completed				+16786305168		139	2017-10-26 15:27:56.991707	2017-10-26 15:30:16.297617	CAd1658c5aea71005c4e7b1b9f08c2355b	\N	150			0	inbound	+17707665732	133	17.8435039520263672	\N	new lead		13	\N	\N	2820
2017-05-28 22:29:10.867316+00	2017-11-29 18:38:49.813947+00	5479	completed				+12147040213		63	2017-05-28 22:29:10.865145	2017-05-28 22:30:14.309313	CA98378af1f78252078b57479667201a5d	\N	107			0	inbound	+12147122250	\N	14.9115531444549561	\N	new lead	evans joel     	9	\N	\N	2823
2017-04-26 21:54:56.174842+00	2017-11-29 18:38:49.806837+00	4344	completed				+13866476168		132	2017-04-26 21:54:56.171829	2017-04-26 21:57:08.037243	CAb7bb42d0223962cdd3f97fa24660c7ef	\N	\N			0	inbound	+12147122250	\N	6.10313105583190918	\N	new lead	travis frier   	9	\N	\N	2834
2016-11-04 14:16:29.21938+00	2016-11-04 14:20:47.352717+00	2685	completed				+12814981166		255	2016-11-04 14:16:29.217973	2016-11-04 14:20:44.372644	CA22de168743c1943c6026f7f317bf5695	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE4d7d2c2640877f7b2b7402c58d818c44	0	inbound	+18557240606	49	2.0160059928894043	null	new lead		1	\N	\N	2952
2017-08-12 15:47:21.275921+00	2017-08-12 15:49:52.8769+00	6004	completed				+16785455147		151	2017-08-12 15:47:21.273822	2017-08-12 15:49:52.262538	CAc1aeaba4272312d9cc95771a7ff34861	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REf9a5700c69da4d1dcb48dc5feb4b5cab	0	inbound	+17704009016	132	15.1520509719848633	\N	new lead		13	\N	\N	2954
2017-08-12 17:10:32.994499+00	2017-08-12 17:16:36.956258+00	6005	completed				+16785455147		363	2017-08-12 17:10:32.992375	2017-08-12 17:16:35.774849	CA401c578b383d460a191845c043c31457	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE0ca49485d515179090f1021bded55f86	0	inbound	+17704009016	132	11.1737480163574219	\N	new lead		13	\N	\N	2954
2017-05-03 22:29:42.009636+00	2017-11-29 18:38:53.215008+00	4678	completed				+14699550423		22	2017-05-03 22:29:42.007872	2017-05-03 22:30:04.345409	CA00fe0c78299a18a57c440168f611ec18	\N	105			0	inbound	+12146922088	\N	6.03841996192932129	\N	new lead	world class car	9	\N	\N	2955
2017-05-03 22:27:40.039353+00	2017-11-29 18:38:53.214994+00	4676	completed				+14699550423		41	2017-05-03 22:27:40.037217	2017-05-03 22:28:21.032245	CAf1e8035cbc6dfd030a50ec6af2105dad	\N	103			0	inbound	+12146922088	\N	9.73821687698364258	\N	new lead	world class car	9	\N	\N	2955
2017-05-03 22:29:58.88015+00	2017-11-29 18:38:53.215015+00	4679	completed				+14699550423		15	2017-05-03 22:29:58.878894	2017-05-03 22:30:13.957511	CA3c7b6286f8ae633d610d2afefbdb6810	\N	105			0	inbound	+12146922088	\N	3.4407958984375	\N	new lead	world class car	9	\N	\N	2955
2017-05-03 22:31:13.260971+00	2017-11-29 18:38:53.215022+00	4680	completed				+14699550423		15	2017-05-03 22:31:13.259696	2017-05-03 22:31:27.958002	CA48e4206a5b6a315828df0ed5efd61c24	\N	105			0	inbound	+12146922088	\N	3.34900999069213867	\N	new lead	world class car	9	\N	\N	2955
2017-05-03 22:36:45.59725+00	2017-11-29 18:38:53.215057+00	4686	completed				+14699550423		35	2017-05-03 22:36:45.59594	2017-05-03 22:37:20.929511	CAf35be5126803c2829a151dc2861bdfe9	\N	107			0	inbound	+12146922088	\N	7.50019407272338867	\N	new lead	world class car	9	\N	\N	2955
2017-05-03 23:42:46.138316+00	2017-11-29 18:38:53.215071+00	4692	completed				+14699550423		20	2017-05-03 23:42:46.135493	2017-05-03 23:43:05.957715	CA9bc4ac2b96ad7baa04efeb7c6197a24a	\N	133			0	inbound	+12146922088	\N	3.46786618232727051	\N	new lead	world class car	9	\N	\N	2955
2017-05-08 01:04:56.487214+00	2017-11-29 18:38:53.215251+00	4824	completed				+14699550423		36	2017-05-08 01:04:56.484175	2017-05-08 01:05:32.410023	CA54bb06d3a77fb0ab3fd6c267b5ea59e2	\N	105			0	inbound	+12146922088	\N	3.60972905158996582	\N	new lead	world class car	9	\N	\N	2955
2017-05-08 01:07:44.422784+00	2017-11-29 18:38:53.215277+00	4826	completed				+14699550423		29	2017-05-08 01:07:44.420476	2017-05-08 01:08:13.059996	CA0c9033085c61516ef2e5de69b8600e94	\N	105			0	inbound	+12146922088	\N	4.36513495445251465	\N	new lead	world class car	9	\N	\N	2955
2017-05-08 01:08:14.556613+00	2017-11-29 18:38:53.215284+00	4827	completed				+14699550423		27	2017-05-08 01:08:14.555376	2017-05-08 01:08:41.413338	CA620a8128dee7e021e0df402abb26fe34	\N	105			0	inbound	+12146922088	\N	3.09932303428649902	\N	new lead	world class car	9	\N	\N	2955
2017-05-08 01:09:13.144039+00	2017-11-29 18:38:53.215291+00	4828	completed				+14699550423		30	2017-05-08 01:09:13.141774	2017-05-08 01:09:43.012104	CA7db2d64951f6f0d01d59801f952257a5	\N	105			0	inbound	+12146922088	\N	3.51975297927856445	\N	new lead	world class car	9	\N	\N	2955
2017-05-08 01:09:42.463747+00	2017-11-29 18:38:53.215299+00	4829	completed				+14699550423		15	2017-05-08 01:09:42.462075	2017-05-08 01:09:57.678776	CAec86da16e032c1716312a46322b6c82d	\N	\N			0	inbound	+12146922088	\N	5.61108899116516113	\N	new lead	world class car	9	\N	\N	2955
2017-05-08 01:10:16.835365+00	2017-11-29 18:38:53.215306+00	4830	completed				+14699550423		47	2017-05-08 01:10:16.833914	2017-05-08 01:11:03.997654	CAb9c930b6ff0092bce38026f1f6fd5723	\N	133			0	inbound	+12146922088	\N	2.95491600036621094	\N	new lead	world class car	9	\N	\N	2955
2017-05-08 01:11:29.138416+00	2017-11-29 18:38:53.215313+00	4831	completed				+14699550423		32	2017-05-08 01:11:29.137067	2017-05-08 01:12:00.641409	CAf2d95377d680931c14390db64e150cb3	\N	105			0	inbound	+12146922088	\N	3.22874093055725098	\N	new lead	world class car	9	\N	\N	2955
2017-05-09 17:59:09.217909+00	2017-11-29 18:38:53.215478+00	4912	completed				+14699550423		30	2017-05-09 17:59:09.215171	2017-05-09 17:59:39.570843	CA2e40f76678211ee6956c6cc449741c02	\N	133			0	inbound	+12146922088	\N	5.55560088157653809	\N	new lead	world class car	9	\N	\N	2955
2017-05-10 17:05:59.03138+00	2017-11-29 18:38:53.215569+00	4953	completed				+14699550423		37	2017-05-10 17:05:59.029267	2017-05-10 17:06:36.028488	CA212f538dcefa33e18cbf9caabc29ba89	\N	99		https://api.twilio.com/2010-04-01/Accounts/AC5422b9b221417a7a84556a92f6edc492/Recordings/RE5b389576c3fd63bd5bfdaa03b1de54ec	0	inbound	+12146922088	\N	4.48336577415466309	\N	new lead	world class car	9	\N	\N	2955
2017-05-10 17:07:34.235728+00	2017-11-29 18:38:53.215576+00	4954	completed				+14699550423		16	2017-05-10 17:07:34.232519	2017-05-10 17:07:49.91793	CA231e6adf40a8b1536fbc4844175ce3a2	\N	107		https://api.twilio.com/2010-04-01/Accounts/AC5422b9b221417a7a84556a92f6edc492/Recordings/RE9d58ed9400dd3cbef4ad6587ce29def8	0	inbound	+12146922088	\N	7.312255859375	\N	new lead	world class car	9	\N	\N	2955
2017-05-03 22:28:38.110371+00	2017-11-29 18:38:53.215001+00	4677	completed				+14699550423		19	2017-05-03 22:28:38.107797	2017-05-03 22:28:57.195136	CA862702181c2f46a885ebaf915dcc9c6a	\N	\N			0	inbound	+12146922088	\N	8.33457398414611816	\N	new lead	world class car	9	\N	\N	2955
2016-11-08 00:40:56.704349+00	2016-12-10 01:00:18.568552+00	2797	completed				+16199207052		107	2016-11-08 00:40:56.702535	2016-11-08 00:42:43.457345	CAfe1ef6e89906ebf9e7fb1488e79069dd	\N	56			0	inbound	+18556775511	\N	9.12366604804992676	null	new lead		3	\N	\N	1905
2016-11-10 18:21:42.863182+00	2016-12-09 17:06:53.906098+00	2836	completed				+12159139905		208	2016-11-10 18:21:42.860488	2016-11-10 18:25:11.112986	CA10a70ed9e71b731b45d65e1ab532faf4	\N	21			0	inbound	+18558021330	\N	2.84279704093933105	null	new lead		3	\N	\N	2542
2016-11-07 17:43:29.854084+00	2016-12-10 01:01:51.441156+00	2790	completed				+16195152550		49	2016-11-07 17:43:29.852406	2016-11-07 17:44:18.92193	CAf58530d46458991e8808c9eaada11a70	\N	50			0	inbound	+18559693782	\N	2.75242400169372559	null	new lead		3	\N	\N	2815
2017-09-28 22:37:28.762111+00	2017-09-28 22:38:17.267602+00	6520	completed	david	herculano		+16787686098		48	2017-09-28 22:37:28.760088	2017-09-28 22:38:17.254752	CAeaa931df67a40e45147345650281deb3	\N	154			0	inbound	+17707665699	134	1.31501603126525879	\N	new lead		13	\N	\N	2849
2017-08-13 20:38:01.557651+00	2017-08-13 20:38:01.617539+00	6012	missed	Timmothy	Daniel	Timdaniel100312@gmail.com	+19122699890		\N	2017-08-13 20:38:01.556004	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	2855
2016-06-30 20:27:37.972456+00	2017-11-29 18:31:41.490269+00	689	completed	Unknown			+16142040877		49	2016-06-30 20:27:37.971551	2016-06-30 20:28:27.394401	CAfb6ba0ff5427358fe660e04cd2586430	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REa5b96011fa702026cd039d8ebcef95b5	0	inbound	+18552959002	\N	13.9144189357757568	null	new lead		1	\N	\N	2965
2016-05-23 16:41:12.289455+00	2017-11-29 18:32:13.820367+00	172	completed	Unknown			+13303699044		146	2016-05-23 16:41:12.288137	2016-05-23 16:43:37.991131	CA8bfeae9a82e14f02fd6ff1616ed07e1b	\N	18		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REf390d95fb93e2f837d33ead07618f0c2	0	inbound	+18555983683	\N	9.94448518753051758	null	new lead		1	\N	\N	2967
2016-05-24 19:17:11.577608+00	2017-11-29 18:32:13.820404+00	193	completed	Unknown			+13303699044		611	2016-05-24 19:17:11.57622	2016-05-24 19:27:22.197742	CA9fbb6a96827c03d2922bd85d83bff361	\N	18		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE99d5c18f2defb25f94c1a2d855fc1ee7	0	inbound	+18555983683	\N	12.7699239253997803	null	new lead		1	\N	\N	2967
2016-05-24 19:26:39.863572+00	2016-05-24 19:27:29.874621+00	194	completed	Jeannie	Banko	jbanko53@gmail.com	+13303699044		36	2016-05-24 19:26:39.862482	2016-05-24 19:27:29.87351	CAab7272a0f7b4ff8fdc4279907afabfbe	ee869226-e246-4ab4-aaaa-e9403e2ddd39	18			1	outbound	+18555983683	\N	10.5490679740905762	{}	new lead		1	\N	\N	2967
2016-05-25 18:13:09.67911+00	2016-05-25 18:14:51.021579+00	222	completed				+13303699044		95	2016-05-25 18:13:09.677991	2016-05-25 18:14:51.020487	CA9aa731185016eef46dfa98b1199fccec	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REdf6b982c848120a183bcd2112d3de83b	1	outbound	+18555983683	\N	2.53891801834106445	{}	new lead		1	\N	\N	2967
2016-06-02 19:06:56.042862+00	2016-06-02 19:14:16.2093+00	348	completed				+13303699044		436	2016-06-02 19:06:56.040863	2016-06-02 19:14:16.208	CA4728420102c324f74cdcf8ed04c92acf	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.45546817779541016	{}	new lead		1	\N	\N	2967
2016-06-02 19:28:51.138761+00	2016-06-02 19:30:32.207557+00	349	completed				+13303699044		97	2016-06-02 19:28:51.137511	2016-06-02 19:30:32.206464	CAd478b12406d7c523a82b6c4a5e5d8fef	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.39266395568847656	{}	new lead		1	\N	\N	2967
2016-05-24 17:03:42.489023+00	2017-11-29 18:32:13.820395+00	191	completed	Unknown			+13303699044		32	2016-05-24 17:03:42.487136	2016-05-24 17:04:14.256301	CAafc9b7c808f8639c72ca796610471529	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE206f42f49bd4645ced0015e093ac4f16	0	inbound	+18555983683	\N	13.974513053894043	null	new lead		1	\N	\N	2967
2017-11-07 15:31:10.552657+00	2017-11-07 15:32:53.759461+00	6957	completed				+18177332304		103	2017-11-07 15:31:10.550463	2017-11-07 15:32:53.756151	CA00f67c26310ecd9f8b3d5bdf6a25d692	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE949c9d53173a3d746d8d786b427c2eb5	0	inbound	+18177569010	124	71.7324981689453125	\N	new lead	graeber lauren	12	\N	\N	2969
2016-12-14 16:05:01.800375+00	2016-12-14 16:05:01.864067+00	3080	missed	Chad	Stallings	cestall6754@gmail.com	+12146368159		\N	2016-12-14 16:05:01.797954	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2970
2017-03-27 21:51:09.137294+00	2017-11-29 18:38:53.213084+00	3600	completed				+14804018428		221	2017-03-27 21:51:09.134613	2017-03-27 21:54:49.641405	CA2baf6e6f66462aebcbb4360f623a977d	\N	105			0	inbound	+12146922088	\N	5.36106514930725098	\N	new lead	tempe  az	9	\N	\N	2971
2017-05-12 21:06:53.447978+00	2017-11-29 18:38:49.81138+00	5044	completed				+12146047107		98	2017-05-12 21:06:53.445427	2017-05-12 21:08:31.372312	CA9275d989837698c41f66d3274a8877ca	\N	\N			0	inbound	+12147122250	\N	5.92130804061889648	\N	new lead	cell phone   tx	9	\N	\N	2972
2017-06-01 16:59:30.757945+00	2017-11-29 18:38:49.814367+00	5550	completed				+18882989491		88	2017-06-01 16:59:30.756055	2017-06-01 17:00:58.388188	CA481a7210065e07d7cbc79b134168d9a0	\N	125			0	inbound	+12147122250	\N	1.50081801414489746	\N	new lead	800 service    	9	\N	\N	2978
2017-04-24 16:55:06.607586+00	2017-11-29 18:38:49.806427+00	4250	completed				+18882989491		102	2017-04-24 16:55:06.604998	2017-04-24 16:56:48.991898	CA525b29552a78f982f6abe981b14372fc	\N	125			0	inbound	+12147122250	\N	1.38828086853027344	\N	new lead	800 service    	9	\N	\N	2978
2017-05-01 15:07:06.900067+00	2017-11-29 18:38:49.807808+00	4500	completed				+18882989491		113	2017-05-01 15:07:06.896461	2017-05-01 15:09:00.079237	CA4028e3b183d58f01cb77ed39d2ba0ece	\N	125			0	inbound	+12147122250	\N	1.94138193130493164	\N	new lead	800 service    	9	\N	\N	2978
2017-05-08 13:50:43.334747+00	2017-11-29 18:38:49.81023+00	4832	completed				+18882989491		110	2017-05-08 13:50:43.332329	2017-05-08 13:52:33.750994	CAcadca43948d22ac7965bd23e41972b84	\N	125			0	inbound	+12147122250	\N	0.979307889938354492	\N	new lead	800 service	9	\N	\N	2978
2017-05-08 13:52:57.714287+00	2017-11-29 18:38:49.810238+00	4833	missed				+18882989491		53	2017-05-08 13:52:57.712288	2017-05-08 13:53:50.374295	CA0b904090c72fa9d55ddd3f05f8565d81	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	800 service    	9	\N	\N	2978
2017-05-08 22:07:43.61847+00	2017-11-29 18:38:49.810498+00	4884	completed				+18882989491		109	2017-05-08 22:07:43.616436	2017-05-08 22:09:33.091343	CA5473244b1cfaa58b65c2c112c22def09	\N	125			0	inbound	+12147122250	\N	1.16698217391967773	\N	new lead	800 service    	9	\N	\N	2978
2017-05-15 17:24:49.410937+00	2017-11-29 18:38:49.811558+00	5076	completed				+18882989491		140	2017-05-15 17:24:49.408858	2017-05-15 17:27:09.334826	CAa0ec658db204ba8bc51cd22f78de8d8c	\N	125			0	inbound	+12147122250	\N	1.78977084159851074	\N	new lead	800 service	9	\N	\N	2978
2017-05-19 18:55:05.435473+00	2017-11-29 18:38:49.812281+00	5229	completed				+18882989491		116	2017-05-19 18:55:05.433613	2017-05-19 18:57:01.037266	CAe2207c7b896e52e1f62e8364cb17ab14	\N	125			0	inbound	+12147122250	\N	1.45993900299072266	\N	new lead	800 service    	9	\N	\N	2978
2017-05-25 16:40:22.676114+00	2017-11-29 18:38:49.813395+00	5393	completed				+18882989491		154	2017-05-25 16:40:22.673925	2017-05-25 16:42:56.2662	CA4d6ff23c6acebc08e0b6af371cda1a16	\N	124			0	inbound	+12147122250	\N	1.22052884101867676	\N	new lead	800 service    	9	\N	\N	2978
2017-06-01 17:01:13.655614+00	2017-11-29 18:38:49.814374+00	5551	completed				+18882989491		353	2017-06-01 17:01:13.654135	2017-06-01 17:07:06.251928	CAac48bc25a364cf371eaf70bbdc271816	\N	124			0	inbound	+12147122250	\N	1.88913798332214355	\N	new lead	800 service	9	\N	\N	2978
2016-10-05 15:19:07.730688+00	2016-11-09 15:46:28.724997+00	2171	completed				+13019397722		357	2016-10-05 15:19:07.729512	2016-10-05 15:25:04.893234	CA5d94f1a5278c812e8f193bace10c7e78	\N	40			0	inbound	+18555571474	\N	2.10141587257385254	null	new lead		3	\N	\N	689
2016-10-05 21:24:58.691202+00	2016-11-09 15:46:59.235348+00	2201	completed				+14438665424		132	2016-10-05 21:24:58.689269	2016-10-05 21:27:10.912834	CAdc44bf553a182382534f0881bcdfa24a	\N	43			0	inbound	+18556279610	\N	1.85654401779174805	null	new lead		3	\N	\N	1023
2016-09-28 14:52:51.426757+00	2016-11-09 15:42:56.351397+00	2090	completed				+19198044400		148	2016-09-28 14:52:51.425655	2016-09-28 14:55:19.677732	CA79d692e543dbe6540e35f12135dd1030	\N	37			0	inbound	+18556371303	\N	2.31959891319274902	null	new lead		3	\N	\N	1589
2017-05-20 17:56:24.576177+00	2017-08-17 14:35:21.045284+00	5253	completed				+12145522351		13	2017-05-20 17:56:24.574353	2017-05-20 17:56:37.337696	CA7e7ac315b8e174e5552c4db9cd4b0c0e	\N	\N			0	inbound	+18177569010	124	4.72354602813720703	\N	new lead	s watson	12	\N	\N	2878
2016-08-11 14:39:14.440078+00	2016-12-09 17:07:45.331399+00	1416	completed				+16092596018		22	2016-08-11 14:39:14.438889	2016-08-11 14:39:36.16055	CA5eb283a92cfe6bc734a451773313abc2	\N	55			0	inbound	+18552467810	\N	3.22677206993103027	null	new lead		3	\N	\N	2880
2016-09-13 20:37:21.208143+00	2016-11-09 15:44:25.869229+00	2007	completed				+16092596018		9	2016-09-13 20:37:21.206467	2016-09-13 20:37:30.252601	CA65321b7bfa096f1ab6fb22d177b777d8	\N	34			0	inbound	+18555122969	\N	2.56339001655578613	null	new lead		3	\N	\N	2880
2016-09-13 19:45:47.082653+00	2016-11-09 15:47:40.535488+00	2006	completed				+16092596018		16	2016-09-13 19:45:47.081029	2016-09-13 19:46:03.234897	CAc4eb16d79c638fe60a6331be89c3cdfa	\N	60			0	inbound	+18559370101	\N	3.17278003692626953	null	new lead		3	\N	\N	2880
2016-10-06 22:59:57.430016+00	2016-12-10 01:03:35.620611+00	2224	completed				+16092596018		11	2016-10-06 22:59:57.427691	2016-10-06 23:00:08.730518	CAd23845108b4be110af46654ff1d1646c	\N	66			0	inbound	+18557376565	\N	0.428905010223388672	null	new lead		3	\N	\N	2880
2016-09-27 13:55:18.901513+00	2016-12-10 00:59:38.158486+00	2085	completed				+16092596018		8	2016-09-27 13:55:18.899694	2016-09-27 13:55:27.381714	CAf41ff93f4588805a2f310f8def5e7a64	\N	59			0	inbound	+18559695739	\N	0.457435131072998047	null	new lead		3	\N	\N	2880
2016-10-20 17:37:25.226309+00	2016-12-09 17:11:00.853685+00	2327	completed				+16092596018		19	2016-10-20 17:37:25.224659	2016-10-20 17:37:44.397394	CA819f8be902f82c79d4434706427c20d3	\N	72			0	inbound	+18555727686	\N	1.92095589637756348	null	new lead		3	\N	\N	2880
2016-10-21 20:54:41.115512+00	2016-12-10 01:01:00.200498+00	2335	completed				+16092596018		21	2016-10-21 20:54:41.113787	2016-10-21 20:55:02.55932	CA793f630be7b0ca6f02c1a88372a86196	\N	57			0	inbound	+18557860909	\N	9.30001497268676758	null	new lead		3	\N	\N	2880
2016-08-11 14:38:31.762562+00	2016-12-09 17:07:42.627555+00	1415	completed				+16092596018		24	2016-08-11 14:38:31.761201	2016-08-11 14:38:55.893404	CA901c55430537a1c7ba95106832374477	\N	55			0	inbound	+18552010960	\N	2.26401209831237793	null	new lead		3	\N	\N	2880
2016-06-28 16:19:35.155399+00	2016-12-10 01:05:18.400561+00	591	completed	Unknown			+16092596018		42	2016-06-28 16:19:35.154356	2016-06-28 16:20:17.22195	CA794b4cacb4952824bba9d2b17a410dd4	\N	24			0	inbound	+18557088731	\N	2.21196413040161133	null	new lead		3	\N	\N	2880
2016-08-24 16:06:12.448554+00	2016-12-09 17:06:57.830387+00	1704	completed				+16092596018		16	2016-08-24 16:06:12.447596	2016-08-24 16:06:28.284479	CA5759e3c88db0b3671661ffea6ce4afaf	\N	20			0	inbound	+18552000227	\N	2.44693303108215332	null	new lead		3	\N	\N	2880
2016-07-13 14:54:34.655084+00	2016-12-10 01:05:18.4007+00	866	completed				+16092596018		48	2016-07-13 14:54:34.653153	2016-07-13 14:55:22.889906	CA8d8b9a386c044be3db8c8f7f35bca695	\N	24			0	inbound	+18557088731	\N	2.42474699020385742	null	new lead		3	\N	\N	2880
2017-08-17 13:32:18.540356+00	2017-08-17 13:37:49.28686+00	6064	missed				+17705610202		2	2017-08-17 13:32:18.53874	2017-08-17 13:32:20.157398	CAe1613a0d4884dceccf5ead30ba60e0e5	\N	\N			0	inbound	+17707665732	133	317.083134889602661	\N	new lead		13	\N	\N	2980
2017-11-02 16:16:34.012995+00	2017-11-02 16:26:56.598478+00	6903	completed				+17705610202		623	2017-11-02 16:16:34.01117	2017-11-02 16:26:56.596001	CA49d318e438b2913aaaf5d14088ca384c	\N	150			0	inbound	+17707665732	133	317.411878108978271	\N	new lead		13	\N	\N	2980
2017-11-21 17:51:40.648901+00	2017-11-21 18:02:05.612886+00	7163	completed				+17705610202		625	2017-11-21 17:51:40.646958	2017-11-21 18:02:05.60968	CA5bf677fb22055d76e3066dda4929a4a8	\N	150			0	inbound	+17704009016	132	337.637840986251831	\N	new lead		13	\N	\N	2980
2017-12-15 23:02:50.122927+00	2017-12-15 23:25:07.00606+00	7916	completed				+14805195593		1333	2017-12-15 23:02:50.121111	2017-12-15 23:25:03.571176	CAcb46206af6e44e1d8516fd2ec03040c9	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE296f890261ea835867880ff7010ec8cd	0	inbound	+18558645656	136	2.50378704071044922	\N	new lead		15	\N	\N	2984
2017-12-18 14:16:06.263706+00	2017-12-18 14:17:26.349216+00	7963	completed				+17062065874		79	2017-12-18 14:16:06.262176	2017-12-18 14:17:25.561115	CAd3fa059704b915056d9a1c5276171d1b	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE0a5e2a9d214253c67c1fe23df989cef8	0	inbound	+17707665732	133	16.6971797943115234	\N	new lead	norcross  ga	13	\N	\N	2985
2017-09-19 10:51:48.725908+00	2017-09-19 10:51:48.782695+00	6398	missed	Betty	Young	Mrsyoung1121@gmail.com	+17707335434		\N	2017-09-19 10:51:48.724296	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	2986
2017-05-03 21:53:21.875762+00	2017-11-29 18:38:49.809486+00	4669	completed				+13182001367		72	2017-05-03 21:53:21.873901	2017-05-03 21:54:33.418466	CA1788fa61638f5d6f2e9a5baf2b54715e	\N	126			0	inbound	+12147122250	\N	1.03932094573974609	\N	new lead	singleton ld	9	\N	\N	884
2016-08-24 16:14:56.397768+00	2016-12-10 00:58:36.550424+00	1710	completed				+16092596018		22	2016-08-24 16:14:56.396767	2016-08-24 16:15:18.544013	CA85cd08c01ec9ef7631b345f383d5c80f	\N	46			0	inbound	+18557121313	\N	8.85533595085144043	null	new lead		3	\N	\N	2880
2016-08-24 16:12:55.879935+00	2016-12-10 01:00:18.568254+00	1708	completed				+16092596018		20	2016-08-24 16:12:55.877699	2016-08-24 16:13:15.488152	CA5818f1db02919b9d84e4a7f8ca018fc8	\N	56			0	inbound	+18556775511	\N	5.42273497581481934	null	new lead		3	\N	\N	2880
2016-08-24 16:19:15.165327+00	2016-12-10 01:05:11.337082+00	1714	completed				+16092596018		7	2016-08-24 16:19:15.16439	2016-08-24 16:19:22.329593	CA6ea67285b732cb90f7f663f637ddd205	\N	25			0	inbound	+18555693686	\N	1.13687491416931152	null	new lead		3	\N	\N	2880
2016-09-07 20:05:39.913426+00	2016-12-10 01:01:00.19997+00	1947	completed				+16196420555		133	2016-09-07 20:05:39.912135	2016-09-07 20:07:52.901665	CA73f0e79f8be206b510669bed011cc878	\N	57			0	inbound	+18557860909	\N	5.41357898712158203	null	new lead		3	\N	\N	2989
2017-05-21 17:04:36.149326+00	2017-11-29 18:38:49.812457+00	5260	missed				+13303894901		59	2017-05-21 17:04:36.147531	2017-05-21 17:05:35.56945	CA3ebd3a48bed8d46c0331dd74405b95a7	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	akron  oh	9	\N	\N	2997
2017-05-21 17:05:34.023225+00	2017-11-29 18:38:49.812464+00	5261	completed				+13303894901		627	2017-05-21 17:05:34.021366	2017-05-21 17:16:00.980454	CAf4fa4168888bb73845dd0b54caaa3f9f	\N	\N			0	inbound	+12147122250	\N	6.79605007171630859	\N	new lead	akron  oh	9	\N	\N	2997
2017-05-21 17:03:33.935145+00	2017-11-29 18:38:49.81245+00	5259	missed				+13303894901		62	2017-05-21 17:03:33.932616	2017-05-21 17:04:36.190631	CA3c1dc46eda4f363d2df43c74d61bc3b3	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	akron  oh	9	\N	\N	2997
2017-11-25 18:42:20.817863+00	2017-11-25 18:48:45.635497+00	7321	completed	SHENITA 	AKINS		+17066126924		172	2017-11-25 18:42:20.815319	2017-11-25 18:45:12.49935	CA9b63059644724d538a0ebda533ea0454	\N	153			0	inbound	+17707665732	133	9.41911506652832031	\N	select status		13	\N	\N	3001
2016-07-08 14:45:49.437207+00	2016-07-08 14:47:23.055331+00	826	completed	Michelle	Lizardi		+16145575417		88	2016-07-08 14:45:49.434346	2016-07-08 14:47:23.053648	CAd49d7b2811ce66d970be5cc62d67763c	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	1.8146209716796875	{}	new lead		1	\N	\N	3002
2016-07-08 14:49:07.842485+00	2016-07-08 14:50:34.527306+00	827	completed	Michelle	Lizardi		+16145575417		82	2016-07-08 14:49:07.84151	2016-07-08 14:50:34.525767	CA2c6e70dad02ee3f4edda16f58b8696c7	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	1.53106498718261719	{}	new lead		1	\N	\N	3002
2016-07-04 02:55:32.503722+00	2016-07-05 13:20:18.385764+00	744	completed	Michelle	Lizardi	mlizardi04@gmail.com	+16145575417		\N	2016-07-04 02:55:32.50226	\N		d33a481e-e0af-47ac-9f90-260f20b69de5	\N			0	outbound	+18552959002	\N	\N	{}	new lead		1	\N	\N	3002
2017-04-21 21:55:48.952723+00	2017-11-29 18:38:49.806265+00	4203	completed				+18177054072		61	2017-04-21 21:55:48.951109	2017-04-21 21:56:49.615552	CAc323fee821bc2065ea25be1ff99bc0d5	\N	103			0	inbound	+12147122250	\N	1.39429497718811035	\N	new lead	scherff brad   	9	\N	\N	3005
2017-04-21 21:57:43.44141+00	2017-11-29 18:38:49.806273+00	4204	completed				+18177054072		88	2017-04-21 21:57:43.43978	2017-04-21 21:59:11.875502	CA3a796163338ae37213fe3ebf955c3ac2	\N	124			0	inbound	+12147122250	\N	1.95511913299560547	\N	new lead	scherff brad   	9	\N	\N	3005
2017-04-14 21:13:29.085655+00	2017-05-17 15:41:07.224356+00	3947	completed				+18178937681		244	2017-04-14 21:13:29.082377	2017-04-14 21:17:33.176101	CAbbd8bb4cd6aac44efa94c7a61861e3e5	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE4db7bc0ae8d99dda8f18cccee0857402	0	inbound	+18177569010	124	11.2327899932861328	\N	new lead	macias fredy	12	\N	\N	3006
2017-09-09 15:07:13.944971+00	2017-09-09 15:18:52.672832+00	6302	completed				+17066545484		699	2017-09-09 15:07:13.942902	2017-09-09 15:18:52.662775	CA10f6251dc64651a9881f88061a4db55f	\N	154			0	inbound	+17707665699	134	2.54526805877685547	\N	new lead		13	\N	\N	3009
2016-11-12 18:56:45.621646+00	2016-11-12 18:56:45.647237+00	2879	missed	Nathan	Cutshall	Dwdrums18@aol.com	+12813895411		\N	2016-11-12 18:56:45.620529	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	3013
2017-08-16 21:01:53.087271+00	2017-08-16 21:03:13.895978+00	6059	completed				+16786968308		80	2017-08-16 21:01:53.084798	2017-08-16 21:03:12.770586	CA2c77f27c5a28bda20a9a52413f10a742	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE1cf8284c8deae96d8cbc19f86e2d9119	0	inbound	+17704009016	132	14.1801490783691406	\N	new lead		13	\N	\N	3014
2017-08-16 20:47:53.588271+00	2017-08-16 20:54:03.134749+00	6057	missed				+16786968308		40	2017-08-16 20:47:53.586108	2017-08-16 20:48:33.273172	CAa98d08183f5257b82a41beb6801dfb5a	\N	\N			0	inbound	+17704009016	132	\N	\N	new lead		13	\N	\N	3014
2017-08-16 20:50:00.518801+00	2017-08-16 20:56:10.277152+00	6058	missed				+16786968308		37	2017-08-16 20:50:00.515753	2017-08-16 20:50:37.614941	CA5949c22f942896c160c064e13d3374c1	\N	\N			0	inbound	+17704009016	132	\N	\N	new lead		13	\N	\N	3014
2017-08-16 19:05:12.854942+00	2017-08-16 19:08:47.87285+00	6052	completed				+16786968308		214	2017-08-16 19:05:12.853177	2017-08-16 19:08:46.69837	CAab47d59c4fa496e17b3a1d6e9dde9de8	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REd32761ce9c84c7e5a96e350231ea2aa7	0	inbound	+17704009016	132	12.3850820064544678	\N	new lead		13	\N	\N	3014
2017-08-31 19:40:39.090478+00	2017-08-31 19:40:47.086055+00	6222	missed				+17707497720		8	2017-08-31 19:40:39.087617	2017-08-31 19:40:47.07146	CA2e5e6839b7726b791678f8950f27ee99	\N	\N			0	inbound	+17707669297	131	\N	\N	new lead		6	\N	\N	3016
2017-08-29 16:01:44.128816+00	2017-08-29 16:01:52.386943+00	6195	missed				+17707497720		8	2017-08-29 16:01:44.126791	2017-08-29 16:01:52.367325	CAf03b84a27eaf36895ef5ce0031a6e734	\N	\N			0	inbound	+17707669297	131	\N	\N	new lead		6	\N	\N	3016
2016-11-04 18:34:36.034088+00	2016-11-04 18:50:27.844714+00	2717	completed				+19725710434		950	2016-11-04 18:34:36.031931	2016-11-04 18:50:25.916445	CA454d5c2f82b4b31b9f6d744e88dac73e	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE38d6418218c9c3b269c56b44abe5eb99	0	inbound	+18557240606	49	1.73261380195617676	null	new lead		1	\N	\N	3018
2017-12-29 15:21:23.42737+00	2017-12-29 15:22:23.945357+00	8149	completed				+17062965962		59	2017-12-29 15:21:23.424792	2017-12-29 15:22:22.768248	CA7d8692b0db2c32308bf751481c735ac4	\N	154		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE7b34ab38563a277707dc2f2f058cb6dd	0	inbound	+17707665699	134	1.38079595565795898	\N	new lead	lumpkin derrick	13	\N	\N	3019
2017-03-02 23:16:17.899687+00	2017-11-29 18:38:53.211831+00	3314	completed				+12147287689		16	2017-03-02 23:16:17.897509	2017-03-02 23:16:33.674696	CA5531c6eeee47f5bf9c7447b6ad69de30	\N	\N			0	inbound	+12146922088	\N	9.49365901947021484	\N	new lead	cho kwang      	9	\N	\N	3021
2018-03-21 13:15:53.882452+00	2018-03-21 13:16:10.499997+00	8229	completed				+17739699892		17	2018-03-21 13:15:53.880074	2018-03-21 13:16:10.497144	CAe0e8e051364998e1cc8c6dafe0a89adf	\N	179			0	inbound	+13367394103	153	9.61754798889160156	\N	new lead	chicago  il	28	\N	\N	3022
2018-03-26 00:17:34.403528+00	2018-03-26 00:18:22.835257+00	8233	missed				+17739699892		48	2018-03-26 00:17:34.402285	2018-03-26 00:18:22.406861	CA690914508fd75e12a8f2dc08e74dca01	\N	\N		https://buyercall-test-recordings.s3.amazonaws.com/Steak%20Inc_28/8233_recording_711caf9d0ef34f53820a8cde0d547351	0	inbound	+13367394103	155	\N	\N	new lead	chicago  il	28	\N	\N	3022
2018-03-20 04:01:36.815554+00	2018-03-20 04:02:07.541769+00	8227	completed				+17739699892		27	2018-03-20 04:01:36.813042	2018-03-20 04:02:03.882083	CAe25e8da86d5da2063138a24db9cad778	\N	179		https://buyercall-test-recordings.s3.amazonaws.com/Steak%20Inc_28/8227_recording_7a973530f00a41b39aed9fa49dd03b68	0	inbound	+13367394103	152	8.46533393859863281	\N	new lead	chicago  il	28	\N	\N	3022
2016-11-10 18:45:26.003025+00	2016-12-10 00:57:48.461921+00	2838	completed				+18057303000		166	2016-11-10 18:45:26.001237	2016-11-10 18:48:12.293437	CA59468ec2c7ab4cc5463a80000ffadc80	\N	30			0	inbound	+18559652184	\N	1.89316391944885254	null	new lead		3	\N	\N	497
2016-11-16 17:57:28.308716+00	2016-12-10 01:05:18.401231+00	2923	completed				+14136653653		699	2016-11-16 17:57:28.307556	2016-11-16 18:09:07.209071	CA0ea32cd3ee75b119c0b104ad1cd4bc04	\N	24			0	inbound	+18557088731	\N	2.2024531364440918	null	new lead		3	\N	\N	1978
2016-11-16 16:11:54.788576+00	2016-12-09 17:06:53.906126+00	2917	completed				+12154316528		118	2016-11-16 16:11:54.787165	2016-11-16 16:13:52.770551	CAb12ef48df07bc81195880a05975a377b	\N	21			0	inbound	+18558021330	\N	3.67228913307189941	null	new lead		3	\N	\N	2205
2017-08-09 20:06:55.975477+00	2017-08-09 20:13:25.034564+00	5977	completed				+14049147800		388	2017-08-09 20:06:55.973628	2017-08-09 20:13:23.862569	CA538fae89b01f762b6d88223e937a89e7	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE25ab0c0932d1b79a612777e272b93847	0	inbound	+17704009016	132	328.879644155502319	\N	new lead		13	\N	\N	2885
2017-09-15 20:02:21.890483+00	2017-09-15 20:14:50.075334+00	6371	completed				+14049147800		748	2017-09-15 20:02:21.888816	2017-09-15 20:14:50.072827	CAc59c74ff6094113ce39574103e259d35	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REd3cb92b2b04e8bee439f75fe16acd32d	0	inbound	+17704009016	132	458.972331047058105	\N	new lead		13	\N	\N	2885
2017-10-04 20:57:57.641489+00	2017-10-04 20:57:57.811475+00	6584	missed				+14049147800		0	2017-10-04 20:57:57.638825	2017-10-04 20:57:57.794463	CAbfac6184cc44ffd400bb894ec124eab0	\N	\N			0	inbound	+17707665732	133	\N	\N	new lead		13	\N	\N	2885
2017-10-04 20:58:13.714751+00	2017-10-04 21:03:57.681845+00	6585	missed				+14049147800		14	2017-10-04 20:58:13.713305	2017-10-04 20:58:27.880449	CA3a3c56f93bd6684010b96f5f73b1bc16	\N	\N			0	inbound	+17707665732	133	12.3172399997711182	\N	new lead		13	\N	\N	2885
2017-10-13 13:39:01.358236+00	2017-10-13 13:44:47.286026+00	6685	missed				+14049147800		11	2017-10-13 13:39:01.356308	2017-10-13 13:39:11.901912	CA780298ee6ab45a4bd80d479b0f3d115b	\N	\N			0	inbound	+17707665732	133	328.868494033813477	\N	new lead		13	\N	\N	2885
2017-11-21 17:28:26.468362+00	2017-11-21 17:35:02.883458+00	7159	completed				+14049147800		396	2017-11-21 17:28:26.466171	2017-11-21 17:35:02.880997	CA30e26c1f61bb3034be2e4cfc02ed17d8	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE81c9d52c0ef3358b2b9e7024b6a29dc9	0	inbound	+17704009016	132	344.331280946731567	\N	new lead		13	\N	\N	2885
2016-08-04 14:46:17.758215+00	2016-12-20 22:16:06.426478+00	1201	missed				+16109697743		12	2016-08-04 14:46:17.7564	2016-08-04 14:46:29.42583	CAb45fdee8512f3b4cd0cd0a959b32ad48	\N	\N			0	inbound	+18557343030	\N	\N	null	new lead		3	\N	\N	2889
2018-03-20 04:03:03.222735+00	2018-03-20 04:03:33.263035+00	8228	completed				+17739699892		26	2018-03-20 04:03:03.221391	2018-03-20 04:03:29.58513	CA9ce93525c1da265fddaf2d825101e366	\N	179		https://buyercall-test-recordings.s3.amazonaws.com/Steak%20Inc_28/8228_recording_7cf8d4401a7049fa956154f526b18b7c	0	inbound	+13367394103	152	5.25707387924194336	\N	new lead	chicago  il	28	\N	\N	3022
2018-03-21 14:34:41.708562+00	2018-03-21 14:35:27.001013+00	8230	missed				+17739699892		45	2018-03-21 14:34:41.707282	2018-03-21 14:35:26.562531	CAd2a5b1b60f7097f3400c1d970e5acf9d	\N	\N		https://buyercall-test-recordings.s3.amazonaws.com/Steak%20Inc_28/8230_recording_1f0c1227b7524e64b8f756bda16f4349	0	inbound	+13367394103	154	\N	\N	new lead	chicago  il	28	\N	\N	3022
2018-03-26 00:06:52.383848+00	2018-03-26 00:13:24.717923+00	8231	completed				+17739699892		30	2018-03-26 00:06:52.380789	2018-03-26 00:07:22.669384	CAc73a6fd1947d1da70e1b055682187d9d	\N	179		https://buyercall-test-recordings.s3.amazonaws.com/Steak%20Inc_28/8231_recording_d3df9edb2b4b44f5af8451ab9b4cd79e	0	inbound	+13367394103	155	10.3944060802459717	\N	new lead	chicago  il	28	\N	179	3022
2018-03-26 00:16:37.92873+00	2018-03-26 00:17:05.678983+00	8232	completed				+17739699892		24	2018-03-26 00:16:37.927286	2018-03-26 00:17:01.974704	CAb00dee056322785b38c25c95cb8df441	\N	179		https://buyercall-test-recordings.s3.amazonaws.com/Steak%20Inc_28/8232_recording_4648121d51a744f58547a9791d796f68	0	inbound	+13367394103	155	5.38483095169067383	\N	new lead	chicago  il	28	\N	\N	3022
2018-02-13 01:03:25.054657+00	2018-02-13 01:03:43.105918+00	8211	completed				+17739699892		14	2018-02-13 01:03:25.052291	2018-02-13 01:03:39.089484	CA8aecd5a0316189dfc363ac3bd5e1ba80	\N	179		https://buyercall-test-recordings.s3.amazonaws.com/Steak%20Inc_28/8211_recording_efeff9092f4048888364b9c9ef7656e1	0	inbound	+13367394103	146	8.11486077308654785	\N	new lead	chicago  il	28	\N	\N	3022
2017-12-06 22:25:50.063357+00	2017-12-06 22:36:27.211691+00	7665	completed	David	Rose	daverose03@gmail.com	+15132052583		634	2017-12-06 22:25:50.061877	2017-12-06 22:36:27.210052	CA13ea60b9af052714556a97b4a1e057ac	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	1.98564982414245605	{}	new lead		15	\N	\N	3023
2017-09-25 20:18:45.60729+00	2017-09-25 20:20:41.937545+00	6485	completed				+18175759379		115	2017-09-25 20:18:45.60408	2017-09-25 20:20:40.814197	CA6976ae301503de851de29b9a9da3f86d	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REfd87583294f2c6f39307a01c0613c306	0	inbound	+18177569010	124	7.54611802101135254	\N	new lead	cell phone   tx	12	\N	\N	3032
2017-09-25 20:33:03.542312+00	2017-09-25 20:35:54.862544+00	6486	completed				+18175759379		171	2017-09-25 20:33:03.540392	2017-09-25 20:35:54.130904	CAa7588d06ca083a16367d088593371921	\N	155		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REc4ec7bf879e7c02ae8e6f5f54e428edc	0	inbound	+18177569010	124	7.90571403503417969	\N	new lead	cell phone   tx	12	\N	\N	3032
2017-09-27 20:55:15.029475+00	2017-09-27 20:56:19.349064+00	6498	completed				+18175759379		63	2017-09-27 20:55:15.02764	2017-09-27 20:56:18.218428	CA6bd75b593b69c4162316a12b69f6314e	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE0c57c1705d0c2f1f6816a2ae5ff68212	0	inbound	+18177569010	124	10.3731288909912109	\N	new lead	cell phone   tx	12	\N	\N	3032
2017-12-05 19:55:14.656709+00	2017-12-05 19:56:58.045513+00	7596	completed				+17138362123		102	2017-12-05 19:55:14.654812	2017-12-05 19:56:56.528002	CA6e4d4be85680ac615fd158f0385d4eeb	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REff099ec69fa04799f5b2af7702a4cbbf	0	inbound	+18177569010	124	11.6677119731903076	\N	new lead	shara williams	12	\N	\N	1076
2016-11-21 12:47:04.263305+00	2016-12-09 17:07:45.331773+00	2954	completed				+15753237032		30	2016-11-21 12:47:04.260952	2016-11-21 12:47:33.95436	CAb665409bed247dd0d4d09a291a52cfed	\N	55			0	inbound	+18552467810	\N	4.26215505599975586	null	new lead		3	\N	\N	1303
2017-12-05 19:56:43.958651+00	2017-12-05 20:09:47.469783+00	7599	completed	Rodney	Jinks		+14693341366		780	2017-12-05 19:56:43.957503	2017-12-05 20:09:44.194159	CA54151b8288a691ca5426d1adeac03141	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REf7a3a58d60ff50d4317f3e5dca456146	0	inbound	+18558645656	136	2.33823680877685547	\N	new lead		15	\N	\N	2044
2017-12-05 20:01:07.949136+00	2017-12-05 20:01:33.422416+00	7601	missed	george	freeman	freeman.george1@gmail.com	+16788228220		\N	2017-12-05 20:01:07.946173	\N	CAf75483ebedf81cfc0b05fb8ce5441432	cd009b81-ec25-40d7-a806-e428c0f41965	\N			0	outbound	+17706597466	\N	\N	{}	new lead		14	\N	\N	2690
2016-11-17 16:38:38.434017+00	2016-12-09 17:10:17.413678+00	2936	completed				+18456307148		166	2016-11-17 16:38:38.432771	2016-11-17 16:41:24.313262	CAe35e724524258476173b5341429e27ce	\N	27			0	inbound	+18552716856	\N	6.79568099975585938	null	new lead		3	\N	\N	2800
2017-09-10 22:27:58.130898+00	2017-09-10 22:27:58.183953+00	6312	missed	Brian	Woodbury	Woodburybrian17@gmail.com	+16789751323		\N	2017-09-10 22:27:58.129088	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	2905
2017-12-04 20:51:47.187691+00	2017-12-04 20:52:45.53755+00	7560	completed				+17063866016		58	2017-12-04 20:51:47.185156	2017-12-04 20:52:45.521257	CAcf8b4d7c7a4356e47d98deced7554719	\N	153			0	inbound	+17707665732	133	10.4166409969329834	\N	new lead	rivers jeann3et	13	\N	\N	2906
2017-05-17 16:54:32.423818+00	2017-11-29 18:38:49.811989+00	5156	completed				+17029474081		76	2017-05-17 16:54:32.421839	2017-05-17 16:55:48.685493	CA3d14632edd54ca96a7639ebe12a93890	\N	126			0	inbound	+12147122250	\N	1.71089696884155273	\N	new lead	leavitt ins	9	\N	\N	2907
2016-10-10 17:27:02.361912+00	2016-12-10 01:01:51.441093+00	2251	completed				+16197266487		193	2016-10-10 17:27:02.360505	2016-10-10 17:30:15.55713	CAba0a5e57759f22e00c8858f89404db3c	\N	50			0	inbound	+18559693782	\N	1.89721107482910156	null	new lead		3	\N	\N	3034
2017-09-08 16:55:26.293968+00	2017-09-08 17:00:53.064035+00	6294	completed				+17702564295		326	2017-09-08 16:55:26.291765	2017-09-08 17:00:52.08858	CAe31b8695c2da77a4018a508de8f97b06	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE88fd0757e06e71e3735cc8bc2d2a19db	0	inbound	+17704009016	132	14.2554929256439209	\N	new lead		13	\N	\N	3035
2017-05-13 22:10:41.780819+00	2017-11-29 18:38:49.811487+00	5063	completed				+19724171100		55	2017-05-13 22:10:41.77939	2017-05-13 22:11:36.73611	CA2f2fd1cb94e446f33421780e6d1e7b05	\N	124			0	inbound	+12147122250	\N	1.2259831428527832	\N	new lead	payday loan sto	9	\N	\N	3036
2017-05-13 22:09:14.239552+00	2017-11-29 18:38:49.81148+00	5062	completed				+19724171100		83	2017-05-13 22:09:14.237431	2017-05-13 22:10:36.827439	CA8204ec6ed931e3b93ee260bec9f60e12	\N	127			0	inbound	+12147122250	\N	1.06101799011230469	\N	new lead	payday loan sto	9	\N	\N	3036
2017-12-05 20:16:01.853825+00	2017-12-05 20:25:46.208092+00	7602	completed				+13613552730		581	2017-12-05 20:16:01.85159	2017-12-05 20:25:43.324659	CA2b1ac8b3528f331caa0d6578c22ad565	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REd672b132bf841457fd2d1298d7ea9c91	0	inbound	+18558645656	136	2.65303277969360352	\N	new lead		15	\N	\N	3037
2017-12-28 14:35:17.504107+00	2017-12-28 14:50:00.283935+00	8135	completed	jason	joy	jasonjoy777@gmail.com	+15612027918		880	2017-12-28 14:35:17.502449	2017-12-28 14:50:00.282645	CA23097845457bc8771e85e9fed907e440	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.43715810775756836	{}	new lead		15	\N	\N	3040
2016-09-07 22:38:51.158246+00	2016-12-10 01:01:00.199988+00	1954	completed				+18585317447		740	2016-09-07 22:38:51.157157	2016-09-07 22:51:11.62318	CA741aeea3c628c415e5e467742e504659	\N	57			0	inbound	+18557860909	\N	4.30831217765808105	null	new lead		3	\N	\N	3042
2017-05-01 18:57:51.66346+00	2017-11-29 18:38:49.80822+00	4534	completed				+18007571178		119	2017-05-01 18:57:51.660565	2017-05-01 18:59:50.826946	CA7e85e776fbcbfde0631fc7ebc4ea10a9	\N	105			0	inbound	+12147122250	\N	5.83469390869140625	\N	new lead	800 service	9	\N	\N	3043
2017-12-06 23:37:10.643932+00	2017-12-06 23:50:25.619295+00	7669	completed	Anthony	Belline	tbellinekc135@yahoo.com	+16189729567		792	2017-12-06 23:37:10.642561	2017-12-06 23:50:25.617166	CA832d2b74e2424ed13b96f36cb265fad7	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.26537704467773438	{}	new lead		15	\N	\N	3044
2016-11-02 18:00:42.99327+00	2016-11-02 18:00:43.026772+00	2578	missed	Diane	Dasher	dsdasher919@gmail.com	+12108423828		\N	2016-11-02 18:00:42.992319	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	3049
2017-04-26 16:51:08.370941+00	2017-11-29 18:38:49.806731+00	4322	completed				+14072640000		87	2017-04-26 16:51:08.367297	2017-04-26 16:52:35.523078	CA8d09d5eb41b69a6e9e9406253851d604	\N	107			0	inbound	+12147122250	\N	4.11568784713745117	\N	new lead	uniworld intern	9	\N	\N	3050
2017-11-29 14:58:29.769282+00	2017-11-29 15:00:41.455118+00	7389	completed				+14043689418		132	2017-11-29 14:58:29.76742	2017-11-29 15:00:41.441258	CA1e5de61bd88c3bac5b33d96e45539544	\N	154			0	inbound	+17707665699	134	1.46301603317260742	\N	new lead	thurby tamra	13	\N	\N	3051
2017-03-16 16:37:07.473627+00	2017-11-29 18:38:53.212432+00	3462	completed				+16827023939		330	2017-03-16 16:37:07.471611	2017-03-16 16:42:37.855783	CAc1da0f611ae035ac0e68d2c3e58b59de	\N	107			0	inbound	+12146922088	\N	6.33642411231994629	\N	new lead		9	\N	\N	3052
2017-09-27 18:46:28.073114+00	2017-09-27 18:49:40.377367+00	6496	completed	Demetrius	Bolds	tyeishaboyd@gmail.com	+17063510486		182	2017-09-27 18:46:28.070098	2017-09-27 18:49:39.907486	CAc3a61f6b3a38fcedf936e77dbf9d4e66	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REa224c44565a1746629646e3988f625ef	1	outbound	+17704009016	\N	12.9354639053344727	{}	new lead		13	\N	\N	3057
2017-09-27 19:22:25.059487+00	2017-09-27 19:26:09.819217+00	6497	completed	Demetrius	Bolds		+17063510486		223	2017-09-27 19:22:25.056253	2017-09-27 19:26:08.293666	CAc51296c303de324bb19ed8a82f4aadbd	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE5e391eea7abf247e057a877209c62ea4	0	inbound	+17704009016	132	7.49899792671203613	\N	new lead		13	\N	\N	3057
2016-11-22 21:27:28.824075+00	2016-12-09 17:06:53.906133+00	2967	completed				+12154320731		454	2016-11-22 21:27:28.822318	2016-11-22 21:35:02.539268	CA6b5c503cb68fa306c80cbcbc3f4280e7	\N	21			0	inbound	+18558021330	\N	2.92184305191040039	null	new lead		3	\N	\N	310
2017-12-05 19:56:29.984321+00	2017-12-05 20:21:09.889351+00	7598	completed				+13615649555		1477	2017-12-05 19:56:29.982833	2017-12-05 20:21:06.508805	CA5fe69699227d87727096752d4c13a404	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE7dff68f7449af746a9458888cbb582ee	0	inbound	+18558645656	136	2.7894899845123291	\N	new lead		15	\N	\N	761
2016-11-22 18:17:26.467756+00	2016-12-10 01:03:35.62064+00	2966	completed				+14438644631		255	2016-11-22 18:17:26.464801	2016-11-22 18:21:41.800627	CA3626a5e0b6be6b3c5fcbf8ca572bfa7b	\N	66			0	inbound	+18557376565	\N	0.834037065505981445	null	new lead		3	\N	\N	1603
2016-11-21 19:50:23.770788+00	2016-12-10 01:02:27.218814+00	2958	completed				+19314366347		29	2016-11-21 19:50:23.769367	2016-11-21 19:50:53.183704	CA2914981947bdecf1b97a3859b59dcb80	\N	75			0	inbound	+18555342827	\N	4.91381192207336426	null	new lead		3	\N	\N	1754
2016-11-21 19:52:41.892743+00	2016-12-10 01:02:27.218822+00	2959	completed				+19314366347		23	2016-11-21 19:52:41.891314	2016-11-21 19:53:04.650579	CA04cc1ecba42a13ea812212feb55a61a5	\N	75			0	inbound	+18555342827	\N	5.2515099048614502	null	new lead		3	\N	\N	1754
2017-09-09 14:47:01.294266+00	2017-09-09 14:49:18.455625+00	6301	completed				+13234948715		136	2017-09-09 14:47:01.291892	2017-09-09 14:49:17.342064	CAeb0b893b700107c402317bbcee3011ef	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REcb4bbc3ed5e4877a33bb32a4e92773e2	0	inbound	+18177569010	124	10.4787511825561523	\N	new lead	hester mark	12	\N	\N	2923
2017-10-18 20:24:31.35505+00	2017-10-18 20:26:04.313867+00	6744	completed				+16824122431		92	2017-10-18 20:24:31.352558	2017-10-18 20:26:03.177789	CA0c99790f5c46b5dddbebe56db0fbf125	\N	155		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE56d7c816a8df09efd1233b27a776bcac	0	inbound	+18177569010	124	10.1596019268035889	\N	new lead	alford kaliph	12	\N	\N	2925
2017-05-10 19:24:33.054315+00	2017-11-29 18:47:25.068439+00	4975	completed				+19154224776		265	2017-05-10 19:24:33.05226	2017-05-10 19:28:58.34291	CA3e4c4356503ca4c6ee38f7dc6455d020	\N	115		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE882388aca65869e906c025b3dc7502cf	0	inbound	+19728330116	\N	18.3505899906158447	\N	new lead	el paso  tx	8	\N	\N	2927
2017-08-12 14:18:11.180098+00	2017-08-12 14:21:34.040879+00	6000	completed				+14704458740		202	2017-08-12 14:18:11.177974	2017-08-12 14:21:33.30276	CA830eece5a518fbd6c4a0b8966c147a2e	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE406da7a7c69f27ae003312218dada649	0	inbound	+17704009016	132	23.1884260177612305	\N	new lead		13	\N	\N	2929
2017-01-04 20:04:43.793986+00	2017-02-08 14:12:24.697467+00	3108	missed	Linda	Watkins	Lmzwatkins@yahoo.com	+17707132548		\N	2017-01-04 20:04:43.792469	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	application submitted - autopay		1	\N	\N	2930
2017-05-05 14:58:43.511201+00	2017-11-29 18:38:49.809753+00	4736	completed				+18434895858		91	2017-05-05 14:58:43.507296	2017-05-05 15:00:14.294999	CA5935660402fed94850b4f98e25439732	\N	126			0	inbound	+12147122250	\N	1.88867402076721191	\N	new lead	minnifield euge	9	\N	\N	2931
2017-05-05 15:05:02.339857+00	2017-11-29 18:38:49.809761+00	4737	completed				+18434895858		100	2017-05-05 15:05:02.337282	2017-05-05 15:06:41.86089	CA8eda5e766b5e904edbfa547b35426ddc	\N	\N			0	inbound	+12147122250	\N	1.15586090087890625	\N	new lead	charleston  sc	9	\N	\N	2931
2017-05-05 15:09:43.624007+00	2017-11-29 18:38:49.809768+00	4738	completed				+18434895858		89	2017-05-05 15:09:43.622135	2017-05-05 15:11:12.66781	CA6d88e89626e6e25785d62eb6f267a21a	\N	\N			0	inbound	+12147122250	\N	1.38810992240905762	\N	new lead	minnifield euge	9	\N	\N	2931
2017-05-05 15:22:14.781346+00	2017-11-29 18:38:49.809819+00	4745	completed				+18434895858		61	2017-05-05 15:22:14.778218	2017-05-05 15:23:15.802714	CA334aa49650233c55ae2860fb37755791	\N	\N			0	inbound	+12147122250	\N	0.955028057098388672	\N	new lead	minnifield euge	9	\N	\N	2931
2017-05-05 15:23:49.614904+00	2017-11-29 18:38:49.809833+00	4747	completed				+18434895858		117	2017-05-05 15:23:49.613411	2017-05-05 15:25:46.19849	CA9538089d0bf65a966e04fdfab45642a4	\N	\N			0	inbound	+12147122250	\N	0.719032049179077148	\N	new lead	minnifield euge	9	\N	\N	2931
2016-12-01 22:59:09.120233+00	2016-12-10 01:00:18.568559+00	3021	completed				+16193791299		827	2016-12-01 22:59:09.118405	2016-12-01 23:12:55.90468	CA7264081e598f961255978b726dd0f4ed	\N	56			0	inbound	+18556775511	\N	9.48412513732910156	null	new lead		3	\N	\N	1452
2016-11-30 04:07:16.382006+00	2016-11-30 04:07:16.382032+00	3004	missed	Steve	Neu	steveneu@live.com	+18035462731		\N	2016-11-30 04:07:16.380107	\N		02e2ba2f-b880-4f06-9dad-a715fa6b6b38	\N			0	outbound	+18036184545	\N	\N	{}	new lead		6	\N	\N	2078
2016-11-02 16:18:39.079178+00	2016-12-09 17:06:53.906084+00	2567	completed				+17142513012		53	2016-11-02 16:18:39.077525	2016-11-02 16:19:31.596931	CAa97365ea17669626eb3e285a8b390b12	\N	21			0	inbound	+18558021330	\N	2.8451390266418457	null	new lead		3	\N	\N	2303
2016-11-01 02:56:50.48086+00	2016-11-01 02:56:50.515774+00	2448	missed	Ivo	Moyano Stradmann	vomoyano@hotmail.com	+14692716197		\N	2016-11-01 02:56:50.479642	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2932
2017-12-12 21:11:22.441209+00	2017-12-12 21:18:30.009006+00	7828	completed				+15615736261		427	2017-12-12 21:11:22.438932	2017-12-12 21:18:29.402004	CAf0c68b4af4c2c1d3cd459b64d8af0c5e	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE23b46254c18f3b1b4afcfc9ec976f138	0	inbound	+18558645656	136	2.18579697608947754	\N	new lead		15	\N	\N	2933
2017-06-16 13:58:26.827813+00	2017-06-16 14:01:30.611977+00	5587	completed				+16822287167		183	2017-06-16 13:58:26.825952	2017-06-16 14:01:29.487024	CA8f5a1fc12506f654653951ba1fa207c3	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE504d3c4f4166650b839d1fb26fa38142	0	inbound	+18177569010	124	8.92142891883850098	\N	new lead	butler zachary	12	\N	\N	2938
2017-06-01 20:17:50.56471+00	2017-11-29 18:38:49.814424+00	5559	completed				+13096790530		82	2017-06-01 20:17:50.562515	2017-06-01 20:19:12.147007	CA003ff9c20a6ea6806a6694ea346ea9b7	\N	127			0	inbound	+12147122250	\N	1.12707185745239258	\N	new lead	pearl insurance	9	\N	\N	2939
2017-06-01 20:21:32.476613+00	2017-11-29 18:38:49.814431+00	5560	completed				+13096790530		69	2017-06-01 20:21:32.474596	2017-06-01 20:22:41.426439	CA62385ed915bcf57e9787fb4d7fb8db96	\N	124			0	inbound	+12147122250	\N	1.19716691970825195	\N	new lead	pearl insurance	9	\N	\N	2939
2016-11-08 19:00:10.53485+00	2016-11-08 19:28:50.981207+00	2807	completed				+14107332449		1717	2016-11-08 19:00:10.532428	2016-11-08 19:28:47.529344	CAee6cd5585f8bc4c59ef06332da6875fc	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE546b3f5f977d4890946b4e95018c8665	0	inbound	+18557240606	49	2.20877194404602051	null	new lead		1	\N	\N	3059
2017-12-05 15:02:54.58684+00	2017-12-05 15:03:20.601812+00	7580	missed	Samuel	Beasley	Sambeasley1967@gmail.com	+17708207739		\N	2017-12-05 15:02:54.584276	\N	CA465ffa8fd42b51afd1ea4b8f641a37f0	cd009b81-ec25-40d7-a806-e428c0f41965	\N			0	outbound	+17706597466	\N	\N	{}	new lead		14	\N	\N	3060
2016-10-01 19:18:23.781338+00	2016-10-01 19:18:23.818831+00	2121	missed	Jorge	Jorge	jjspideytech@gmail.com	+17869999047		\N	2016-10-01 19:18:23.779478	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	3061
2017-12-06 16:13:32.824278+00	2017-12-06 16:20:51.550157+00	7634	completed				+12489214089		438	2017-12-06 16:13:32.822454	2017-12-06 16:20:50.330214	CAa236b173d0b0bdc331218abb645070c7	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REb3cf5014061f10262dc53f03302b624d	0	inbound	+18558645656	136	2.75643491744995117	\N	new lead		15	\N	\N	3062
2017-10-13 14:07:45.511879+00	2017-10-13 14:09:08.853733+00	6687	completed	shaneke	Graham	grahamshaneke@yahoo.com	+14048192337		70	2017-10-13 14:07:45.510135	2017-10-13 14:09:08.556049	CA2db898ed7be5df7ad42c02acae6d6078	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REfe3ab08a311738ce90e12b1c82391ea8	1	outbound	+17704009016	\N	12.7120010852813721	{}	new lead		13	\N	\N	3063
2017-10-13 14:10:31.247884+00	2017-10-13 14:13:33.592061+00	6688	completed	shaneke	Graham		+14048192337		181	2017-10-13 14:10:31.244974	2017-10-13 14:13:32.398345	CA6a48bf8b135e12925db917a534930056	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE365f7804cf55e8debea2d191212f0eb9	0	inbound	+17704009016	132	10.1334090232849121	\N	new lead		13	\N	\N	3063
2016-08-24 13:53:26.199816+00	2016-12-09 17:07:45.331516+00	1693	completed				+16107931058		131	2016-08-24 13:53:26.198487	2016-08-24 13:55:36.744114	CA0d1ffd6db1e49cd2481e2e16556fe713	\N	55			0	inbound	+18552467810	\N	2.76715302467346191	null	new lead		3	\N	\N	3065
2017-05-10 20:18:57.766994+00	2017-11-29 18:38:49.810942+00	4979	completed				+19012105428		76	2017-05-10 20:18:57.764145	2017-05-10 20:20:13.372242	CAdbfe560ccbdac6f98673a88ef41667e4	\N	107			0	inbound	+12147122250	\N	1.89962196350097656	\N	new lead	herbers ashli  	9	\N	\N	3066
2016-08-04 19:15:43.353198+00	2016-08-04 20:09:58.108131+00	1213	missed	Brian	Hall	youandi11608@yahoo.com	+19709852908		\N	2016-08-04 19:15:43.352264	\N		07cfd785-7aef-47fb-8d17-7f38ec833934	\N			0	outbound	+18556311439	\N	\N	{}	application submitted - autopay		1	\N	\N	3068
2016-11-08 20:34:15.666059+00	2016-11-08 20:55:28.438451+00	2808	completed				+18328767847		1270	2016-11-08 20:34:15.664304	2016-11-08 20:55:25.682241	CA09aef5789d433ee60ba40003e6a151f6	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE5f952ff8e404e92c5d3fc205d50c6036	0	inbound	+18557240606	49	2.29043793678283691	null	new lead		1	\N	\N	3069
2017-05-08 19:17:47.137708+00	2017-05-17 15:41:07.224429+00	4867	completed				+16824441252		109	2017-05-08 19:17:47.135035	2017-05-08 19:19:36.276873	CAec3e38f158f5dd9e6c671df90de8bc57	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REbad217c35d1d4bd1359d33e77a31f793	0	inbound	+18177569010	124	9.12147903442382812	\N	new lead	wireless caller	12	\N	\N	3070
2017-07-26 23:34:35.353498+00	2017-07-26 23:36:50.562347+00	5859	completed				+16824441252		134	2017-07-26 23:34:35.351436	2017-07-26 23:36:49.771505	CAbd97ac1ef2d24f0fdb0ecacdb1a23b19	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE3264a685e1ed50f5a34f09d0ae7815f3	0	inbound	+18177569010	124	11.337216854095459	\N	new lead	euless  tx	12	\N	\N	3070
2017-05-03 19:02:53.470804+00	2017-11-29 18:38:49.809339+00	4647	completed				+18476693444		133	2017-05-03 19:02:53.468957	2017-05-03 19:05:06.553937	CA018133f7fe11074cdb236bb8fe3fe528	\N	127			0	inbound	+12147122250	\N	1.37692403793334961	\N	new lead	natl intl roofi	9	\N	\N	3072
2017-12-05 20:55:38.757378+00	2017-12-05 20:56:12.055852+00	7605	completed	Keila	Goncalves	keilaelon@yahoo.com	+15615727666		31	2017-12-05 20:55:38.755867	2017-12-05 20:56:12.05451	CAcb5fb86a8e72843ef09653c9db977ac7	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.28634214401245117	{}	new lead		15	\N	\N	84
2016-12-01 20:40:49.30537+00	2016-12-10 01:01:00.200635+00	3019	completed				+15035103007		111	2016-12-01 20:40:49.302994	2016-12-01 20:42:40.401508	CA8751f3befdde50e285211e1fa96ddc9a	\N	57			0	inbound	+18557860909	\N	7.58795809745788574	null	new lead		3	\N	\N	440
2016-12-03 00:57:35.602945+00	2016-12-10 01:01:00.200642+00	3032	completed				+19092104312		626	2016-12-03 00:57:35.600837	2016-12-03 01:08:01.224955	CAa22028818bc0499ad42da83f5764301c	\N	57			0	inbound	+18557860909	\N	7.75520801544189453	null	new lead		3	\N	\N	573
2016-12-02 16:43:43.57624+00	2016-12-09 17:10:17.413721+00	3025	completed				+19084540804		865	2016-12-02 16:43:43.574546	2016-12-02 16:58:08.691993	CAa29bb95f0f1ed25e67b87265693b701b	\N	27			0	inbound	+18552716856	\N	6.80205202102661133	null	new lead		3	\N	\N	1871
2016-12-03 15:38:11.536315+00	2016-12-09 17:10:17.413728+00	3033	completed				+19084540804		204	2016-12-03 15:38:11.534129	2016-12-03 15:41:35.722012	CAa51ff791fc32c5477abc0a6e4cef39d0	\N	27			0	inbound	+18552716856	\N	6.18451309204101562	null	new lead		3	\N	\N	1871
2016-12-01 23:37:04.809861+00	2016-12-10 01:01:51.441191+00	3022	completed				+16197215682		279	2016-12-01 23:37:04.808064	2016-12-01 23:41:43.680128	CAc1da488c21ac86a388ff91f77c7678f4	\N	50			0	inbound	+18559693782	\N	2.87684106826782227	null	new lead		3	\N	\N	2310
2017-05-03 22:31:46.635757+00	2017-11-29 18:38:53.215029+00	4681	completed				+14699550423		52	2017-05-03 22:31:46.633996	2017-05-03 22:32:38.295897	CAa9e7770c2a53c7cbf5663577dc358f81	\N	103			0	inbound	+12146922088	\N	18.1091210842132568	\N	new lead	world class car	9	\N	\N	2955
2017-05-03 22:32:45.167365+00	2017-11-29 18:38:53.215037+00	4683	completed				+14699550423		50	2017-05-03 22:32:45.166272	2017-05-03 22:33:35.462681	CAf6c41262edbeb8134c830b1907f5fb9a	\N	99			0	inbound	+12146922088	\N	13.9930031299591064	\N	new lead	world class car	9	\N	\N	2955
2017-05-03 22:34:14.217167+00	2017-11-29 18:38:53.215043+00	4684	completed				+14699550423		37	2017-05-03 22:34:14.214467	2017-05-03 22:34:51.342461	CAa322c372a58206b699ca651fe385f160	\N	99			0	inbound	+12146922088	\N	5.93858814239501953	\N	new lead	world class car	9	\N	\N	2955
2017-05-03 22:36:06.762849+00	2017-11-29 18:38:53.21505+00	4685	completed				+14699550423		37	2017-05-03 22:36:06.761325	2017-05-03 22:36:44.130031	CA3acfd8a584d4520fadd22f8391c99439	\N	107			0	inbound	+12146922088	\N	9.05532503128051758	\N	new lead	world class car	9	\N	\N	2955
2017-12-02 01:34:13.811773+00	2017-12-02 01:35:36.852077+00	7464	completed				+18173714382		82	2017-12-02 01:34:13.809423	2017-12-02 01:35:35.502639	CA9c07106ab69a35171a2f99e36cb80abe	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE454931f7acdf5a356d9bb644591ba579	0	inbound	+18558645656	136	2.88315701484680176	\N	new lead		15	\N	\N	3077
2017-12-02 01:35:54.368026+00	2017-12-02 01:37:16.631121+00	7465	completed				+18173714382		81	2017-12-02 01:35:54.365787	2017-12-02 01:37:15.851469	CA9a363462af1bb303c1036dbf1476dc49	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE9eddbe7b6b77f44e2d91324f97d9d914	0	inbound	+18558645656	136	2.57035303115844727	\N	new lead		15	\N	\N	3077
2017-12-03 01:51:46.960187+00	2017-12-03 01:53:09.25673+00	7505	completed				+18173714382		81	2017-12-03 01:51:46.95842	2017-12-03 01:53:08.406594	CAa8b2ff159bd10a08f14062b4f3cf6821	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE588bdecba7b3dae984e741a9f7a4128b	0	inbound	+18558645656	136	2.92254519462585449	\N	new lead		15	\N	\N	3077
2017-04-13 00:00:40.42047+00	2017-11-29 18:38:53.213837+00	3849	completed				+18062901072		20	2017-04-13 00:00:40.418668	2017-04-13 00:01:00.810006	CAff18774964d2eb21835fb13e2108638d	\N	107			0	inbound	+12146922088	\N	5.38132691383361816	\N	new lead		9	\N	\N	3078
2017-04-26 13:43:23.718754+00	2017-11-29 18:38:49.806717+00	4315	completed				+19498990632		77	2017-04-26 13:43:23.715664	2017-04-26 13:44:40.240574	CA8edbe13919a10c502cdcb2b733da21e9	\N	125			0	inbound	+12147122250	\N	1.00588393211364746	\N	new lead	cell phone   ca	9	\N	\N	3079
2016-06-30 23:11:53.498222+00	2017-11-29 18:32:13.821152+00	695	completed	Unknown			+12345647210		62	2016-06-30 23:11:53.49668	2016-06-30 23:12:55.95295	CA41a3469f26ad5044f54b0b8c6281abb6	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REbebd18b23e2fefa1afe97da7868303d3	0	inbound	+18555983683	\N	\N	null	new lead		1	\N	\N	3080
2016-06-30 23:22:58.959024+00	2016-07-01 11:06:55.81103+00	696	completed	Rachel	Councell	rdcouncell@gmail.com	+12345647210		\N	2016-06-30 23:22:58.957927	\N		ee869226-e246-4ab4-aaaa-e9403e2ddd39	\N			0	outbound	+18555983683	\N	\N	{}	new lead		1	\N	\N	3080
2016-07-01 13:56:10.888403+00	2016-07-01 13:57:03.423109+00	704	completed				+12345647210		48	2016-07-01 13:56:10.887112	2016-07-01 13:57:03.421995	CA028578b9da6d5778e6f7607fafeeada2	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.36616897583007812	{}	new lead		1	\N	\N	3080
2017-12-30 20:23:22.971882+00	2017-12-30 20:24:29.643172+00	8166	completed				+19362445458		66	2017-12-30 20:23:22.970225	2017-12-30 20:24:28.508043	CAeb6b06bafd497192e4d6574bfa717529	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REe3882ff5bad0efe2e5b41869d3abd1a3	0	inbound	+18177569010	124	10.4473190307617188	\N	new lead	trotty desire	12	\N	\N	3081
2017-10-30 17:15:16.823479+00	2017-10-30 17:15:40.891574+00	6868	ringing	Trenise	Bennett	trenisebennett@yahoo.com	+17064106706		\N	2017-10-30 17:15:16.821773	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	150			0	outbound	+17704009016	\N	13.747744083404541	{}	new lead		13	\N	\N	3083
2016-10-31 13:49:36.802262+00	2016-12-09 17:10:05.263319+00	2377	completed				+14404888071		23	2016-10-31 13:49:36.800425	2016-10-31 13:49:59.816403	CAbac25d8ab226438aa853ebfef86fb438	\N	28			0	inbound	+18556248221	\N	6.2139439582824707	null	new lead		3	\N	\N	3086
2016-08-01 17:37:50.33908+00	2016-12-10 00:55:45.164969+00	1080	completed				+12153804685		43	2016-08-01 17:37:50.337746	2016-08-01 17:38:33.116698	CA8b4862fc94f08ee734477594e23a914f	\N	24			0	inbound	+18557129406	\N	1.59154915809631348	null	new lead		3	\N	\N	3088
2016-06-02 21:51:16.745476+00	2016-12-09 17:06:50.45218+00	358	completed	Unknown			+19143814762		37	2016-06-02 21:51:16.744152	2016-06-02 21:51:53.390448	CA84a3cdd498c138204c1bfaffd809d7b5	\N	22		https://api.twilio.com/2010-04-01/Accounts/AC0c010b259762ed5fecf508ef97abf3c6/Recordings/REe7c2d29b0df2d0f6bbe5e58ee69746c6	0	inbound	+18557355502	\N	3.3342280387878418	null	new lead		3	\N	\N	63
2016-06-10 13:38:27.087889+00	2016-12-09 17:06:53.90568+00	401	completed	Unknown			+14055640825		32	2016-06-10 13:38:27.086087	2016-06-10 13:38:59.291302	CA32d55dedd0b3a992210310e26ec1d7ce	\N	21		https://api.twilio.com/2010-04-01/Accounts/AC0c010b259762ed5fecf508ef97abf3c6/Recordings/REd981ce42c069ce19483e77b5feeb7021	0	inbound	+18558021330	\N	2.04037690162658691	null	new lead		3	\N	\N	281
2016-05-27 13:11:48.744007+00	2016-12-09 17:06:53.90565+00	254	missed	Unknown			+19174556852		14	2016-05-27 13:11:48.74163	2016-05-27 13:12:02.963763	CA513815aea6e42f34633b8ae21930955f	\N	\N			0	inbound	+18558021330	\N	2.93431496620178223	null	new lead		3	\N	\N	347
2016-06-02 18:31:12.703099+00	2016-12-09 17:06:53.905673+00	347	completed	Unknown			+18107654662		29	2016-06-02 18:31:12.700739	2016-06-02 18:31:41.580251	CAc37f5f3260727046dcd3aa72cc72fcd2	\N	21		https://api.twilio.com/2010-04-01/Accounts/AC0c010b259762ed5fecf508ef97abf3c6/Recordings/REbd861f90f431d380d9b506e96d36d6d2	0	inbound	+18558021330	\N	2.11029314994812012	null	new lead		3	\N	\N	1138
2016-12-05 20:47:49.193314+00	2016-12-10 00:57:48.461928+00	3043	completed				+18054909544		200	2016-12-05 20:47:49.191471	2016-12-05 20:51:08.730053	CAb2325f57c8f038ff7919aca53a1b8ab6	\N	30			0	inbound	+18559652184	\N	2.26732015609741211	null	new lead		3	\N	\N	1421
2016-12-07 21:50:10.792882+00	2016-12-09 17:07:42.627618+00	3060	completed				+13063522188		37	2016-12-07 21:50:10.791153	2016-12-07 21:50:47.904948	CA9ad37f99a06d4c3c390f39d02da798e2	\N	55			0	inbound	+18552010960	\N	3.40927910804748535	null	new lead		3	\N	\N	2400
2016-08-24 16:16:37.491764+00	2016-12-09 17:06:50.452202+00	1712	completed				+16092596018		10	2016-08-24 16:16:37.489872	2016-08-24 16:16:47.963404	CAc242c233e075027e59846900ecf6e4ab	\N	22			0	inbound	+18557355502	\N	2.36220312118530273	null	new lead		3	\N	\N	2880
2017-05-10 21:31:50.491422+00	2017-11-29 18:38:53.215604+00	4987	completed				+14699550423		33	2017-05-10 21:31:50.489632	2017-05-10 21:32:23.966836	CAbb5f88a5e7b7ea6669d816dfe5979e2b	\N	\N		https://api.twilio.com/2010-04-01/Accounts/AC5422b9b221417a7a84556a92f6edc492/Recordings/RE3f455e3b1315828929ab4c201072e45c	0	inbound	+12146922088	\N	4.74264693260192871	\N	new lead	world class car	9	\N	\N	2955
2017-07-19 16:49:24.988185+00	2017-07-19 16:52:23.573575+00	5813	completed				+16783613930		177	2017-07-19 16:49:24.986146	2017-07-19 16:52:22.365622	CAd4fb731c55712d6d3a08e7e6d0d5278e	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE74bf85833043c333e2664651cad86fb5	0	inbound	+17704009016	132	10.0594520568847656	\N	new lead		13	\N	\N	2958
2016-10-31 23:19:26.552463+00	2016-10-31 23:19:26.579066+00	2441	missed	Theresa	Rozycki	terryroz@hotmail.com	+18165378505		\N	2016-10-31 23:19:26.551335	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2960
2016-07-15 16:17:03.157954+00	2016-07-20 15:45:48.076065+00	873	completed	Stephen	Eastes	seastes@misonix.com	+15134897552		55	2016-07-15 16:17:03.156742	2016-07-15 16:18:08.356476	CA0a4a9958d9730151fe02231d13c2ee31	d33a481e-e0af-47ac-9f90-260f20b69de5	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REa73b4759139eac6e956611f4de0e5398	1	outbound	+18552959002	\N	7.69918704032897949	{}	new lead		1	\N	\N	2962
2016-06-27 16:38:36.380558+00	2016-06-27 16:42:30.425165+00	523	completed	Racy 	Wilkins	racywilkins@yahoo.com	+16142040877		205	2016-06-27 16:38:36.379303	2016-06-27 16:42:30.424085	CA11f10bf3735642350830f5526932fbfe	d33a481e-e0af-47ac-9f90-260f20b69de5	17		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE8d0fb415859afb0e680af66aa48853d9	1	outbound	+18552959002	\N	25.3121340274810791	{}	new lead		1	\N	\N	2965
2016-06-30 20:36:22.072614+00	2016-06-30 20:37:09.785846+00	692	completed				+16142040877		43	2016-06-30 20:36:22.071649	2016-06-30 20:37:09.784101	CAbd405f3ee812cf44aad0aa314186bbe6	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	1.60840797424316406	{}	new lead		1	\N	\N	2965
2016-06-17 17:29:37.112283+00	2016-12-09 17:06:53.905708+00	437	completed	Unknown			+16097906126		155	2016-06-17 17:29:37.109411	2016-06-17 17:32:12.366947	CA75a1e1b496f35ac90b3544be5d16af91	\N	21			0	inbound	+18558021330	\N	2.43761706352233887	null	new lead		3	\N	\N	16
2016-07-06 14:56:23.017641+00	2016-12-09 17:06:53.905723+00	771	completed				+18472591942		121	2016-07-06 14:56:23.016656	2016-07-06 14:58:23.867586	CAfc9ff3eff26fbe64a7d40595ff4284fb	\N	21			0	inbound	+18558021330	\N	2.07635021209716797	null	new lead		3	\N	\N	986
2017-11-02 16:14:14.724816+00	2017-11-02 16:20:37.568135+00	6902	completed				+12057128509		383	2017-11-02 16:14:14.723469	2017-11-02 16:20:37.565826	CA93db6b5ef885719afa72d545486d3fd9	\N	150			0	inbound	+17707665732	133	347.481621980667114	\N	new lead		13	\N	\N	3089
2017-11-03 17:35:55.213186+00	2017-11-03 17:36:59.964166+00	6920	completed				+12057128509		65	2017-11-03 17:35:55.210436	2017-11-03 17:36:59.945658	CA893f33a0e596225cb4388525e3c2d7b5	\N	150			0	inbound	+17707665732	133	15.6424920558929443	\N	new lead		13	\N	\N	3089
2017-10-25 00:48:56.418139+00	2017-10-25 00:49:06.112124+00	6797	missed				+14702159571		10	2017-10-25 00:48:56.415925	2017-10-25 00:49:06.104592	CA5c012206586e6390e05d23f060ed92f2	\N	\N			0	inbound	+17704009016	132	\N	\N	new lead		13	\N	\N	3092
2017-04-25 02:18:06.30992+00	2017-11-29 18:38:49.806518+00	4275	completed				+19038029590		58	2017-04-25 02:18:06.30639	2017-04-25 02:19:04.134544	CA20488598f9c53475d5997aed65ae9150	\N	107			0	inbound	+12147122250	\N	9.12160110473632812	\N	new lead	savis ladonna  	9	\N	\N	3093
2017-09-25 15:51:03.239589+00	2017-09-25 15:51:42.032581+00	6478	completed				+17027572750		39	2017-09-25 15:51:03.237492	2017-09-25 15:51:42.018663	CAfed9ed1d6faecb28e26985630874d4ff	\N	153			0	inbound	+17707665732	133	9.27118206024169922	\N	new lead		13	\N	\N	3094
2017-08-12 19:42:32.819182+00	2017-08-17 14:35:21.045816+00	6006	completed				+12145768692		44	2017-08-12 19:42:32.817408	2017-08-12 19:43:16.914409	CAe7557dee8d717a2b176ecd7961d29d3c	\N	\N			0	inbound	+18177569010	124	37.2246379852294922	\N	new lead	mejia juventino	12	\N	\N	3098
2017-08-12 22:13:01.510713+00	2017-08-17 14:35:21.045823+00	6008	completed				+12145768692		139	2017-08-12 22:13:01.508368	2017-08-12 22:15:20.961761	CA121ff3427c0ee0b05778258413804db5	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REfe16b3ddee610fd3a070085a73cd2fa8	0	inbound	+18177569010	124	70.491724967956543	\N	new lead	mejia juventino	12	\N	\N	3098
2016-08-29 17:19:58.102317+00	2016-08-29 21:11:00.718892+00	1810	missed	Crystal	carraudo	Crystalelana17@yahoo.com	+17608281506		\N	2016-08-29 17:19:58.101246	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - autopay		1	\N	\N	3100
2016-08-03 15:42:24.573989+00	2017-11-29 18:31:01.155606+00	1170	completed				+13173133321		21	2016-08-03 15:42:24.5723	2016-08-03 15:42:45.614621	CA8a8539bff13c179b1c1b8a8f41c6b017	\N	18		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REacf36f923afccf996474ff1a20844bef	0	inbound	+18556313454	\N	5.04474806785583496	null	new lead		1	\N	\N	3101
2017-08-10 02:15:25.346527+00	2017-08-10 02:15:25.404406+00	5980	missed	george	holcombe	holcombe79@gmail.com	+17065251421		\N	2017-08-10 02:15:25.344923	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	3106
2017-04-03 19:02:19.069106+00	2017-11-29 18:38:53.21327+00	3670	missed				+12143925949		3	2017-04-03 19:02:19.067486	2017-04-03 19:02:21.97366	CAc74286e5a233453f147476a20182f96f	\N	\N			0	inbound	+12146922088	\N	\N	\N	new lead	ent t	9	\N	\N	3107
2017-04-03 19:21:52.148708+00	2017-11-29 18:38:53.213277+00	3672	completed				+12143925949		17	2017-04-03 19:21:52.146542	2017-04-03 19:22:09.610156	CA7b67ce24d1d57424f85f6bba10a5fde4	\N	\N			0	inbound	+12146922088	\N	5.11692380905151367	\N	new lead	ent t	9	\N	\N	3107
2017-04-03 19:22:30.880859+00	2017-11-29 18:38:53.213285+00	3673	completed				+12143925949		278	2017-04-03 19:22:30.878189	2017-04-03 19:27:09.004052	CA9b0142230bd3eba66ee61e18aab616ba	\N	\N			0	inbound	+12146922088	\N	4.25181794166564941	\N	new lead	ent t	9	\N	\N	3107
2016-08-05 00:11:40.016324+00	2017-11-29 18:31:05.368939+00	1218	missed				+19372748257		4	2016-08-05 00:11:40.014087	2016-08-05 00:11:44.484614	CA8748c5fb6be73ed6dcdc2c1f803811d3	\N	\N			0	inbound	+18557824539	\N	\N	null	general interest		1	\N	\N	3108
2016-08-05 15:36:47.730674+00	2017-01-27 21:12:23.812729+00	1276	completed				+19372748257		63	2016-08-05 15:36:47.729694	2016-08-05 15:37:50.45527		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	3108
2016-08-05 00:11:44.883809+00	2017-11-29 18:31:05.368946+00	1219	missed				+19372748257		4	2016-08-05 00:11:44.882418	2016-08-05 00:11:48.634618	CA1f49815c308da6316dc98f54385887c7	\N	\N			0	inbound	+18557824539	\N	\N	null	general interest		1	\N	\N	3108
2016-08-05 00:12:55.33978+00	2017-11-29 18:31:05.368953+00	1251	missed				+19372748257		3	2016-08-05 00:12:55.337154	2016-08-05 00:12:58.510212	CA2d67dac6c60bf06ea366eb01e9dca95e	\N	\N			0	inbound	+18557824539	\N	\N	null	general interest		1	\N	\N	3108
2017-08-19 20:50:58.02812+00	2017-08-19 20:51:37.952339+00	6107	completed				+18179890596		39	2017-08-19 20:50:58.02625	2017-08-19 20:51:36.842218	CA74b8db98f296643309f9404897938fc5	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REe8f34824a980706d04f366e0f5de17d8	0	inbound	+18177569010	124	12.7548539638519287	\N	new lead	ware leesa	12	\N	\N	3109
2017-08-21 18:53:55.629458+00	2017-08-21 19:03:14.517371+00	6128	completed				+18179890596		559	2017-08-21 18:53:55.627852	2017-08-21 19:03:14.239919	CA009cff66c860e1006533cdee87097975	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REfa3c62ba22e87ac0ce1ad5f425fc9d0c	0	inbound	+18177569010	124	452.213271856307983	\N	new lead	ware leesa	12	\N	\N	3109
2017-06-09 20:31:12.610543+00	2017-08-17 14:35:21.045442+00	5577	completed				+18174552858		1344	2017-06-09 20:31:12.608501	2017-06-09 20:53:36.222679	CA493704b2febe4857bb87681385b79f56	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REbedacf1908f3360ac75d5c16f34f120f	0	inbound	+18177569010	124	1288.59639692306519	\N	new lead	euless  tx	12	\N	\N	3110
2017-12-23 02:16:57.216128+00	2017-12-23 02:16:57.27408+00	8075	missed	Terrol 	Hester 	terryhester42@gmail.com	+16789973797		\N	2017-12-23 02:16:57.214519	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	3111
2017-03-13 18:17:08.103987+00	2017-11-29 18:38:53.212126+00	3399	completed				+19293839692		31	2017-03-13 18:17:08.101939	2017-03-13 18:17:38.938352	CAb3fd68b516eb5843d81712e3164e1e01	\N	107			0	inbound	+12146922088	\N	5.32734084129333496	\N	new lead	boni king	9	\N	\N	3112
2017-03-13 18:18:09.494808+00	2017-11-29 18:38:53.212132+00	3400	completed				+19293839692		267	2017-03-13 18:18:09.492931	2017-03-13 18:22:36.242627	CA6cb2c82d42ca76bd35e57390c9296851	\N	99			0	inbound	+12146922088	\N	4.71904611587524414	\N	new lead	boni king	9	\N	\N	3112
2016-11-15 03:46:12.214804+00	2016-11-15 03:46:34.376581+00	2905	completed				+18179299020		22	2016-11-15 03:46:12.212292	2016-11-15 03:46:33.877003	CA23505c2cb2fd5ccd30b99fea31e40e3d	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE8ae57e562a8346eafcfb1950945f67a1	0	inbound	+18557240606	49	1.97040104866027832	null	new lead		1	\N	\N	3113
2016-11-21 22:44:20.746548+00	2016-11-21 22:59:01.461332+00	2965	completed				+18179299020		879	2016-11-21 22:44:20.745069	2016-11-21 22:58:59.598308	CAbb90e20eff37d9cf4f4f8cb80dcbc2b6	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REcc6ec41550d2e49e068cbb7ed699776c	0	inbound	+18557240606	49	2.21358299255371094	null	new lead		1	\N	\N	3113
2017-07-12 22:15:46.334681+00	2017-08-17 14:35:21.045586+00	5765	completed				+18177565090		379	2017-07-12 22:15:46.332739	2017-07-12 22:22:04.942078	CA2c425f1411126543343c17fb766aa64d	\N	\N			0	inbound	+18177569010	124	353.606412172317505	\N	new lead	gc - easytel hu	12	\N	\N	3116
2017-08-19 14:50:44.767918+00	2017-08-19 14:52:10.765007+00	6101	completed				+17067787387		86	2017-08-19 14:50:44.766166	2017-08-19 14:52:10.754993	CA6d0de688506788fdaf97b8478f6db874	\N	152			0	inbound	+17707665732	133	9.62990999221801758	\N	new lead		13	\N	\N	3118
2017-12-04 22:23:00.01645+00	2017-12-04 22:23:53.692771+00	7564	completed	David	Spalty	spaltee13@hotmail.com	+17274107862		50	2017-12-04 22:23:00.014941	2017-12-04 22:23:53.691238	CA0d9cbc123a433f78881e62b51e27a255	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.77027106285095215	{}	new lead		15	\N	\N	3119
2017-04-27 16:41:51.110818+00	2017-11-29 18:38:53.21466+00	4367	completed				+1114322582205		20	2017-04-27 16:41:51.108542	2017-04-27 16:42:11.310975	CAa32e09cb91881fe8bf5b6c435f594877	\N	105			0	inbound	+12146922088	\N	5.72300195693969727	\N	new lead		9	\N	\N	3126
2017-09-22 15:25:06.730026+00	2017-09-22 15:26:26.222478+00	6433	completed	Jasmine	Thornton	jasmine.thornton@student.life.edu	+16783584791		68	2017-09-22 15:25:06.728467	2017-09-22 15:26:26.194806	CAf4deb03e9e57b99162f6d3ef00943610	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE775cb87677f23b113aa3b917212f7f68	1	outbound	+17704009016	\N	9.79435396194458008	{}	new lead		13	\N	\N	3127
2017-04-27 21:15:53.574043+00	2017-11-29 18:38:53.214681+00	4400	completed				+17272002772		22	2017-04-27 21:15:53.572218	2017-04-27 21:16:15.927323	CA1eb9368c40d95e5e3b1f3e7796952f90	\N	\N			0	inbound	+12146922088	\N	5.21133279800415039	\N	new lead	mustafic hazim	9	\N	\N	3129
2017-04-27 21:16:26.893716+00	2017-11-29 18:38:53.214688+00	4401	completed				+17272002772		130	2017-04-27 21:16:26.892522	2017-04-27 21:18:37.302275	CAbaf118036f7e87dc076a6fc3f08267b0	\N	\N			0	inbound	+12146922088	\N	3.1042029857635498	\N	new lead	cell phone   fl	9	\N	\N	3129
2017-03-16 17:17:39.445077+00	2017-11-29 18:38:53.212453+00	3465	completed				+18434212996		1273	2017-03-16 17:17:39.442911	2017-03-16 17:38:52.130549	CAfa6f657e02b0dd268a38d48165847d49	\N	\N			0	inbound	+12146922088	\N	9.98633193969726562	\N	new lead		9	\N	\N	3130
2017-09-06 03:03:52.541141+00	2017-09-06 03:03:52.598772+00	6269	missed	Chastity	Appleby	chat35.apple@gmail.com	+17705496335		\N	2017-09-06 03:03:52.539681	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	3131
2016-11-03 20:16:16.152188+00	2016-11-03 20:19:07.240037+00	2658	completed				+14802542655		171	2016-11-03 20:16:16.150602	2016-11-03 20:19:06.813442	CAe91831392b6dd2d8535ad677a413678f	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE7d15097e6b78000157e87c48473e417b	0	inbound	+18557240606	49	42.8650350570678711	null	new lead		1	\N	\N	3135
2016-10-24 23:28:19.013541+00	2016-12-10 01:01:51.441135+00	2346	completed				+16195086023		382	2016-10-24 23:28:19.011611	2016-10-24 23:34:40.519346	CAfc69121eae70e007f236b15082fe8c3b	\N	50			0	inbound	+18559693782	\N	2.58989310264587402	null	new lead		3	\N	\N	3140
2016-11-29 21:00:33.429024+00	2016-11-29 21:14:40.094205+00	2999	completed				+12812578787		844	2016-11-29 21:00:33.426988	2016-11-29 21:14:37.514352	CAf496d1ca14570ce334b0f9931652d516	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REa4c79b89946352dacfe01b0c48ab4fb4	0	inbound	+18557240606	49	2.06137704849243164	null	new lead		1	\N	\N	3141
2016-11-29 21:15:57.082756+00	2016-11-29 21:36:17.423172+00	3000	completed				+12812578787		1217	2016-11-29 21:15:57.081112	2016-11-29 21:36:14.06063	CA316ad040478af49a2f2f773adc95d7f8	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REfa373cbfd941d43d195a29a666193ff0	0	inbound	+18557240606	49	5.40163493156433105	null	new lead		1	\N	\N	3141
2017-05-06 18:31:11.193045+00	2017-11-29 18:38:53.215192+00	4807	completed				+12142368898		22	2017-05-06 18:31:11.190962	2017-05-06 18:31:33.299725	CA38840f00667e91665ada3dff2acfb421	\N	\N			0	inbound	+12146922088	\N	3.11815404891967773	\N	new lead	ron g          	9	\N	\N	3142
2017-12-13 14:46:08.705878+00	2017-12-13 14:53:02.360085+00	7840	completed				+16787541333		412	2017-12-13 14:46:08.703355	2017-12-13 14:53:01.109345	CA015d593710649895218d3ac33d07bc35	\N	154		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE77105f6dea0bd01c353161a89f484110	0	inbound	+17707665699	134	1.45841407775878906	\N	new lead	hill lisa	13	\N	\N	3144
2016-09-08 17:41:11.511656+00	2016-12-10 01:01:00.200028+00	1964	completed				+18586103108		102	2016-09-08 17:41:11.510059	2016-09-08 17:42:53.403477	CA47c2b4194c03e29fbbe27a88c6fb9eb0	\N	57			0	inbound	+18557860909	\N	9.04688501358032227	null	new lead		3	\N	\N	3146
2017-06-01 21:55:22.495+00	2017-11-29 18:38:49.814482+00	5567	completed				+17815265875		158	2017-06-01 21:55:22.493003	2017-06-01 21:58:00.35342	CA30bb4b3b383e58c856870d368203f337	\N	107			0	inbound	+12147122250	\N	8.43223905563354492	\N	new lead	chow jacquelyn	9	\N	\N	3148
2017-08-17 17:05:49.99883+00	2017-08-17 17:28:52.39889+00	6068	missed				+18179296734		59	2017-08-17 17:05:49.996847	2017-08-17 17:06:49.079842	CA668073ee4d5267362ae24120ec8380f4	\N	\N			0	inbound	+18177569010	124	1361.20002102851868	\N	new lead	hill laverne	12	\N	\N	3150
2017-11-13 20:49:44.141067+00	2017-11-13 20:56:56.61028+00	7042	completed				+18177561440		432	2017-11-13 20:49:44.13828	2017-11-13 20:56:56.606566	CAa8b51621d9ee0f642c6f660d742eb5e7	\N	146			0	inbound	+18177569010	124	351.760036945343018	\N	new lead	christopher wilder phd	12	\N	\N	3154
2017-12-04 21:08:57.906727+00	2017-12-04 21:45:44.349248+00	7561	completed				+18109656805		2203	2017-12-04 21:08:57.904733	2017-12-04 21:45:41.304743	CA9ba5babce56f5882d34a128a36c7a3e6	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE54d2151f121ff3117b38e3f9151c259d	0	inbound	+18558645656	136	2.35673999786376953	\N	new lead		15	\N	\N	3155
2016-08-11 23:27:49.03527+00	2016-08-12 13:19:47.022649+00	1432	missed	salvador	moreno	chavymoreno@hotmail.com	+16619023000		\N	2016-08-11 23:27:49.034025	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - credit union		1	\N	\N	3161
2017-04-29 13:19:16.116855+00	2017-11-29 18:38:53.214802+00	4456	completed				+14438395102		109	2017-04-29 13:19:16.114939	2017-04-29 13:21:05.019681	CA568cb3802734df0f09b269477c3f41d1	\N	133			0	inbound	+12146922088	\N	4.57202696800231934	\N	new lead	coleman wanda	9	\N	\N	3162
2017-04-29 19:45:39.608845+00	2017-11-29 18:38:53.214823+00	4475	completed				+14438395102		31	2017-04-29 19:45:39.606855	2017-04-29 19:46:11.065329	CA65d26a98d8fa8687b7bde78bb76d18b6	\N	105			0	inbound	+12146922088	\N	5.56553196907043457	\N	new lead	coleman wanda	9	\N	\N	3162
2017-03-22 17:32:13.771825+00	2017-08-17 14:35:21.044847+00	3539	completed				+16823859940		86834	2017-03-22 17:32:13.769469	2017-03-23 17:39:28.188028	CAdf288d362b41e270618e223ef46deb49	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE4aa7341a0b39262aa2c9974df2e347f6	0	inbound	+18177569010	124	86787.4464499950409	\N	new lead	fort worth  tx	12	\N	\N	3170
2017-07-21 20:10:52.84304+00	2017-07-21 20:18:37.567477+00	5829	completed				+17706391129		463	2017-07-21 20:10:52.840928	2017-07-21 20:18:36.332016	CAa0ae5e2e4d8bbc7038637881c19df99a	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE53f42ea90a0774ce2c932456e80e5276	0	inbound	+17704009016	132	369.038780927658081	\N	new lead		13	\N	\N	3174
2016-10-04 19:22:24.694572+00	2016-12-09 17:06:53.905984+00	2143	in-progress				+12672297651		8	2016-10-04 19:22:24.692983	2016-10-04 19:22:33.025159	CA1cfdede1a0cce49e3fa48c31c02fd5cc	\N	21			0	inbound	+18558021330	\N	4.16180682182312012	null	new lead		3	\N	\N	3177
2016-11-17 21:40:09.872324+00	2016-11-17 21:40:09.897027+00	2940	missed	Carlos	Duque	cduque@interrainternational.com	+19195907977		\N	2016-11-17 21:40:09.871056	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	3184
2017-09-28 17:40:10.065374+00	2017-09-28 17:41:52.246466+00	6509	completed	Theresa	Williams 	Theresacancer66@yahoo.com	+14049642155		92	2017-09-28 17:40:10.063867	2017-09-28 17:41:52.217591	CAe0ae02f86359855c58e56b80cd41d841	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REbc29dce9c95f9624ecbff2f782d86dbd	1	outbound	+17704009016	\N	8.72992897033691406	{}	new lead		13	\N	\N	3189
2017-12-20 15:36:17.287002+00	2017-12-20 16:02:51.323285+00	8026	completed				+19049004337		1591	2017-12-20 15:36:17.284623	2017-12-20 16:02:48.099372	CAa36adc5e8e28c979372a096076ab8611	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REa10dfdc5b8e9ffebd0d2b2a64f01e4de	0	inbound	+18558645656	136	4.47250795364379883	\N	new lead		15	\N	\N	3196
2016-08-02 19:32:56.351443+00	2017-11-29 18:31:10.261904+00	1133	completed				+15133483072		24	2016-08-02 19:32:56.350166	2016-08-02 19:33:20.530716	CA147dd059468475c8aaa5a1b81eb3de3d	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE1a97eddd6de1797d1ad41172ad114e98	0	inbound	+18556311490	\N	8.66408991813659668	null	general interest		1	\N	\N	3199
2016-08-02 19:33:28.224175+00	2017-11-29 18:31:10.261923+00	1134	completed				+15133483072		152	2016-08-02 19:33:28.222574	2016-08-02 19:35:59.8916	CA7cdde176db878f534b17882a7f908404	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REf5784c98903e0bcc1cba41ee03b97a0e	0	inbound	+18556311490	\N	9.30732107162475586	null	general interest		1	\N	\N	3199
2016-10-31 18:09:25.429673+00	2016-10-31 18:42:03.500777+00	2385	completed				+17702678186		1954	2016-10-31 18:09:25.428075	2016-10-31 18:41:58.959544	CA6a71d3c8371fae8923200600d79e86c4	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REbde44fffe2b1f516bbebb7be2b7eaeca	0	inbound	+18557240606	49	2.34334588050842285	null	new lead		1	\N	\N	3339
2017-05-26 16:03:41.396523+00	2017-11-29 18:38:49.813607+00	5431	completed				+12149738082		83	2017-05-26 16:03:41.392085	2017-05-26 16:05:04.529143	CA0583d21ec9ea87f475efc1ee0758238b	\N	127			0	inbound	+12147122250	\N	1.31272697448730469	\N	new lead	baldwin jeremy	9	\N	\N	3030
2017-05-26 16:08:09.285486+00	2017-11-29 18:38:49.813614+00	5432	completed				+12149738082		65	2017-05-26 16:08:09.2837	2017-05-26 16:09:14.482284	CA78ea43989f8145a983f59aaba1afc03f	\N	99			0	inbound	+12147122250	\N	6.8641359806060791	\N	new lead	baldwin jeremy	9	\N	\N	3030
2017-09-24 20:28:36.60404+00	2017-09-24 20:30:00.596563+00	6475	missed				+18175759379		84	2017-09-24 20:28:36.601758	2017-09-24 20:30:00.585728	CA74016a6a677f01616f926d09a0cd8987	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE4749595a72210c37518e264d6bec18fb	0	inbound	+18177569010	124	\N	\N	new lead	cell phone   tx	12	\N	\N	3032
2016-10-24 16:34:12.038779+00	2016-12-10 01:01:51.441128+00	2341	completed				+16197266487		327	2016-10-24 16:34:12.036258	2016-10-24 16:39:38.917504	CA0375dc1d5a88cf4475aed94420d20370	\N	50			0	inbound	+18559693782	\N	2.24640083312988281	null	new lead		3	\N	\N	3034
2016-06-27 22:52:59.09109+00	2016-06-28 11:03:06.696747+00	561	completed	Anthony	Morgan	backtothefuture11555@yahoo.com	+17404091898		\N	2016-06-27 22:52:59.089971	\N		d33a481e-e0af-47ac-9f90-260f20b69de5	\N			0	outbound	+18552959002	\N	\N	{}	new lead		1	\N	\N	3200
2017-12-02 17:02:24.680549+00	2017-12-02 17:02:47.2587+00	7486	completed				+17705606782		21	2017-12-02 17:02:24.677625	2017-12-02 17:02:46.02768	CAcf290379a0758824ad729c945a2ac3a4	\N	157		https://api.twilio.com/2010-04-01/Accounts/ACbd7756819f4882feb347788ad7959655/Recordings/RE46ca8b673945701d303fb2745d560761	0	inbound	+17706597466	137	11.1728718280792236	\N	new lead		14	\N	\N	3207
2017-12-02 17:02:59.500968+00	2017-12-02 17:03:24.086772+00	7487	completed				+17705606782		23	2017-12-02 17:02:59.499693	2017-12-02 17:03:22.822334	CAa41a0b2d6d7f7e062c87ebd15be05f00	\N	157		https://api.twilio.com/2010-04-01/Accounts/ACbd7756819f4882feb347788ad7959655/Recordings/REd56f560b7d70bdab2540b49dae5a8d81	0	inbound	+17706597466	137	3.8146369457244873	\N	new lead		14	\N	\N	3207
2016-07-16 16:22:48.142282+00	2016-12-10 01:05:11.33702+00	884	completed				+17189879219		15	2016-07-16 16:22:48.140522	2016-07-16 16:23:02.785562	CAea0ea190e2aa9c962a7ae9f33d316ab8	\N	25			0	inbound	+18555693686	\N	1.74115300178527832	null	new lead		3	\N	\N	3209
2016-11-01 13:28:04.378787+00	2016-11-01 13:28:35.592069+00	2456	completed				+16789979577		30	2016-11-01 13:28:04.377125	2016-11-01 13:28:34.57889	CA35f09b4294327c8e9f1f72fc6c601ca8	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REf246cc7000c61c34a9884e9352cf3156	0	inbound	+18557240606	49	1.66667509078979492	null	new lead		1	\N	\N	3212
2016-11-01 13:28:41.297562+00	2016-11-01 13:46:22.914117+00	2457	completed				+16789979577		1058	2016-11-01 13:28:41.296507	2016-11-01 13:46:19.607068	CAea66726bd29342e935cc48c178bb312d	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE81c93bcb31f9ac8f2118bb9a7b44ddb8	0	inbound	+18557240606	49	1.80821609497070312	null	new lead		1	\N	\N	3212
2017-12-12 15:43:01.997756+00	2017-12-12 16:09:56.813365+00	7810	completed				+15134768895		1612	2017-12-12 15:43:01.995703	2017-12-12 16:09:53.592615	CAd3ebd914eea85f54ec1a4ece4290e147	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REa217cdc5d2c86407a0a22925bcae6e0c	0	inbound	+18558645656	136	2.64131879806518555	\N	new lead		15	\N	\N	3214
2017-12-12 16:36:33.118528+00	2017-12-12 16:39:50.478724+00	7815	completed				+15134768895		196	2017-12-12 16:36:33.115511	2017-12-12 16:39:49.19462	CAa843f175dc63fb12de319283c259e3d0	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE4d604ac97c741806dbce7d07080d2402	0	inbound	+18558645656	136	2.6898047924041748	\N	new lead		15	\N	\N	3214
2017-04-29 14:05:17.794478+00	2017-04-29 14:11:35.794785+00	4457	completed				+16017907678		378	2017-04-29 14:05:17.792753	2017-04-29 14:11:35.466746	CA526ec4b7af929b7ea93aaa37dea0fa15	\N	131		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE0afd2c1d8061926b5834f57b51e577bc	0	inbound	+18172104002	126	79.2027261257171631	\N	new lead	baaree gloria n	12	\N	\N	3217
2017-06-01 18:57:52.628679+00	2017-11-29 18:38:49.81441+00	5557	missed				+14698998351		22	2017-06-01 18:57:52.624734	2017-06-01 18:58:14.844179	CA5133a1e4aa5504e6591cde1385f9d088	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	apple vacations	9	\N	\N	3219
2017-01-13 21:41:01.695263+00	2017-02-08 14:11:15.710287+00	3121	missed	DILLON	HOWARD	tinarhamy@yahoo.com	+14046640197		\N	2017-01-13 21:41:01.694073	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	application submitted - autopay		1	\N	\N	3220
2016-11-04 14:38:58.200146+00	2016-11-04 14:41:39.608665+00	2687	completed				+17135172469		161	2016-11-04 14:38:58.198377	2016-11-04 14:41:38.910359	CAa0513c6bdd55be0fed65762c05e42567	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE4c1d0ce1377bc97cbbd00c7880f28de2	0	inbound	+18557240606	49	1.61760306358337402	null	new lead		1	\N	\N	3221
2017-04-17 14:34:32.857599+00	2017-11-29 18:47:25.068059+00	3984	completed				+12146203054		149	2017-04-17 14:34:32.855911	2017-04-17 14:37:01.463032	CAd8b599ca823a9f4706b5e0f21cf3186e	\N	84		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REb881d377dd99f04261f549fc0bd2284e	0	inbound	+19728330116	\N	8.09357404708862305	\N	new lead	frye frank     	8	\N	\N	3223
2017-12-16 18:50:32.394174+00	2017-12-16 18:50:32.972716+00	7928	missed	Devi	Johnson-Evans		+14044493407		1	2017-12-16 18:50:32.392023	2017-12-16 18:50:32.962483	CA68b7aa9c8c6199b8a43d8c37f0661e74	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead	devi chef	13	\N	\N	3224
2017-12-16 18:53:26.092495+00	2017-12-16 18:53:26.337731+00	7933	missed	Devi	Johnson-Evans		+14044493407		0	2017-12-16 18:53:26.091436	2017-12-16 18:53:26.328273	CAc8894f5edc6345e05f47623b342808fe	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead	devi chef	13	\N	\N	3224
2017-12-16 18:53:44.938307+00	2017-12-16 18:56:17.402347+00	7934	completed	Devi	Johnson-Evans		+14044493407		151	2017-12-16 18:53:44.936806	2017-12-16 18:56:16.325218	CAb1e483ccbe771d3def92766e9d3686ef	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE5246cd345fc624d489cbc92d3775b369	0	inbound	+17707665732	133	20.5122220516204834	\N	new lead	devi chef	13	\N	\N	3224
2017-12-19 14:55:22.305076+00	2017-12-19 14:55:33.609331+00	7993	completed	Devi	Johnson-Evans		+14044493407		10	2017-12-19 14:55:22.303787	2017-12-19 14:55:32.20166	CA1c69260dc8f4e7db15fc13f06c28bc52	\N	154		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE6bea258fef8959238adb65fa0e77313a	0	inbound	+17707665699	134	1.45254302024841309	\N	new lead	devi chef	13	\N	\N	3224
2017-12-19 14:55:37.023241+00	2017-12-19 15:02:41.212562+00	7994	completed	Devi	Johnson-Evans		+14044493407		421	2017-12-19 14:55:37.021789	2017-12-19 15:02:38.015171	CA9f143a71b0e715e0e4e1d63f9a40bddc	\N	154		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REe9b45b2a87d2911f6d279b34a002a7bc	0	inbound	+17707665699	134	1.97894406318664551	\N	new lead	devi chef	13	\N	\N	3224
2017-12-19 16:59:02.794614+00	2017-12-19 16:59:25.7346+00	7999	completed	Devi	Johnson-Evans		+14044493407		22	2017-12-19 16:59:02.79124	2017-12-19 16:59:25.036874	CA758368f440606bfe03f10cb765da3f1f	\N	154		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REbab8c0a3a4d21af643f6a3b90e93a6e7	0	inbound	+17707665699	134	1.62413406372070312	\N	new lead	devi chef	13	\N	\N	3224
2017-12-19 16:59:30.163532+00	2017-12-19 16:59:41.296853+00	8000	completed	Devi	Johnson-Evans		+14044493407		10	2017-12-19 16:59:30.162386	2017-12-19 16:59:40.539351	CA0293d97dfd821431ef081eb6945d15db	\N	154		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REb75131cf11f59ca154828ef29f18c3b3	0	inbound	+17707665699	134	0.91477203369140625	\N	new lead	devi chef	13	\N	\N	3224
2017-12-19 16:59:45.088458+00	2017-12-19 17:07:42.349119+00	8001	completed	Devi	Johnson-Evans		+14044493407		474	2017-12-19 16:59:45.087378	2017-12-19 17:07:39.019091	CAcaf20ffb6d66c21370559ea03282f4a8	\N	154		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE5c9d2bca2f1a45275330ea74d7690108	0	inbound	+17707665699	134	1.06648612022399902	\N	new lead	devi chef	13	\N	\N	3224
2017-12-20 14:30:27.780629+00	2017-12-20 14:39:37.334907+00	8023	completed	Devi	Johnson-Evans		+14044493407		549	2017-12-20 14:30:27.776987	2017-12-20 14:39:36.595093	CA80e0307c5dccaf169af8f3cf0bf9124f	\N	154		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE66217a58a2c36bfeaa2e6033129ca2a6	0	inbound	+17707665699	134	1.30874514579772949	\N	new lead	devi chef	13	\N	\N	3224
2017-12-20 17:37:59.304306+00	2017-12-20 17:41:39.889309+00	8028	completed	Devi	Johnson-Evans		+14044493407		219	2017-12-20 17:37:59.302612	2017-12-20 17:41:38.633233	CA79702ea7e0b944e74dbc81369ab0adf7	\N	154		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REb467270a0089600206fe1ea2690903d4	0	inbound	+17707665699	134	0.933574914932250977	\N	new lead	devi chef	13	\N	\N	3224
2017-12-20 17:43:14.858103+00	2017-12-20 17:46:23.816356+00	8029	completed	Devi	Johnson-Evans		+14044493407		188	2017-12-20 17:43:14.856294	2017-12-20 17:46:22.50836	CAf9e37b72712e325f038e931eebd0fcdc	\N	154		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE4540a9f59592cd50da69c7f8be2f0520	0	inbound	+17707665699	134	1.30940103530883789	\N	new lead	devi chef	13	\N	\N	3224
2017-10-26 13:01:07.340427+00	2017-10-26 13:03:25.531775+00	6808	completed	Devi	Johnson-Evans		+14044493407		138	2017-10-26 13:01:07.337184	2017-10-26 13:03:25.522749	CAf1c9a182ae72a3d99e6a769735259d59	\N	150			0	inbound	+17707665732	133	15.5240168571472168	\N	new lead		13	\N	\N	3224
2017-10-25 15:34:31.30752+00	2017-10-25 15:35:10.458991+00	6803	completed	Devi	Johnson-Evans	djohnsonevans@gmail.com	+14044493407		28	2017-10-25 15:34:31.305673	2017-10-25 15:35:09.155183	CA96d5fdf4c06202ab5a465cbe7cef2a76	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE6c7d6dd287213b040d5182cab2785ffa	1	outbound	+17704009016	\N	9.51032805442810059	{}	new lead		13	\N	\N	3224
2017-10-26 14:16:40.250657+00	2017-10-26 14:22:55.072828+00	6814	completed	Devi	Johnson-Evans		+14044493407		374	2017-10-26 14:16:40.248307	2017-10-26 14:22:53.915807	CA1d32bcaa10475589a4a643721f2fbd31	\N	153			0	inbound	+17707665732	133	347.148188829421997	\N	new lead		13	\N	\N	3224
2017-10-26 14:33:40.397835+00	2017-10-26 14:36:25.334888+00	6816	completed	Devi	Johnson-Evans		+14044493407		165	2017-10-26 14:33:40.395877	2017-10-26 14:36:25.318386	CA625a37e5e0bbbea05f5a31d91fd991e2	\N	153			0	inbound	+17707665732	133	13.0427820682525635	\N	new lead		13	\N	\N	3224
2017-10-30 12:11:20.31692+00	2017-10-30 12:11:37.129306+00	6859	missed	Devi	Johnson-Evans		+14044493407		17	2017-10-30 12:11:20.314927	2017-10-30 12:11:37.120388	CAbe99b5ee17bcd65282c5c232eb68ebc6	\N	\N			0	inbound	+17707665732	133	\N	\N	new lead		13	\N	\N	3224
2017-10-30 13:04:52.423283+00	2017-10-30 13:06:23.2016+00	6860	completed	Devi	Johnson-Evans		+14044493407		91	2017-10-30 13:04:52.421245	2017-10-30 13:06:23.189922	CAc4c42acb151dd71d5df87b6c24d03df2	\N	153			0	inbound	+17707665732	133	9.35370588302612305	\N	new lead		13	\N	\N	3224
2017-11-03 06:40:28.130114+00	2017-11-03 06:40:29.122445+00	6911	missed	Devi	Johnson-Evans		+14044493407		1	2017-11-03 06:40:28.128705	2017-11-03 06:40:29.112639	CA63d29a20b75c284d9ef0758de60450d6	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	3224
2017-11-03 06:40:22.540753+00	2017-11-03 06:40:23.108605+00	6910	missed	Devi	Johnson-Evans		+14044493407		1	2017-11-03 06:40:22.53843	2017-11-03 06:40:23.099169	CA3a323a99f85162386c866f65b0597c1b	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	3224
2017-11-03 06:40:39.210513+00	2017-11-03 06:40:39.839713+00	6912	missed	Devi	Johnson-Evans		+14044493407		1	2017-11-03 06:40:39.208853	2017-11-03 06:40:39.829089	CA589ca72a59d6ffa4921e6a76b59de10d	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	3224
2017-11-20 16:12:59.446746+00	2017-11-20 16:29:02.035214+00	7139	completed	Devi	Johnson-Evans		+14044493407		963	2017-11-20 16:12:59.445128	2017-11-20 16:29:02.020375	CA18d3cc9573718925b8480fd21c824e13	\N	154			0	inbound	+17707665699	134	2.01254010200500488	\N	new lead		13	\N	\N	3224
2017-11-20 16:36:04.548575+00	2017-11-20 16:43:19.707997+00	7140	completed	Devi	Johnson-Evans		+14044493407		435	2017-11-20 16:36:04.546168	2017-11-20 16:43:19.692398	CA8650cc600c69f28faf78b7d5bb221102	\N	154			0	inbound	+17707665699	134	1.71422696113586426	\N	new lead		13	\N	\N	3224
2016-06-27 18:32:56.154616+00	2016-06-27 18:34:49.558556+00	538	completed				+17404771313		109	2016-06-27 18:32:56.153578	2016-06-27 18:34:49.55748	CA944f68c8939b94fb0ba295adf23f846c	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	1.5288078784942627	{}	new lead		1	\N	\N	3230
2016-06-27 17:42:35.497194+00	2017-11-29 18:31:41.490093+00	529	completed	Unknown			+17404771313		29	2016-06-27 17:42:35.49583	2016-06-27 17:43:04.317985	CA39d5a9af2f4d19d331ad289099f6772a	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REdb8dafdeffd2a210ac6f09e65bb36a0b	0	inbound	+18552959002	\N	13.9224379062652588	null	new lead		1	\N	\N	3230
2016-06-27 15:01:50.32008+00	2016-06-27 15:03:11.227199+00	502	completed				+17404771313		77	2016-06-27 15:01:50.318785	2016-06-27 15:03:11.226002	CA59240e45ea40e6feb9942b0278bb27de	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	1.63341403007507324	{}	new lead		1	\N	\N	3230
2016-06-26 20:18:28.334972+00	2017-11-29 18:31:41.49005+00	473	completed	Paul	Brown		+17404771313		22	2016-06-26 20:18:28.333493	2016-06-26 20:18:50.389832	CA3117576cf57e96380843b3c249b08f5a	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REf52c70b2dec8dfb0853c5303f508d970	0	inbound	+18552959002	\N	\N	null	new lead		1	\N	\N	3230
2017-09-11 19:44:09.351358+00	2017-09-11 19:45:50.633836+00	6317	completed				+15016132479		100	2017-09-11 19:44:09.347219	2017-09-11 19:45:49.539425	CAa7fea759e58baad00ae93be72d93b62f	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REd3fc842bf0315357a6f049f931244195	0	inbound	+18177569010	124	6.60378003120422363	\N	new lead	s matlock	12	\N	\N	3232
2017-08-08 21:21:35.595408+00	2017-08-08 21:27:41.220717+00	5971	missed				+14046419998		36	2017-08-08 21:21:35.593731	2017-08-08 21:22:11.650534	CAfbd47de82c49da153155a31107b7c85b	\N	\N			0	inbound	+17704009016	132	\N	\N	new lead		13	\N	\N	3233
2017-11-07 20:11:41.426937+00	2017-11-07 20:14:35.430821+00	6963	completed				+12544851548		173	2017-11-07 20:11:41.423122	2017-11-07 20:14:34.728778	CA48ea4185a3d1922e5cbc0bd30cdf815a	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE06602fd7c0d39695808115328bfef530	0	inbound	+18177569010	124	66.8944220542907715	\N	new lead	euless  tx	12	\N	\N	3234
2017-12-02 20:49:58.353308+00	2017-12-02 20:51:51.508008+00	7500	completed				+18174371539		112	2017-12-02 20:49:58.351361	2017-12-02 20:51:50.756652	CAde409c4f624201745f3a12c4be02197d	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REb68c7a6bf54d5da852de49cbc1a6fe95	0	inbound	+18177569010	124	10.8863611221313477	\N	new lead	thompson jr boy	12	\N	\N	3236
2017-11-27 21:38:04.129218+00	2017-11-27 21:41:50.355094+00	7354	completed	Kelli	Minish	Kelliminish26@yahoo.com	+17063620029		215	2017-11-27 21:38:04.127559	2017-11-27 21:41:49.667607	CA2ef37778d65601e9032f7a394e9d0968	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REc280e19eff809ee1bb89fee54410c154	1	outbound	+17704009016	\N	9.83507895469665527	{}	new lead		13	\N	\N	3239
2016-05-25 16:43:41.484982+00	2016-05-25 16:44:21.834998+00	210	completed	Robert	Kocak	rezskocak@aol.com	+14384900760		27	2016-05-25 16:43:41.483928	2016-05-25 16:44:21.833171	CA086aa520be556ad8f5b459349354cd01	949dfa1a-fa15-4d8d-b6c3-42eaeaade433	19			1	outbound	+18552000227	\N	10.2976179122924805	{"vin": "4T1BF1FK6FU959129"}	new lead		3	\N	\N	3244
2016-08-08 13:40:41.594345+00	2016-12-10 01:01:51.440686+00	1315	completed	Robert	Kocak		+14384900760		12	2016-08-08 13:40:41.592497	2016-08-08 13:40:53.705872	CA23d7bf4f880f9a776e0cd610ef05b4bd	\N	50			0	inbound	+18559693782	\N	2.1582329273223877	null	new lead		3	\N	\N	3244
2016-08-25 00:57:45.739629+00	2016-12-10 01:00:18.568308+00	1757	completed				+15593624714		73	2016-08-25 00:57:45.738504	2016-08-25 00:58:58.80899	CA7449fadbf7cde7fcc65a6013e5ce4b9f	\N	56			0	inbound	+18556775511	\N	4.24235701560974121	null	new lead		3	\N	\N	56
2016-09-08 22:22:50.118644+00	2016-12-10 01:00:18.56842+00	1972	completed				+16198850687		112	2016-09-08 22:22:50.116429	2016-09-08 22:24:41.903485	CAbbb36c15bedaede7de8be5a8231d00f7	\N	56			0	inbound	+18556775511	\N	4.90520691871643066	null	new lead		3	\N	\N	138
2016-10-12 16:11:03.2294+00	2016-12-10 01:01:00.200406+00	2279	completed				+16198524173		16	2016-10-12 16:11:03.226762	2016-10-12 16:11:18.736444	CAf8541276df5705ecd477fc582dfbebea	\N	57			0	inbound	+18557860909	\N	3.62647795677185059	null	new lead		3	\N	\N	2557
2017-05-15 16:33:29.465707+00	2017-11-29 18:38:49.811537+00	5073	completed				+14129600018		140	2017-05-15 16:33:29.462783	2017-05-15 16:35:48.996736	CAb92e847f1feeb309572e8dda3595c117	\N	133			0	inbound	+12147122250	\N	5.58467984199523926	\N	new lead	jones john	9	\N	\N	3102
2017-05-16 00:23:31.764098+00	2017-11-29 18:38:49.811664+00	5097	completed				+14129600018		249	2017-05-16 00:23:31.761856	2017-05-16 00:27:40.863307	CA1befb33387900bb500a5b71175b6221e	\N	107			0	inbound	+12147122250	\N	8.70184803009033203	\N	new lead	redden brandon	9	\N	\N	3102
2017-05-23 15:31:32.435004+00	2017-11-29 18:38:49.81277+00	5314	missed				+14129600018		43	2017-05-23 15:31:32.433259	2017-05-23 15:32:15.333761	CA21dc4993aea4c20ac877dad3a53c94ee	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	redden brandon	9	\N	\N	3102
2017-05-23 15:41:02.413896+00	2017-11-29 18:38:49.812777+00	5315	completed				+14129600018		101	2017-05-23 15:41:02.411928	2017-05-23 15:42:43.150471	CAaa33b2e778610c42b684483c9d653af7	\N	105			0	inbound	+12147122250	\N	0.318781137466430664	\N	new lead	redden brandon	9	\N	\N	3102
2017-05-23 15:43:19.856542+00	2017-11-29 18:38:49.812784+00	5316	completed				+14129600018		60	2017-05-23 15:43:19.854905	2017-05-23 15:44:19.990745	CAba08819c7ee439091fea24cb7b0c02ed	\N	133			0	inbound	+12147122250	\N	6.41113495826721191	\N	new lead	redden brandon	9	\N	\N	3102
2016-09-28 15:23:01.433413+00	2016-11-09 15:42:56.35141+00	2091	completed				+13023686300		27	2016-09-28 15:23:01.430527	2016-09-28 15:23:27.988328	CAd37315265b1cef284468ca59fadb45de	\N	37			0	inbound	+18556371303	\N	2.80726790428161621	null	new lead		3	\N	\N	3103
2016-05-23 23:53:11.506141+00	2017-11-29 18:31:37.368168+00	182	completed	Unknown			+19723459980		17	2016-05-23 23:53:11.504392	2016-05-23 23:53:28.409207	CA3975e2b30ea1c28b6ec7f9d5e0cf7bb9	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REb2cb7db783901f763ae1f9d254df5389	0	inbound	+18555472453	\N	\N	null	new lead		1	\N	\N	3105
2016-05-25 18:22:01.905578+00	2016-05-25 18:23:47.348902+00	224	completed				+19723459980		101	2016-05-25 18:22:01.904142	2016-05-25 18:23:47.347871	CA4178fcf39a605afc27ecb4190ab0c56f	8f30d55b-8601-40b9-9d7f-11bfe29c5449	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE54d2b9efe9d6f8eca207bd54f510dbb5	1	outbound	+18555472453	\N	1.49336004257202148	{}	new lead		1	\N	\N	3105
2016-06-08 19:47:53.459641+00	2017-11-29 18:31:10.261205+00	398	completed	Chris	Shouse		+15135756706		44	2016-06-08 19:47:53.457826	2016-06-08 19:48:37.460387	CA38f4428ef961170c76cb48f8dfae2f9f	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE4271489d70e12827f8d0d9bcc1a180d5	0	inbound	+18556311490	\N	14.0378708839416504	null	new lead		1	\N	\N	3245
2016-06-08 19:52:20.994376+00	2016-06-08 19:53:37.205397+00	399	completed				+15135756706		68	2016-06-08 19:52:20.993498	2016-06-08 19:53:37.204426	CA157e2ed2cc30dd4f5edb8523411fb479	cd89e433-4bde-4f86-9b22-8f52c2413fcd	16			1	outbound	+18556311490	\N	1.67733883857727051	{}	new lead		1	\N	\N	3245
2016-06-08 07:33:53.742626+00	2016-06-08 12:36:04.290763+00	394	completed	Chris 	Shouse 	chrisshouse_20@yahoo.com	+15135756706		\N	2016-06-08 07:33:53.7414	\N		25d0200e-983d-4413-94ae-eb664b99711c	\N			0	outbound	+18556311490	\N	\N	{}	new lead		1	\N	\N	3245
2016-06-08 12:55:28.584153+00	2016-06-08 12:57:10.383673+00	395	completed				+15135756706		97	2016-06-08 12:55:28.582305	2016-06-08 12:57:10.382639	CAa947e06862c654071a2d394e49819abc	cd89e433-4bde-4f86-9b22-8f52c2413fcd	16			1	outbound	+18556311490	\N	1.41543817520141602	{}	new lead		1	\N	\N	3245
2016-06-08 20:40:26.00965+00	2017-11-29 18:31:10.261221+00	400	completed	Unknown			+15135756706		321	2016-06-08 20:40:26.008274	2016-06-08 20:45:47.079417	CA28e2643de61e75418db2b199b15bc81a	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REda5ed7f7202964099627bfce63d2c28f	0	inbound	+18556311490	\N	7.97865486145019531	null	new lead		1	\N	\N	3245
2016-11-09 18:31:13.63446+00	2017-11-29 18:32:13.821944+00	2823	missed				+13304233913		83	2016-11-09 18:31:13.632767	2016-11-09 18:32:36.413461	CAf02e62095e41a13bb081a69f942b841d	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE6ed6a0cb851de0cb9d0496b38f40fedc	0	inbound	+18555983683	\N	31.8733229637145996	null	new lead		1	\N	\N	3248
2016-11-16 18:11:50.378788+00	2017-11-29 18:32:13.821951+00	2924	missed				+13304233913		82	2016-11-16 18:11:50.377325	2016-11-16 18:13:11.929928	CAe1349cb7b9e1c61208301e26aeb23bc5	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REecc81d2db0a547f1ff8e3d9faf2ea4c5	0	inbound	+18555983683	\N	32.0226709842681885	null	new lead		1	\N	\N	3248
2016-09-15 12:59:48.783341+00	2016-11-09 15:46:31.903355+00	2021	completed				+13213239667		9	2016-09-15 12:59:48.781163	2016-09-15 12:59:57.581417	CA7c153b6ffbe5a4b601b1f2b859ba09e5	\N	39			0	inbound	+18555983849	\N	2.35948419570922852	null	new lead		3	\N	\N	3252
2016-09-15 13:00:18.577933+00	2016-11-09 15:46:28.724961+00	2022	completed				+13213239667		11	2016-09-15 13:00:18.576213	2016-09-15 13:00:29.826586	CA43858bbf1acac11438292a2d26cb42a6	\N	40			0	inbound	+18555571474	\N	\N	null	new lead		3	\N	\N	3252
2016-07-08 19:12:45.632152+00	2016-07-08 19:14:53.833254+00	833	completed	Bonnie	Drake		+13303070500		123	2016-07-08 19:12:45.631105	2016-07-08 19:14:53.832175	CAa5a3f02f6181edec59aba5f28ed61283	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.83928203582763672	{}	new lead		1	\N	\N	3254
2017-12-05 20:59:06.818498+00	2017-12-05 21:00:56.705349+00	7608	completed	Theresa	Kraus	theresa.kraus1981@yahoo.com	+17706300641		94	2017-12-05 20:59:06.817088	2017-12-05 21:00:56.682559	CA356add1cea8afbb12cbbc4989828894e	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE6155ff8f017ad48afe49e97882b22052	1	outbound	+17704009016	\N	18.0099420547485352	{}	new lead		13	\N	\N	36
2017-12-05 23:09:56.953394+00	2017-12-05 23:09:56.988087+00	7616	missed	Gary	Whisenhunt	Brandie.whisenhunt@yahoo.com	+14324888347		\N	2017-12-05 23:09:56.951889	\N		243bc1c1-c430-4ccb-b9d9-71662ebbb896	\N			0	outbound	+18558645656	\N	\N	{}	new lead		15	\N	\N	373
2016-07-08 17:31:19.339737+00	2017-11-29 18:32:13.821434+00	831	completed	Bonnie	Drake		+13303070500		51	2016-07-08 17:31:19.33693	2016-07-08 17:32:10.747468	CAf5bc0c00c2693218c1be675a132b5fda	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REfc83c9fd215756ad11ae34afda1973ca	0	inbound	+18555983683	\N	14.5046858787536621	null	new lead		1	\N	\N	3254
2017-03-18 23:53:41.276493+00	2017-11-29 18:38:53.212615+00	3499	completed				+14054217792		21	2017-03-18 23:53:41.274289	2017-03-18 23:54:02.044542	CA87121e602b7e031df4c9047360cdd363	\N	105			0	inbound	+12146922088	\N	4.08280706405639648	\N	new lead		9	\N	\N	3256
2017-03-29 01:04:57.064705+00	2017-03-29 12:40:08.745319+00	3616	missed	Donald	Renzenbrink	nickdive@aol.com	+13307578090		\N	2017-03-29 01:04:57.063512	\N		ee869226-e246-4ab4-aaaa-e9403e2ddd39	\N			0	outbound	+18555983683	\N	\N	{}	application submitted - credit union		1	\N	\N	3258
2017-03-31 14:31:34.107446+00	2017-11-29 18:32:13.822035+00	3639	missed	Donald	Renzenbrink	nickdive@aol.com	+13307578090		73	2017-03-31 14:31:34.104751	2017-03-31 14:32:46.830877		\N	16			0	outbound	+18555983683	\N	\N	\N	application submitted - credit union		1	\N	\N	3258
2016-07-05 16:27:31.559381+00	2017-11-29 18:31:41.490318+00	753	completed	Molly	Savage		+17402152922		29	2016-07-05 16:27:31.556158	2016-07-05 16:28:00.901507	CA7efd97ace490c475a468367aabbbed19	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE1b3434b7a7f472bfffbbf63b5f08779d	0	inbound	+18552959002	\N	15.0099341869354248	null	new lead		1	\N	\N	3260
2016-07-02 15:06:50.466541+00	2016-07-05 12:37:27.396637+00	739	completed	Molly	Savage	Savdawg98@yahoo.com	+17402152922		\N	2016-07-02 15:06:50.4656	\N		d33a481e-e0af-47ac-9f90-260f20b69de5	\N			0	outbound	+18552959002	\N	\N	{}	new lead		1	\N	\N	3260
2016-07-02 14:27:57.507687+00	2017-11-29 18:31:41.490297+00	737	completed	Unknown			+17402152922		20	2016-07-02 14:27:57.505986	2016-07-02 14:28:17.796642	CA4b44646a80190e942a2702c1945ff303	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REcb63de31daedc75e373c963dfe991648	0	inbound	+18552959002	\N	\N	null	new lead		1	\N	\N	3260
2016-07-02 14:51:31.632454+00	2017-11-29 18:31:41.490304+00	738	completed	Unknown			+17402152922		19	2016-07-02 14:51:31.630876	2016-07-02 14:51:51.033321	CA47e4b215d00d4857fe413547bc782654	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REec12300df484a36f42f32cf5539603b3	0	inbound	+18552959002	\N	\N	null	new lead		1	\N	\N	3260
2017-09-04 16:22:18.438567+00	2017-09-04 16:24:05.868152+00	6250	completed				+18177915794		106	2017-09-04 16:22:18.436557	2017-09-04 16:24:04.756514	CAfe51cd732026747836ae1596c2df6b17	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REa203329e6292eb7e27ef16cd6859b07d	0	inbound	+18177569010	124	13.1974380016326904	\N	new lead	patricia choice	12	\N	\N	3262
2017-10-30 17:51:50.44106+00	2017-10-30 17:53:24.17921+00	6871	completed	Bridget	Thompson	bridgetsaylor11@gmail.com	+14708487880		84	2017-10-30 17:51:50.439419	2017-10-30 17:53:23.972419	CA9baaad5e5af3b7273c2ba13420c15fb5	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE04e533e4da76fc3bac9a0c16097b4f16	1	outbound	+17704009016	\N	17.6225810050964355	{}	new lead		13	\N	\N	3263
2016-07-30 04:18:42.710736+00	2016-07-30 04:18:42.735502+00	1055	missed	Punnamchander	Erram	erram.punnam@gmail.com	+15107174475		\N	2016-07-30 04:18:42.709419	\N		25d0200e-983d-4413-94ae-eb664b99711c	\N			0	outbound	+18556311490	\N	\N	{}	new lead		1	\N	\N	3264
2017-10-16 13:11:04.343505+00	2017-10-16 13:13:08.100065+00	6719	completed	Abasha	Smith	Abasha.smith@yahoo.com	+16788632343		110	2017-10-16 13:11:04.341789	2017-10-16 13:13:08.075601	CA8e6117b6f4dd746dbed84f1f4daefc91	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REff1d9bbbb686d4e0c935211bb16dbcce	1	outbound	+17704009016	\N	13.891077995300293	{}	new lead		13	\N	\N	3265
2016-08-02 04:40:10.38453+00	2016-08-02 14:04:38.027356+00	1112	missed	Rene Paul	Gonzalez	ponggonzalez@yahoo.com	+18186345321		\N	2016-08-02 04:40:10.383466	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - autopay		1	\N	\N	3269
2016-09-01 16:09:35.370947+00	2016-12-10 01:01:51.440729+00	1835	completed				+16194260986		226	2016-09-01 16:09:35.368577	2016-09-01 16:13:21.292903	CAba2527ba146efca8060bd4a38c7976a8	\N	50			0	inbound	+18559693782	\N	2.01704692840576172	null	new lead		3	\N	\N	3270
2017-11-09 11:01:46.135618+00	2017-11-09 11:02:02.175728+00	6990	missed				+16787251772		16	2017-11-09 11:01:46.132147	2017-11-09 11:02:02.166976	CA3edf307b3a95e1e340e313dfe522383d	\N	\N			0	inbound	+17707665732	133	\N	\N	new lead		13	\N	\N	3272
2016-11-02 15:47:45.622637+00	2016-11-02 16:08:25.510173+00	2556	completed				+16783134220		1237	2016-11-02 15:47:45.621515	2016-11-02 16:08:23.096299	CA11d8a8a02c796de7898438f5610251e5	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE433cd754b3f87ef2a4aabb796ac987ba	0	inbound	+18557240606	49	2.33470296859741211	null	new lead		1	\N	\N	3274
2017-05-01 22:59:39.21627+00	2017-11-29 18:38:49.808472+00	4557	completed				+15208774851		145	2017-05-01 22:59:39.214475	2017-05-01 23:02:04.164377	CAa1b4999f798865ad5999c275040a3d9f	\N	107			0	inbound	+12147122250	\N	4.94188404083251953	\N	new lead	bank of the wes	9	\N	\N	3277
2017-05-08 16:57:28.687716+00	2017-11-29 18:38:49.810315+00	4852	completed				+15208774851		73	2017-05-08 16:57:28.685398	2017-05-08 16:58:41.764028	CA9f9ae078b44b4158ec44144eae7fb949	\N	125			0	inbound	+12147122250	\N	1.10849404335021973	\N	new lead	bank of the wes	9	\N	\N	3277
2017-05-08 16:58:31.846591+00	2017-11-29 18:38:49.810322+00	4853	completed				+15208774851		55	2017-05-08 16:58:31.844852	2017-05-08 16:59:26.841091	CAc4a8767bcdfff99d61996e3b34030cb0	\N	125			0	inbound	+12147122250	\N	1.94165706634521484	\N	new lead	bank of the wes	9	\N	\N	3277
2017-05-08 16:59:16.62376+00	2017-11-29 18:38:49.81033+00	4854	completed				+15208774851		81	2017-05-08 16:59:16.622269	2017-05-08 17:00:37.795419	CAf312f2ef0123b5c14625d10f4e636609	\N	127			0	inbound	+12147122250	\N	2.19415092468261719	\N	new lead	bank of the wes	9	\N	\N	3277
2017-05-08 17:57:17.059966+00	2017-11-29 18:38:49.810344+00	4858	completed				+15208774851		86	2017-05-08 17:57:17.058515	2017-05-08 17:58:42.8926	CA0d2f5ecf613d7d0b728c899721139fe3	\N	125			0	inbound	+12147122250	\N	1.2710421085357666	\N	new lead	bank of the wes	9	\N	\N	3277
2016-06-28 21:44:42.918765+00	2016-06-28 21:56:48.083401+00	622	completed	Jenna	Watson	jlwatson1008@gmail.com	+13307745644		0	2016-06-28 21:44:42.917555	2016-06-28 21:45:09.240934	CA284bc170986658fa6075ce1786fc7638	ee869226-e246-4ab4-aaaa-e9403e2ddd39	\N			1	outbound	+18555983683	\N	\N	{}	new lead		1	\N	\N	3280
2016-08-25 13:08:04.892414+00	2016-08-25 13:27:22.962121+00	1762	missed	Luanne	Salzgeber	salzgeberluanne@gmail.com	+16144409378		\N	2016-08-25 13:08:04.891258	\N		d33a481e-e0af-47ac-9f90-260f20b69de5	\N			0	outbound	+18552959002	\N	\N	{}	application submitted - credit union		1	\N	\N	3283
2017-07-08 16:07:10.332053+00	2017-07-08 16:11:16.100519+00	5736	completed	Naum	Itskov	normhomes@comcast.net	+17702749263		229	2017-07-08 16:07:10.330464	2017-07-08 16:11:14.903471	CA1a9ccb767d812a1facffa384a1cafd4a	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REdbe03d217e0841791e266415e1ddc7aa	1	outbound	+17704009016	\N	12.1407580375671387	{}	new lead		13	\N	\N	3285
2017-02-08 18:49:43.287706+00	2017-02-08 18:49:43.28776+00	3152	missed	Rina A Patel		admin@reargelt.com	+15743190275		\N	2017-02-08 18:49:43.285759	\N		3784ab32-dd2a-4afe-b372-b25e22263604	\N			0	outbound	+17735469660	\N	\N	{}	new lead		1	\N	\N	104
2017-02-08 19:11:51.833994+00	2017-02-08 19:11:51.834077+00	3153	missed	Rina A Patel		admin@reargelt.com	+15743190275		\N	2017-02-08 19:11:51.831003	\N		3784ab32-dd2a-4afe-b372-b25e22263604	\N			0	outbound	+17735469660	\N	\N	{}	new lead		1	\N	\N	104
2017-12-06 14:14:06.814581+00	2017-12-06 19:37:53.573642+00	7627	completed				+14042590391		72	2017-12-06 14:14:06.811694	2017-12-06 14:15:18.948604	CA894ed2874458f6e9c912c5bfb8ef0418	\N	153			0	inbound	+17707665732	133	18.7637090682983398	\N	select status	c ashley	13	\N	\N	642
2017-02-02 16:21:52.683131+00	2017-02-02 16:22:03.656957+00	3146	missed				+18035200590		11	2017-02-02 16:21:52.681165	2017-02-02 16:22:03.655253	CAca6eaf659a74ebf18bcbe8bebd3d935b	\N	\N			0	inbound	+18036184545	119	\N	null	new lead		6	\N	\N	1405
2017-02-07 23:46:10.384188+00	2017-02-07 23:47:00.788907+00	3150	missed				+16787335430		50	2017-02-07 23:46:10.382263	2017-02-07 23:47:00.786905	CAe999dfc6def0da76e7bb30d2843b7dde	\N	\N		https://api.twilio.com/2010-04-01/Accounts/AC1be71aee3e39993d976d8e40687ea2b3/Recordings/RE981c8122a55ea3ac9a0c97eda521a9f8	0	inbound	+18036184545	119	\N	null	new lead		6	\N	\N	1480
2017-12-05 21:17:51.834955+00	2017-12-05 21:40:10.450116+00	7610	completed				+19365257584		1336	2017-12-05 21:17:51.833117	2017-12-05 21:40:08.165595	CA5afd8f70e2a8fe5a8f2c46e6c10566c6	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE52fbe2aad50092438ff3d85ae0276b82	0	inbound	+18558645656	136	2.4945518970489502	\N	new lead		15	\N	\N	2730
2017-04-29 19:46:18.938983+00	2017-11-29 18:38:53.214831+00	4476	completed				+14438395102		43	2017-04-29 19:46:18.937952	2017-04-29 19:47:02.428679	CAb6ec6b92078b2ddc0ff0435dfeecf266	\N	107			0	inbound	+12146922088	\N	7.92010092735290527	\N	new lead	coleman wanda	9	\N	\N	3162
2016-12-28 00:22:23.178796+00	2016-12-28 00:22:23.204115+00	3097	missed	Camen	Aponte	cyiya67@yahoo.com	+16022068954		\N	2016-12-28 00:22:23.177692	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	3163
2017-03-09 02:00:49.774783+00	2017-11-29 18:47:25.067651+00	3353	missed				+14696324875		35	2017-03-09 02:00:49.771955	2017-03-09 02:01:24.64548	CA36cc683b6cb1007a23f013891a9f1254	\N	\N			0	inbound	+19728330116	\N	1268.79778003692627	\N	new lead	mcelmurry rhond	8	\N	\N	3164
2017-11-03 14:14:40.394283+00	2017-11-03 14:18:21.88561+00	6916	completed	Ty	Haley 	cagethety@gmail.com	+17063911378		205	2017-11-03 14:14:40.392776	2017-11-03 14:18:19.338594	CA11b60ebe3398296c6b73d976240d29a9	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REd37c8cc4007a84e08338a44a891fc030	1	outbound	+17704009016	\N	10.7167510986328125	{}	new lead		13	\N	\N	3165
2016-07-20 16:57:57.997541+00	2016-07-20 17:00:16.833763+00	907	completed	Melvin	Hancock	eastbayindex@gmail.com	+19257782522		122	2016-07-20 16:57:57.996509	2016-07-20 17:00:16.831809	CA09a6356a169b115b0b083a13cc13247f	99186475-9344-4e80-b3b1-0ed2e7856585	17		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REfe398605a3bbaba47bde61bf2db9c963	1	outbound	+18555472453	\N	9.89650797843933105	{}	new lead		1	\N	\N	3169
2016-09-01 19:32:21.782879+00	2016-12-10 01:00:18.56835+00	1843	completed				+16192003622		256	2016-09-01 19:32:21.78144	2016-09-01 19:36:38.008243	CAfc7e9f91be73776f00073c91deda6409	\N	56			0	inbound	+18556775511	\N	25.455420970916748	null	new lead		3	\N	\N	3175
2017-11-11 21:40:23.709216+00	2017-11-11 21:43:33.483945+00	7028	completed				+14325532975		189	2017-11-11 21:40:23.706843	2017-11-11 21:43:32.524582	CA82a808bd748cc72006cf3e1bfed9c11a	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE37927e6d162645eb058eca3c22194b7f	0	inbound	+18177569010	124	10.2056291103363037	\N	new lead	midland  tx	12	\N	\N	3286
2017-11-13 19:15:15.233503+00	2017-11-13 19:17:30.469152+00	7036	completed				+14325532975		134	2017-11-13 19:15:15.231218	2017-11-13 19:17:29.469704	CA694389dc558379f1f943594fef37945a	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE2fecd278c006873a9e0b1b1c56b7f4c6	0	inbound	+18177569010	124	7.67211079597473145	\N	new lead	midland  tx	12	\N	\N	3286
2017-11-13 19:22:51.347752+00	2017-11-13 19:24:49.125783+00	7037	completed				+14325532975		117	2017-11-13 19:22:51.34482	2017-11-13 19:24:48.238845	CA3f621d266f094111a91cf55187e83cdc	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE7901e681e10618353e5638f9bf41a6e8	0	inbound	+18177569010	124	18.1305291652679443	\N	new lead	midland  tx	12	\N	\N	3286
2017-08-10 18:36:48.272808+00	2017-08-10 18:42:58.88555+00	5984	completed				+15037049332		370	2017-08-10 18:36:48.270974	2017-08-10 18:42:58.05934	CA7707560947f118c084d2beb91a7f9fba	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE88728ee350b5d95d33e4153fe91b4bf4	0	inbound	+17704009016	132	318.960648059844971	\N	new lead		13	\N	\N	3291
2017-07-30 14:07:24.451928+00	2017-07-30 14:07:34.105775+00	5891	missed				+18177568805		10	2017-07-30 14:07:24.450499	2017-07-30 14:07:34.097673	CAa2e99d6c66223c461205f7af79afd8ae	\N	\N			0	inbound	+18177569010	124	\N	\N	new lead	dallas  tx	12	\N	\N	3294
2017-12-05 22:26:53.473518+00	2017-12-05 22:50:46.182228+00	7614	completed				+18159224799		1429	2017-12-05 22:26:53.471726	2017-12-05 22:50:42.863903	CA826653b297f5ce6f0a18fdc6673cda55	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REc41b576d3a4a10cda1cd1fc862ff54f5	0	inbound	+18558645656	136	2.31966710090637207	\N	new lead		15	\N	\N	587
2017-04-15 19:16:35.249079+00	2017-11-29 18:47:25.068045+00	3968	completed				+19032801572		275	2017-04-15 19:16:35.246978	2017-04-15 19:21:10.248153	CA8c5d65ebfc8d0ff97c647aa12f5d18ee	\N	84		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE0de4d76a9864c8ab87dc5e34aa8d881f	0	inbound	+19728330116	\N	14.9942209720611572	\N	new lead	davis robert   	8	\N	\N	3191
2017-08-30 15:44:19.877484+00	2017-08-30 15:45:35.798645+00	6204	completed				+12246767011		75	2017-08-30 15:44:19.875497	2017-08-30 15:45:34.558959	CAc7d2241ca2b90181a54842ff45223b59	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE3d405102e36fd7753d3c1f9aa26d8116	0	inbound	+17704009016	132	13.5465819835662842	\N	new lead		13	\N	\N	3193
2017-04-27 19:27:32.056952+00	2017-11-29 18:38:49.807066+00	4384	completed				+17039714235		56	2017-04-27 19:27:32.055682	2017-04-27 19:28:27.556136	CA854e68ebbba0305618839ed5f1140c7a	\N	126			0	inbound	+12147122250	\N	1.79984188079833984	\N	new lead	petro petty	9	\N	\N	3195
2017-07-30 14:07:09.591836+00	2017-07-30 14:07:43.759734+00	5890	missed				+18177568805		34	2017-07-30 14:07:09.58968	2017-07-30 14:07:43.749351	CAd5b01da47a61697e6186dfc19595860c	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE5c85098c899d4f86e16201568b1f42ee	0	inbound	+18177569010	124	\N	\N	new lead	dallas  tx	12	\N	\N	3294
2017-04-15 16:25:35.399908+00	2017-11-29 18:38:49.805074+00	3958	completed				+12142632611		182	2017-04-15 16:25:35.398334	2017-04-15 16:28:37.56112	CA823f7c1ce4ef1ca81643695922c08bfb	\N	\N			0	inbound	+12147122250	\N	4.66998696327209473	\N	new lead	johnson roger  	9	\N	\N	3295
2017-04-13 16:09:14.404916+00	2017-04-13 16:31:49.510327+00	3867	completed				+12144423965		1355	2017-04-13 16:09:14.403479	2017-04-13 16:31:49.222119	CA0803a3e994c11bf2c299589f92e2cc22	\N	132			0	inbound	+18172104002	126	1334.66580009460449	\N	new lead	huinh phuong	12	\N	\N	3296
2017-04-13 18:01:28.899365+00	2017-04-13 18:02:01.603154+00	3883	completed				+12144423965		32	2017-04-13 18:01:28.897165	2017-04-13 18:02:00.487081	CA248ef8f3eafb6fdfe55eb64ed8683430	\N	132		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE62659df9ece478cdd4a72a77fd5c24e3	0	inbound	+18172104002	126	7.27253413200378418	\N	new lead	huinh phuong	12	\N	\N	3296
2017-04-13 01:16:10.137721+00	2017-04-13 01:17:20.637664+00	3852	completed				+12144423965		69	2017-04-13 01:16:10.135845	2017-04-13 01:17:19.469597	CA0dbbea57300900f3b596286866b8abf2	\N	132		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REc5c7d4b03bb066c0d50524a62393cdb2	0	inbound	+18172104002	126	18.7601871490478516	\N	new lead	huinh phuong	12	\N	\N	3296
2017-07-22 16:32:27.609133+00	2017-07-22 16:35:32.911982+00	5831	completed				+12547337851		184	2017-07-22 16:32:27.607433	2017-07-22 16:35:31.342052	CAca145db1faee8ef4356f7f8300f767f7	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REb88a52647329c4944ba8d7c2f7e809af	0	inbound	+18177569010	124	7.06981301307678223	\N	new lead	solorio clara	12	\N	\N	3299
2017-12-06 20:52:44.256241+00	2017-12-06 21:07:49.961896+00	7659	completed				+14072569331		902	2017-12-06 20:52:44.253815	2017-12-06 21:07:46.7388	CA787d5375f66ae65370d80983de777858	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REb79dcef7b6a5cc8beb1f4501ffb1f4c5	0	inbound	+18558645656	136	2.53936886787414551	\N	new lead		15	\N	\N	3300
2017-12-05 19:51:54.531177+00	2017-12-05 20:08:18.395747+00	7595	completed				+17137308816		981	2017-12-05 19:51:54.527767	2017-12-05 20:08:15.146867	CA5e82b09c91599f9f82714446395d7362	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REa0afedde4b31ed129edfd8615778fa19	0	inbound	+18558645656	136	2.36675214767456055	\N	new lead		15	\N	\N	3301
2017-05-20 17:04:48.52179+00	2017-11-29 18:38:49.812398+00	5249	completed				+18178819424		164	2017-05-20 17:04:48.520029	2017-05-20 17:07:32.914498	CAb57cd14bf3491923b46b3b007f69b121	\N	99			0	inbound	+12147122250	\N	3.46442008018493652	\N	new lead	jaffery shahnan	9	\N	\N	3303
2017-05-20 17:08:04.411368+00	2017-11-29 18:38:49.812406+00	5250	completed				+18178819424		520	2017-05-20 17:08:04.409632	2017-05-20 17:16:43.998389	CA9df559bc277e28741c4dea491fd2354a	\N	99			0	inbound	+12147122250	\N	4.04888296127319336	\N	new lead	jaffery shahnan	9	\N	\N	3303
2017-05-24 16:29:07.124173+00	2017-11-29 18:38:49.813089+00	5359	missed				+12816829826		97	2017-05-24 16:29:07.121863	2017-05-24 16:30:43.97162	CA5f196f372d614fafe860bf4d48f87cbc	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	bennett william	9	\N	\N	3306
2017-05-24 16:23:49.663112+00	2017-11-29 18:38:49.81306+00	5355	missed				+12816829826		28	2017-05-24 16:23:49.661266	2017-05-24 16:24:17.271282	CA04048189b830cf3c8f0ba2d833a498b6	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	bennett william	9	\N	\N	3306
2017-12-20 21:27:18.932974+00	2017-12-20 21:28:11.315017+00	8042	completed				+12143012200		51	2017-12-20 21:27:18.930918	2017-12-20 21:28:10.238256	CA8632337fd74fd27f95416e45b229f96c	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE7f7d8c44481ef402cd3e64929ea9d32e	0	inbound	+18177569010	124	10.7193679809570312	\N	new lead	boswell gabriel	12	\N	\N	3307
2017-05-06 16:27:20.658632+00	2017-11-29 18:47:25.068383+00	4802	completed				+12147896212		82	2017-05-06 16:27:20.65729	2017-05-06 16:28:42.507028	CAc16a5b67f4d442c713e94233fc010e10	\N	82		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REff89e6b7dc0968a12aab7b6ead291489	0	inbound	+19728330116	\N	11.7470409870147705	\N	new lead	teeter e	8	\N	\N	3310
2017-01-21 13:56:48.774452+00	2017-11-29 18:31:05.368975+00	3129	missed				+18130120421		25	2017-01-21 13:56:48.772723	2017-01-21 13:57:13.648778	CA1dbe09543d708ce56ecd11a918fa7f59	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE81e34e6fcb74d70deba3b7766d36efa5	0	inbound	+18557824539	\N	\N	null	new lead		1	\N	\N	3313
2017-01-21 13:57:47.776766+00	2017-11-29 18:31:05.368982+00	3130	missed				+18130120421		38	2017-01-21 13:57:47.775831	2017-01-21 13:58:25.677551	CA39f80d1a8b4ab6ed35210a36c01b3d2c	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REf05a645403a1f9c15c0694a278dcc8bf	0	inbound	+18557824539	\N	\N	null	new lead		1	\N	\N	3313
2017-05-03 14:28:28.384768+00	2017-11-29 18:38:53.214937+00	4616	completed				+19312657938		208	2017-05-03 14:28:28.383163	2017-05-03 14:31:56.448191	CAb1bd572b95271d201ac0e61392e00dd6	\N	133			0	inbound	+12146922088	\N	7.09578704833984375	\N	new lead	cell phone   tn	9	\N	\N	3314
2017-11-15 18:30:50.781694+00	2017-11-15 18:31:29.837811+00	7065	completed	Morris	Woodruff	morris.woodruff@aol.com	+17065436725		28	2017-11-15 18:30:50.779829	2017-11-15 18:31:29.81791	CAc7fae311ed4e105c03f960d9ca1e4dd2	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE8003719f380eebc01ac7ffcacf7f71db	1	outbound	+17704009016	\N	10.3402209281921387	{}	new lead		13	\N	\N	3316
2017-12-05 23:23:37.072429+00	2017-12-05 23:28:17.880387+00	7617	completed	arcadio	maldonado	yayo1er@gmail.com	+12107605558		258	2017-12-05 23:23:37.070909	2017-12-05 23:28:17.879132	CAb4527a0d9adf35a640e9aac54f0d89af	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			3	outbound	+18558645656	\N	22.9575159549713135	{}	new lead		15	\N	\N	1475
2017-12-16 18:50:55.916004+00	2017-12-16 18:50:56.264313+00	7930	missed	Devi	Johnson-Evans		+14044493407		0	2017-12-16 18:50:55.914417	2017-12-16 18:50:56.255613	CAba48470ea0529886340d193432aad442	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead	devi chef	13	\N	\N	3224
2017-12-16 18:51:16.847826+00	2017-12-16 18:52:57.977262+00	7931	completed	Devi	Johnson-Evans		+14044493407		101	2017-12-16 18:51:16.84674	2017-12-16 18:52:57.350043	CA1fe03a12d0c6d37b2b719f6f3cd61d68	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REddf38217a88e56699531c531460bab0c	0	inbound	+17707665732	133	13.9772441387176514	\N	new lead	devi chef	13	\N	\N	3224
2017-12-16 18:53:21.217824+00	2017-12-16 18:53:21.703943+00	7932	missed	Devi	Johnson-Evans		+14044493407		0	2017-12-16 18:53:21.216286	2017-12-16 18:53:21.696755	CA30b874ff39a7941904584b72de63aa4c	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead	devi chef	13	\N	\N	3224
2017-12-21 19:31:13.539556+00	2017-12-21 19:34:25.359496+00	8055	completed				+18174085254		191	2017-12-21 19:31:13.535851	2017-12-21 19:34:24.26197	CA5f52497956d0cc5c00c0df1405ea9466	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REc7aa86e50899922f04a6f413799b6bae	0	inbound	+18177569010	124	24.4619629383087158	\N	new lead	brister rachel	12	\N	\N	3317
2016-10-07 16:07:25.319305+00	2016-12-10 01:01:51.441065+00	2228	completed				+16198706449		158	2016-10-07 16:07:25.31759	2016-10-07 16:10:03.434904	CAeb8ed4ec5baa0cf89f1048eaacc7e986	\N	50			0	inbound	+18559693782	\N	1.91695618629455566	null	new lead		3	\N	\N	3321
2017-05-18 14:37:36.40352+00	2017-11-29 18:29:46.631349+00	5181	completed				+17035438026		9	2017-05-18 14:37:36.401452	2017-05-18 14:37:44.939455	CAbed2b520a0b4415177e813cbe7f322ec	\N	144			0	inbound	+18446671613	\N	7.04199504852294922	\N	new lead		1	\N	\N	3324
2016-09-15 23:09:54.429629+00	2016-12-10 01:01:51.440967+00	2030	completed				+16198625627		188	2016-09-15 23:09:54.427768	2016-09-15 23:13:02.289748	CAdb5cea95b2bc6729a0d0e81c2208b440	\N	50			0	inbound	+18559693782	\N	1.87843513488769531	null	new lead		3	\N	\N	3325
2016-10-28 14:51:57.409722+00	2016-12-10 01:03:20.585959+00	2363	completed				+13478330009		6	2016-10-28 14:51:57.406934	2016-10-28 14:52:03.617736	CA7f28ba0462a9ebcd10210648952a7d52	\N	66			0	inbound	+18558891151	\N	1.46952390670776367	null	new lead		3	\N	\N	3326
2017-11-03 17:26:11.356895+00	2017-11-03 17:32:55.0291+00	6919	completed	Mikkos	Bolton	mikkos314@gmail.com	+16784374115		389	2017-11-03 17:26:11.355557	2017-11-03 17:32:53.238727	CA384b28472162b9219e0008d8416263f3	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REedd276fffee4d44a7e4b362e624b5b97	1	outbound	+17704009016	\N	16.5957481861114502	{}	new lead		13	\N	\N	3328
2017-05-01 16:21:36.516784+00	2017-11-29 18:38:49.807934+00	4511	completed				+12146831784		69	2017-05-01 16:21:36.514364	2017-05-01 16:22:45.502859	CA30186be4cb61df081dbaf94f4f8374bb	\N	127			0	inbound	+12147122250	\N	1.27215719223022461	\N	new lead	monzon arturo	9	\N	\N	3330
2017-05-18 17:28:18.22494+00	2017-11-29 18:29:57.477834+00	5215	completed				+17033047182		13	2017-05-18 17:28:18.223244	2017-05-18 17:28:31.656776	CA23906137acb6ace2403d0dbc8ae16a0f	\N	142		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE5a8bc3f9c28099a5534efbacd91ff110	0	inbound	+18442976550	\N	0.994285106658935547	\N	new lead		1	\N	\N	3331
2017-05-18 17:27:15.69262+00	2017-11-29 18:29:46.631458+00	5213	completed				+17033047182		17	2017-05-18 17:27:15.689956	2017-05-18 17:27:32.858004	CA4b956ed0121f74110882490e7c6c5c59	\N	144		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REbe92f46a159e0bce5097caeea203c332	0	inbound	+18446671613	\N	7.88092613220214844	\N	new lead		1	\N	\N	3331
2017-05-18 17:27:42.928809+00	2017-11-29 18:29:51.355491+00	5214	completed				+17033047182		15	2017-05-18 17:27:42.92696	2017-05-18 17:27:58.374036	CA61867422fec1b2987d452d61a01421a2	\N	143		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REceb2cbda1f7c07eb7784922149f60a36	0	inbound	+18443015106	\N	3.17652082443237305	\N	new lead		1	\N	\N	3331
2016-10-13 20:53:17.792191+00	2016-12-09 17:07:47.979294+00	2292	completed				+16105586800		8	2016-10-13 20:53:17.790795	2016-10-13 20:53:25.638951	CA5704896fd38a3e50eaf9566e5db4c345	\N	55			0	inbound	+18556708891	\N	2.37569212913513184	null	new lead		3	\N	\N	3334
2016-10-13 20:53:40.410885+00	2016-12-09 17:07:47.979301+00	2293	completed				+16105586800		10	2016-10-13 20:53:40.409955	2016-10-13 20:53:50.210798	CA9ac089bfccf691a16b21a937f98c8db1	\N	55			0	inbound	+18556708891	\N	2.89145994186401367	null	new lead		3	\N	\N	3334
2016-08-24 13:50:06.206327+00	2016-12-09 17:07:45.331505+00	1692	completed				+16105586800		28	2016-08-24 13:50:06.20335	2016-08-24 13:50:33.90603	CA495bdc305f6e79387139111267378e1e	\N	55			0	inbound	+18552467810	\N	3.71278810501098633	null	new lead		3	\N	\N	3334
2016-11-08 21:48:04.735051+00	2016-11-08 21:48:04.767283+00	2809	missed	fernando	Chavira	fsecchavira@hotmail.com	+19725718107		\N	2016-11-08 21:48:04.733838	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	3335
2016-09-23 19:04:53.980966+00	2016-12-09 17:07:45.331676+00	2079	completed				+14849477757		384	2016-09-23 19:04:53.979314	2016-09-23 19:11:17.901488	CA69a51a4784e4762bbeb8a954f1ec9410	\N	55			0	inbound	+18552467810	\N	2.79736113548278809	null	new lead		3	\N	\N	3340
2016-05-25 18:38:37.98384+00	2017-11-29 18:31:10.260376+00	229	completed	Unknown			+15137350587		52	2016-05-25 18:38:37.981886	2016-05-25 18:39:30.205446	CA0565c1451db120dda528355250cd7e3f	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REb5581a1ff183b7797e7ab56d00d94225	0	inbound	+18556311490	\N	9.75559687614440918	null	new lead		1	\N	\N	3342
2017-09-14 22:52:46.134904+00	2017-09-14 22:56:50.001938+00	6356	completed				+14049528567		244	2017-09-14 22:52:46.132076	2017-09-14 22:56:49.990674	CAbdac4405e8eed0c15057be1882b49f4b	\N	153			0	inbound	+17707665732	133	9.34660983085632324	\N	new lead		13	\N	\N	3343
2017-05-08 20:38:14.860376+00	2017-11-29 18:38:49.810426+00	4871	completed				+13237747956		272	2017-05-08 20:38:14.858301	2017-05-08 20:42:47.331051	CAe0fa50801a1f949214d28cdb385d18e7	\N	\N			0	inbound	+12147122250	\N	1.36688590049743652	\N	new lead	cell phone   ca	9	\N	\N	3346
2016-10-31 22:07:38.519279+00	2016-10-31 22:14:38.958943+00	2434	completed				+14694274527		419	2016-10-31 22:07:38.51803	2016-10-31 22:14:37.218774	CA4172e0d4c1e1ea0a80041d8319edac9e	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REa3bf19692f1939a36a9af8ac6fdce582	0	inbound	+18557240606	49	1.86863303184509277	null	new lead		1	\N	\N	3352
2017-12-05 20:57:46.466741+00	2017-12-05 20:58:35.953361+00	7607	completed				+16788665440		48	2017-12-05 20:57:46.465635	2017-12-05 20:58:34.761681	CA6bb8003fea4aab9e0b5a1512f6e89d97	\N	157		https://api.twilio.com/2010-04-01/Accounts/ACbd7756819f4882feb347788ad7959655/Recordings/REbb48b49504d69293d7f2097d8878e723	0	inbound	+17706597466	137	12.5033810138702393	\N	new lead		14	\N	\N	3357
2016-10-05 16:07:12.604418+00	2016-12-10 01:03:35.620603+00	2183	completed				+12124727270		268	2016-10-05 16:07:12.603386	2016-10-05 16:11:40.250684	CAe38d6f50c7953154cf2a27e22bc2e3f1	\N	66			0	inbound	+18557376565	\N	0.373801946640014648	null	new lead		3	\N	\N	3358
2016-11-30 18:46:15.495864+00	2016-11-30 18:46:15.517233+00	3008	missed	Philip	Fields	Pipestone01@comcast.net	+14047966980		\N	2016-11-30 18:46:15.494876	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	3363
2017-11-03 06:40:58.885423+00	2017-11-03 06:40:59.183617+00	6913	missed	Devi	Johnson-Evans		+14044493407		0	2017-11-03 06:40:58.884166	2017-11-03 06:40:59.175046	CA3a10ff96db15f146edc49ee1bcdf306c	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	3224
2017-11-03 06:41:02.906971+00	2017-11-03 06:41:03.567793+00	6914	missed	Devi	Johnson-Evans		+14044493407		1	2017-11-03 06:41:02.905813	2017-11-03 06:41:03.551639	CA120e4ce21cb210c4107542f770f7ddab	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	3224
2017-11-08 21:05:18.291062+00	2017-11-08 21:11:37.136624+00	6984	completed	Devi	Johnson-Evans		+14044493407		379	2017-11-08 21:05:18.28895	2017-11-08 21:11:37.118193	CA6df3c99f7c314b7c8608b41e5c84f404	\N	154			0	inbound	+17707665699	134	1.83200192451477051	\N	new lead		13	\N	\N	3224
2017-11-20 15:56:00.580946+00	2017-11-20 16:12:48.341092+00	7138	completed	Devi	Johnson-Evans		+14044493407		1008	2017-11-20 15:56:00.57908	2017-11-20 16:12:48.311456	CA7a635e2cbc7c84742830ad1f9b83d8cc	\N	154			0	inbound	+17707665699	134	1.63348102569580078	\N	new lead		13	\N	\N	3224
2016-11-21 17:44:22.002961+00	2016-11-21 17:44:22.038834+00	2956	missed	Diana	Montgomery	dmontgomery13@cox.net	+16239791647		\N	2016-11-21 17:44:22.001696	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	3366
2016-11-07 18:06:00.92618+00	2016-11-07 18:33:43.467923+00	2792	completed				+12144031026		1660	2016-11-07 18:06:00.924373	2016-11-07 18:33:40.863127	CAe87be8472211e77692cd203dea4a6c45	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE53d89fca6d415ae03637473bd7f0fa6f	0	inbound	+18557240606	49	1.73813390731811523	null	new lead		1	\N	\N	3367
2017-11-01 17:43:43.030021+00	2017-11-01 18:11:57.263679+00	6893	completed				+14697745124		1694	2017-11-01 17:43:43.02823	2017-11-01 18:11:57.2606	CA3d10fcb41fcaaa2faf9d4baa1eee39a7	\N	146			0	inbound	+18177569010	124	1379.95767402648926	\N	new lead	sterling rashad	12	\N	\N	3368
2017-05-22 21:21:24.809964+00	2017-11-29 18:38:49.812728+00	5305	completed				+12105382493		31	2017-05-22 21:21:24.808635	2017-05-22 21:21:55.816662	CA708a97c334c7892c1dce97bed83d9912	\N	105			0	inbound	+12147122250	\N	10.95694899559021	\N	new lead	san antonio  tx	9	\N	\N	3373
2016-09-19 17:19:09.685641+00	2016-12-10 01:00:18.568427+00	2048	completed				+16198884336		160	2016-09-19 17:19:09.684123	2016-09-19 17:21:49.843248	CAad07f767a1cc5b113ce6c705b3c033a3	\N	56			0	inbound	+18556775511	\N	10.6855440139770508	null	new lead		3	\N	\N	3374
2017-06-23 17:40:26.690816+00	2017-06-24 13:44:45.085782+00	5642	completed				+17709904888		63	2017-06-23 17:40:26.687763	2017-06-23 17:41:29.558152	CA470064f55558747021559e127b46909a	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE98235788396f54000b49cdbbd0b69de6	0	inbound	+17704009016	132	8.28961992263793945	\N	new lead		13	\N	\N	3375
2017-08-12 14:38:52.242254+00	2017-08-17 14:35:21.045802+00	6002	completed				+18178997395		57	2017-08-12 14:38:52.239987	2017-08-12 14:39:49.520613	CA4bbb87c09b786fb90e9efd9dac0edc09	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REb4d813cce9a43ab78d97b86c709a8c76	0	inbound	+18177569010	124	20.9804990291595459	\N	new lead	lowery melinda	12	\N	\N	3377
2017-08-12 14:40:08.739985+00	2017-08-17 14:35:21.045809+00	6003	completed				+18178997395		724	2017-08-12 14:40:08.738476	2017-08-12 14:52:12.624276	CA995c9b3ae43af355d0b8e6dcca48ae62	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REda899bc37eb52dde1579768c68817823	0	inbound	+18177569010	124	392.435148000717163	\N	new lead	lowery melinda	12	\N	\N	3377
2016-11-02 19:24:21.024692+00	2016-11-02 19:24:21.04605+00	2587	missed	Michael	Poppell	mqpoppell@gmail.com	+17273656858		\N	2016-11-02 19:24:21.023816	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	3378
2017-04-05 23:55:27.593096+00	2017-05-17 15:41:07.224284+00	3697	completed				+16822079700		60	2017-04-05 23:55:27.59121	2017-04-05 23:56:27.43262	CA4f435aa7713e934096c267c88ca801ab	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE059907ce50836b724dbba768510a6fc9	0	inbound	+18177569010	124	6.69576597213745117	\N	new lead	rylos jr p	12	\N	\N	3380
2017-04-22 18:35:38.453965+00	2017-11-29 18:38:53.214426+00	4225	completed				+14694083202		158	2017-04-22 18:35:38.451904	2017-04-22 18:38:16.044625	CAbd483f1b0db196ddfc328d29a874ec40	\N	\N			0	inbound	+12146922088	\N	6.78932380676269531	\N	new lead	borchardt kelli	9	\N	\N	3382
2016-06-27 14:40:38.244722+00	2016-06-27 14:41:43.36692+00	497	completed				+16143908025		61	2016-06-27 14:40:38.243715	2016-06-27 14:41:43.365806	CA83d723995d850041b6c88dbc02458807	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	1.40093994140625	{}	new lead		1	\N	\N	3386
2016-06-25 23:49:26.571693+00	2017-11-29 18:31:41.490043+00	469	completed	Unknown			+16143908025		15	2016-06-25 23:49:26.569813	2016-06-25 23:49:41.351627	CAccd94a56189ec920f04fc4f51b3f7b8e	\N	\N			0	inbound	+18552959002	\N	\N	null	new lead		1	\N	\N	3386
2016-11-10 18:32:36.93917+00	2016-11-10 18:32:36.962783+00	2837	missed	Franklin	O'Neal	ffoneal@gmail.com	+14043767220		\N	2016-11-10 18:32:36.937994	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	3388
2016-09-29 18:33:29.513218+00	2017-02-11 20:02:07.779535+00	2112	completed				+12013230901		77	2016-09-29 18:33:29.512036	2016-09-29 18:34:46.33953	CA7ff5e953d7b707518c0b90d208c84083	\N	\N			0	inbound	+18559763286	\N	1.79782390594482422	null	new lead		3	\N	\N	3389
2016-10-12 16:45:28.517383+00	2016-12-10 01:05:18.401175+00	2282	completed				+16109715000		383	2016-10-12 16:45:28.516239	2016-10-12 16:51:51.352678	CA04a278fbbc7cfe35a6905e8e2131ef78	\N	24			0	inbound	+18557088731	\N	1.42836093902587891	null	new lead		3	\N	\N	3390
2016-09-27 17:25:50.189361+00	2016-12-10 01:00:18.568441+00	2088	completed				+19292618524		203	2016-09-27 17:25:50.187645	2016-09-27 17:29:13.679213	CAf36baa499a6231eaf50a36bf17e5abd3	\N	56			0	inbound	+18556775511	\N	8.75922799110412598	null	new lead		3	\N	\N	3393
2017-06-12 18:23:29.088185+00	2017-06-12 18:24:44.18046+00	5578	missed				+17702978700		75	2017-06-12 18:23:29.081339	2017-06-12 18:24:44.166315	CA66fddd18b4f05cf3f033d91a34e6ab5c	\N	\N		https://api.twilio.com/2010-04-01/Accounts/AC1be71aee3e39993d976d8e40687ea2b3/Recordings/REa5765a7db067a29ef2ed08a202beb731	0	inbound	+18036184545	119	\N	\N	new lead		6	\N	\N	3395
2017-05-30 15:51:40.064055+00	2017-11-29 18:38:49.814004+00	5494	completed				+15033055598		80	2017-05-30 15:51:40.062212	2017-05-30 15:53:00.278224	CAb773d5f4b3466760d2f418fe9ed6f405	\N	127			0	inbound	+12147122250	\N	1.16307997703552246	\N	new lead	logical positio	9	\N	\N	3396
2017-10-13 13:37:49.859901+00	2017-10-13 13:44:59.328968+00	6684	completed				+14044684830		429	2017-10-13 13:37:49.856599	2017-10-13 13:44:59.324332	CA022df18422902d2508ad549f39c597d1	\N	152			0	inbound	+17707665732	133	353.581861019134521	\N	new lead		13	\N	\N	3397
2016-11-02 22:16:28.455907+00	2016-11-02 22:17:17.130658+00	2598	completed				+12814605174		46	2016-11-02 22:16:28.454741	2016-11-02 22:17:14.642046	CA4e54646643d550c10291e46fc58fd77a	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE3cb1beb7bc3c73337b6d1a70195858bb	0	inbound	+18557240606	49	1.7889399528503418	null	new lead		1	\N	\N	3400
2016-11-02 22:17:17.93527+00	2016-11-02 22:17:30.653673+00	2599	completed				+12814605174		12	2016-11-02 22:17:17.934164	2016-11-02 22:17:30.20029	CA04b020b6cf83bc25ffa271277d8ae96b	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE6ebbefcac92d4e2472827f9383c07678	0	inbound	+18557240606	49	1.76529598236083984	null	new lead		1	\N	\N	3400
2017-09-30 19:48:37.90146+00	2017-09-30 19:49:46.535499+00	6552	completed	Jerika	Dillard 	Dillardjerika2@gmail.com	+16784802820		53	2017-09-30 19:48:37.899778	2017-09-30 19:49:46.404848	CA9dad890e72641cfbcabf28e1e3804d1f	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE467bf7f95ddada457981ffc99f5606b9	1	outbound	+17704009016	\N	14.5794100761413574	{}	new lead		13	\N	\N	3402
2017-10-31 15:58:37.068316+00	2017-10-31 15:59:32.398495+00	6880	completed				+18172341234		54	2017-10-31 15:58:37.065859	2017-10-31 15:59:31.5454	CA6611fda5ae2599935dbd3979647aa418	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REf861b67de2bf7e45f9da63fb5212ab1b	0	inbound	+18177569010	124	8.68753504753112793	\N	new lead	auto leasing	12	\N	\N	3251
2016-09-15 12:05:45.257095+00	2016-11-09 15:46:31.903347+00	2020	missed				+13213239667		48	2016-09-15 12:05:45.2548	2016-09-15 12:06:33.112568	CAb60929cceb4e9d487272e4771fe78f07	\N	\N			0	inbound	+18555983849	\N	\N	null	new lead		3	\N	\N	3252
2017-04-20 20:07:07.947375+00	2017-11-29 18:38:53.214333+00	4155	completed				+13126181700		117	2017-04-20 20:07:07.945312	2017-04-20 20:09:04.91779	CA5d4704a968bb6f1dc68da031ec3ce5a4	\N	99			0	inbound	+12146922088	\N	6.7378840446472168	\N	new lead	racic charles  	9	\N	\N	3403
2017-11-25 13:09:31.279586+00	2017-11-25 13:09:31.350236+00	7260	missed	Misty	Adams	mertmert30519@gmail.com	+17702944537		\N	2017-11-25 13:09:31.277523	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	3404
2017-11-25 14:32:49.893302+00	2017-11-25 14:39:40.0931+00	7262	completed	Misty	Adams	mertmert30519@gmail.com	+17702944537		410	2017-11-25 14:32:49.891178	2017-11-25 14:39:40.089696		\N	150			0	outbound	+17704009016	132	\N	\N	new lead		13	\N	\N	3404
2017-03-02 18:19:02.021689+00	2017-11-29 18:38:53.211717+00	3293	missed				+12147836038		41	2017-03-02 18:19:02.019193	2017-03-02 18:19:42.541656	CA3fb426ebee31925cceb6e3241db16533	\N	\N		https://api.twilio.com/2010-04-01/Accounts/AC5422b9b221417a7a84556a92f6edc492/Recordings/RE3e59ace7f866b7b0bedb5a18da309384	0	inbound	+12146922088	\N	\N	\N	new lead	shumaker john	9	\N	\N	3410
2017-03-02 18:21:55.606595+00	2017-11-29 18:38:53.211724+00	3294	missed				+12147836038		7	2017-03-02 18:21:55.605238	2017-03-02 18:22:03.048992	CA287f3780eec2d117dd2255ea4dec8b1d	\N	\N			0	inbound	+12146922088	\N	\N	\N	new lead	shumaker john	9	\N	\N	3410
2017-04-13 16:30:53.488016+00	2017-11-29 18:38:49.804772+00	3873	missed				+12147836038		25	2017-04-13 16:30:53.485954	2017-04-13 16:31:18.572319	CAa2ba81525a9966242c3e132eca3dcb45	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	shumaker john	9	\N	\N	3410
2017-04-13 16:31:29.753897+00	2017-11-29 18:38:49.804779+00	3874	missed				+12147836038		28	2017-04-13 16:31:29.751826	2017-04-13 16:31:58.061905	CAc8d3bbd6d1809538a8f7981feda39bf8	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead		9	\N	\N	3410
2017-03-30 19:41:41.605678+00	2017-11-29 18:38:49.804356+00	3630	completed				+12147836038		57	2017-03-30 19:41:41.604047	2017-03-30 19:42:38.895531	CA3b8255a8aa33bf4b882af537c0745237	\N	127			0	inbound	+12147122250	\N	4.74454307556152344	\N	new lead		9	\N	\N	3410
2017-03-30 19:42:51.763969+00	2017-11-29 18:38:49.804394+00	3631	completed				+12147836038		39	2017-03-30 19:42:51.762582	2017-03-30 19:43:30.95906	CA9c558cc8d6b9aab2dad18848711f05d5	\N	124			0	inbound	+12147122250	\N	0.620079994201660156	\N	new lead		9	\N	\N	3410
2017-03-30 19:46:23.630202+00	2017-11-29 18:38:49.804404+00	3632	missed				+12147836038		29	2017-03-30 19:46:23.628497	2017-03-30 19:46:52.14219	CA764f593775e6fe8913513c1703499b92	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead		9	\N	\N	3410
2017-03-29 20:13:40.935995+00	2017-11-29 18:38:53.213127+00	3623	completed				+12147836038		23	2017-03-29 20:13:40.933697	2017-03-29 20:14:04.003048	CA64a76b1a1203893cd853f707b7d03e55	\N	105			0	inbound	+12146922088	\N	3.55559110641479492	\N	new lead	shumaker john	9	\N	\N	3410
2017-04-11 21:36:23.972596+00	2017-11-29 18:38:49.804491+00	3800	completed				+12147836038		56	2017-04-11 21:36:23.970387	2017-04-11 21:37:19.718418	CA6ce0178ffa7d8378f228e52dfe697db2	\N	125			0	inbound	+12147122250	\N	1.43880891799926758	\N	new lead	shumaker john	9	\N	\N	3410
2017-04-08 20:52:15.291777+00	2017-11-29 18:38:53.213504+00	3745	completed				+12147836038		35	2017-04-08 20:52:15.289751	2017-04-08 20:52:49.989392	CAf4ba3731d93bddeca6f85dec9b8c4bd1	\N	99			0	inbound	+12146922088	\N	2.53903102874755859	\N	new lead	shumaker john	9	\N	\N	3410
2017-04-11 22:18:58.960511+00	2017-11-29 18:38:49.804505+00	3803	missed				+12147836038		32	2017-04-11 22:18:58.958583	2017-04-11 22:19:31.215881	CAab5f93597dfd70ee908722f5796c1f89	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	shumaker john	9	\N	\N	3410
2017-04-11 22:12:47.24837+00	2017-11-29 18:38:49.804498+00	3802	completed				+12147836038		46	2017-04-11 22:12:47.246585	2017-04-11 22:13:33.103391	CA0a6bb027b095492dde39c788452d2a2d	\N	127			0	inbound	+12147122250	\N	1.04011392593383789	\N	new lead	shumaker john	9	\N	\N	3410
2017-04-11 21:23:14.042154+00	2017-11-29 18:38:49.804448+00	3794	completed				+12147836038		80	2017-04-11 21:23:14.040381	2017-04-11 21:24:33.630103	CAb5117b82ea82b846aa07fb4be39ec82b	\N	125			0	inbound	+12147122250	\N	1.32651400566101074	\N	new lead	shumaker john	9	\N	\N	3410
2017-04-11 21:24:43.597064+00	2017-11-29 18:38:49.804455+00	3795	completed				+12147836038		51	2017-04-11 21:24:43.595463	2017-04-11 21:25:34.989892	CA48581d6213f3b16d9eb9c7da59fc0329	\N	124			0	inbound	+12147122250	\N	1.09105491638183594	\N	new lead	shumaker john	9	\N	\N	3410
2017-04-11 21:25:41.796056+00	2017-11-29 18:38:49.804462+00	3796	completed				+12147836038		52	2017-04-11 21:25:41.793784	2017-04-11 21:26:34.197638	CA246162df5f3826cdd0c7a07d1ab733da	\N	126			0	inbound	+12147122250	\N	1.2440950870513916	\N	new lead		9	\N	\N	3410
2017-04-11 21:26:41.857295+00	2017-11-29 18:38:49.804469+00	3797	completed				+12147836038		96	2017-04-11 21:26:41.855509	2017-04-11 21:28:17.880474	CAe6da2eba985d85653f2c17f93c87c4cf	\N	103			0	inbound	+12147122250	\N	15.1121687889099121	\N	new lead	shumaker john	9	\N	\N	3410
2017-04-11 21:28:35.601314+00	2017-11-29 18:38:49.804476+00	3798	completed				+12147836038		37	2017-04-11 21:28:35.59914	2017-04-11 21:29:12.240874	CAf0fbd4a7becb682347dc838de7a6fe5e	\N	127			0	inbound	+12147122250	\N	1.46778512001037598	\N	new lead	shumaker john	9	\N	\N	3410
2017-04-11 21:35:11.348199+00	2017-11-29 18:38:49.804484+00	3799	missed				+12147836038		30	2017-04-11 21:35:11.346276	2017-04-11 21:35:40.862504	CA14a92c53c5551d205c97c0e3daac67b0	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	shumaker john	9	\N	\N	3410
2017-04-17 17:08:01.761765+00	2017-11-29 18:38:53.214071+00	3993	completed				+12147836038		26	2017-04-17 17:08:01.757496	2017-04-17 17:08:27.373325	CAc955a8e69aef7a853083566f8370bc3e	\N	105			0	inbound	+12146922088	\N	3.77934694290161133	\N	new lead	shumaker john	9	\N	\N	3410
2017-04-26 14:43:23.34181+00	2017-11-29 18:38:53.21456+00	4316	completed				+12147836038		24	2017-04-26 14:43:23.339055	2017-04-26 14:43:47.836833	CA2180572eb323d846e78f9e69fb595fff	\N	103			0	inbound	+12146922088	\N	15.6037578582763672	\N	new lead	wireless caller	9	\N	\N	3410
2017-04-26 14:47:33.634165+00	2017-11-29 18:38:53.214567+00	4317	missed				+12147836038		21	2017-04-26 14:47:33.631979	2017-04-26 14:47:54.829536	CA60b736d69c915bedbe6905f3a711da85	\N	\N			0	inbound	+12146922088	\N	\N	\N	new lead	shumaker john	9	\N	\N	3410
2017-04-14 20:16:40.766202+00	2017-11-29 18:38:53.213944+00	3940	completed				+12147836038		54	2017-04-14 20:16:40.764238	2017-04-14 20:17:35.065815	CAaa15c9ba23e545edc81e92ae33aece73	\N	\N			0	inbound	+12146922088	\N	5.130126953125	\N	new lead	shumaker john	9	\N	\N	3410
2017-04-26 15:02:05.983458+00	2017-11-29 18:38:49.806724+00	4318	completed				+12147836038		36	2017-04-26 15:02:05.979832	2017-04-26 15:02:42.133985	CAd3ba68a7560f7254e009584c6f2fc577	\N	107			0	inbound	+12147122250	\N	8.13452482223510742	\N	new lead	shumaker john	9	\N	\N	3410
2017-04-13 15:10:52.284406+00	2017-11-29 18:38:49.804736+00	3856	missed				+12147836038		18	2017-04-13 15:10:52.281414	2017-04-13 15:11:10.470035	CA5041fe86985c192a9f4520b2c8c14b9b	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	shumaker john	9	\N	\N	3410
2017-04-13 15:30:46.513895+00	2017-11-29 18:38:49.804743+00	3859	missed				+12147836038		30	2017-04-13 15:30:46.511714	2017-04-13 15:31:16.092601	CA039b16b9ae4e9d7d2ec9ae2f5b365041	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead		9	\N	\N	3410
2017-04-13 15:48:59.151709+00	2017-11-29 18:38:49.80475+00	3860	missed				+12147836038		17	2017-04-13 15:48:59.150006	2017-04-13 15:49:15.894581	CA2b6c06ea2030202cd16d933ecbda4165	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead		9	\N	\N	3410
2017-03-02 18:23:42.79868+00	2017-11-29 18:38:53.211731+00	3295	missed				+12147836038		8	2017-03-02 18:23:42.796557	2017-03-02 18:23:50.395495	CAfc3514e60a496c4c45f517638951899d	\N	\N			0	inbound	+12146922088	\N	\N	\N	new lead	shumaker john	9	\N	\N	3410
2017-03-02 18:24:17.837244+00	2017-11-29 18:38:53.211739+00	3296	missed				+12147836038		6	2017-03-02 18:24:17.834903	2017-03-02 18:24:23.400492	CAd859cf1f27020a49507cef78371f58a5	\N	\N			0	inbound	+12146922088	\N	\N	\N	new lead	shumaker john	9	\N	\N	3410
2017-03-02 18:27:48.772184+00	2017-11-29 18:38:53.211746+00	3297	missed				+12147836038		10	2017-03-02 18:27:48.769343	2017-03-02 18:27:58.423801	CA252915360592ad226580b5a4fae833c8	\N	\N			0	inbound	+12146922088	\N	\N	\N	new lead	shumaker john	9	\N	\N	3410
2017-03-02 19:08:55.924059+00	2017-11-29 18:38:53.211753+00	3299	missed				+12147836038		6	2017-03-02 19:08:55.9217	2017-03-02 19:09:01.47936	CAb5ad11f7d5106f50e6fb1bfec558df4e	\N	\N			0	inbound	+12146922088	\N	\N	\N	new lead	shumaker john	9	\N	\N	3410
2017-12-06 01:25:14.492504+00	2017-12-06 01:54:14.826432+00	7623	completed				+19704176715		1737	2017-12-06 01:25:14.491301	2017-12-06 01:54:11.600713	CAf125b6f5636a26c9bf5b2ad6d3af29c9	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE7d49b82e7c62964115151694d307b5e7	0	inbound	+18558645656	136	2.37474799156188965	\N	new lead		15	\N	\N	57
2017-04-13 16:08:33.083702+00	2017-11-29 18:38:49.804765+00	3866	completed				+12145320159		101	2017-04-13 16:08:33.081789	2017-04-13 16:10:13.636363	CA981709c0a9c9c24c6bc796f3be2238cd	\N	127			0	inbound	+12147122250	\N	1.22610902786254883	\N	new lead		9	\N	\N	1207
2017-03-01 18:33:56.290797+00	2017-11-29 18:47:25.067472+00	3265	completed				+19492805308		1479	2017-03-01 18:33:56.288456	2017-03-01 18:58:35.637202	CA7751bac866db3b1dafc769c05cf876b3	\N	83		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE6bcff5f56928e1571cdf5ba844db7092	0	inbound	+19728330116	\N	1376.54503703117371	\N	new lead	ESCH SKIP      	8	\N	\N	1842
2016-05-31 19:43:49.147653+00	2017-11-29 18:31:37.368219+00	299	completed	Unknown			+14014734613		347	2016-05-31 19:43:49.146483	2016-05-31 19:49:36.14317	CA1c0a25133773aa51d2f26a42d444af61	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REc0b67c9d5f27fdcb744ba52575e0dceb	0	inbound	+18555472453	\N	14.1687610149383545	null	new lead		1	\N	\N	3284
2017-03-01 22:52:09.446765+00	2017-11-29 18:38:53.211681+00	3282	completed				+12149745109		22	2017-03-01 22:52:09.444921	2017-03-01 22:52:31.312369	CA7817aef822c117590bdbb361e7e141c2	\N	\N			0	inbound	+12146922088	\N	10.0577139854431152	\N	new lead	DALLAS  TX	9	\N	\N	3288
2017-03-02 19:10:08.942577+00	2017-11-29 18:38:53.21176+00	3300	completed				+12147836038		81	2017-03-02 19:10:08.939341	2017-03-02 19:11:30.211904	CA81c922af65042529c6b21303f7a485a9	\N	107			0	inbound	+12146922088	\N	10.8947498798370361	\N	new lead	shumaker john	9	\N	\N	3410
2017-03-02 19:13:15.802194+00	2017-11-29 18:38:53.211767+00	3301	missed				+12147836038		7	2017-03-02 19:13:15.80069	2017-03-02 19:13:23.239748	CA14fb315f6863a8a0797ac94ebbe169fd	\N	\N			0	inbound	+12146922088	\N	\N	\N	new lead	shumaker john	9	\N	\N	3410
2017-03-02 19:16:48.517658+00	2017-11-29 18:38:53.211775+00	3302	missed				+12147836038		7	2017-03-02 19:16:48.514787	2017-03-02 19:16:55.958374	CAf83d42a617814741d45440772e75bc53	\N	\N			0	inbound	+12146922088	\N	\N	\N	new lead	shumaker john	9	\N	\N	3410
2017-03-02 19:18:16.340348+00	2017-11-29 18:38:53.211782+00	3303	missed				+12147836038		7	2017-03-02 19:18:16.338469	2017-03-02 19:18:23.805931	CA7202d48445a5b37d96c057cd5d3e75f2	\N	\N			0	inbound	+12146922088	\N	\N	\N	new lead	shumaker john	9	\N	\N	3410
2017-03-02 19:20:22.189475+00	2017-11-29 18:38:53.211789+00	3304	completed				+12147836038		16	2017-03-02 19:20:22.187784	2017-03-02 19:20:38.126574	CAfc329c7ff7d2155b1123932278ed6ecb	\N	\N			0	inbound	+12146922088	\N	6.71739912033081055	\N	new lead	shumaker john	9	\N	\N	3410
2017-03-02 19:22:30.323342+00	2017-11-29 18:38:53.211796+00	3305	completed				+12147836038		16	2017-03-02 19:22:30.321975	2017-03-02 19:22:46.406195	CA3c255367cebd736b08ef55585896ca6f	\N	\N			0	inbound	+12146922088	\N	6.28167605400085449	\N	new lead	shumaker john	9	\N	\N	3410
2017-03-02 21:31:24.367741+00	2017-11-29 18:38:53.211803+00	3309	completed				+12147836038		22	2017-03-02 21:31:24.366108	2017-03-02 21:31:46.057464	CAe726c6abee5f66a82c79d219e81778b6	\N	103			0	inbound	+12146922088	\N	11.4477310180664062	\N	new lead	shumaker john	9	\N	\N	3410
2017-04-08 20:53:01.227134+00	2017-11-29 18:38:53.213512+00	3746	completed				+12147836038		38	2017-04-08 20:53:01.225814	2017-04-08 20:53:38.728941	CAb099f4fa82c97c76182fb41df242a16f	\N	99			0	inbound	+12146922088	\N	1.94211792945861816	\N	new lead	shumaker john	9	\N	\N	3410
2017-04-08 21:59:02.200519+00	2017-11-29 18:38:53.213581+00	3749	completed				+12147836038		10	2017-04-08 21:59:02.198908	2017-04-08 21:59:11.853105	CA7d0d2ee03da094c337976320d733c0e0	\N	107			0	inbound	+12146922088	\N	4.95165395736694336	\N	new lead	shumaker john	9	\N	\N	3410
2017-03-08 16:47:42.390651+00	2017-11-29 18:38:53.211853+00	3342	completed				+12147836038		111	2017-03-08 16:47:42.387967	2017-03-08 16:49:33.084366	CA112758f1ede186a5bf570f2aa951ed36	\N	\N			0	inbound	+12146922088	\N	11.8164570331573486	\N	new lead	shumaker john	9	\N	\N	3410
2017-04-25 20:19:10.902428+00	2017-11-29 18:38:49.806667+00	4303	missed				+14154179060		97	2017-04-25 20:19:10.899171	2017-04-25 20:20:47.884118	CAa8b234e28fa21aab0fb8abaadb901386	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	cell phone   ca	9	\N	\N	3411
2017-04-25 20:21:01.589669+00	2017-11-29 18:38:49.806674+00	4304	completed				+14154179060		131	2017-04-25 20:21:01.587255	2017-04-25 20:23:12.625075	CAb3c04c606641ff5a0fd151d596d09dcf	\N	107			0	inbound	+12147122250	\N	3.6475379467010498	\N	new lead	cell phone   ca	9	\N	\N	3411
2017-11-01 16:16:02.13744+00	2017-11-01 16:19:41.838305+00	6891	completed				+18177290147		219	2017-11-01 16:16:02.134999	2017-11-01 16:19:40.770389	CA23d2decaa95ca5b0b0f2aa9164915457	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE5481ab48f88c126a26277111a8e104d4	0	inbound	+18177569010	124	9.85478591918945312	\N	new lead	q link wireless	12	\N	\N	3414
2016-10-27 16:50:43.374272+00	2016-12-09 17:06:53.906056+00	2357	completed				+12157507040		184	2016-10-27 16:50:43.37302	2016-10-27 16:53:47.432427	CAa7f7246e3c713a3e312a49de3ab6c540	\N	21			0	inbound	+18558021330	\N	2.59519219398498535	null	new lead		3	\N	\N	3419
2016-10-27 17:19:58.38369+00	2016-12-09 17:06:53.906063+00	2359	completed				+12157507040		361	2016-10-27 17:19:58.382209	2016-10-27 17:25:59.354341	CAe1424592490d5b688c5aceedf4f74643	\N	21			0	inbound	+18558021330	\N	3.58673310279846191	null	new lead		3	\N	\N	3419
2016-11-01 19:30:51.240245+00	2016-12-10 01:05:18.40121+00	2494	completed				+16103108576		467	2016-11-01 19:30:51.238299	2016-11-01 19:38:38.678044	CAc5dac8a30642035f62ef989647a58553	\N	24			0	inbound	+18557088731	\N	2.59282898902893066	null	new lead		3	\N	\N	3422
2017-02-15 16:28:33.977653+00	2017-02-15 16:41:38.699682+00	3174	completed				+12147969527		780	2017-02-15 16:28:33.975115	2017-02-15 16:41:34.453504	CA8561bf8db7f4f4c25a13bdc61b4951a7	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE65c599571afa0cc83ba70497d9954481	0	inbound	+18557240606	49	1.92844414710998535	null	new lead		1	\N	\N	3424
2017-06-01 21:48:33.809145+00	2017-11-29 18:38:49.81446+00	5564	completed				+19143201812		180	2017-06-01 21:48:33.806359	2017-06-01 21:51:33.612584	CA588def8ad9970b4911009d0763c20e28	\N	99			0	inbound	+12147122250	\N	10.5625920295715332	\N	new lead	soriano angela	9	\N	\N	3426
2017-05-08 21:20:30.139648+00	2017-11-29 18:38:53.215398+00	4879	completed				+19143201812		162	2017-05-08 21:20:30.135664	2017-05-08 21:23:12.136745	CA27471fd76ac07f1a62f1199d6d6ed0fd	\N	\N			0	inbound	+12146922088	\N	1.32384204864501953	\N	new lead	soriano angela	9	\N	\N	3426
2017-05-08 21:57:54.220753+00	2017-11-29 18:38:53.215405+00	4882	completed				+19143201812		191	2017-05-08 21:57:54.218197	2017-05-08 22:01:04.906522	CA2fea8f3b0d4a68a3927df9fcf1cd2cc5	\N	\N			0	inbound	+12146922088	\N	1.07646608352661133	\N	new lead	soriano angela	9	\N	\N	3426
2017-05-25 19:05:24.400051+00	2017-11-29 18:38:49.813473+00	5412	completed				+19143201812		82	2017-05-25 19:05:24.397155	2017-05-25 19:06:46.246943	CAf97de1c8b2260f8bbf3ad4a0f879acf6	\N	127			0	inbound	+12147122250	\N	1.16698503494262695	\N	new lead	soriano angela	9	\N	\N	3426
2017-05-25 19:06:42.262505+00	2017-11-29 18:38:49.81348+00	5413	completed				+19143201812		146	2017-05-25 19:06:42.261004	2017-05-25 19:09:08.748373	CA59b41f240df93c413041b8a9022d0418	\N	105			0	inbound	+12147122250	\N	4.09579801559448242	\N	new lead	soriano angela 	9	\N	\N	3426
2017-05-25 19:15:40.780601+00	2017-11-29 18:38:49.813487+00	5414	completed				+19143201812		31	2017-05-25 19:15:40.777937	2017-05-25 19:16:12.228527	CA4a925acdc268c097ff301d9f9feede52	\N	107			0	inbound	+12147122250	\N	3.6537930965423584	\N	new lead	soriano angela	9	\N	\N	3426
2017-06-01 21:47:30.486967+00	2017-11-29 18:38:49.814453+00	5563	completed				+19143201812		65	2017-06-01 21:47:30.484001	2017-06-01 21:48:35.145174	CAa71557321b22655c6076b2ac69290ac4	\N	125			0	inbound	+12147122250	\N	1.04970788955688477	\N	new lead	soriano angela 	9	\N	\N	3426
2017-06-01 21:51:56.610544+00	2017-11-29 18:38:49.814467+00	5565	completed				+19143201812		91	2017-06-01 21:51:56.609144	2017-06-01 21:53:27.396099	CAff71289d79f707a1f98e2653b4e01dd8	\N	127			0	inbound	+12147122250	\N	0.948349952697753906	\N	new lead	soriano angela	9	\N	\N	3426
2017-06-01 21:53:24.068091+00	2017-11-29 18:38:49.814475+00	5566	completed				+19143201812		59	2017-06-01 21:53:24.066148	2017-06-01 21:54:22.878185	CAa5823008e22b481fd49d1983980df198	\N	124			0	inbound	+12147122250	\N	1.93303489685058594	\N	new lead	soriano angela	9	\N	\N	3426
2016-09-08 16:21:58.954891+00	2016-12-10 01:01:00.200008+00	1961	completed				+16199544129		291	2016-09-08 16:21:58.952803	2016-09-08 16:26:50.284205	CAdd328e6e08f67e24617ae6016bcca2c8	\N	57			0	inbound	+18557860909	\N	9.14193296432495117	null	new lead		3	\N	\N	3429
2016-09-08 15:26:54.505805+00	2016-12-10 01:00:18.568406+00	1960	completed				+16192824585		244	2016-09-08 15:26:54.503849	2016-09-08 15:30:58.62635	CA6c71b4a83f7e3aa9e873f0781b6584dc	\N	56			0	inbound	+18556775511	\N	5.72151899337768555	null	new lead		3	\N	\N	3431
2017-11-17 19:41:35.807716+00	2017-11-17 19:42:32.82943+00	7112	completed				+14698057681		57	2017-11-17 19:41:35.805965	2017-11-17 19:42:32.825525	CA7ade3a7e2cc60b4273a289e7fbc44562	\N	146			0	inbound	+18177569010	124	21.2687058448791504	\N	new lead	cell phone   tx	12	\N	\N	3432
2017-11-17 19:42:40.898965+00	2017-11-17 19:43:35.648297+00	7113	completed				+14698057681		55	2017-11-17 19:42:40.897421	2017-11-17 19:43:35.645327	CA39e83ebf71ed3ddde35ca8f7e038b94a	\N	146			0	inbound	+18177569010	124	6.98260092735290527	\N	new lead	cell phone   tx	12	\N	\N	3432
2016-09-12 19:32:00.161015+00	2016-12-10 01:01:51.440953+00	2001	completed				+16193792043		311	2016-09-12 19:32:00.159982	2016-09-12 19:37:11.144948	CA63e98c24361f442fcfcfc9c1f4308ba0	\N	50			0	inbound	+18559693782	\N	2.14943408966064453	null	new lead		3	\N	\N	3433
2016-09-12 19:31:11.120715+00	2016-12-10 01:01:51.440947+00	2000	missed				+16193792043		2	2016-09-12 19:31:11.119314	2016-09-12 19:31:13.333543	CAcc340d1503e2a5306f63958252aba80a	\N	\N			0	inbound	+18559693782	\N	\N	null	new lead		3	\N	\N	3433
2017-12-06 20:07:44.718979+00	2017-12-06 20:31:49.434741+00	7655	completed				+18133471175		1442	2017-12-06 20:07:44.717098	2017-12-06 20:31:46.712957	CA1252b5c9c983462d4de305c9603b7bb2	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE74faef9e0d2bcd4bbf5e3beb7e15ae79	0	inbound	+18558645656	136	2.63578391075134277	\N	new lead		15	\N	\N	3434
2016-06-27 21:16:32.995941+00	2017-11-29 18:31:41.490143+00	558	completed	Raquel	Fuentes		+12163965003		44	2016-06-27 21:16:32.994837	2016-06-27 21:17:17.335299	CA99a0a09cdca6c01557695c1a6530ad67	\N	\N			0	inbound	+18552959002	\N	\N	null	new lead		1	\N	\N	3435
2016-06-27 21:18:36.915145+00	2016-06-27 21:23:57.245115+00	559	completed				+12163965003		316	2016-06-27 21:18:36.914155	2016-06-27 21:23:57.243903	CA640d2e28e0db4fa7e096cd7ba7a77911	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	1.70173406600952148	{}	new lead		1	\N	\N	3435
2016-06-29 02:14:47.761215+00	2016-06-29 15:36:51.642382+00	624	completed	raquel	fuentes	juanca709@yahoo.com	+12163965003		\N	2016-06-29 02:14:47.760098	\N		d33a481e-e0af-47ac-9f90-260f20b69de5	\N			0	outbound	+18552959002	\N	\N	{}	new lead		1	\N	\N	3435
2016-06-27 21:15:38.014826+00	2017-11-29 18:31:41.490136+00	557	completed	Raquel	Fuentes		+12163965003		46	2016-06-27 21:15:38.013584	2016-06-27 21:16:24.428658	CA8cfb09b3f74529d41a6a1432ebe1f85b	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE6c35e3602950ce5491343b51a0093d64	0	inbound	+18552959002	\N	\N	null	new lead		1	\N	\N	3435
2016-06-07 13:26:16.990763+00	2016-06-07 13:29:12.543147+00	391	completed				+17817241889		171	2016-06-07 13:26:16.989402	2016-06-07 13:29:12.542002	CAc693ef509b5804c77253c45743ac7b42	c6c46e91-97c9-404c-92ba-454008d80db7	16			1	outbound	+18556311397	\N	1.26900982856750488	{}	new lead		1	\N	\N	3436
2016-06-16 13:53:00.061675+00	2016-06-16 13:56:09.184512+00	426	completed	Melvin	Shapiro		+17817241889		80	2016-06-16 13:53:00.060733	2016-06-16 13:54:24.195567	CA7b12d326d3dfd80251be894bb98d6fd0	c6c46e91-97c9-404c-92ba-454008d80db7	16			1	outbound	+18556311397	\N	1.32039904594421387	{}	new lead		1	\N	\N	3436
2016-11-01 18:53:58.402678+00	2016-11-01 18:53:58.427576+00	2490	missed	Keith	Bean	beaninsurance@sbcglobal.net	+18176375057		\N	2016-11-01 18:53:58.401741	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	3437
2016-09-22 23:09:24.985663+00	2016-12-09 17:06:53.905963+00	2077	completed				+12159467136		196	2016-09-22 23:09:24.983736	2016-09-22 23:12:40.893881	CA4858f9bbd629d5a031912b4ffdc4972e	\N	21			0	inbound	+18558021330	\N	2.03164005279541016	null	new lead		3	\N	\N	3441
2017-05-18 17:57:20.592928+00	2017-11-29 18:38:49.812189+00	5216	completed				+13108091666		233	2017-05-18 17:57:20.590806	2017-05-18 18:01:13.260531	CA4084068792270d5778a458950aeca71f	\N	99			0	inbound	+12147122250	\N	4.93738913536071777	\N	new lead	wireless caller	9	\N	\N	3442
2017-04-14 14:30:48.754094+00	2017-11-29 18:31:56.600366+00	3909	missed				+15708627465		0	2017-04-14 14:30:48.752409	2017-04-14 14:30:48.952742	CA7d71f78ef0214e6a5a86c966e2f30c8f	\N	\N			0	inbound	+18556311397	\N	\N	\N	do not contact		1	\N	\N	3445
2017-04-14 14:31:00.657744+00	2017-11-29 18:31:56.600373+00	3910	missed				+15708627465		22	2017-04-14 14:31:00.656117	2017-04-14 14:31:22.273602	CAa5f63bcc2c3efcd60a18a39cd0a8b33d	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE104786a1da4897cab39b91807b1f5b7c	0	inbound	+18556311397	\N	\N	\N	do not contact		1	\N	\N	3445
2017-04-14 14:54:55.057243+00	2017-11-29 18:31:56.60038+00	3911	completed				+15708627465		74	2017-04-14 14:54:55.055042	2017-04-14 14:56:08.724128		\N	16			0	outbound	+18556311397	\N	\N	\N	do not contact		1	\N	\N	3445
2017-05-04 14:04:56.993698+00	2017-11-29 18:38:49.809585+00	4702	completed				+13059928667		64	2017-05-04 14:04:56.991882	2017-05-04 14:06:00.954971	CA6eaf814e1e508914b4cfc080286eef18	\N	\N			0	inbound	+12147122250	\N	2.6709752082824707	\N	new lead	bryan internati	9	\N	\N	3449
2017-05-09 20:12:26.210758+00	2017-11-29 18:38:49.810676+00	4927	missed				+19729318000		33	2017-05-09 20:12:26.208925	2017-05-09 20:12:59.629683	CA59f7951223e93ea5e74da1e2d3816a82	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	digital docum	9	\N	\N	3450
2016-12-30 12:53:43.336106+00	2017-11-29 18:31:56.600253+00	3103	missed				+15708297951		7	2016-12-30 12:53:43.334295	2016-12-30 12:53:50.57626	CA4a280411637b63860a35958ce7c7e372	\N	\N			0	inbound	+18556311397	\N	\N	null	new lead		1	\N	\N	3451
2016-12-20 12:56:34.199172+00	2017-11-29 18:31:56.600246+00	3085	missed				+15708297951		7	2016-12-20 12:56:34.196388	2016-12-20 12:56:41.502545	CAa5377db7e59365e4e473bd921bdf6eaa	\N	\N			0	inbound	+18556311397	\N	\N	null	new lead		1	\N	\N	3451
2016-11-01 17:33:58.124201+00	2016-12-09 17:10:17.413656+00	2481	completed				+19176486613		178	2016-11-01 17:33:58.12296	2016-11-01 17:36:55.9251	CA48db49096147eb659567a98de68112c9	\N	27			0	inbound	+18552716856	\N	6.89848899841308594	null	new lead		3	\N	\N	3452
2016-08-15 13:59:26.940572+00	2016-12-10 00:55:45.165269+00	1485	completed				+14845243674		16	2016-08-15 13:59:26.939539	2016-08-15 13:59:42.489634	CA10eeb737d582948044a5d6a3961a7c1f	\N	24			0	inbound	+18557129406	\N	1.86781120300292969	null	new lead		3	\N	\N	3454
2016-08-24 23:00:42.074302+00	2017-11-29 18:31:56.600161+00	1755	missed				+15703886878		7	2016-08-24 23:00:42.071924	2016-08-24 23:00:48.850993	CAa70b267672f8b7cee2f0747ac974635f	\N	\N			0	inbound	+18556311397	\N	\N	null	select status		1	\N	\N	3456
2016-08-25 14:13:24.244157+00	2017-01-27 21:12:23.813757+00	1770	completed				+15703886878		113	2016-08-25 14:13:24.243253	2016-08-25 14:15:17.456039		\N	\N			0	outbound	+18555343978	48	\N	null	select status		1	\N	\N	3456
2017-11-17 21:34:01.524746+00	2017-11-29 18:31:56.600521+00	7118	missed				+15703886878		9	2017-11-17 21:34:01.522113	2017-11-17 21:34:10.551914	CA987589e50a5d3650b66bca6c7e1536ed	\N	\N			0	inbound	+18556311397	\N	\N	\N	select status		1	\N	\N	3456
2016-09-05 00:53:00.344001+00	2016-12-10 01:00:18.568385+00	1887	completed				+16198084595		146	2016-09-05 00:53:00.342461	2016-09-05 00:55:26.233251	CA34f7fd229f1c47719aedc623c82c2d5b	\N	56			0	inbound	+18556775511	\N	19.0335378646850586	null	new lead		3	\N	\N	3457
2016-09-08 18:36:16.427242+00	2016-12-10 01:00:18.568413+00	1967	completed				+16198084595		530	2016-09-08 18:36:16.425921	2016-09-08 18:45:06.545738	CA4373322fee417432eab5fcf30a107745	\N	56			0	inbound	+18556775511	\N	4.85913395881652832	null	new lead		3	\N	\N	3457
2017-03-22 02:07:49.019077+00	2017-11-29 18:38:53.212735+00	3522	completed				+12149803356		20	2017-03-22 02:07:49.016841	2017-03-22 02:08:09.343633	CA6c0298c71b161fe4d15841eebe3c962e	\N	105			0	inbound	+12146922088	\N	6.13325619697570801	\N	new lead		9	\N	\N	3460
2017-04-27 17:20:14.259081+00	2017-11-29 18:38:53.214667+00	4370	completed				+13147935485		179	2017-04-27 17:20:14.256654	2017-04-27 17:23:13.240139	CAfa84ab5e9da80df6a526e688d849312a	\N	133			0	inbound	+12146922088	\N	7.35122084617614746	\N	new lead	osman liban	9	\N	\N	3461
2017-12-06 18:39:37.124771+00	2017-12-06 18:42:00.465637+00	7647	completed				+16785991733		143	2017-12-06 18:39:37.123045	2017-12-06 18:42:00.454087	CA7e2a0cb805072800fe888c12065a26e6	\N	153			0	inbound	+17707665732	133	11.1848320960998535	\N	new lead	dalton  ga	13	\N	\N	2691
2017-04-13 16:10:07.66135+00	2017-04-13 16:11:58.318764+00	3868	completed				+12144423965		110	2017-04-13 16:10:07.659575	2017-04-13 16:11:57.447435	CAcc2f005c1d078cc978b5176be376ac9a	\N	131		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE7bc9045d8f9e85b932d08277617fcc2a	0	inbound	+18172104002	126	9.33219003677368164	\N	new lead	huinh phuong	12	\N	\N	3296
2017-10-21 21:25:13.54937+00	2017-10-21 21:28:17.870962+00	6778	completed	Patsy 	Howard	patsyhoward1949@gmail.com	+17063623859		169	2017-10-21 21:25:13.547893	2017-10-21 21:28:17.848258	CAe09db8131e751319d5302de1ba421702	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE1a2987ecfef71000351ba6e5c576bb43	1	outbound	+17704009016	\N	12.9605650901794434	{}	new lead		13	\N	\N	3369
2017-04-19 23:59:14.10511+00	2017-11-29 18:38:49.805874+00	4120	completed				+14693092928		241	2017-04-19 23:59:14.102179	2017-04-20 00:03:15.404218	CA68087154cddfdb978be6356ec6d574e5	\N	\N			0	inbound	+12147122250	\N	6.09117984771728516	\N	new lead	cell phone   tx	9	\N	\N	3370
2017-04-20 00:09:59.284499+00	2017-11-29 18:38:49.805882+00	4121	completed				+14693092928		137	2017-04-20 00:09:59.282144	2017-04-20 00:12:16.184514	CAdbe9cae2870b3a9ec4198f9b999052f5	\N	105			0	inbound	+12147122250	\N	5.89211392402648926	\N	new lead	cell phone   tx	9	\N	\N	3370
2017-04-20 20:54:30.4921+00	2017-11-29 18:38:49.806075+00	4160	completed				+14693092928		135	2017-04-20 20:54:30.488815	2017-04-20 20:56:45.266454	CA6a2989a461a415c7baa9c8780aa1ab44	\N	105			0	inbound	+12147122250	\N	4.58105802536010742	\N	new lead	cell phone   tx	9	\N	\N	3370
2017-04-20 21:03:30.572544+00	2017-11-29 18:38:49.806082+00	4162	completed				+14693092928		52	2017-04-20 21:03:30.570167	2017-04-20 21:04:22.642374	CA936988094e01477482fcd0d201c870f2	\N	105			0	inbound	+12147122250	\N	1.65886402130126953	\N	new lead	cell phone   tx	9	\N	\N	3370
2017-05-22 20:17:45.031874+00	2017-11-29 18:38:49.8127+00	5301	completed				+12105382493		46	2017-05-22 20:17:45.029995	2017-05-22 20:18:31.159018	CA2dbaca0ae54e339595c454830f247da0	\N	125			0	inbound	+12147122250	\N	2.19197297096252441	\N	new lead	san antonio  tx	9	\N	\N	3373
2017-05-22 20:18:31.529818+00	2017-11-29 18:38:49.812707+00	5302	completed				+12105382493		64	2017-05-22 20:18:31.528346	2017-05-22 20:19:35.5581	CA7d5d6aa4f63fffdba3e6d9a4f6a21543	\N	127			0	inbound	+12147122250	\N	1.60313606262207031	\N	new lead	san antonio  tx	9	\N	\N	3373
2017-05-22 21:20:12.267729+00	2017-11-29 18:38:49.812721+00	5304	completed				+12105382493		72	2017-05-22 21:20:12.264276	2017-05-22 21:21:24.018879	CAce28cfe06b28ec25b3741261bee8a3a8	\N	127			0	inbound	+12147122250	\N	1.20450186729431152	\N	new lead	san antonio  tx	9	\N	\N	3373
2017-04-10 21:20:50.939526+00	2017-11-29 18:38:53.213681+00	3771	completed				+12146078911		40	2017-04-10 21:20:50.937197	2017-04-10 21:21:31.107548	CA9dfb04941ecbbb37f83a69efd4704045	\N	\N			0	inbound	+12146922088	\N	4.59711003303527832	\N	new lead	novaco alex	9	\N	\N	3464
2017-08-12 00:47:49.877423+00	2017-08-12 01:10:52.253109+00	5998	missed				+18178971482		62	2017-08-12 00:47:49.875025	2017-08-12 00:48:51.757302	CAf374d236baa1d1b7c8e7154f8177c1a5	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REb8e103b81bfed8082e39ef0e12f45915	0	inbound	+18177569010	124	1360.43656992912292	\N	new lead	euless  tx	12	\N	\N	3467
2016-11-16 21:51:06.787397+00	2016-11-16 22:21:45.429421+00	2929	completed				+18322604742		1834	2016-11-16 21:51:06.785725	2016-11-16 22:21:40.950895	CA136912edf3318ab533566fa3944e51c3	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REae5620bdb2eb9b13a0d128380008f2c3	0	inbound	+18557240606	49	2.18490386009216309	null	new lead		1	\N	\N	3468
2017-05-13 17:11:51.00335+00	2017-11-29 18:38:49.811451+00	5056	completed				+17148035017		114	2017-05-13 17:11:50.999883	2017-05-13 17:13:44.868946	CAf86e70d5b469cd01f4505703e06a1250	\N	107			0	inbound	+12147122250	\N	5.86376023292541504	\N	new lead	hass steven    	9	\N	\N	3470
2017-05-24 14:28:03.883405+00	2017-11-29 18:38:49.812981+00	5348	completed				+12146609195		96	2017-05-24 14:28:03.881132	2017-05-24 14:29:39.758238	CA17a32dfc2f99d67f8b87cb3ab8c32ef7	\N	124			0	inbound	+12147122250	\N	2.4420928955078125	\N	new lead	fortune partner	9	\N	\N	3472
2017-09-15 00:14:10.788749+00	2017-09-15 00:35:28.17377+00	6357	missed				+18175349886		21	2017-09-15 00:14:10.785964	2017-09-15 00:14:31.930258	CAbab29f3a8fa27ceaf38bd96b7e1a1bde	\N	\N			0	inbound	+18177569010	124	1275.05421304702759	\N	new lead	davis roberta	12	\N	\N	3475
2017-05-05 14:14:30.049126+00	2017-08-17 14:35:21.045126+00	4735	completed				+18178567848		212	2017-05-05 14:14:30.047181	2017-05-05 14:18:02.043237	CA356c4fb3b6e08f4cf959305da1d548e1	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REbf736bdb764408ae630d3b9fe82bb168	0	inbound	+18177569010	124	13.1230249404907227	\N	new lead	wren terrance	12	\N	\N	3479
2017-12-21 22:31:05.281591+00	2017-12-21 22:32:15.488869+00	8060	completed				+17542248727		69	2017-12-21 22:31:05.279712	2017-12-21 22:32:14.208607	CAbe4d703c75d919d8c82291b5cc17d02d	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE03b37bc669b311737ed711b139310784	0	inbound	+18558645656	136	2.14977192878723145	\N	new lead		15	\N	\N	3483
2016-07-21 19:25:00.616599+00	2017-11-29 18:31:41.490547+00	915	completed				+14195721656		37	2016-07-21 19:25:00.615577	2016-07-21 19:25:37.394801	CA521df36467c3ed11b2fb86519482ba20	\N	17		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE3f276a717ce95a07032ed17edf0fcf9f	0	inbound	+18552959002	\N	21.5386769771575928	null	new lead		1	\N	\N	3485
2017-09-05 20:38:33.350257+00	2017-09-05 20:45:12.054656+00	6264	missed				+14046448311		69	2017-09-05 20:38:33.347546	2017-09-05 20:39:42.406063	CAc75408eda56b4edee00bf58955a49e53	\N	\N			0	inbound	+17707665732	133	372.534404039382935	\N	new lead		13	\N	\N	3489
2017-03-09 17:39:11.286621+00	2017-11-29 18:47:25.067665+00	3359	retry-pending				+14696557980		7	2017-03-09 17:39:11.283963	2017-03-09 17:39:18.549378	CA4c4ef01e7c67a0638f3dd721ad9313d2	\N	\N			0	inbound	+19728330116	\N	1290.17874193191528	\N	new lead	aguilera noemis	8	\N	\N	2733
2017-03-07 00:18:07.781939+00	2017-03-07 00:18:41.471604+00	3332	completed				+19365204627		33	2017-03-07 00:18:07.779803	2017-03-07 00:18:41.163885	CA2ab0e771f5057d682c57da4a48c1efc9	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REba537b1a45cc27cef3fe4268ac9946f8	0	inbound	+18557240606	49	3.93284106254577637	\N	new lead		1	\N	\N	3490
2016-11-05 20:02:05.717867+00	2016-12-10 01:00:18.568545+00	2755	completed				+18586033471		26	2016-11-05 20:02:05.71572	2016-11-05 20:02:31.709392	CAcaa4bde5d7e40dee83cf0b1b51bdf585	\N	56			0	inbound	+18556775511	\N	7.03640580177307129	null	new lead		3	\N	\N	3491
2016-12-01 15:16:17.281502+00	2016-12-10 01:05:18.401256+00	3013	completed				+16105822352		752	2016-12-01 15:16:17.279408	2016-12-01 15:28:48.929018	CAbb4d921dead8ecefa2b35b6c5cda545b	\N	24			0	inbound	+18557088731	\N	1.88000583648681641	null	new lead		3	\N	\N	3493
2017-08-11 15:47:10.684974+00	2017-08-11 15:48:15.277701+00	5989	completed	Ashley	Adams	ashii241@icloud.com	+16784723158		45	2017-08-11 15:47:10.683288	2017-08-11 15:48:13.960622	CA900a0f2c53e0532513b65de548fffacd	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE083d5e157457a0d2b0c17a11420cd1de	1	outbound	+17704009016	\N	20.1862161159515381	{}	new lead		13	\N	\N	3494
2016-10-03 17:12:11.805696+00	2016-12-10 01:04:28.706378+00	2127	completed				+19093875500		205	2016-10-03 17:12:11.804007	2016-10-03 17:15:36.964198	CA25aac91f62e0b1dc81e87a4c5702e57b	\N	61			0	inbound	+18557579140	\N	1.02774882316589355	null	new lead		3	\N	\N	3497
2017-10-20 16:54:24.749134+00	2017-10-20 17:01:09.248308+00	6768	missed	Milik	Williams		+16785983390		71	2017-10-20 16:54:24.746822	2017-10-20 16:55:36.181721	CA411bf9ac792bb1e3c1e40f72a1235ceb	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE57ea85dbdbb52734ed592eabb3cfb163	0	inbound	+17707665732	133	\N	\N	new lead		13	\N	\N	3499
2017-10-20 14:15:48.82415+00	2017-10-20 14:18:43.44801+00	6763	completed	Milik	Williams	Milwil1996@gmail.com	+16785983390		160	2017-10-20 14:15:48.821923	2017-10-20 14:18:43.421195	CAfe69ca836d621b2f29163a781a1dde1f	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REd402a15fb7895854049e4b5146c39d83	1	outbound	+17704009016	\N	10.1312830448150635	{}	new lead		13	\N	\N	3499
2017-11-17 20:31:37.523428+00	2017-11-17 20:33:34.864696+00	7115	completed				+16787580740		117	2017-11-17 20:31:37.521387	2017-11-17 20:33:34.853784	CA8288830e2c0798a8ba9b376cd72a206a	\N	153			0	inbound	+17707665732	133	8.69473099708557129	\N	new lead		13	\N	\N	3504
2016-08-03 18:05:35.23896+00	2016-12-10 00:55:45.165075+00	1182	completed				+16103824247		192	2016-08-03 18:05:35.23792	2016-08-03 18:08:46.754819	CAa9bc2b00b216776d04d61a9146b114e5	\N	24			0	inbound	+18557129406	\N	1.59460210800170898	null	new lead		3	\N	\N	3506
2017-12-20 20:02:46.345508+00	2017-12-20 20:09:36.611967+00	8039	completed				+18035280206		410	2017-12-20 20:02:46.343646	2017-12-20 20:09:36.608875	CA64ffe78e672d0cbb53ad4c33d78d4d0f	\N	159		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REcf54d04c29016f42622b64d192b52923	0	inbound	+18036584969	138	370.075314998626709	\N	new lead		15	\N	\N	3507
2016-06-14 00:34:27.410718+00	2016-06-14 11:50:15.706705+00	413	completed	shantel	gould	shantellica@gmail.com	+16616994248		\N	2016-06-14 00:34:27.409575	\N		07cfd785-7aef-47fb-8d17-7f38ec833934	\N			0	outbound	+18556311439	\N	\N	{}	new lead		1	\N	\N	3508
2017-05-19 20:55:27.603131+00	2017-05-19 21:18:34.42008+00	5238	missed				+14692865600		75	2017-05-19 20:55:27.599728	2017-05-19 20:56:42.345357	CA3eba6f0e530442ed4f6350afd75cc512	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE21c12c087990b75168f0f9e97caf888d	0	inbound	+18172104002	126	1364.99277806282043	\N	new lead	manuel vincent	12	\N	\N	3509
2017-12-05 01:50:40.945645+00	2017-12-05 01:51:23.284519+00	7572	completed	Barbara	Thornton	bjwt552@aol.com	+16144913546		40	2017-12-05 01:50:40.943936	2017-12-05 01:51:23.283264	CA43fcb59405f3d252b354ad17c29c8b59	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.28484797477722168	{}	new lead		15	\N	\N	3510
2017-12-05 01:52:43.560506+00	2017-12-05 02:13:54.467456+00	7573	completed	Barbara	Thornton		+16144913546		1268	2017-12-05 01:52:43.558606	2017-12-05 02:13:51.250119	CA500aa4dded103cf04966885754b35d2b	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REc29e80b936b35253cea33928c16a1fb2	0	inbound	+18558645656	136	2.80928683280944824	\N	new lead		15	\N	\N	3510
2016-12-02 21:54:45.652655+00	2016-12-09 17:11:00.853724+00	3028	completed				+19082831347		79	2016-12-02 21:54:45.6516	2016-12-02 21:56:04.715172	CA54d06527d7f4ee03db13535fc7fa1dc6	\N	72			0	inbound	+18555727686	\N	1.66278386116027832	null	new lead		3	\N	\N	3512
2017-04-20 16:32:44.775116+00	2017-11-29 18:38:53.214305+00	4134	completed				+14697327481		184	2017-04-20 16:32:44.77215	2017-04-20 16:35:49.096484	CA3b50128a33e0c0b53818d1f5c751cecc	\N	107			0	inbound	+12146922088	\N	6.73967194557189941	\N	new lead	bennedsen thoma	9	\N	\N	3514
2017-04-03 22:32:30.385218+00	2017-11-29 18:38:53.213292+00	3678	completed				+12145141810		83	2017-04-03 22:32:30.383329	2017-04-03 22:33:53.523337	CA273214c0d8340fcc3e4258f2281f2f17	\N	105			0	inbound	+12146922088	\N	6.45332193374633789	\N	new lead	winters mark   	9	\N	\N	3515
2017-11-01 18:00:56.611103+00	2017-11-01 18:07:14.979211+00	6894	completed	Kendra 	Davis 	Kendrardavis88@yahoo.com	+17063627433		29	2017-11-01 18:00:56.609616	2017-11-01 18:07:14.956593	CAf11fa13bd92429377aac70525b456f50	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REcdc300f36817cfd901c5126996aa990a	3	outbound	+17704009016	\N	346.496252059936523	{}	new lead		13	\N	\N	3516
2016-11-01 12:58:37.260598+00	2016-11-09 15:47:03.908395+00	2451	completed				+13026833067		10	2016-11-01 12:58:37.258935	2016-11-01 12:58:47.195304	CAc47fedc2f2c3ad3d7e86d7dbfbf5d587	\N	42			0	inbound	+18556349123	\N	2.31524801254272461	null	new lead		3	\N	\N	3517
2017-11-07 16:50:08.334683+00	2017-11-07 16:54:42.228082+00	6959	completed				+14705358407		274	2017-11-07 16:50:08.33248	2017-11-07 16:54:42.217681	CAea0c103c4d5ead9ce9014b5a39b3df86	\N	150			0	inbound	+17707665732	133	22.9347701072692871	\N	new lead		13	\N	\N	3520
2017-11-07 16:54:57.910421+00	2017-11-07 17:01:59.687487+00	6960	missed				+14705358407		89	2017-11-07 16:54:57.908395	2017-11-07 16:56:26.739373	CAe7a21aea424acbedb57eed1c9db30362	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REc6ba79b04a39e5645da2861c644f7e33	0	inbound	+17707665732	133	\N	\N	new lead		13	\N	\N	3520
2017-11-07 21:33:44.99136+00	2017-11-07 21:35:37.424689+00	6964	completed				+14705358407		112	2017-11-07 21:33:44.989519	2017-11-07 21:35:37.410801	CA02b3627027f97ea5eb5b08d46d4ddb57	\N	150			0	inbound	+17707665732	133	11.5674080848693848	\N	new lead		13	\N	\N	3520
2017-11-07 22:50:31.767218+00	2017-11-07 22:56:47.514193+00	6969	missed				+14705358407		46	2017-11-07 22:50:31.765775	2017-11-07 22:51:18.075486	CA067f305a279a6b791e091a6a3ef4ab31	\N	\N			0	inbound	+17707665732	133	25.1083831787109375	\N	new lead		13	\N	\N	3520
2017-11-07 22:49:09.643064+00	2017-11-07 22:55:53.331158+00	6968	missed				+14705358407		74	2017-11-07 22:49:09.640671	2017-11-07 22:50:23.160484	CA585c3fbfda3a71be664bed4855f4ddd8	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE383f8a28ce9b0d082470ecda966c853d	0	inbound	+17707665732	133	\N	\N	new lead		13	\N	\N	3520
2017-12-15 03:18:49.929379+00	2017-12-15 03:19:53.130334+00	7885	completed	Gregorio	Camacho	gc_75@aol.com	+15202569263		60	2017-12-15 03:18:49.927964	2017-12-15 03:19:53.128833	CAdb11339487df1b73d32563288a1232bf	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.49285793304443359	{}	new lead		15	\N	\N	3523
2016-07-27 16:10:26.619387+00	2017-01-27 21:12:23.812157+00	964	completed				+15136338135		92	2016-07-27 16:10:26.617685	2016-07-27 16:12:10.330854	CA0319347bf901400476cfcaa3a5366542	dd0f7c48-1955-4749-b3fe-6110257e8957	\N			1	outbound	+18555343978	\N	8.67389917373657227	{}	new lead		1	\N	\N	3525
2016-07-27 19:58:24.560207+00	2017-01-27 21:12:23.812172+00	972	completed	Timothy	Washington	timwashington3@gmail.com	+15136338135		99	2016-07-27 19:58:24.55915	2016-07-27 20:00:16.947596	CAdf8f7c22eabf96137d9c978659fb7e46	25d0200e-983d-4413-94ae-eb664b99711c	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE965968d79ae9f09e6035abd847bb016d	1	outbound	+18556311490	\N	10.9557349681854248	{}	new lead		1	\N	\N	3525
2017-04-26 15:03:07.055193+00	2017-11-29 18:38:53.214574+00	4319	completed				+12147836038		18	2017-04-26 15:03:07.053546	2017-04-26 15:03:24.604596	CA36e22ae4798ab916ccf16cebc9f27910	\N	133			0	inbound	+12146922088	\N	3.93709492683410645	\N	new lead	wireless caller	9	\N	\N	3410
2017-04-12 17:59:06.174469+00	2017-11-29 18:38:49.804584+00	3825	completed				+12147836038		61	2017-04-12 17:59:06.172733	2017-04-12 18:00:07.510926	CAc132da3f37ab788b544a065830cd3a19	\N	124			0	inbound	+12147122250	\N	0.980327129364013672	\N	new lead	shumaker john	9	\N	\N	3410
2016-07-26 15:25:23.204171+00	2017-11-29 18:31:10.261588+00	948	missed				+15136338135		19	2016-07-26 15:25:23.203117	2016-07-26 15:25:42.002916	CA7287aeba99b1eab2cf8691cf23998301	\N	\N			0	inbound	+18556311490	\N	7.93138813972473145	null	new lead		1	\N	\N	3525
2016-07-26 15:24:48.219882+00	2017-11-29 18:31:10.261573+00	947	completed				+15136338135		18	2016-07-26 15:24:48.218498	2016-07-26 15:25:06.448589	CA18458d73e88ca5630aceb61e1dc5d27a	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REea680af6ea039723bed6710851c28b19	0	inbound	+18556311490	\N	2.14402389526367188	null	new lead		1	\N	\N	3525
2016-07-27 15:42:05.42138+00	2017-11-29 18:31:10.26164+00	963	missed				+15136338135		34	2016-07-27 15:42:05.420223	2016-07-27 15:42:39.493612	CA359e9ed53bdc83369afb7abc26f12d63	\N	\N			0	inbound	+18556311490	\N	23.790442943572998	null	new lead		1	\N	\N	3525
2017-05-05 17:19:34.833278+00	2017-11-29 18:38:49.80998+00	4769	missed				+14694463983		24	2017-05-05 17:19:34.831253	2017-05-05 17:19:58.482833	CA26817adaf401be93c91b674edc8008d2	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	anderson sheldo	9	\N	\N	3526
2016-08-03 17:37:02.162+00	2016-08-03 17:37:17.312059+00	1179	completed				+18035462731		15	2016-08-03 17:37:02.160771	2016-08-03 17:37:17.061191	CA4d600167bd6f993715eaef6fe2d3b384	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE0555c1a87dd5544f5fcadc134e6907d0	0	inbound	+18559694001	70	4.41310000419616699	null	new lead		1	\N	\N	3531
2016-08-09 19:03:30.960726+00	2017-11-29 18:31:41.490653+00	1364	missed				+18035462731		48	2016-08-09 19:03:30.959595	2016-08-09 19:04:19.216689	CA44669e62b8919b42021a8b5f5522235d	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REc5a80dd5c800ea4cd61e209a6ab4f93b	0	inbound	+18552959002	\N	\N	null	new lead		1	\N	\N	3531
2016-07-28 17:43:29.527278+00	2017-01-27 21:12:23.812291+00	1009	completed				+18035462731		41	2016-07-28 17:43:29.526383	2016-07-28 17:44:10.411015	CA0a4811c25d2deb7de8997d838ad491f4	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REb4f29088e0b4d6a7a0ecc9f6a6078924	0	inbound	+18555343978	48	12.9685981273651123	null	new lead		1	\N	\N	3531
2016-07-29 15:10:51.149588+00	2017-01-27 21:12:23.812305+00	1027	completed				+18035462731		35	2016-07-29 15:10:51.148395	2016-07-29 15:11:26.523232	CAb9905d8b077a84d6296141280d458e02	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE9377f0b5b324c5700cf5f6fe372feb87	0	inbound	+18555343978	48	15.0957510471343994	null	new lead		1	\N	\N	3531
2016-10-26 16:50:02.280723+00	2016-10-26 16:50:22.22571+00	2348	completed				+18035462731		20	2016-10-26 16:50:02.279318	2016-10-26 16:50:22.224362	CA49530e5c739915778f50abde530f0000	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE07d0c5ff6a111148e80981ea18e6d3d6	0	inbound	+18557240606	49	2.39293217658996582	null	new lead		1	\N	\N	3531
2016-10-26 16:50:58.915355+00	2016-10-26 16:52:17.264407+00	2349	completed				+18035462731		77	2016-10-26 16:50:58.914042	2016-10-26 16:52:16.328466	CAc4edd74448564ab841418d2b7d52414e	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE51a5e5e39e7bf707845ec2edaabd6bbf	0	inbound	+18557240606	49	2.14758682250976562	null	new lead		1	\N	\N	3531
2016-02-19 01:11:53.070181+00	2016-02-19 01:16:24.701538+00	59	completed	Steve			+18035462731		\N	2016-02-19 01:11:53.066831	\N		53da9e33-88fb-4b04-baca-339193fd55f7	1		https://api.twilio.com/2010-04-01/Accounts/AC9029a05ead529490894695223ef2d813/Recordings/RE38d2a6c1c7c4b8a091d602f4e2d5066b	1	inbound		\N	\N	\N	new lead		1	\N	\N	3531
2017-01-27 17:51:58.529128+00	2017-01-27 17:52:02.91912+00	3134	missed	Cell	Phone   SC		+18035462731		4	2017-01-27 17:51:58.527003	2017-01-27 17:52:02.91754	CA33912162fb31151102fcf4fb3d729699	\N	\N			0	inbound	+17735469660	16	\N	null	new lead		1	\N	\N	3531
2017-01-26 16:24:06.369072+00	2017-01-26 16:29:29.047288+00	3133	completed	Cell	Phone   SC		+18035462731		323	2017-01-26 16:24:06.366794	2017-01-26 16:29:29.045648	CA03b7ca369970619a5f9e354f21f9c1a8	\N	79			0	inbound	+17735469660	16	11.0184459686279297	null	new lead		1	\N	\N	3531
2017-01-27 17:58:56.953942+00	2017-01-27 17:59:24.179644+00	3135	completed	Cell	Phone   SC		+18035462731		27	2017-01-27 17:58:56.952995	2017-01-27 17:59:24.178302	CA2aec336b87d8ad099788a72c33aaecaa	\N	79			0	inbound	+17735469660	16	6.43725991249084473	null	new lead		1	\N	\N	3531
2017-01-27 17:59:41.388396+00	2017-01-27 18:00:24.687148+00	3136	completed	Cell	Phone   SC		+18035462731		43	2017-01-27 17:59:41.387488	2017-01-27 18:00:24.684976	CAd9fac422c8b3590e04a31a1b56e093b7	\N	79			0	inbound	+17735469660	16	6.51667094230651855	null	new lead		1	\N	\N	3531
2017-01-27 18:00:51.540088+00	2017-01-27 18:02:07.931264+00	3137	completed	Cell	Phone   SC		+18035462731		76	2017-01-27 18:00:51.538445	2017-01-27 18:02:07.928247	CAf9b7e0f05cc4f2315bd8c1de4407a57e	\N	79		https://api.twilio.com/2010-04-01/Accounts/ACafc5b14e320f72bf4ed973f9ab19c98d/Recordings/REbd09e6e542e97e403f4ee3c66ac139f1	0	inbound	+17735469660	16	56.0329139232635498	null	new lead		1	\N	\N	3531
2017-02-23 16:56:01.449159+00	2017-02-23 16:56:54.694245+00	3248	missed	Cell	Phone   SC		+18035462731		5	2017-02-23 16:56:01.446749	2017-02-23 16:56:05.990143	CAa76e2df966d1bb38c5eb888caa799b40	\N	\N			0	inbound	+17735469660	16	29.0120370388031006	\N	new lead		1	\N	\N	3531
2017-05-02 18:53:26.158139+00	2017-11-29 18:38:49.808767+00	4590	completed				+12146505961		93	2017-05-02 18:53:26.155911	2017-05-02 18:54:59.262414	CA7db232a9613ccb6e6ce3d932eafc9545	\N	124			0	inbound	+12147122250	\N	0.935705900192260742	\N	new lead	roberson liz	9	\N	\N	3532
2017-05-02 19:18:37.089176+00	2017-11-29 18:38:49.808778+00	4591	completed				+12146505961		93	2017-05-02 19:18:37.086849	2017-05-02 19:20:10.210212	CA0240e2547753dad4cc0d8933df41c6d6	\N	124			0	inbound	+12147122250	\N	0.987122058868408203	\N	new lead	roberson liz	9	\N	\N	3532
2017-05-09 19:27:18.666768+00	2017-11-29 18:38:49.810669+00	4925	completed				+12146505961		79	2017-05-09 19:27:18.66499	2017-05-09 19:28:37.720026	CA8158cee55c7c508be2db71ce08e2b359	\N	124			0	inbound	+12147122250	\N	2.1572878360748291	\N	new lead	roberson liz	9	\N	\N	3532
2017-05-09 20:23:30.555585+00	2017-11-29 18:38:49.810683+00	4928	completed				+12146505961		80	2017-05-09 20:23:30.553372	2017-05-09 20:24:50.703216	CA7aed662b36a8fd244b4305023eac9587	\N	127			0	inbound	+12147122250	\N	2.47980499267578125	\N	new lead	roberson liz	9	\N	\N	3532
2017-05-09 20:24:42.892279+00	2017-11-29 18:38:49.81069+00	4929	completed				+12146505961		55	2017-05-09 20:24:42.890509	2017-05-09 20:25:37.929493	CA66be61b52a85ee44684d8b495c84d2e6	\N	125			0	inbound	+12147122250	\N	2.36214900016784668	\N	new lead	roberson liz	9	\N	\N	3532
2017-09-13 07:35:17.062375+00	2017-09-13 07:35:17.118481+00	6329	missed	Barbara	White	barbarawhite165@gmail.com	+17063082535		\N	2017-09-13 07:35:17.060937	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	3535
2017-11-11 16:47:38.480143+00	2017-11-11 16:48:43.807028+00	7021	completed				+18652588220		64	2017-11-11 16:47:38.478193	2017-11-11 16:48:42.744515	CAa30c0bd2f6f4334308c6341aa9816f1f	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE8aa67e56d3f87b9ae8f6196984634708	0	inbound	+18177569010	124	11.1498038768768311	\N	new lead	cooley jesse	12	\N	\N	3536
2016-08-28 12:17:32.495272+00	2016-12-10 01:05:11.337096+00	1801	completed				+17184481475		14	2016-08-28 12:17:32.493787	2016-08-28 12:17:46.153155	CAe7429eef6f8e0f9e10253d0c44477f40	\N	25			0	inbound	+18555693686	\N	1.99126195907592773	null	new lead		3	\N	\N	3537
2016-08-28 12:17:54.790963+00	2016-12-10 01:05:11.337103+00	1802	completed				+17184481475		13	2016-08-28 12:17:54.789679	2016-08-28 12:18:07.459249	CA1630a2fa4349dacbafd23f2e8dde6d48	\N	25			0	inbound	+18555693686	\N	2.36014103889465332	null	new lead		3	\N	\N	3537
2017-03-17 01:12:27.416142+00	2017-11-29 18:38:53.212488+00	3471	completed				+18326215613		624	2017-03-17 01:12:27.414629	2017-03-17 01:22:51.657595	CAb099c0e29ba11766d45add351d2eeaa8	\N	\N			0	inbound	+12146922088	\N	3.96267199516296387	\N	new lead		9	\N	\N	3538
2017-03-14 00:33:33.441594+00	2017-11-29 18:38:53.212176+00	3412	completed				+12144460011		241	2017-03-14 00:33:33.439634	2017-03-14 00:37:34.825644	CAee2200d40b986a2166d44b3d3adf799a	\N	107			0	inbound	+12146922088	\N	14.5354619026184082	\N	new lead	dallas       tx	9	\N	\N	1965
2017-12-02 15:24:43.872209+00	2017-12-02 15:24:54.82324+00	7476	completed				+17729780878		10	2017-12-02 15:24:43.870355	2017-12-02 15:24:53.664276	CA4a0f04f1a25c754482f3ee005c1f10a6	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE677177fc0d38a14034b62ee77e11d022	0	inbound	+18558645656	136	2.59723186492919922	\N	new lead		15	\N	\N	3539
2017-05-04 15:06:08.053935+00	2017-11-29 18:38:49.809614+00	4709	completed				+12294956027		94	2017-05-04 15:06:08.051351	2017-05-04 15:07:41.837036	CAe6b5a0df27b7ded30bd3298bdffd87ac	\N	124			0	inbound	+12147122250	\N	1.94041991233825684	\N	new lead	albany  ga	9	\N	\N	3548
2016-08-11 18:20:44.191336+00	2017-11-29 18:31:37.368839+00	1419	missed				+16614711499		7	2016-08-11 18:20:44.189869	2016-08-11 18:20:51.098677	CAb6b9fb6fda96d7c071f8030ae3861c25	\N	\N			0	inbound	+18555472453	\N	\N	null	new lead		1	\N	\N	3549
2016-10-05 19:33:23.448971+00	2016-12-10 01:05:18.401068+00	2196	completed				+16103370357		232	2016-10-05 19:33:23.44783	2016-10-05 19:37:15.143767	CAeceb16646aa02dfbe9e1f6a130d670de	\N	24			0	inbound	+18557088731	\N	1.14305400848388672	null	new lead		3	\N	\N	3550
2017-09-28 20:29:53.262358+00	2017-09-28 20:33:40.997841+00	6512	completed				+17063805887		228	2017-09-28 20:29:53.260162	2017-09-28 20:33:40.983154	CA0a571caca2260d7dbdc3c98169d55de2	\N	150			0	inbound	+17707665732	133	12.5073699951171875	\N	new lead		13	\N	\N	3554
2017-10-26 14:20:27.528639+00	2017-10-26 14:22:01.015372+00	6815	completed				+17063805887		93	2017-10-26 14:20:27.526758	2017-10-26 14:22:01.00261	CA91c83c252abefd8433066d5d12f7801b	\N	150			0	inbound	+17707665732	133	8.63456583023071289	\N	new lead		13	\N	\N	3554
2017-11-17 21:56:15.882815+00	2017-11-17 21:57:06.090835+00	7119	completed				+17063805887		50	2017-11-17 21:56:15.880217	2017-11-17 21:57:06.073089	CA776c5f9dc305febd5035130f1a945a51	\N	153			0	inbound	+17707665732	133	13.6414000988006592	\N	new lead		13	\N	\N	3554
2017-04-17 16:03:27.642882+00	2017-11-29 18:47:25.068066+00	3991	missed				+19728968993		87	2017-04-17 16:03:27.640121	2017-04-17 16:04:54.63263	CAbae9c168b7fb9373e8f3d146b1091cc8	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REf18546c0fadb885a0953c3e5f82c69f6	0	inbound	+19728330116	\N	410.268892049789429	\N	new lead	lerente allen	8	\N	\N	3557
2017-11-04 14:11:16.945727+00	2017-11-04 14:12:32.966615+00	6927	completed				+17063470706		76	2017-11-04 14:11:16.943929	2017-11-04 14:12:32.947691	CAf6587d851ab5e3e487e28de31805d0aa	\N	153			0	inbound	+17707665732	133	41.227712869644165	\N	new lead		13	\N	\N	3559
2017-05-03 15:36:19.016555+00	2017-11-29 18:38:53.214944+00	4624	completed				+14073325150		218	2017-05-03 15:36:19.014642	2017-05-03 15:39:56.606089	CAb9a871a02376602d556973e8c32e82fd	\N	133			0	inbound	+12146922088	\N	6.20346379280090332	\N	new lead	subway development co	9	\N	\N	3563
2016-08-19 18:19:10.67098+00	2016-08-19 18:21:49.982696+00	1622	completed				+16144020232		156	2016-08-19 18:19:10.669737	2016-08-19 18:21:49.980769	CA9a8160418c5871d6cc061e91331ae786	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	2.66545486450195312	{}	new lead		1	\N	\N	3564
2016-08-23 14:42:52.685129+00	2016-08-23 14:44:18.650162+00	1672	completed				+16144020232		83	2016-08-23 14:42:52.684029	2016-08-23 14:44:18.64924	CA34aa838321bc36f4425cd9118e2a7d57	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	2.30767083168029785	{}	new lead		1	\N	\N	3564
2016-12-21 13:23:08.693485+00	2016-12-21 13:23:42.955252+00	3087	completed				+18137353962		34	2016-12-21 13:23:08.691057	2016-12-21 13:23:42.626691	CA924f5c3144ba70a7486d9d595de01100	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REc0e61d3198738a75568b56c509558853	0	inbound	+18557240606	49	2.15192699432373047	null	new lead		1	\N	\N	3565
2016-12-21 13:35:09.028914+00	2016-12-21 13:35:09.067+00	3088	missed	Mateusz	Malinowski	mmalinowski@mail.usf.edu	+18137353962		\N	2016-12-21 13:35:09.026827	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	3565
2017-08-26 14:13:40.640721+00	2017-08-26 14:17:45.900239+00	6173	completed	Teresa	Sosebee	teresasosebee14@gmail.com	+16783320840		229	2017-08-26 14:13:40.639321	2017-08-26 14:17:44.587453	CA58d62111ff959ed6225f76595fb38938	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE77b1ffa32978139c509b097250407f66	1	outbound	+17704009016	\N	11.5249538421630859	{}	new lead		13	\N	\N	3566
2016-11-28 17:33:35.844241+00	2016-12-09 17:10:17.413714+00	2991	completed				+14846355810		459	2016-11-28 17:33:35.842005	2016-11-28 17:41:14.624299	CAca9279ad167588db1d5e4308acd3ea49	\N	27			0	inbound	+18552716856	\N	7.83982300758361816	null	new lead		3	\N	\N	3567
2016-11-14 16:02:29.099988+00	2016-11-14 16:04:05.021182+00	2886	completed				+19195506410		96	2016-11-14 16:02:29.098193	2016-11-14 16:04:04.72519	CA1c319f7147ce6853f240777ccb6bc841	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE58242b15cfa5fff06124c4225b9b5d43	0	inbound	+18557240606	49	2.39243888854980469	null	new lead		1	\N	\N	3571
2016-08-17 16:13:54.234126+00	2016-12-09 17:06:53.905794+00	1552	completed				+12154939366		243	2016-08-17 16:13:54.233049	2016-08-17 16:17:57.018298	CAea263ad98186e265e565dd7c3409a38b	\N	21			0	inbound	+18558021330	\N	2.19668889045715332	null	new lead		3	\N	\N	3572
2017-09-28 17:30:08.637614+00	2017-09-28 17:38:40.809591+00	6508	completed				+14698316145		511	2017-09-28 17:30:08.63585	2017-09-28 17:38:39.748213	CAa429feecf5beaed5917e724a3f5e6ed7	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE2f8355cc9644d75bb17f3b632030ffc9	0	inbound	+18177569010	124	405.787268161773682	\N	new lead	robin cassandra	12	\N	\N	3576
2016-09-09 15:10:24.868499+00	2016-12-10 01:05:11.337117+00	1975	completed				+17187270447		12	2016-09-09 15:10:24.866733	2016-09-09 15:10:37.114182	CA22b866424ad2f0c437e04ff35909a771	\N	25			0	inbound	+18555693686	\N	1.52515101432800293	null	new lead		3	\N	\N	3577
2017-12-17 00:18:49.07611+00	2017-12-17 00:40:26.036689+00	7951	missed				+18179371078		8	2017-12-17 00:18:49.075066	2017-12-17 00:18:57.091509	CA226db6cbb0100b57312e242dc2b5c8b0	\N	\N			0	inbound	+18177569010	124	1275.49030494689941	\N	new lead	vazquez angel	12	\N	\N	3578
2017-05-03 20:04:29.15158+00	2017-11-29 18:38:49.809429+00	4658	completed				+12142590445		44	2017-05-03 20:04:29.149404	2017-05-03 20:05:12.776214	CA880f658862efce0e1973406eaad0c55f	\N	125			0	inbound	+12147122250	\N	1.25858187675476074	\N	new lead	tx             	9	\N	\N	3579
2017-05-03 20:05:27.122908+00	2017-11-29 18:38:49.809436+00	4659	missed				+12142590445		23	2017-05-03 20:05:27.121567	2017-05-03 20:05:49.925954	CA3f6de5f20e6ee176dc6140a89bc257ab	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	tx             	9	\N	\N	3579
2017-05-03 20:05:52.2482+00	2017-11-29 18:38:49.809444+00	4660	completed				+12142590445		173	2017-05-03 20:05:52.247008	2017-05-03 20:08:45.632012	CA6b43c008646ce3fea7ee67112f910b86	\N	\N			0	inbound	+12147122250	\N	5.32428407669067383	\N	new lead	tx             	9	\N	\N	3579
2017-05-04 18:25:42.66992+00	2017-11-29 18:38:49.809664+00	4718	completed				+12142590445		116	2017-05-04 18:25:42.668059	2017-05-04 18:27:39.05086	CA294c4ab895b0cc1f06e71734095f6b1c	\N	126			0	inbound	+12147122250	\N	1.66511392593383789	\N	new lead	tx             	9	\N	\N	3579
2017-05-05 16:01:14.099584+00	2017-11-29 18:38:49.809889+00	4756	completed				+12142590445		77	2017-05-05 16:01:14.098368	2017-05-05 16:02:31.356416	CAd288d0e86f973f3f38d35cb37a9ba246	\N	124			0	inbound	+12147122250	\N	1.21266794204711914	\N	new lead	tx             	9	\N	\N	3579
2017-05-05 16:08:37.083083+00	2017-11-29 18:38:49.80991+00	4759	completed				+12142590445		66	2017-05-05 16:08:37.079862	2017-05-05 16:09:43.165589	CAa8739e9fd47717bd4943817ca6882574	\N	125			0	inbound	+12147122250	\N	1.10589694976806641	\N	new lead	tx             	9	\N	\N	3579
2017-05-05 16:09:41.060181+00	2017-11-29 18:38:49.809924+00	4761	completed				+12142590445		117	2017-05-05 16:09:41.058913	2017-05-05 16:11:37.812932	CA446bf56efed86d8e85ef429500944f98	\N	126			0	inbound	+12147122250	\N	1.16366910934448242	\N	new lead	tx             	9	\N	\N	3579
2017-05-23 16:09:02.268779+00	2017-11-29 18:38:49.812806+00	5319	completed				+12142590445		103	2017-05-23 16:09:02.266914	2017-05-23 16:10:45.157985	CAb25d9f22893d2587c2336fce8297f7ec	\N	124			0	inbound	+12147122250	\N	1.37019014358520508	\N	new lead	tx             	9	\N	\N	3579
2017-05-26 16:47:00.727365+00	2017-11-29 18:38:49.813629+00	5434	completed				+12142590445		77	2017-05-26 16:47:00.725439	2017-05-26 16:48:17.434201	CA2d6cb597698deedd1de5095bdad5c2a9	\N	124			0	inbound	+12147122250	\N	6.88021397590637207	\N	new lead	tx             	9	\N	\N	3579
2017-05-26 16:50:24.078029+00	2017-11-29 18:38:49.813636+00	5435	completed				+12142590445		71	2017-05-26 16:50:24.075788	2017-05-26 16:51:34.851689	CA728ff946337220a95633b2c93a8dcbff	\N	125			0	inbound	+12147122250	\N	1.20011115074157715	\N	new lead	tx             	9	\N	\N	3579
2017-04-10 21:19:03.414714+00	2017-11-29 18:38:53.213674+00	3770	completed				+12146078911		26	2017-04-10 21:19:03.412659	2017-04-10 21:19:29.421189	CA1abc07fbc81eef1b3191c213987c962e	\N	103			0	inbound	+12146922088	\N	10.7209560871124268	\N	new lead	novaco alex	9	\N	\N	3464
2016-11-09 21:32:08.695582+00	2016-11-09 21:32:08.728607+00	2825	missed	Arthur	Rayos	arayos@sbcglobal.net	+17134169727		\N	2016-11-09 21:32:08.694057	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	3463
2017-05-26 16:51:37.977457+00	2017-11-29 18:38:49.813643+00	5436	completed				+12142590445		148	2017-05-26 16:51:37.976189	2017-05-26 16:54:05.886814	CA3dd52042539977dfeda66abd9d0fa913	\N	126			0	inbound	+12147122250	\N	1.99074196815490723	\N	new lead	tx             	9	\N	\N	3579
2017-05-30 17:36:53.32303+00	2017-11-29 18:38:49.814054+00	5501	completed				+12142590445		61	2017-05-30 17:36:53.3217	2017-05-30 17:37:54.20341	CA92cc1bd361cda8042f7dcf302915c6d2	\N	125			0	inbound	+12147122250	\N	1.40424013137817383	\N	new lead	tx             	9	\N	\N	3579
2017-05-30 17:37:51.982167+00	2017-11-29 18:38:49.814061+00	5502	completed				+12142590445		72	2017-05-30 17:37:51.979794	2017-05-30 17:39:03.565352	CA13a983879b6f6c01110b4dbc5e4a2318	\N	124			0	inbound	+12147122250	\N	1.42134499549865723	\N	new lead	tx             	9	\N	\N	3579
2017-05-30 17:38:57.048336+00	2017-11-29 18:38:49.814068+00	5503	completed				+12142590445		77	2017-05-30 17:38:57.046507	2017-05-30 17:40:14.475304	CA11034794317df34bc0c39b65ab5b573e	\N	126			0	inbound	+12147122250	\N	2.08937811851501465	\N	new lead	tx             	9	\N	\N	3579
2017-05-30 17:55:49.941301+00	2017-11-29 18:38:49.814075+00	5504	completed				+12142590445		64	2017-05-30 17:55:49.938866	2017-05-30 17:56:54.010999	CAa01072dec974e4865942a9ca59d3aa82	\N	124			0	inbound	+12147122250	\N	1.98285913467407227	\N	new lead	tx             	9	\N	\N	3579
2017-05-30 17:56:49.122221+00	2017-11-29 18:38:49.814082+00	5505	completed				+12142590445		166	2017-05-30 17:56:49.120577	2017-05-30 17:59:35.46096	CAc31fc10f5713e24339d0bc10715dc8c1	\N	126			0	inbound	+12147122250	\N	1.11711001396179199	\N	new lead	tx             	9	\N	\N	3579
2017-10-12 03:57:04.298181+00	2017-10-12 03:57:04.355937+00	6675	missed	Allison	Smith	smithdenise977@yahoo.com	+17069691292		\N	2017-10-12 03:57:04.296529	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	3580
2017-10-12 17:39:56.042089+00	2017-10-12 17:41:38.551695+00	6680	completed	Allison	Smith	smithdenise977@yahoo.com	+17069691292		89	2017-10-12 17:39:56.040281	2017-10-12 17:41:38.288407	CA38c839a889ddd6df82247b88207e8011	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REd2bda451cb5c5edf116059b9820609c6	1	outbound	+17704009016	\N	12.7320079803466797	{}	new lead		13	\N	\N	3580
2016-08-15 11:29:57.409825+00	2016-12-10 00:55:45.165241+00	1478	missed				+14849956427		9	2016-08-15 11:29:57.408032	2016-08-15 11:30:06.762927	CAa40350abfbf65d3702ded0f170fcc11b	\N	\N			0	inbound	+18557129406	\N	\N	null	new lead		3	\N	\N	3582
2016-08-15 12:32:53.668354+00	2016-12-10 00:55:45.165248+00	1480	missed				+14849956427		10	2016-08-15 12:32:53.666019	2016-08-15 12:33:03.301629	CA7f7ddf4352d64bbb44ce7698de562823	\N	\N			0	inbound	+18557129406	\N	\N	null	new lead		3	\N	\N	3582
2016-08-15 21:13:51.039924+00	2016-12-10 00:55:45.16532+00	1520	completed				+14849956427		15	2016-08-15 21:13:51.038802	2016-08-15 21:14:06.281853	CA27b882b644de5d86e8e06a00c16eb7e3	\N	24			0	inbound	+18557129406	\N	1.40187191963195801	null	new lead		3	\N	\N	3582
2017-05-02 18:41:57.301507+00	2017-11-29 18:32:01.935531+00	4587	missed				+14145436991		10	2017-05-02 18:41:57.299335	2017-05-02 18:42:07.798435	CA05d01c3197da25c88a507c084e62c7eb	\N	\N			0	inbound	+18556311513	\N	\N	\N	do not contact		1	\N	\N	3584
2017-05-02 18:42:32.927722+00	2017-11-29 18:32:01.935538+00	4588	missed				+14145436991		8	2017-05-02 18:42:32.926274	2017-05-02 18:42:41.302319	CA576e66b4308e0e6c832a1f32ee128220	\N	\N			0	inbound	+18556311513	\N	\N	\N	do not contact		1	\N	\N	3584
2017-04-27 21:29:25.581145+00	2017-11-29 18:38:49.807194+00	4406	completed				+17325899988		660	2017-04-27 21:29:25.579877	2017-04-27 21:40:25.842624	CAe8f9ace43de8c786eabe3c7bb972dc96	\N	\N			0	inbound	+12147122250	\N	3.66400480270385742	\N	new lead	lacroix dolly	9	\N	\N	3587
2017-04-27 21:43:30.818196+00	2017-11-29 18:38:49.807201+00	4407	completed				+17325899988		34	2017-04-27 21:43:30.815483	2017-04-27 21:44:04.78572	CAcaf925c278f6c17078e6a8ec889d92c3	\N	\N			0	inbound	+12147122250	\N	2.89957094192504883	\N	new lead	lacroix dolly	9	\N	\N	3587
2016-09-07 15:46:42.018955+00	2016-12-09 17:10:17.413405+00	1906	completed				+16102534055		160	2016-09-07 15:46:42.016394	2016-09-07 15:49:22.019659	CAae81967b56f4e679f4eb28ecf003cfe8	\N	27			0	inbound	+18552716856	\N	4.73189306259155273	null	new lead		3	\N	\N	3588
2017-04-07 19:43:44.754515+00	2017-04-07 19:43:44.785878+00	3729	missed	floyd 	brumfield 	brumfieldf12@gmail.com	+15139471426		\N	2017-04-07 19:43:44.753139	\N		25d0200e-983d-4413-94ae-eb664b99711c	\N			0	outbound	+18556311490	\N	\N	{}	new lead		1	\N	\N	3593
2017-04-10 02:01:26.783567+00	2017-04-10 02:01:36.526746+00	3761	missed				+12146467714		10	2017-04-10 02:01:26.782025	2017-04-10 02:01:36.518396	CAbbe688e4bbe1112cb2f811794d92bc19	\N	\N			0	inbound	+18172104002	126	\N	\N	new lead	dupree keith	12	\N	\N	3595
2017-05-06 15:55:30.200565+00	2017-11-29 18:38:53.21517+00	4798	completed				+12103038139		149	2017-05-06 15:55:30.197339	2017-05-06 15:57:59.42909	CA8ef0ee3026bbdf89e8b65f52717aa314	\N	133			0	inbound	+12146922088	\N	4.50675296783447266	\N	new lead	pasvigel elisa 	9	\N	\N	3596
2017-05-06 15:59:20.247767+00	2017-11-29 18:38:53.215177+00	4799	completed				+12103038139		160	2017-05-06 15:59:20.245951	2017-05-06 16:02:00.019116	CAdee2cc6af119f7da6096b05cbfd4dc6f	\N	133			0	inbound	+12146922088	\N	4.2030339241027832	\N	new lead	pasvigel elisa 	9	\N	\N	3596
2016-08-05 18:17:26.727559+00	2016-08-16 19:31:40.10093+00	1282	missed	RONALD	SUSCA	BLEVERINGOD@YAHOO.COM	+16619432708		\N	2016-08-05 18:17:26.726597	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - autopay		1	\N	\N	3597
2016-08-22 22:36:14.587084+00	2017-11-29 18:31:37.369053+00	1658	missed	RONALD	SUSCA		+16619432708		19	2016-08-22 22:36:14.585751	2016-08-22 22:36:33.546714	CAfc4854e0baaa6ccb99ab0d31586705b7	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE6486bb20bd0cc49a2d8222c8920c7afa	0	inbound	+18555472453	\N	\N	null	application submitted - autopay		1	\N	\N	3597
2017-11-01 20:46:58.525937+00	2017-11-01 20:51:29.317835+00	6895	completed	Julian	Walker	Blaze9216mvrley@gmail.Com	+16787245632		260	2017-11-01 20:46:58.523908	2017-11-01 20:51:29.288971	CAcc848f872e2a8d470f54785e0e0c4eaf	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE87fc782ff9c9feb2d7c8ea96e49921da	1	outbound	+17704009016	\N	9.40991687774658203	{}	new lead		13	\N	\N	3598
2016-07-26 18:29:24.34953+00	2016-07-26 18:30:23.337498+00	955	completed				+19204310862		54	2016-07-26 18:29:24.348332	2016-07-26 18:30:23.336238	CA8300388bf48702503eea5f2f3eac6a99	cb653cf7-f9fc-426a-847f-037ba278f4df	16			1	outbound	+18556311541	\N	0.994733095169067383	{}	new lead		1	\N	\N	3600
2016-07-26 15:34:46.802947+00	2017-11-29 18:31:14.616461+00	949	missed				+19204310862		27	2016-07-26 15:34:46.800796	2016-07-26 15:35:13.479514	CA66927f180630a8ade72115f79bfb0edf	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REf7311a6f94ceae56758a954faf391523	0	inbound	+18556311541	\N	9.4699099063873291	null	new lead		1	\N	\N	3600
2016-07-26 17:23:12.205513+00	2017-01-27 21:12:23.812115+00	951	completed				+19204310862		192	2016-07-26 17:23:12.204248	2016-07-26 17:26:37.231977	CAf5d240099e61e210e36df7329561ee51	2a982783-1d63-4931-bc6a-a909c851bdba	\N			1	outbound	+18555343978	\N	10.193140983581543	{}	new lead		1	\N	\N	3600
2016-11-10 02:29:21.135776+00	2016-11-10 02:29:21.162283+00	2828	missed	Nathaniel	White	natslu29@hotmail.com	+16364393136		\N	2016-11-10 02:29:21.134512	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	3602
2017-09-23 13:49:50.804434+00	2017-09-23 13:49:51.389127+00	6440	missed	Santonio	Ferrell		+14048096644		1	2017-09-23 13:49:50.802503	2017-09-23 13:49:51.381141	CA50e06351a1f5265a4b44511bd9940b01	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	3604
2017-09-23 13:49:55.602964+00	2017-09-23 13:49:56.234842+00	6441	missed	Santonio	Ferrell		+14048096644		1	2017-09-23 13:49:55.601822	2017-09-23 13:49:56.227686	CA54c299a4b21aaf83e5e1fb849c53495e	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	3604
2017-09-23 13:49:57.800241+00	2017-09-23 13:49:58.098495+00	6442	missed	Santonio	Ferrell		+14048096644		0	2017-09-23 13:49:57.799071	2017-09-23 13:49:58.08875	CAccfcbe6f50e7e234834a626a0c90681f	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	3604
2017-03-18 20:09:12.876374+00	2017-11-29 18:47:25.067834+00	3493	missed				+14697678488		9	2017-03-18 20:09:12.874841	2017-03-18 20:09:21.854195	CAce857bdc22935d85c6df9588f4e9b43f	\N	\N			0	inbound	+19728330116	\N	348.032291173934937	\N	new lead	adem muhammad	8	\N	\N	1493
2017-09-23 13:50:05.717156+00	2017-09-23 13:50:06.005999+00	6446	missed	Santonio	Ferrell		+14048096644		0	2017-09-23 13:50:05.715815	2017-09-23 13:50:05.996413	CA5a09d62d7f82f38d6c9e0b660ba96062	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	3604
2017-09-23 13:50:10.91389+00	2017-09-23 13:50:11.236691+00	6447	missed	Santonio	Ferrell		+14048096644		0	2017-09-23 13:50:10.911891	2017-09-23 13:50:11.227221	CA409767d3447406ef75c189f1c7ab8f3a	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	3604
2017-09-23 13:50:17.585368+00	2017-09-23 13:50:17.80349+00	6448	missed	Santonio	Ferrell		+14048096644		0	2017-09-23 13:50:17.584042	2017-09-23 13:50:17.794792	CA3126ef01224d7050ead84144b378dff6	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	3604
2017-09-23 13:52:27.977605+00	2017-09-23 13:52:28.592057+00	6451	missed	Santonio	Ferrell		+14048096644		1	2017-09-23 13:52:27.975065	2017-09-23 13:52:28.577903	CAb6ae7c2fa3cd2d7cf86d0050f6b9d221	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	3604
2017-09-23 13:52:32.81884+00	2017-09-23 13:52:33.277211+00	6452	missed	Santonio	Ferrell		+14048096644		0	2017-09-23 13:52:32.817752	2017-09-23 13:52:33.268486	CA77cfd3d224afa56507e48861b72636ac	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	3604
2017-09-23 13:52:34.500418+00	2017-09-23 13:52:34.836814+00	6453	missed	Santonio	Ferrell		+14048096644		0	2017-09-23 13:52:34.498833	2017-09-23 13:52:34.82727	CA12b091e56b8268878d17d8b3885a3985	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	3604
2017-09-23 13:52:36.400982+00	2017-09-23 13:52:36.663371+00	6454	missed	Santonio	Ferrell		+14048096644		0	2017-09-23 13:52:36.39972	2017-09-23 13:52:36.655596	CAa391b2a14ad09e2cf8832aee3d834f51	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	3604
2017-09-23 13:52:39.622629+00	2017-09-23 13:52:39.929942+00	6455	missed	Santonio	Ferrell		+14048096644		0	2017-09-23 13:52:39.621138	2017-09-23 13:52:39.92019	CA1750dc44b2b0d4bdca9ddb5c7e949d32	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	3604
2017-09-23 13:52:45.05975+00	2017-09-23 13:52:45.352509+00	6456	missed	Santonio	Ferrell		+14048096644		0	2017-09-23 13:52:45.058411	2017-09-23 13:52:45.342879	CA152019e8e2c025aad9fb41b0607195d6	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	3604
2017-09-23 13:52:47.012688+00	2017-09-23 13:52:47.240097+00	6457	missed	Santonio	Ferrell		+14048096644		0	2017-09-23 13:52:47.010623	2017-09-23 13:52:47.223441	CA87b6048d6a8187b5fd34fa6472223b4f	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	3604
2017-09-23 13:52:48.83979+00	2017-09-23 13:52:49.181243+00	6458	missed	Santonio	Ferrell		+14048096644		0	2017-09-23 13:52:48.838463	2017-09-23 13:52:49.172933	CAd7595e9be12203a598c6e35294e3d2f9	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	3604
2017-09-23 13:52:50.806908+00	2017-09-23 13:52:51.127235+00	6459	missed	Santonio	Ferrell		+14048096644		0	2017-09-23 13:52:50.805794	2017-09-23 13:52:51.117835	CA9a5f9feccf2cd17c0343d872ff8ee840	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	3604
2017-08-18 20:14:42.237222+00	2017-08-18 20:17:58.188983+00	6093	completed	Santonio	Ferrell		+14048096644		195	2017-08-18 20:14:42.23545	2017-08-18 20:17:57.051816	CA861e0d3394c863e610171e56388d17ce	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REed806d92e5369331460bab4e57782c58	0	inbound	+17704009016	132	12.6264979839324951	\N	new lead		13	\N	\N	3604
2017-10-13 18:10:51.483623+00	2017-10-13 18:12:31.56533+00	6696	completed	Santonio	Ferrell		+14048096644		100	2017-10-13 18:10:51.48129	2017-10-13 18:12:31.552503	CA46d150257fbae88c6958f90c1b0001ea	\N	154			0	inbound	+17707665699	134	1.11028099060058594	\N	new lead		13	\N	\N	3604
2016-08-02 00:14:09.320158+00	2016-08-05 12:51:26.912889+00	1104	missed	Alayna	Brett	alayna.parkes-brett@hotmail.com	+17609375565		\N	2016-08-02 00:14:09.3189	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - autopay		1	\N	\N	3606
2016-11-02 19:26:46.940415+00	2016-11-02 19:30:50.850266+00	2588	completed				+17133848512		243	2016-11-02 19:26:46.939085	2016-11-02 19:30:49.863121	CAbf587617f583ced049db3eb4e1be0870	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE03e4a0f7ee8bea89001b0a7de81ce2ed	0	inbound	+18557240606	49	1.9857180118560791	null	new lead		1	\N	\N	3607
2017-11-30 18:25:02.949575+00	2017-12-01 14:23:14.445136+00	7413	completed				+17063187801		39	2017-11-30 18:25:02.947038	2017-11-30 18:25:41.818409	CAbb44ff38aaf8512621cc3f38d9bc92e8	\N	153			0	inbound	+17707665732	133	8.9107050895690918	\N	select status	cell phone   ga	13	\N	\N	3608
2017-12-01 14:17:15.164995+00	2017-12-01 14:23:14.433524+00	7424	completed	Nakisha	Knight	Alwaysforeverhappy15@gmail.com	+17063187801		210	2017-12-01 14:17:15.163273	2017-12-01 14:21:02.533763	CA11ffe53df5d875d9631bbf7602d6af08	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REbd3bd53e42b8ce7b51af989420f4a790	1	outbound	+17704009016	\N	12.9080359935760498	{}	select status		13	\N	\N	3608
2017-11-30 18:31:05.373722+00	2017-12-01 14:23:14.445159+00	7414	completed	Nakisha	Knight	Alwaysforeverhappy15@gmail.com	+17063187801		204	2017-11-30 18:31:05.371991	2017-11-30 18:34:40.768589	CA402cc5624858fc836d6c0d9d099e2b55	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE34017fa3c7cb2e3aad76dd43011ec38b	1	outbound	+17704009016	\N	14.8156821727752686	{}	select status		13	\N	\N	3608
2016-06-27 14:35:17.131158+00	2016-06-27 14:37:39.852441+00	495	completed				+13127308750		138	2016-06-27 14:35:17.129225	2016-06-27 14:37:39.851245	CA6d06c59ba713a88d3e1a95139ca9dde2	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	1.31866884231567383	{}	new lead		1	\N	\N	3609
2016-06-25 22:42:35.552506+00	2017-11-29 18:31:41.490034+00	468	completed	Isaias	Alarcon		+13127308750		17	2016-06-25 22:42:35.550958	2016-06-25 22:42:52.066617	CA7a2110b91b69034fbd0af6c05e8f78b5	\N	\N			0	inbound	+18552959002	\N	\N	null	new lead		1	\N	\N	3609
2016-05-27 18:41:39.309211+00	2016-12-09 17:06:57.830342+00	265	missed	Unknown			+17739699892		13	2016-05-27 18:41:39.307622	2016-05-27 18:41:52.366891	CA55312e04986ba4f05eb310955bfaaf28	\N	\N			0	inbound	+18552000227	\N	2.30801701545715332	null	new lead		3	\N	\N	3612
2016-08-26 18:37:25.487287+00	2016-12-10 01:05:18.400847+00	1790	completed				+17739699892		12	2016-08-26 18:37:25.485937	2016-08-26 18:37:37.952955	CA9ae558042faa5360beb6bd5622e87584	\N	24			0	inbound	+18557088731	\N	1.77445888519287109	null	new lead		3	\N	\N	3612
2016-08-26 19:01:58.039394+00	2016-12-10 01:05:18.400854+00	1791	completed				+17739699892		18	2016-08-26 19:01:58.037863	2016-08-26 19:02:16.291733	CA31549296e01498cbe01e599517b7d430	\N	24			0	inbound	+18557088731	\N	2.39359688758850098	null	new lead		3	\N	\N	3612
2016-12-21 20:10:15.374455+00	2016-12-21 20:41:52.133741+00	3089	completed				+12816282740		1893	2016-12-21 20:10:15.372842	2016-12-21 20:41:47.894456	CA76f8fade80fef1d12436db2e77205f3d	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE1ebba09ba27f92c28a72bd001044ecbb	0	inbound	+18557240606	49	1.9363408088684082	null	new lead		1	\N	\N	3616
2017-05-16 20:05:32.943578+00	2017-11-29 18:38:49.811854+00	5124	completed				+12143856670		77	2017-05-16 20:05:32.941886	2017-05-16 20:06:50.192497	CA46884bcff78ff20589507c5926ce1827	\N	127			0	inbound	+12147122250	\N	1.07858490943908691	\N	new lead	premier financi	9	\N	\N	3618
2016-12-06 16:59:34.834975+00	2016-12-06 17:13:05.416459+00	3054	completed				+17048794929		809	2016-12-06 16:59:34.833338	2016-12-06 17:13:03.795896	CA1d31cb43e044af991ddb2d9f75243d6d	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE07b0aedb17ab5a6b8ba640982ae95b95	0	inbound	+18557240606	49	2.34634804725646973	null	new lead		1	\N	\N	3619
2016-08-22 15:55:16.658502+00	2016-12-10 00:55:45.165391+00	1638	completed				+12159907829		15	2016-08-22 15:55:16.656506	2016-08-22 15:55:32.021206	CA7f53cf1db93d728fdc116160ed2990b8	\N	24			0	inbound	+18557129406	\N	1.62619400024414062	null	new lead		3	\N	\N	3628
2016-08-22 15:55:49.522506+00	2016-12-10 00:55:45.165398+00	1639	completed				+12159907829		14	2016-08-22 15:55:49.521415	2016-08-22 15:56:03.827252	CAb825aa47eaa414ab7863e24738922760	\N	24			0	inbound	+18557129406	\N	1.20707011222839355	null	new lead		3	\N	\N	3628
2016-08-22 15:56:17.33812+00	2016-12-10 00:55:45.165406+00	1640	completed				+12159907829		14	2016-08-22 15:56:17.337012	2016-08-22 15:56:31.584179	CAf07a6e8c8abb292d377d67cafe605f17	\N	24			0	inbound	+18557129406	\N	1.15270113945007324	null	new lead		3	\N	\N	3628
2017-03-20 20:04:02.740952+00	2017-11-29 18:38:53.212678+00	3513	completed				+15125657701		35	2017-03-20 20:04:02.73858	2017-03-20 20:04:38.228249	CA7115f285813dba696ac7e4cc49b9acab	\N	105			0	inbound	+12146922088	\N	6.01632595062255859	\N	new lead		9	\N	\N	3630
2017-11-25 18:27:34.401861+00	2017-11-25 18:27:34.706086+00	7301	missed				+17702978700		0	2017-11-25 18:27:34.400541	2017-11-25 18:27:34.696922	CAccf82cac99cc91d5b4852dc365ae243e	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2017-12-08 04:33:51.684908+00	2017-12-20 23:43:24.925421+00	7703	missed	Brian 	Edwards 	brianmedwards@hotmail.com	+17063060963		\N	2017-12-08 04:33:51.683586	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	1673
2016-11-04 16:17:26.153586+00	2017-01-27 21:12:23.81403+00	2704	completed				+18035462731		32	2016-11-04 16:17:26.152317	2016-11-04 16:17:58.364354	CA7c974c0ff0067901a69f3568bedcef4d	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE2749f262d058876c4d01bd0a3028ff21	0	inbound	+18555343978	48	6.8149418830871582	null	new lead		1	\N	\N	3531
2017-05-08 23:49:45.414516+00	2017-11-29 18:38:49.810526+00	4895	completed				+12816786020		152	2017-05-08 23:49:45.412395	2017-05-08 23:52:17.707251	CA7c7319ade06b2cf14dfaa388ba0bbf0d	\N	\N			0	inbound	+12147122250	\N	0.895747900009155273	\N	new lead	cell phone   tx	9	\N	\N	3632
2017-05-12 16:07:02.057575+00	2017-11-29 18:38:49.811293+00	5032	completed				+12816786020		86	2017-05-12 16:07:02.055621	2017-05-12 16:08:27.565885	CAda7ba49016ac855fd27e33830d9182da	\N	127			0	inbound	+12147122250	\N	1.93388795852661133	\N	new lead	cell phone   tx	9	\N	\N	3632
2017-05-12 16:08:20.812115+00	2017-11-29 18:38:49.811308+00	5033	completed				+12816786020		83	2017-05-12 16:08:20.81065	2017-05-12 16:09:43.452096	CA2a6669b817ad4ff9471b68b556edb634	\N	124			0	inbound	+12147122250	\N	1.14567995071411133	\N	new lead	cell phone   tx	9	\N	\N	3632
2017-05-12 16:09:35.22011+00	2017-11-29 18:38:49.811316+00	5034	completed				+12816786020		88	2017-05-12 16:09:35.218387	2017-05-12 16:11:03.539644	CAe8a40090768d0feae7edfb33a3f082c9	\N	127			0	inbound	+12147122250	\N	1.07723212242126465	\N	new lead	cell phone   tx	9	\N	\N	3632
2017-05-12 16:10:56.126065+00	2017-11-29 18:38:49.811323+00	5035	completed				+12816786020		51	2017-05-12 16:10:56.12454	2017-05-12 16:11:46.841264	CAe78119fe42c2083e795161158e1f5e35	\N	125			0	inbound	+12147122250	\N	0.933188915252685547	\N	new lead	cell phone   tx	9	\N	\N	3632
2017-05-12 16:11:38.646151+00	2017-11-29 18:38:49.81133+00	5036	completed				+12816786020		101	2017-05-12 16:11:38.644558	2017-05-12 16:13:19.163867	CAd894b8d76a3470efc97f2b2b3e38f7f8	\N	126			0	inbound	+12147122250	\N	1.41388797760009766	\N	new lead	cell phone   tx	9	\N	\N	3632
2017-05-12 20:42:57.171417+00	2017-11-29 18:38:49.811359+00	5041	completed				+12816786020		78	2017-05-12 20:42:57.16911	2017-05-12 20:44:15.280777	CA4a79ea13c2a7086681bd7cc5e4d63bb9	\N	\N			0	inbound	+12147122250	\N	2.48761415481567383	\N	new lead	cell phone   tx	9	\N	\N	3632
2017-05-17 14:56:36.90915+00	2017-11-29 18:38:49.811947+00	5149	completed				+12816786020		68	2017-05-17 14:56:36.906163	2017-05-17 14:57:44.913795	CAde4ceaceaab97fc1e2d903faee577fd3	\N	125			0	inbound	+12147122250	\N	2.08404111862182617	\N	new lead	cell phone   tx	9	\N	\N	3632
2017-05-17 14:57:47.208781+00	2017-11-29 18:38:49.811954+00	5150	completed				+12816786020		90	2017-05-17 14:57:47.207519	2017-05-17 14:59:17.155959	CA721a97fc41de7474af6ad36562878dff	\N	124			0	inbound	+12147122250	\N	1.22036290168762207	\N	new lead	cell phone   tx	9	\N	\N	3632
2017-05-23 15:44:00.675024+00	2017-11-29 18:38:49.812791+00	5317	completed				+12816786020		61	2017-05-23 15:44:00.673226	2017-05-23 15:45:01.694382	CA1f71efba27894e420fa66434f5b2375b	\N	125			0	inbound	+12147122250	\N	1.2079930305480957	\N	new lead	cell phone   tx	9	\N	\N	3632
2017-05-23 15:44:53.484594+00	2017-11-29 18:38:49.812799+00	5318	completed				+12816786020		65	2017-05-23 15:44:53.483228	2017-05-23 15:45:58.860955	CA32936a315b15e74f11e30b0c473fef2a	\N	127			0	inbound	+12147122250	\N	1.1772007942199707	\N	new lead	cell phone   tx	9	\N	\N	3632
2017-05-19 19:43:56.813394+00	2017-11-29 18:38:49.812295+00	5232	completed				+18132609349		83	2017-05-19 19:43:56.811645	2017-05-19 19:45:20.225749	CA3ef8b4c11f296a889543e2e65f20e25f	\N	103			0	inbound	+12147122250	\N	6.80790996551513672	\N	new lead	bonilla silvest	9	\N	\N	3633
2017-12-05 19:11:14.547822+00	2017-12-05 19:35:23.303605+00	7594	completed				+17862707346		1445	2017-12-05 19:11:14.545973	2017-12-05 19:35:20.016726	CAe8123a0ae09e731a644212f5b7423423	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE252326f25f9c9d7dc067978deed592cb	0	inbound	+18558645656	136	2.35816597938537598	\N	new lead		15	\N	\N	3634
2016-11-04 21:38:27.239637+00	2016-11-04 21:50:36.36289+00	2731	completed				+16362908218		728	2016-11-04 21:38:27.238157	2016-11-04 21:50:34.901475	CA7b188652997e254c1c3ccf2e5a745a32	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE2c1e49bfe729b8861b7bea9b4f24eaf0	0	inbound	+18557240606	49	2.28687596321105957	null	new lead		1	\N	\N	3635
2017-05-10 19:12:16.666176+00	2017-11-29 18:38:49.810882+00	4971	completed				+17137533466		98	2017-05-10 19:12:16.6648	2017-05-10 19:13:54.355507	CA60b624c71d2aeb1cf9cbf10363060303	\N	125			0	inbound	+12147122250	\N	1.51128506660461426	\N	new lead	kbr            	9	\N	\N	3638
2017-05-10 19:14:02.577521+00	2017-11-29 18:38:49.810889+00	4972	completed				+17137533466		70	2017-05-10 19:14:02.575697	2017-05-10 19:15:12.314809	CAa278cce5ec973746999031448f10c68d	\N	124			0	inbound	+12147122250	\N	1.77277588844299316	\N	new lead	kbr            	9	\N	\N	3638
2017-05-12 14:05:57.423196+00	2017-11-29 18:38:49.811227+00	5027	completed				+17137533466		167	2017-05-12 14:05:57.421625	2017-05-12 14:08:44.146406	CA82593e61473856dd03529a3d15c78a08	\N	133			0	inbound	+12147122250	\N	6.67016196250915527	\N	new lead	kbr            	9	\N	\N	3638
2017-05-17 14:50:32.734458+00	2017-11-29 18:38:49.811919+00	5145	completed				+17137533466		68	2017-05-17 14:50:32.731121	2017-05-17 14:51:41.051918	CA20bc9c813c658e242c9c759bf8372652	\N	125			0	inbound	+12147122250	\N	1.92671108245849609	\N	new lead	kbr            	9	\N	\N	3638
2017-05-17 14:51:39.1676+00	2017-11-29 18:38:49.811926+00	5146	completed				+17137533466		47	2017-05-17 14:51:39.166065	2017-05-17 14:52:26.372871	CA7060d77a4b9dbdafc57123acbfa74cda	\N	124			0	inbound	+12147122250	\N	1.544342041015625	\N	new lead	kbr            	9	\N	\N	3638
2017-05-17 14:52:21.380106+00	2017-11-29 18:38:49.811933+00	5147	completed				+17137533466		54	2017-05-17 14:52:21.378475	2017-05-17 14:53:15.248746	CAdfa8e21801fbd28eb2a1d5f524286e28	\N	126			0	inbound	+12147122250	\N	1.59734797477722168	\N	new lead	kbr            	9	\N	\N	3638
2017-05-17 14:53:09.563836+00	2017-11-29 18:38:49.81194+00	5148	completed				+17137533466		65	2017-05-17 14:53:09.562303	2017-05-17 14:54:15.056634	CA3d300c279062c92078b6d07c9bbf5695	\N	107			0	inbound	+12147122250	\N	9.59842491149902344	\N	new lead	kbr            	9	\N	\N	3638
2017-04-29 22:48:33.023586+00	2017-11-29 18:38:53.214852+00	4482	completed				+13606479007		36	2017-04-29 22:48:33.021904	2017-04-29 22:49:09.510039	CA4ca84870e1c0b487089a649c4d3d7e09	\N	105			0	inbound	+12146922088	\N	26.7296819686889648	\N	new lead	webb john	9	\N	\N	3639
2016-11-01 10:56:01.526915+00	2016-11-01 10:56:01.563597+00	2450	missed	ryan	register	register.blake88@gmail.com	+17047774427		\N	2016-11-01 10:56:01.524981	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	3642
2017-10-20 15:11:27.696173+00	2017-10-20 15:12:37.583893+00	6764	completed				+14046860601		70	2017-10-20 15:11:27.694382	2017-10-20 15:12:37.564972	CAc846ea48e2695fbd1dfaf5c5b0620f6a	\N	150			0	inbound	+17707665732	133	26.2426731586456299	\N	new lead		13	\N	\N	3643
2017-11-28 23:16:19.213125+00	2017-11-28 23:17:29.887953+00	7373	completed				+13035182891		71	2017-11-28 23:16:19.21071	2017-11-28 23:17:29.879745	CA4b7ff94aee1c2ecb797504ae81c5fec4	\N	158			0	inbound	+18558645656	136	3.17206001281738281	\N	new lead		15	\N	\N	3647
2017-11-28 23:18:28.679849+00	2017-11-28 23:18:53.213175+00	7375	completed				+13035182891		25	2017-11-28 23:18:28.677941	2017-11-28 23:18:53.194822	CA26325fa6704c51a04fbd61f67d4cd51d	\N	158			0	inbound	+18558645656	136	3.12393307685852051	\N	new lead		15	\N	\N	3647
2017-11-28 23:18:57.214253+00	2017-11-28 23:19:28.184095+00	7376	completed				+13035182891		31	2017-11-28 23:18:57.212747	2017-11-28 23:19:28.172099	CAde2fb7034e385c0b91979f704c66fdcd	\N	158			0	inbound	+18558645656	136	2.57688403129577637	\N	new lead		15	\N	\N	3647
2017-11-28 23:19:32.054882+00	2017-11-28 23:20:08.422231+00	7377	completed				+13035182891		36	2017-11-28 23:19:32.053233	2017-11-28 23:20:08.405102	CAe584ccb3cb8cafa08fb94c5e6ab19783	\N	158			0	inbound	+18558645656	136	2.29222607612609863	\N	new lead		15	\N	\N	3647
2016-11-02 17:18:50.878693+00	2016-12-10 01:01:00.200585+00	2574	completed				+18584881400		106	2016-11-02 17:18:50.877451	2016-11-02 17:20:37.272112	CAe37be45e76c94cff65aa5dfdbdc2c278	\N	57			0	inbound	+18557860909	\N	3.60405206680297852	null	new lead		3	\N	\N	3569
2016-11-02 17:12:21.384357+00	2016-12-10 01:01:00.20057+00	2570	missed				+18584881400		37	2016-11-02 17:12:21.383175	2016-11-02 17:12:58.43952	CA5678f284382aec56923840c18aea317b	\N	\N			0	inbound	+18557860909	\N	\N	null	new lead		3	\N	\N	3569
2016-11-02 17:13:10.407606+00	2016-12-10 01:01:00.200577+00	2571	completed				+18584881400		204	2016-11-02 17:13:10.406596	2016-11-02 17:16:34.368917	CA6de915e38aabc2c21f1dfbd5d4c502cd	\N	57			0	inbound	+18557860909	\N	8.21309804916381836	null	new lead		3	\N	\N	3569
2017-11-06 22:28:59.832194+00	2017-11-06 22:35:09.138275+00	6953	missed	holly	wells	hollywells30534@yahoo.com	+16784642485		20	2017-11-06 22:28:59.830717	2017-11-06 22:35:09.135012	CAbed2f3e90d9843f31c6324d442254718	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			3	outbound	+17704009016	\N	348.894793033599854	{}	new lead		13	\N	\N	3570
2017-11-28 23:20:12.139802+00	2017-11-28 23:21:16.099255+00	7378	completed				+13035182891		64	2017-11-28 23:20:12.138133	2017-11-28 23:21:16.08174	CAabc4ec55bdec2f674c87a576b9da667c	\N	158			0	inbound	+18558645656	136	2.56670784950256348	\N	new lead		15	\N	\N	3647
2017-11-28 23:21:29.675886+00	2017-11-28 23:22:51.318496+00	7380	completed				+13035182891		82	2017-11-28 23:21:29.674432	2017-11-28 23:22:51.306064	CA4dd2798b4d7e67039fd4bb40b022f615	\N	158			0	inbound	+18558645656	136	2.56579208374023438	\N	new lead		15	\N	\N	3647
2017-10-03 18:06:50.001217+00	2017-10-03 18:07:45.175626+00	6568	completed				+17703691707		55	2017-10-03 18:06:49.999369	2017-10-03 18:07:45.157971	CA2c584d843ba950eb818387308bb77c55	\N	150			0	inbound	+17707665732	133	11.3748281002044678	\N	new lead		13	\N	\N	3649
2017-08-11 22:03:25.623149+00	2017-08-11 22:10:47.394749+00	5995	completed	ROBERT	DRUMM	robert.drumm10@gmail.com	+16789975311		32	2017-08-11 22:03:25.620801	2017-08-11 22:09:49.00873	CA631409cc9764395846cd44cc6ee4af1f	0427608a-ae09-4db0-a1e8-374423ee28c3	150			3	outbound	+17704009016	\N	347.906037092208862	{}	new lead		13	\N	\N	3651
2018-05-01 22:43:38.759675+00	2018-05-01 22:43:52.003223+00	8234	completed				+17732909650		14	2018-05-01 22:43:38.756733	\N	c-3zzcyhzxiupvnohpozejoey	\N	15			0	inbound	+15626663928	156	11	\N	new lead	VERMAAK,HERMANU	4	\N	\N	3652
2018-05-01 22:50:22.236606+00	2018-05-01 22:50:34.059118+00	8235	completed				+17732909650		12	2018-05-01 22:50:22.234699	2018-05-01 22:50:34.056879	CA19f51378f59941b71ba51d1a61df8376	\N	15			0	inbound	+13367394103	157	6.20559406280517578	\N	new lead	muhammad rasool	4	\N	\N	3652
2018-05-01 22:57:40.273642+00	2018-05-01 22:57:50.059456+00	8237	completed				+17732909650		10	2018-05-01 22:57:40.272539	2018-05-01 22:57:50.057582	CA04210a5b9fe545201c4083d7dfc885ce	\N	15			0	inbound	+13367394103	157	3.35011506080627441	\N	new lead	muhammad rasool	4	\N	\N	3652
2018-05-01 22:53:51.973937+00	2018-05-01 22:54:02.787745+00	8236	completed				+17732909650		11	2018-05-01 22:53:51.972916	2018-05-01 22:54:02.779533	CA7bb7f426684808c58fd4d7744abb014e	\N	15			0	inbound	+13367394103	157	4.61188292503356934	\N	new lead	muhammad rasool	4	\N	\N	3652
2017-12-07 01:15:10.365765+00	2017-12-07 01:15:10.396069+00	7673	missed	Rodolfo	Witrago	Jrtp68@aol.com	+18175645680		\N	2017-12-07 01:15:10.364524	\N		243bc1c1-c430-4ccb-b9d9-71662ebbb896	\N			0	outbound	+18558645656	\N	\N	{}	new lead		15	\N	\N	3654
2017-08-17 02:32:53.379066+00	2017-08-17 02:32:53.442517+00	6062	missed	Staci	Lane	Stacilane07@gmail.com	+14049573905		\N	2017-08-17 02:32:53.377454	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	3656
2017-10-25 13:58:23.372519+00	2017-10-25 14:03:23.60156+00	6800	completed	Sydney	Bush	trouble431939@gmail.com	+14046988515		286	2017-10-25 13:58:23.370938	2017-10-25 14:03:23.574481	CAb648b9866ddcf4ac6f396a90df44336e	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE5d84cb5269ceb5e03ad8331bfcda45c5	1	outbound	+17704009016	\N	14.1468009948730469	{}	new lead		13	\N	\N	3657
2017-10-25 15:31:22.397195+00	2017-10-25 15:33:00.116907+00	6802	completed	Sydney	Bush		+14046988515		96	2017-10-25 15:31:22.39454	2017-10-25 15:32:58.810135	CAac823ab9dd3d109c03bb440b65a849b6	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REb538094b5632a2ad49825031e98e14fd	0	inbound	+17704009016	132	17.0934128761291504	\N	new lead		13	\N	\N	3657
2017-10-19 14:13:44.774302+00	2017-10-19 14:13:44.774372+00	6748	missed	jerry lamp		jvlamp@gmail.com	+13526303316		\N	2017-10-19 14:13:44.770979	\N		3784ab32-dd2a-4afe-b372-b25e22263604	\N			0	outbound	+17735469660	\N	\N	{}	new lead		1	\N	\N	3658
2017-12-15 19:10:24.577347+00	2017-12-15 19:17:48.515022+00	7900	completed	Saulo	Martinez	phenom2ta@sbcglobal.net	+19565625399		439	2017-12-15 19:10:24.576002	2017-12-15 19:17:48.512705	CA5f035d4ab476fd154152854d08e06965	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	3.89983987808227539	{}	new lead		15	\N	\N	3660
2016-11-01 23:23:44.147492+00	2016-11-01 23:23:44.177563+00	2519	missed	Cory 	Trahan	mystikalhome99@yahoo.com	+18164467519		\N	2016-11-01 23:23:44.14614	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	3662
2016-11-01 23:23:47.078019+00	2016-11-01 23:23:47.099382+00	2520	missed	Cory 	Trahan	mystikalhome99@yahoo.com	+18164467519		\N	2016-11-01 23:23:47.077124	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	3662
2016-09-03 17:29:10.961869+00	2016-12-10 01:01:00.19993+00	1873	completed				+16197219978		276	2016-09-03 17:29:10.959846	2016-09-03 17:33:47.350244	CAde51b45e0301b9ebd41dbacc7fd89f12	\N	57			0	inbound	+18557860909	\N	13.9586501121520996	null	new lead		3	\N	\N	3665
2016-09-03 14:07:41.557904+00	2016-12-10 01:01:00.199911+00	1868	completed				+16197219978		19	2016-09-03 14:07:41.555217	2016-09-03 14:08:00.84858	CA832684c439979913c5741662bd7098f2	\N	57			0	inbound	+18557860909	\N	9.88932394981384277	null	new lead		3	\N	\N	3665
2017-11-14 17:37:34.199002+00	2017-11-14 17:39:24.146434+00	7049	completed				+12149239408		109	2017-11-14 17:37:34.19658	2017-11-14 17:39:23.020994	CAc1c920f97db9830384a3b2391b1628cb	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REfb44c0b1132b206a65d4d7aa2417e7bb	0	inbound	+18177569010	124	6.45854783058166504	\N	new lead	ripley jason	12	\N	\N	3669
2016-11-02 15:26:06.723056+00	2016-11-02 15:27:40.012991+00	2550	completed				+17047759337		93	2016-11-02 15:26:06.721871	2016-11-02 15:27:39.304027	CAdeb07a436ddcdb14d431cdaec9fc2df6	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE28f52d3700781f9ac7b0c1a1efb55238	0	inbound	+18557240606	49	1.92906713485717773	null	new lead		1	\N	\N	3672
2016-11-02 15:27:45.070471+00	2016-11-02 15:35:08.127221+00	2552	completed				+17047759337		442	2016-11-02 15:27:45.069529	2016-11-02 15:35:06.855479	CA38d5bca2eef6caf0dd07e82e898aa5bf	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REc9720f9d1d72bc14158882a9b5120f2c	0	inbound	+18557240606	49	1.58375287055969238	null	new lead		1	\N	\N	3672
2016-10-12 13:37:43.557138+00	2016-11-09 15:46:59.235387+00	2275	completed				+13022397774		370	2016-10-12 13:37:43.555407	2016-10-12 13:43:53.894845	CA1be5e7961facc4999b13730f9817aa29	\N	43			0	inbound	+18556279610	\N	2.22154617309570312	null	new lead		3	\N	\N	3674
2017-10-13 21:48:17.998176+00	2017-10-13 21:49:16.690254+00	6708	completed	Shaquitta 	Fulton 	bosslaydi26@gmail.com	+17064246712		46	2017-10-13 21:48:17.996705	2017-10-13 21:49:16.657934	CA2bdcb29266233c0cf483007cfb36817c	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE8c51de38c2eecaae2073d87542b2bdb1	1	outbound	+17704009016	\N	10.5774509906768799	{}	new lead		13	\N	\N	3675
2017-10-23 18:39:29.501691+00	2017-10-23 18:45:12.215557+00	6786	missed	Jacob	Orr		+16782340526		11	2017-10-23 18:39:29.500363	2017-10-23 18:39:40.272436	CAdc8d871af8124fa63cc9d24d990c984f	\N	\N			0	inbound	+17704009016	132	321.528117895126343	\N	new lead		13	\N	\N	3680
2017-12-08 20:13:40.052051+00	2017-12-08 20:23:30.592718+00	7723	completed				+17734744255		589	2017-12-08 20:13:40.050303	2017-12-08 20:23:29.336429	CA1a7215fb54457bb6e0567371f95b1902	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REf1c70966af5aa67e6a3352586b458cbc	0	inbound	+18558645656	136	2.04243016242980957	\N	new lead		15	\N	\N	475
2017-05-08 16:09:53.202428+00	2017-11-29 18:38:49.810287+00	4847	completed				+12146866893		78	2017-05-08 16:09:53.200127	2017-05-08 16:11:11.143931	CA869788794bc84e98e5aa97887a680ad4	\N	127			0	inbound	+12147122250	\N	0.963016033172607422	\N	new lead	brumbeloe hayes	9	\N	\N	3585
2017-05-08 16:11:05.068745+00	2017-11-29 18:38:49.810294+00	4848	completed				+12146866893		389	2017-05-08 16:11:05.066968	2017-05-08 16:17:34.522629	CA938f23ef5308c0977b9bbf89294e824c	\N	\N			0	inbound	+12147122250	\N	1.18575000762939453	\N	new lead	brumbeloe hayes	9	\N	\N	3585
2017-04-27 14:42:12.811945+00	2017-11-29 18:38:49.806887+00	4358	completed				+17325899988		322	2017-04-27 14:42:12.809453	2017-04-27 14:47:34.851978	CA2644ad7440d7c36c10e822b50dababea	\N	105			0	inbound	+12147122250	\N	2.56701993942260742	\N	new lead	lacroix dolly	9	\N	\N	3587
2017-04-27 19:15:14.700239+00	2017-11-29 18:38:49.807023+00	4378	completed				+17325899988		87	2017-04-27 19:15:14.697652	2017-04-27 19:16:41.534923	CA0efb35d73d7bb01f1cb26d95cf60d352	\N	126			0	inbound	+12147122250	\N	2.13255620002746582	\N	new lead	lacroix dolly	9	\N	\N	3587
2017-04-27 19:20:40.714775+00	2017-11-29 18:38:49.807038+00	4380	completed				+17325899988		55	2017-04-27 19:20:40.713395	2017-04-27 19:21:35.257342	CA7e729f512bb11a01344fb1f188ae447e	\N	126			0	inbound	+12147122250	\N	1.06536316871643066	\N	new lead	lacroix dolly	9	\N	\N	3587
2017-04-27 21:15:49.279976+00	2017-11-29 18:38:49.807165+00	4399	completed				+17325899988		52	2017-04-27 21:15:49.277387	2017-04-27 21:16:41.352925	CA94c65a0249ccc80ce291ee4774149545	\N	126			0	inbound	+12147122250	\N	1.26968812942504883	\N	new lead	lacroix dolly	9	\N	\N	3587
2017-04-27 21:16:38.076953+00	2017-11-29 18:38:49.807173+00	4402	completed				+17325899988		191	2017-04-27 21:16:38.075668	2017-04-27 21:19:49.443707	CA20d9132d6b26da372ad76bff017ea7ed	\N	105			0	inbound	+12147122250	\N	6.2095489501953125	\N	new lead	lacroix dolly	9	\N	\N	3587
2017-10-23 18:39:12.461656+00	2017-10-23 18:45:03.991169+00	6785	missed	Jacob	Orr		+16782340526		12	2017-10-23 18:39:12.459615	2017-10-23 18:39:24.01807	CAdedf7736feb0d9ccc0101947916a3b02	\N	\N			0	inbound	+17704009016	132	330.569814920425415	\N	new lead		13	\N	\N	3680
2017-11-16 12:55:02.798382+00	2017-11-16 12:55:02.862932+00	7075	missed	Mariah	Price	annpricr21@icloud.com	+17062865952		\N	2017-11-16 12:55:02.796645	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	3681
2017-11-16 12:55:04.511089+00	2017-11-16 12:55:04.559056+00	7076	missed	Mariah	Price	annpricr21@icloud.com	+17062865952		\N	2017-11-16 12:55:04.509995	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	3681
2017-11-16 14:19:22.639814+00	2017-11-16 14:23:02.648213+00	7077	completed	Mariah	Price		+17062865952		220	2017-11-16 14:19:22.637759	2017-11-16 14:23:02.631358	CA4c644876b21a5ea2b9e61655efe0ef91	\N	150			0	inbound	+17707665732	133	15.0902621746063232	\N	new lead		13	\N	\N	3681
2017-11-16 14:31:52.121478+00	2017-11-16 14:32:43.964774+00	7079	completed	Mariah	Price		+17062865952		52	2017-11-16 14:31:52.119154	2017-11-16 14:32:43.939856	CAd78d29965415ead5006b2426d9ea1949	\N	150			0	inbound	+17707665732	133	9.55762600898742676	\N	new lead		13	\N	\N	3681
2016-09-07 14:21:47.237411+00	2016-12-09 17:10:17.413398+00	1900	completed				+19086195568		483	2016-09-07 14:21:47.235801	2016-09-07 14:29:50.12609	CAfa0e96c1732c13e3f3de55259049ee6e	\N	27			0	inbound	+18552716856	\N	4.86215710639953613	null	new lead		3	\N	\N	3685
2017-07-25 17:41:37.882572+00	2017-08-17 14:35:21.045659+00	5850	completed				+18173238203		263	2017-07-25 17:41:37.880332	2017-07-25 17:46:01.330938	CAd5256f4aa42af64f64558a508bb6aa56	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REa10fd7f12baa791047cb6f9c374f5cb1	0	inbound	+18177569010	124	8.30131077766418457	\N	new lead	brandon welch	12	\N	\N	3686
2016-09-19 20:50:08.338584+00	2016-12-09 17:06:53.905942+00	2054	completed				+12154932483		463	2016-09-19 20:50:08.337195	2016-09-19 20:57:51.079279	CA7439720371b79a6d094e838e4fa25efa	\N	21			0	inbound	+18558021330	\N	3.43233609199523926	null	new lead		3	\N	\N	3687
2016-09-20 18:10:26.066083+00	2016-12-09 17:06:53.905956+00	2062	in-progress				+12154932483		5	2016-09-20 18:10:26.064629	2016-09-20 18:10:31.12299	CAcabcc6b923a5257e647b7124a69bc584	\N	21			0	inbound	+18558021330	\N	3.23214101791381836	null	new lead		3	\N	\N	3687
2016-09-06 20:16:05.778438+00	2016-12-09 17:06:53.905864+00	1895	completed				+12156966682		427	2016-09-06 20:16:05.776173	2016-09-06 20:23:13.272747	CA58d12e027a36557123464cbb8fe7482b	\N	21			0	inbound	+18558021330	\N	3.71065306663513184	null	new lead		3	\N	\N	3688
2016-08-24 13:05:30.273355+00	2016-12-09 17:10:17.413103+00	1691	completed				+14846765521		202	2016-08-24 13:05:30.271561	2016-08-24 13:08:52.268322	CAedd58091f089834443638e0445eedc89	\N	27			0	inbound	+18552716856	\N	6.2123110294342041	null	new lead		3	\N	\N	3689
2017-05-11 19:11:27.585394+00	2017-11-29 18:38:49.811139+00	5015	completed				+12017555432		147	2017-05-11 19:11:27.583261	2017-05-11 19:13:54.74077	CAa886be8489e079744f7df9fa5f082819	\N	133			0	inbound	+12147122250	\N	6.78997516632080078	\N	new lead	rowe md paul   	9	\N	\N	3691
2017-03-14 21:16:09.279454+00	2017-11-29 18:31:18.808883+00	3426	missed				+17022097844		58	2017-03-14 21:16:09.277379	2017-03-14 21:17:07.764746	CA607e10f2ab268f31a5779dc0d54f633e	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REedbab85ad20eb8d6f541f8f1e9e301b8	0	inbound	+18556311439	\N	\N	\N	new lead		1	\N	\N	3692
2017-03-14 21:26:53.846583+00	2017-11-29 18:31:18.80889+00	3427	missed				+17022097844		20	2017-03-14 21:26:53.844496	2017-03-14 21:27:14.154712	CAc4ce4e62e4c6fee387ba7f598d6a38ba	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REeac3a1b65628a3f78a26383f857b3e08	0	inbound	+18556311439	\N	\N	\N	new lead		1	\N	\N	3692
2017-03-14 22:11:45.503223+00	2017-11-29 18:31:18.808897+00	3437	missed				+17022097844		49	2017-03-14 22:11:45.500951	2017-03-14 22:12:34.207016	CA7d72bcd51a8f8dd6557f15ab0f439fe1	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REb1f798ac07a7c69d51fc78cf36cce49f	0	inbound	+18556311439	\N	\N	\N	new lead		1	\N	\N	3692
2017-03-14 22:52:17.935094+00	2017-11-29 18:31:18.808905+00	3438	missed				+17022097844		44	2017-03-14 22:52:17.933109	2017-03-14 22:53:01.690803	CAb351d7f2c0661b9ca62d83696f50be6f	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REaf20b04c562dd21f5d682ec21c110f77	0	inbound	+18556311439	\N	\N	\N	new lead		1	\N	\N	3692
2017-03-15 01:12:15.876033+00	2017-11-29 18:31:18.808912+00	3440	missed				+17022097844		45	2017-03-15 01:12:15.874002	2017-03-15 01:13:01.132797	CAc2937ef645754ed16f2c8d5cd7ff7d17	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE1d023263595b535014b00047addc9cf2	0	inbound	+18556311439	\N	\N	\N	new lead		1	\N	\N	3692
2017-09-08 15:31:25.572213+00	2017-09-08 15:32:41.377954+00	6292	completed				+266696687		76	2017-09-08 15:31:25.570417	2017-09-08 15:32:41.369211	CA1a28f7ed3374d717072d30b9056bcedc	\N	153			0	inbound	+17707665732	133	11.7344889640808105	\N	new lead		13	\N	\N	\N
2017-12-09 14:21:14.192174+00	2017-12-09 14:23:37.674057+00	7738	completed				+14704457948		143	2017-12-09 14:21:14.189906	2017-12-09 14:23:37.664219	CAc2bd69a820546fe0fc624a3395d02449	\N	152			0	inbound	+17707665732	133	10.2344648838043213	\N	new lead	roper christy	13	\N	\N	478
2017-12-08 23:16:20.163855+00	2017-12-08 23:17:44.000277+00	7734	completed	Alvin	Yoder	al_wiener@yahoo.com	+12693860343		80	2017-12-08 23:16:20.162437	2017-12-08 23:17:43.998679	CAc85877c68dbc0fe59d6abd8b93c96d19	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.86599993705749512	{}	new lead		15	\N	\N	536
2017-12-08 21:33:50.354864+00	2017-12-09 22:21:54.183653+00	7732	completed				+17707497720		347	2017-12-08 21:33:50.352768	2017-12-08 21:39:37.845758	CA974746eb0e6ce7bb53cce10c00daf49a	\N	153			0	inbound	+17707665732	133	323.044472932815552	\N	select status	atlanta  ga	13	\N	\N	1044
2017-12-08 22:44:35.773452+00	2017-12-08 22:58:40.027481+00	7733	completed				+17608612985		841	2017-12-08 22:44:35.77161	2017-12-08 22:58:36.794048	CA25b0d7d715c40025d7e1d512e3239b6d	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REe8d1abd67b0fafd8b8e4a080c8a84c17	0	inbound	+18558645656	136	2.28672194480895996	\N	new lead		15	\N	\N	2002
2017-12-09 00:47:40.84305+00	2017-12-09 00:48:00.126316+00	7735	completed				+16024234474		19	2017-12-09 00:47:40.84125	2017-12-09 00:47:59.44536	CA94144213eec0bbdb7282c7b9f15f7a6e	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE28c7db96fb6ff7d7fce067a1d36434da	0	inbound	+18558645656	136	2.72281789779663086	\N	new lead		15	\N	\N	2595
2017-12-09 07:22:27.370263+00	2017-12-11 14:20:19.81877+00	7736	missed	Diamond	Casper	starrbaby1988@gmail.com	+16787794553		\N	2017-12-09 07:22:27.36855	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	2843
2017-03-31 14:42:29.79595+00	2017-08-17 14:35:21.044916+00	3640	completed				+14699390876		74	2017-03-31 14:42:29.793423	2017-03-31 14:43:43.304763	CA62b20bbf945f32f7c00a23d9c5fd1001	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE69785c2cdedbf1df6fe81593dd6a9974	0	inbound	+18177569010	124	9.46211695671081543	\N	new lead	pedroza jose	12	\N	\N	2990
2017-09-23 13:49:59.893771+00	2017-09-23 13:50:00.211641+00	6443	missed	Santonio	Ferrell		+14048096644		0	2017-09-23 13:49:59.89178	2017-09-23 13:50:00.203551	CAee85ff1acbd34d6e19582a1fdf9f8b36	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	3604
2017-09-23 13:50:02.408917+00	2017-09-23 13:50:02.723221+00	6444	missed	Santonio	Ferrell		+14048096644		0	2017-09-23 13:50:02.407663	2017-09-23 13:50:02.714746	CA3422469460ae41660d92afb7c0ddaef3	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	3604
2017-09-23 13:50:04.007135+00	2017-09-23 13:50:04.281462+00	6445	missed	Santonio	Ferrell		+14048096644		0	2017-09-23 13:50:04.005952	2017-09-23 13:50:04.270454	CA1a6d271f88d06c94b0fe463fd09bcaf2	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	3604
2017-03-15 19:44:34.872954+00	2017-11-29 18:31:18.808919+00	3453	missed				+17022097844		43	2017-03-15 19:44:34.869754	2017-03-15 19:45:17.614958	CA7809f44902f5054af856313c8eab9ec4	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE13b3391813412d5e83b29c5f843e68c1	0	inbound	+18556311439	\N	\N	\N	new lead		1	\N	\N	3692
2017-04-19 16:59:45.887293+00	2017-11-29 18:38:53.214255+00	4092	completed				+12146341500		40	2017-04-19 16:59:45.884657	2017-04-19 17:00:26.203069	CA0714d60609e0b935c5370f19f6f2fa02	\N	\N			0	inbound	+12146922088	\N	3.87047910690307617	\N	new lead	ben e keith bee	9	\N	\N	3694
2017-06-30 22:31:49.138231+00	2017-06-30 22:36:08.534674+00	5700	completed				+14787334616		259	2017-06-30 22:31:49.136868	2017-06-30 22:36:07.810357	CAb6a2fa66cbf3e3f12c9e366c74ec177a	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REa33043fda67051bbd4a1dece2da7e089	0	inbound	+17704009016	132	6.13031291961669922	\N	new lead		13	\N	\N	3696
2017-11-30 20:37:17.040372+00	2017-11-30 20:39:01.964818+00	7416	completed				+16788978161		105	2017-11-30 20:37:17.038099	2017-11-30 20:39:01.950106	CAe34146b0deb1e02a2f46e859421326ff	\N	150			0	inbound	+17707665732	133	10.3153140544891357	\N	new lead	cell phone   ga	13	\N	\N	3698
2016-09-27 16:21:51.936805+00	2016-12-09 17:08:44.54251+00	2087	completed				+16103576138		9	2016-09-27 16:21:51.935265	2016-09-27 16:22:00.922548	CA94ecf679b1c92a45b42ac9ac606260e5	\N	67			0	inbound	+18552199307	\N	1.30020809173583984	null	new lead		3	\N	\N	3699
2017-12-26 21:06:00.641922+00	2017-12-26 21:07:51.103838+00	8109	completed				+16822215466		110	2017-12-26 21:06:00.639501	2017-12-26 21:07:51.099701	CAcc8fa234e8c4291e58e0084b60adc1b5	\N	146			0	inbound	+18177569010	124	49.6877191066741943	\N	new lead	bjones streetri	12	\N	\N	3700
2017-05-08 14:40:58.165592+00	2017-11-29 18:38:53.215334+00	4837	completed				+13037188174		33	2017-05-08 14:40:58.163338	2017-05-08 14:41:31.023086	CAbf6f7989d78f54b65480640625741d6a	\N	\N			0	inbound	+12146922088	\N	2.38941287994384766	\N	new lead	dill renae     	9	\N	\N	3701
2017-05-08 15:30:50.723248+00	2017-11-29 18:38:53.215348+00	4841	completed				+13037188174		144	2017-05-08 15:30:50.719778	2017-05-08 15:33:14.773475	CA8a2037d4a1dafcc89fa1ae953f36444c	\N	\N			0	inbound	+12146922088	\N	1.12728381156921387	\N	new lead	dill renae     	9	\N	\N	3701
2016-10-06 15:02:30.986353+00	2016-12-10 01:01:00.20035+00	2212	missed				+16195185993		37	2016-10-06 15:02:30.984664	2016-10-06 15:03:08.302916	CA31bdb212f0fd2417d04d3e591e85d708	\N	\N			0	inbound	+18557860909	\N	\N	null	new lead		3	\N	\N	3707
2016-11-03 19:34:41.15971+00	2016-11-03 19:34:41.184076+00	2652	missed	katie	cook	bcook1223@gmail.com	+17704800333		\N	2016-11-03 19:34:41.158672	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	3709
2017-06-08 19:29:41.438776+00	2017-06-08 19:29:51.959742+00	5576	missed				+19702016356		11	2017-06-08 19:29:41.436472	2017-06-08 19:29:51.951712	CA35a11ad2faa4eaf73a7c247a179dd659	\N	\N			0	inbound	+18555343978	48	\N	\N	new lead		1	\N	\N	3711
2017-04-14 14:19:35.570765+00	2017-11-29 18:31:56.600359+00	3907	completed				+15703423916		53	2017-04-14 14:19:35.569158	2017-04-14 14:20:28.659017		\N	16			0	outbound	+18556311397	\N	\N	\N	do not contact		1	\N	\N	289
2017-12-09 17:13:59.113076+00	2017-12-09 17:15:40.167724+00	7743	completed				+18172692586		100	2017-12-09 17:13:59.111501	2017-12-09 17:15:39.067646	CAba56ea9193c6b7d4dd74f26305769df7	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE352c29a0bc2c8dcb07b78f44b90e8347	0	inbound	+18177569010	124	8.67973494529724121	\N	new lead	fritz aleta	12	\N	\N	886
2017-12-09 15:00:58.850476+00	2017-12-09 15:01:06.181461+00	7740	completed				+16787243497		7	2017-12-09 15:00:58.848335	2017-12-09 15:01:05.371289	CAb33068b9f61428cdd1e4d5cce8c0e5ef	\N	157		https://api.twilio.com/2010-04-01/Accounts/ACbd7756819f4882feb347788ad7959655/Recordings/REe237ddf7a7f57850ac6c4e0e81f8b737	0	inbound	+17706597466	137	2.13899922370910645	\N	new lead		14	\N	\N	1037
2017-09-23 13:52:56.07726+00	2017-09-23 13:52:56.351112+00	6460	missed	Santonio	Ferrell		+14048096644		0	2017-09-23 13:52:56.076093	2017-09-23 13:52:56.342911	CA56748b3e1a92502e4b3600be3cb4727a	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	3604
2017-09-23 13:50:27.886911+00	2017-09-23 13:56:04.231642+00	6449	missed	Santonio	Ferrell		+14048096644		3	2017-09-23 13:50:27.885201	2017-09-23 13:50:31.215816	CA9f755172be01635a742d5d9a3710ebe5	\N	\N			0	inbound	+17707665732	133	327.217280864715576	\N	new lead		13	\N	\N	3604
2017-08-18 20:05:41.264441+00	2017-08-18 20:06:43.707299+00	6092	completed	Santonio	Ferrell	Greatdad404@icloud.com	+14048096644		40	2017-08-18 20:05:41.26252	2017-08-18 20:06:42.39131	CA1fec332b9c1a2fcd1d84f0f55ff8a71f	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REba12aa0b1a38db09d8b3f8c3fa6a5797	1	outbound	+17704009016	\N	19.7689738273620605	{}	new lead		13	\N	\N	3604
2017-10-13 13:44:06.798175+00	2017-10-13 13:44:44.906228+00	6686	completed	Santonio	Ferrell		+14048096644		38	2017-10-13 13:44:06.796648	2017-10-13 13:44:44.894391	CAcaf12a1bb972192f4b64bde329a38800	\N	154			0	inbound	+17707665699	134	5.31001806259155273	\N	new lead		13	\N	\N	3604
2016-11-03 15:48:08.912775+00	2016-11-03 15:48:08.937527+00	2628	missed	Amber	Palacios	AmberLPalacios@ymail.com	+12816029858		\N	2016-11-03 15:48:08.911663	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	3717
2016-10-05 15:28:10.095834+00	2016-11-09 15:46:59.235326+00	2174	completed				+13126468400		237	2016-10-05 15:28:10.094452	2016-10-05 15:32:07.172121	CAdf9d1a9c98609cf48566e66942d8de4c	\N	43			0	inbound	+18556279610	\N	2.04324793815612793	null	new lead		3	\N	\N	3719
2016-09-28 14:44:46.50866+00	2016-11-09 15:42:56.35138+00	2089	completed				+13126468400		206	2016-09-28 14:44:46.506637	2016-09-28 14:48:12.494874	CA9f6cc3355a0d215a3f94507ebcde7f65	\N	37			0	inbound	+18556371303	\N	2.31399822235107422	null	new lead		3	\N	\N	3719
2016-10-05 18:21:02.844632+00	2016-11-09 15:46:59.235333+00	2189	completed				+13126468400		391	2016-10-05 18:21:02.842893	2016-10-05 18:27:33.444621	CA20c8447c63248d164a580ea3ae06eec6	\N	43			0	inbound	+18556279610	\N	2.3937230110168457	null	new lead		3	\N	\N	3719
2016-10-05 20:16:15.589463+00	2016-11-09 15:46:59.235341+00	2199	completed				+13126468400		357	2016-10-05 20:16:15.588006	2016-10-05 20:22:12.907263	CA6ed2078bf8725bc47f34898d316611e3	\N	43			0	inbound	+18556279610	\N	1.84127497673034668	null	new lead		3	\N	\N	3719
2017-05-22 19:30:13.407529+00	2017-11-29 18:38:49.812686+00	5297	completed				+19038708703		63	2017-05-22 19:30:13.405089	2017-05-22 19:31:16.659748	CAd25e6cdf6bd8c06e264bfb93a1215cfc	\N	133			0	inbound	+12147122250	\N	11.4854800701141357	\N	new lead	four feathers a	9	\N	\N	3720
2017-05-03 20:29:45.569184+00	2017-05-03 20:31:31.012493+00	4661	ringing				+14058332695		\N	2017-05-03 20:29:45.567136	\N	CAa132aa4bd871e4878b3058754e331cc8	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE2c7a378f5ecc4c5e2b0edcf3fdfbd5d0	0	inbound	+18172104002	126	22.5510940551757812	\N	new lead	cell phone   ok	12	\N	\N	3723
2017-05-01 20:23:31.911231+00	2017-11-29 18:38:53.214895+00	4546	completed				+19095920123		50	2017-05-01 20:23:31.908623	2017-05-01 20:24:22.371456	CAc1a67869725e680f31113b6babdb371f	\N	107			0	inbound	+12146922088	\N	4.84425687789916992	\N	new lead	san dimas    ca	9	\N	\N	3728
2017-08-08 18:20:45.512967+00	2017-08-08 18:24:06.29687+00	5968	completed	Shawna	Morgan	katie.morgan0207@gmail.com	+17063042714		191	2017-08-08 18:20:45.511622	2017-08-08 18:24:05.878887	CAc643edf092f547c27afea279e730ec2c	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE0cdcd83f09e5bf7af51d58ef6b898e81	1	outbound	+17704009016	\N	17.210284948348999	{}	new lead		13	\N	\N	3729
2017-11-18 20:04:57.51763+00	2017-11-18 20:08:47.33833+00	7131	completed	Travis	Terrell	travispatricia7@gmail.com	+17065726960		220	2017-11-18 20:04:57.515594	2017-11-18 20:08:47.311045	CA92d31e451586211a2871eb323575991b	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE5aa9f036736c15abb8d1ee7cfd2df042	1	outbound	+17704009016	\N	11.6611440181732178	{}	new lead		13	\N	\N	3730
2016-11-18 23:06:15.810966+00	2017-11-29 18:31:56.600239+00	2948	missed				+15707357316		1	2016-11-18 23:06:15.809205	2016-11-18 23:06:17.256633	CAc46e9d97ebe6789b4654afd98e327c3d	\N	\N			0	inbound	+18556311397	\N	\N	null	new lead		1	\N	\N	3731
2017-04-13 17:21:59.086335+00	2017-11-29 18:38:49.804808+00	3880	completed				+19175587251		60	2017-04-13 17:21:59.084726	2017-04-13 17:22:59.152603	CAcdcde242ac0de47182e1e0984045a8f9	\N	99			0	inbound	+12147122250	\N	4.12328815460205078	\N	new lead	white simone   	9	\N	\N	3732
2017-04-13 17:11:32.720354+00	2017-11-29 18:38:49.804801+00	3879	completed				+19175587251		624	2017-04-13 17:11:32.718866	2017-04-13 17:21:56.493811	CA370e01c02e62b21e7af05ea9757e2559	\N	\N			0	inbound	+12147122250	\N	2.17287993431091309	\N	new lead	white simone   	9	\N	\N	3732
2017-12-05 19:55:27.352899+00	2017-12-11 15:36:53.933679+00	7597	completed				+16782708276		91	2017-12-05 19:55:27.351398	2017-12-05 19:56:57.86345	CA9532216970f7cd65b9cf0fe77b22e81e	\N	150			0	inbound	+17707665732	133	12.1273257732391357	\N	select status	kevin thomas	13	\N	\N	3734
2017-12-11 15:34:42.018798+00	2017-12-11 15:36:53.923243+00	7780	completed				+16782708276		51	2017-12-11 15:34:42.016882	2017-12-11 15:35:33.139837	CAc0d8be52688b8fc0faaff53e84864549	\N	153			0	inbound	+17707665732	133	12.8420059680938721	\N	select status	kevin thomas	13	\N	\N	3734
2017-05-16 14:51:40.382946+00	2017-11-29 18:38:49.811678+00	5101	completed				+18646537949		55	2017-05-16 14:51:40.381052	2017-05-16 14:52:35.358835	CA7263d5b754ade8a5552fd3d1444eb91d	\N	105			0	inbound	+12147122250	\N	2.92804694175720215	\N	new lead	golds gym of cl	9	\N	\N	3738
2017-09-20 19:46:01.894509+00	2017-12-09 22:21:54.183621+00	6408	completed				+17707497720		22	2017-09-20 19:46:01.892604	2017-09-20 19:46:23.982985	CAb1a5e0da32a7510abc19dc3a370d2f6a	\N	154			0	inbound	+17707665699	134	2.88941502571105957	\N	select status		13	\N	\N	1044
2017-12-09 22:11:40.551861+00	2017-12-09 22:21:54.163713+00	7755	completed				+17707497720		374	2017-12-09 22:11:40.550084	2017-12-09 22:17:54.341094	CAa305d9c2704015dabc516d3f79db117c	\N	153			0	inbound	+17707665732	133	324.17486310005188	\N	select status	atlanta  ga	13	\N	\N	1044
2017-09-21 16:17:53.272441+00	2017-12-09 22:21:54.183639+00	6417	completed				+17707497720		340	2017-09-21 16:17:53.270665	2017-09-21 16:23:32.832808	CA254ea65e572b47b27f2dc73ba9790fda	\N	153			0	inbound	+17707665732	133	322.157541990280151	\N	select status		13	\N	\N	1044
2017-12-16 19:30:48.471669+00	2017-12-16 19:36:54.324782+00	7937	completed				+17064996247		365	2017-12-16 19:30:48.469831	2017-12-16 19:36:53.180352	CA604a0a3699052d62cb5ba05bbee6faa3	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REe587859cbc64efc20f3a29356a526b52	0	inbound	+17707665732	133	340.377352952957153	\N	new lead	morris tina	13	\N	\N	3620
2016-11-02 18:45:08.383941+00	2016-11-02 18:48:27.498534+00	2584	completed				+17702565500		199	2016-11-02 18:45:08.382067	2016-11-02 18:48:27.264125	CA485d258dcbdfdffa07f149b5e5cbd21c	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REaa50d95058425c0f1c37452b93bb6680	0	inbound	+18557240606	49	2.03185892105102539	null	new lead		1	\N	\N	3622
2017-08-26 01:09:57.281735+00	2017-08-26 01:32:20.154505+00	6170	missed				+19036503764		62	2017-08-26 01:09:57.278776	2017-08-26 01:10:58.883057	CA3a3eff3c154358c8c7bd88af62890825	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE557f7deaac71339a149d97684cfc9254	0	inbound	+18177569010	124	1320.81329083442688	\N	new lead	cell phone   tx	12	\N	\N	3625
2016-06-03 15:52:36.377055+00	2017-11-29 18:31:10.260985+00	367	completed	Marbeth	Carmack		+15139482141		35	2016-06-03 15:52:36.37614	2016-06-03 15:53:11.100447	CA02fdc9c17a351a8b72c619ce58f86615	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE2064a062e098d698cfbf3a61dca2d734	0	inbound	+18556311490	\N	0.46387791633605957	null	new lead		1	\N	\N	3753
2017-12-18 23:26:35.13391+00	2017-12-18 23:29:52.752483+00	7981	completed				+17062002674		196	2017-12-18 23:26:35.132195	2017-12-18 23:29:51.407362	CA59119fa7e16d23883e2244b8ebf6f96e	\N	154		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE6e58c5c5c05f34ac4ec3d5fddfc34f62	0	inbound	+17707665699	134	0.999197959899902344	\N	new lead	roswell  ga	13	\N	\N	3754
2017-10-26 19:14:30.205294+00	2017-10-26 19:15:43.38484+00	6823	completed				+19032618345		73	2017-10-26 19:14:30.202556	2017-10-26 19:15:43.370951	CAf5a986e16a0a7d08902d17699e7ee2da	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE6975618e024c9cb3f7b9d8246026147a	0	inbound	+18177569010	124	46.7470040321350098	\N	new lead	longview  tx	12	\N	\N	3761
2017-10-26 19:21:27.72157+00	2017-10-26 19:27:25.436687+00	6824	completed				+19032618345		357	2017-10-26 19:21:27.719516	2017-10-26 19:27:25.171575	CA6401026376769b1626d0761bb02be48d	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE8cccc7e0598ff0967681f7031c7339fa	0	inbound	+18177569010	124	102.137166976928711	\N	new lead	longview  tx	12	\N	\N	3761
2017-11-05 22:00:03.096325+00	2017-11-05 22:00:09.976058+00	6940	missed				+19032618345		7	2017-11-05 22:00:03.094104	2017-11-05 22:00:09.966378	CAd2ead88521e83e164392cd88229caae5	\N	\N			0	inbound	+18177569010	124	\N	\N	new lead	longview  tx	12	\N	\N	3761
2017-11-10 23:02:12.424962+00	2017-11-10 23:25:33.048543+00	7012	missed				+19032618345		124	2017-11-10 23:02:12.422774	2017-11-10 23:04:15.994564	CA281bbcb436f1665cab01d1e91fe97f2e	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE6edb9d6322211c85f9fb1953ba4de06d	0	inbound	+18177569010	124	1391.07669901847839	\N	new lead	longview  tx	12	\N	\N	3761
2017-11-11 16:31:09.513669+00	2017-11-11 16:33:31.814189+00	7020	completed				+19032618345		140	2017-11-11 16:31:09.511868	2017-11-11 16:33:29.733082	CA184966943310a22d404b91e8671e32ef	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE730a967b216fe6e35199d3f3f9bb9869	0	inbound	+18177569010	124	10.0738649368286133	\N	new lead	longview  tx	12	\N	\N	3761
2017-12-09 18:35:35.310425+00	2017-12-09 18:58:28.100241+00	7748	completed				+13053436771		1370	2017-12-09 18:35:35.308766	2017-12-09 18:58:24.862093	CA94092f7688ac14b77112f316c3637699	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE1dbb329de87a9ee0f844b5e656a82b84	0	inbound	+18558645656	136	2.77858781814575195	\N	new lead		15	\N	\N	3762
2017-12-09 21:16:38.345925+00	2017-12-09 21:20:13.767927+00	7752	completed				+13053436771		214	2017-12-09 21:16:38.344228	2017-12-09 21:20:12.757404	CA28eb6d4e1c5f94a5d73359cbf25baa25	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE6c2ba8b1acc09888f08c5119c82c0710	0	inbound	+18558645656	136	2.05206513404846191	\N	new lead		15	\N	\N	3762
2017-08-08 02:50:03.230194+00	2017-11-29 18:47:25.068579+00	5959	missed				+19162568700		65	2017-08-08 02:50:03.228313	2017-08-08 02:51:07.769336	CAa92c681e4b8a9df3fe77f09a55ad9b35	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE9522207d94e9bd921f18991b49f81409	0	inbound	+19728330116	\N	\N	\N	new lead	lewis thurman	8	\N	\N	3763
2017-08-08 02:53:25.577234+00	2017-11-29 18:47:25.068586+00	5960	missed				+19162568700		65	2017-08-08 02:53:25.575038	2017-08-08 02:54:31.017171	CA107c4270611e8bc1a8608d4b973f294c	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE4268400eeffcf75d0e3573906f8d7985	0	inbound	+19728330116	\N	\N	\N	new lead	lewis thurman	8	\N	\N	3763
2016-08-10 13:59:09.703474+00	2017-11-29 18:32:13.821714+00	1379	missed	Lisa 	Genias		+13303440583		19	2016-08-10 13:59:09.702192	2016-08-10 13:59:28.305187	CA57f2c06e633cb2c7b1af48d610652b44	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REa2a4d954d476f6c1d49a7d6c64c213b5	0	inbound	+18555983683	\N	\N	null	general interest		1	\N	\N	3772
2016-12-07 15:43:42.876782+00	2016-12-07 16:18:31.84516+00	3057	completed				+16786603401		2082	2016-12-07 15:43:42.874664	2016-12-07 16:18:24.991596	CAe8eb30e7bd8e72283b0817eea76b824b	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE2956b437bcb8566615fd343b80dadb4e	0	inbound	+18557240606	49	1.80683279037475586	null	new lead		1	\N	\N	3774
2017-04-12 17:14:32.04584+00	2017-11-29 18:47:25.06801+00	3816	completed				+16824722167		277	2017-04-12 17:14:32.043092	2017-04-12 17:19:09.478163	CA0923f5532e3da5e3b5e5fd05638c9c3f	\N	83		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE560a25c148e094c6bc84a3050f93e66a	0	inbound	+19728330116	\N	13.2363460063934326	\N	new lead	selvera beth	8	\N	\N	3775
2017-12-10 09:53:52.969687+00	2017-12-11 15:23:02.040787+00	7759	missed	Mildred	Davis	mildreddavis587@yahoo.com	+14042072912		\N	2017-12-10 09:53:52.967418	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	application started		13	\N	\N	126
2017-04-03 19:24:20.692972+00	2017-04-03 19:53:01.54258+00	3674	missed	John	Fantasia	john.fantasia@hotmail.com	+17813891281		\N	2017-04-03 19:24:20.691663	\N		f3e4cfe5-2811-4ab1-9d96-3f14b202cd33	\N			0	outbound	+18556311397	\N	\N	{}	application submitted - credit union		1	\N	\N	1679
2017-12-10 02:02:42.43156+00	2017-12-11 14:20:19.808173+00	7758	missed	Diamond	Casper 	Lovingpieces88@gmail.com	+16787794553		\N	2017-12-10 02:02:42.430113	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	2843
2017-12-10 00:03:46.450286+00	2017-12-10 00:03:53.541375+00	7757	missed				+17707497720		7	2017-12-10 00:03:46.448649	2017-12-10 00:03:53.533088	CAc616d0c227bfd93e0642aeee72f2cce6	\N	\N			0	inbound	+17707669297	131	\N	\N	new lead		6	\N	\N	3016
2017-05-10 19:15:27.160712+00	2017-11-29 18:38:49.810896+00	4973	completed				+17137533466		67	2017-05-10 19:15:27.158804	2017-05-10 19:16:34.018212	CA6fff5b39917b029308cbf980c153770b	\N	126			0	inbound	+12147122250	\N	0.826627969741821289	\N	new lead	kbr            	9	\N	\N	3638
2017-05-10 19:52:19.691992+00	2017-11-29 18:38:49.810903+00	4976	completed				+17137533466		51	2017-05-10 19:52:19.689948	2017-05-10 19:53:11.039969	CA5ba2a9f5286a5f6149a026365c84fc5a	\N	125			0	inbound	+12147122250	\N	1.93135380744934082	\N	new lead	kbr            	9	\N	\N	3638
2017-05-10 19:53:21.501355+00	2017-11-29 18:38:49.81091+00	4977	completed				+17137533466		50	2017-05-10 19:53:21.499413	2017-05-10 19:54:11.788453	CA53979780df1706acdc3a79f544730ee7	\N	125			0	inbound	+12147122250	\N	1.42231416702270508	\N	new lead	kbr            	9	\N	\N	3638
2017-05-11 17:58:32.33722+00	2017-11-29 18:38:49.811117+00	5010	completed				+17137533466		107	2017-05-11 17:58:32.335092	2017-05-11 18:00:19.659245	CAc189ba5b22ca1b6914f0bf5c5568d9ab	\N	125			0	inbound	+12147122250	\N	1.23592019081115723	\N	new lead	kbr            	9	\N	\N	3638
2017-05-12 14:03:08.509322+00	2017-11-29 18:38:49.811183+00	5024	completed				+17137533466		45	2017-05-12 14:03:08.507153	2017-05-12 14:03:54.000075	CAc36db71e5c7f72e5c4d405f02c820617	\N	125			0	inbound	+12147122250	\N	1.36117005348205566	\N	new lead	kbr            	9	\N	\N	3638
2017-05-12 14:03:51.55514+00	2017-11-29 18:38:49.81119+00	5025	completed				+17137533466		59	2017-05-12 14:03:51.553823	2017-05-12 14:04:51.001113	CAc364774e8eb298f51d7cf7fa964d724d	\N	124			0	inbound	+12147122250	\N	1.19899606704711914	\N	new lead	kbr            	9	\N	\N	3638
2017-05-12 14:04:55.357938+00	2017-11-29 18:38:49.81121+00	5026	completed				+17137533466		60	2017-05-12 14:04:55.356402	2017-05-12 14:05:54.99634	CA7a40e53496895e7669fb0c9959500e8c	\N	126			0	inbound	+12147122250	\N	1.38286399841308594	\N	new lead	kbr            	9	\N	\N	3638
2017-04-04 17:46:07.684791+00	2017-11-29 18:38:53.213323+00	3685	completed				+18324748477		445	2017-04-04 17:46:07.682876	2017-04-04 17:53:33.084057	CA89379b3e71f688094f9452b6a71e3cee	\N	107			0	inbound	+12146922088	\N	6.99167799949645996	\N	new lead	mcfarlin reece 	9	\N	\N	3779
2017-04-05 16:40:12.70685+00	2017-11-29 18:38:53.213338+00	3694	completed				+18324748477		53	2017-04-05 16:40:12.704726	2017-04-05 16:41:05.965379	CAd23ee780c6b2c618847a5712657cbb79	\N	105			0	inbound	+12146922088	\N	4.87913703918457031	\N	new lead	mcfarlin reece 	9	\N	\N	3779
2017-04-17 19:45:06.447039+00	2017-11-29 18:47:25.068087+00	4001	completed				+19039526225		159	2017-04-17 19:45:06.444507	2017-04-17 19:47:45.47036	CA8f607874de7829c7bf6e60d6454ced16	\N	115		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REfeca4186499553c0fba182eecd735105	0	inbound	+19728330116	\N	26.1191780567169189	\N	new lead	kay andre	8	\N	\N	3785
2016-08-05 05:14:59.193388+00	2016-08-05 11:51:11.173695+00	1264	missed	Francisco	Sandoval Jr	fsnum2@gmail.com	+16618398413		\N	2016-08-05 05:14:59.191605	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - credit union		1	\N	\N	3786
2016-08-05 21:03:26.771288+00	2017-11-29 18:31:37.368711+00	1287	completed	Francisco	Sandoval Jr		+16618398413		89	2016-08-05 21:03:26.770001	2016-08-05 21:04:55.783489	CAf6cbc2312391bb8e6ee0d2af30e9aa27	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REb5e40fd3fde28c2a0138f6ae2bf2d98e	0	inbound	+18555472453	\N	15.3986561298370361	null	application submitted - credit union		1	\N	\N	3786
2016-08-05 20:57:46.733203+00	2017-11-29 18:31:37.368704+00	1286	completed	Francisco	Sandoval Jr	fsnum2@gmail.com	+16618398413		102	2016-08-05 20:57:46.732247	2016-08-05 20:59:28.327251		\N	16			0	outbound	+18555472453	\N	\N	null	application submitted - credit union		1	\N	\N	3786
2016-08-05 21:06:49.052612+00	2017-11-29 18:31:37.368718+00	1288	completed	Francisco	Sandoval Jr		+16618398413		91	2016-08-05 21:06:49.051666	2016-08-05 21:08:20.435851		\N	16			0	outbound	+18555472453	\N	\N	null	application submitted - credit union		1	\N	\N	3786
2016-06-27 15:35:06.829366+00	2017-11-29 18:32:13.820589+00	513	completed	Unknown			+17082147776		647	2016-06-27 15:35:06.827592	2016-06-27 15:45:54.27576	CAd6487979e49c72fe701cc20b15c2889e	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE89b946e4b398bd69ae6d08360f0dff0b	0	inbound	+18555983683	\N	11.7256219387054443	null	new lead		1	\N	\N	3787
2016-06-27 15:45:01.091483+00	2016-06-27 15:46:25.858851+00	515	completed	John	Cornelius	NA@noemail.com	+17082147776		0	2016-06-27 15:45:01.090378	2016-06-27 15:45:28.060445	CA266f1e46f607a5855f702a6245382607	ee869226-e246-4ab4-aaaa-e9403e2ddd39	\N			1	outbound	+18555983683	\N	13.7034468650817871	{}	new lead		1	\N	\N	3787
2016-06-29 17:17:03.657199+00	2016-06-29 17:18:08.097292+00	652	completed				+17082147776		60	2016-06-29 17:17:03.655593	2016-06-29 17:18:08.095717	CA3bb77fb65f4815e3331d8a670d917474	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.68810415267944336	{}	new lead		1	\N	\N	3787
2017-11-16 22:41:10.293699+00	2017-11-16 22:42:28.686775+00	7083	completed				+18179863657		78	2017-11-16 22:41:10.291756	2017-11-16 22:42:27.813363	CA9a25457699e25014911f18c64bfd0342	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REfce60e30bb5182849ba0bd4868c21c69	0	inbound	+18177569010	124	10.051677942276001	\N	new lead	martinez maria	12	\N	\N	3795
2017-04-07 16:33:22.625109+00	2017-11-29 18:31:10.262696+00	3717	completed				+15137858796		47	2017-04-07 16:33:22.623296	2017-04-07 16:34:09.330527		\N	16			0	outbound	+18556311490	\N	\N	\N	general interest		1	\N	\N	2694
2017-11-28 23:22:56.920924+00	2017-11-28 23:23:41.521632+00	7381	completed				+13035182891		45	2017-11-28 23:22:56.919273	2017-11-28 23:23:41.511265	CA28f264d2a183fdeefd24896460386c08	\N	158			0	inbound	+18558645656	136	3.11764883995056152	\N	new lead		15	\N	\N	3647
2017-11-28 23:23:45.372885+00	2017-11-28 23:24:43.630592+00	7382	completed				+13035182891		58	2017-11-28 23:23:45.371407	2017-11-28 23:24:42.931036	CA5cf0f4fd4dd9af12b52d81afcab5ee38	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE9847e9d492154b6b0b2c3f78268c1e7b	0	inbound	+18558645656	136	2.69446110725402832	\N	new lead		15	\N	\N	3647
2017-11-29 20:20:01.975182+00	2017-11-29 20:21:39.598961+00	7400	completed	Austin 	SCOTT	austinrobertscott@gmail.com	+13035182891		94	2017-11-29 20:20:01.972323	2017-11-29 20:21:39.597775	CA6ff3f369ef835beb745cfe12a4b54d23	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	3.04514098167419434	{}	new lead		15	\N	\N	3647
2016-11-30 13:27:26.10466+00	2016-12-10 01:02:30.610684+00	3005	completed				+18148612748		42	2016-11-30 13:27:26.103139	2016-11-30 13:28:07.883417	CAbc8105a9ae7e0a082ff837c37a5ba134	\N	75			0	inbound	+18555208916	\N	4.91656804084777832	null	new lead		3	\N	\N	3797
2017-04-18 23:57:22.19711+00	2017-11-29 18:38:49.805653+00	4078	completed				+17144762543		74	2017-04-18 23:57:22.1952	2017-04-18 23:58:36.393283	CA0c8b5e25cdf2a64906f0f9d13d9321be	\N	107			0	inbound	+12147122250	\N	4.92889904975891113	\N	new lead	rodrigo luchett	9	\N	\N	3798
2017-04-18 23:58:54.427602+00	2017-11-29 18:38:49.80566+00	4079	completed				+17144762543		45	2017-04-18 23:58:54.425972	2017-04-18 23:59:39.258984	CA2cbdf7d42809d8b3f1e326f5a75ba767	\N	\N			0	inbound	+12147122250	\N	4.57520818710327148	\N	new lead	rodrigo luchett	9	\N	\N	3798
2017-04-18 23:59:34.282715+00	2017-11-29 18:38:49.805667+00	4080	completed				+17144762543		82	2017-04-18 23:59:34.281048	2017-04-19 00:00:56.134857	CA51def3d6d86a029bcd52b3fa5f2d3880	\N	125			0	inbound	+12147122250	\N	2.76130008697509766	\N	new lead	rodrigo luchett	9	\N	\N	3798
2017-04-19 00:00:49.868069+00	2017-11-29 18:38:49.805674+00	4081	completed				+17144762543		61	2017-04-19 00:00:49.866129	2017-04-19 00:01:51.237348	CA453fdf7f93505c9b79e46e3576882b97	\N	99			0	inbound	+12147122250	\N	5.98121500015258789	\N	new lead	rodrigo luchett	9	\N	\N	3798
2017-04-19 17:17:05.187842+00	2017-11-29 18:38:49.805732+00	4093	completed				+17144762543		124	2017-04-19 17:17:05.185919	2017-04-19 17:19:09.648219	CA027b7200890614dd149158347e284a10	\N	107			0	inbound	+12147122250	\N	7.9608149528503418	\N	new lead	rodrigo luchett	9	\N	\N	3798
2017-10-13 19:00:42.352665+00	2017-10-13 19:02:02.115978+00	6698	completed				+16823860117		79	2017-10-13 19:00:42.349696	2017-10-13 19:02:01.211986	CA5840ed7769aaec34899495ff182dd582	\N	155		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REe00b1aa66f5a4110f94b28642f0b1195	0	inbound	+18177569010	124	12.273975133895874	\N	new lead	rogers donnelle	12	\N	\N	3799
2018-03-20 00:20:48.21189+00	2018-03-20 00:21:27.912652+00	8216	missed				+17739699892		9	2018-03-20 00:20:48.210589	2018-03-20 00:20:57.637397	CAf196f0707ce1366cdd479d3d1b4921a5	\N	\N			0	inbound	+13367394103	148	\N	\N	new lead	chicago  il	4	\N	\N	3801
2018-03-20 00:22:05.819335+00	2018-03-20 00:22:46.148478+00	8217	missed				+17739699892		9	2018-03-20 00:22:05.818037	2018-03-20 00:22:15.063807	CAb8cc8f35a96cd617355b61c38095e777	\N	\N			0	inbound	+13367394103	148	10.7309510707855225	\N	new lead	chicago  il	4	\N	\N	3801
2018-03-20 00:29:08.84698+00	2018-03-20 00:30:14.291136+00	8218	missed				+17739699892		34	2018-03-20 00:29:08.845783	2018-03-20 00:29:42.934252	CAcced15d184be9c7495ad43cfb531cfe8	\N	\N			0	inbound	+13367394103	148	10.183722972869873	\N	new lead	chicago  il	4	\N	\N	3801
2018-03-20 00:32:11.040364+00	2018-03-20 00:32:47.123657+00	8219	missed				+17739699892		4	2018-03-20 00:32:11.039058	2018-03-20 00:32:15.130668	CAb26eede49b29ae025213c9471524f7df	\N	\N			0	inbound	+13367394103	148	8.74422001838684082	\N	new lead	chicago  il	4	\N	\N	3801
2018-03-20 00:40:20.235597+00	2018-03-20 00:40:22.088746+00	8220	missed				+17739699892		2	2018-03-20 00:40:20.234389	2018-03-20 00:40:22.08607	CA9cfde6c44ab3cd0342bb0a75c98cb98c	\N	\N			0	inbound	+13367394103	149	\N	\N	new lead	chicago  il	4	\N	\N	3801
2018-03-20 03:05:26.559027+00	2018-03-20 03:05:52.882131+00	8224	completed				+17739699892		24	2018-03-20 03:05:26.557076	\N	c-u6x3eeczvjt2g75enpunwwa	\N	15		https://buyercall-test-recordings.s3.amazonaws.com/Testing%20Group_4/8224_recording_9747fd48826d4a12a5f6aac699ced057	0	inbound	+15626663928	151	12	\N	new lead	chicago  il	4	\N	\N	3801
2018-03-20 03:07:22.277677+00	2018-03-20 03:07:49.479261+00	8225	missed				+17739699892		27	2018-03-20 03:07:22.276396	\N	c-r2vyr4fmg2hnyvwtuvt6bsi	\N	\N		https://buyercall-test-recordings.s3.amazonaws.com/Testing%20Group_4/8225_recording_77f27a7e2f234e2888a0359f1108b957	0	inbound	+15626663928	151	\N	\N	new lead	chicago  il	4	\N	\N	3801
2018-03-20 03:08:29.590631+00	2018-03-20 03:08:36.028673+00	8226	missed				+17739699892		6	2018-03-20 03:08:29.589399	\N	c-bed7ovp3hgz7oirrpquy3iy	\N	\N			0	inbound	+15626663928	151	\N	\N	new lead	chicago  il	4	\N	\N	3801
2018-05-02 19:23:20.119852+00	2018-05-02 19:23:33.566372+00	8238	completed				+17739699892		13	2018-05-02 19:23:20.118671	2018-05-02 19:23:33.564445	CA8388367ad88061fc9b7396bedeb73469	\N	15			0	inbound	+13367394103	157	5.88658380508422852	\N	new lead		4	\N	\N	3801
2018-05-02 19:28:34.371721+00	2018-05-02 19:29:13.583799+00	8239	completed	Mike	Rogers	josh@buyercall.com	+17739699892		29	2018-05-02 19:28:34.369922	2018-05-02 19:29:13.582316	CA00c3c9be47462bcc80325d892046366a	dadddf04-867b-4898-af7e-a09fb8bc34d6	15			1	outbound	+13367394103	\N	7.26847410202026367	{}	new lead		4		\N	3801
2017-12-08 17:53:35.099561+00	2017-12-08 18:04:20.708999+00	7718	completed				+18476526126		642	2017-12-08 17:53:35.097863	2017-12-08 18:04:17.4599	CAa77d1f346fef01b5bf0abcff3ab87f38	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE75ad5c29c4e1e230fd933f63bc9d7b36	0	inbound	+18558645656	136	4.69729089736938477	\N	new lead		15	\N	\N	3802
2017-11-17 18:00:01.293883+00	2017-11-17 18:04:38.82801+00	7107	completed				+17063805466		278	2017-11-17 18:00:01.292417	2017-11-17 18:04:38.81714	CA01b0f6ff75f88591b135a69be054eb88	\N	154			0	inbound	+17707665699	134	1.23958086967468262	\N	new lead		13	\N	\N	3803
2017-11-17 17:53:47.457234+00	2017-11-17 17:59:55.310531+00	7106	completed				+17063805466		368	2017-11-17 17:53:47.454074	2017-11-17 17:59:55.29713	CAac51e9c39207523bbea073ca01e04c7b	\N	154			0	inbound	+17707665699	134	1.26241803169250488	\N	new lead		13	\N	\N	3803
2016-11-04 18:56:15.52527+00	2016-11-04 19:11:42.360032+00	2719	completed				+18176416766		921	2016-11-04 18:56:15.523906	2016-11-04 19:11:36.149583	CAefb8f6d6660aa14bf1e1d6a96684ec57	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE12155a69b950597de5c69fceffe83878	0	inbound	+18557240606	49	1.87757992744445801	null	new lead		1	\N	\N	3805
2017-05-01 17:25:01.375764+00	2017-11-29 18:38:49.808003+00	4518	completed				+14696019553		78	2017-05-01 17:25:01.373986	2017-05-01 17:26:19.807089	CAe19040ca245ba12865c2ac17065b6ba0	\N	124			0	inbound	+12147122250	\N	2.21167707443237305	\N	new lead	cell phone   tx	9	\N	\N	3806
2017-05-01 17:29:43.122099+00	2017-11-29 18:38:49.808015+00	4519	completed				+14696019553		80	2017-05-01 17:29:43.119346	2017-05-01 17:31:03.243907	CAea683bab48122cc257c2861963c6c91a	\N	127			0	inbound	+12147122250	\N	2.37358307838439941	\N	new lead	cell phone   tx	9	\N	\N	3806
2017-05-01 17:54:23.03905+00	2017-11-29 18:38:49.808038+00	4521	completed				+14696019553		82	2017-05-01 17:54:23.036278	2017-05-01 17:55:45.076622	CAaf2dd11d86136c3bd3a89cb32c7ae2bd	\N	127			0	inbound	+12147122250	\N	1.25439214706420898	\N	new lead	cell phone   tx	9	\N	\N	3806
2017-05-01 17:55:42.22072+00	2017-11-29 18:38:49.80805+00	4522	completed				+14696019553		54	2017-05-01 17:55:42.218261	2017-05-01 17:56:36.187875	CA6fe79bd5ade4fcd9d2a7983be1028aba	\N	127			0	inbound	+12147122250	\N	0.902748823165893555	\N	new lead	cell phone   tx	9	\N	\N	3806
2017-12-11 15:08:58.427085+00	2017-12-11 15:23:02.028714+00	7776	completed	Mildred	Davis	mildreddavis587@yahoo.com	+14042072912		87	2017-12-11 15:08:58.423796	2017-12-11 15:10:25.555373		\N	150			0	outbound	+17704009016	132	\N	\N	application started		13	\N	\N	126
2017-04-14 17:12:22.011715+00	2017-11-29 18:38:49.804945+00	3924	completed				+14692314617		78	2017-04-14 17:12:22.008637	2017-04-14 17:13:40.230065	CA6d384f991c382788f84876333a627803	\N	127			0	inbound	+12147122250	\N	1.36289286613464355	\N	new lead	patel narendra	9	\N	\N	377
2017-05-18 16:24:53.887405+00	2017-11-29 18:38:49.812146+00	5195	missed				+19722514550		44	2017-05-18 16:24:53.886052	2017-05-18 16:25:38.341371	CA289d76c710d45d48f5a37b5bf06ec0de	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	cfb-20	9	\N	\N	1204
2017-12-11 17:19:34.253662+00	2017-12-11 17:23:54.970614+00	7784	completed				+17708736748		207	2017-12-11 17:19:34.251798	2017-12-11 17:23:01.497262	CA7a203cca60e099962ecd76109610645e	\N	153			0	inbound	+17707665732	133	9.44372010231018066	\N	select status	delong jeffrey	13	\N	\N	2041
2017-12-11 14:14:50.608809+00	2017-12-11 14:17:05.512822+00	7775	completed	Nakisha	Knight 	Alwaysforeverhappy15@gmail.com	+17063187801		122	2017-12-11 14:14:50.607109	2017-12-11 14:17:05.487846	CA16c7ec85ee3093737fa1bbbd008ffbed	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE9e2b2ab4e25a61b589471bd8bb978df9	1	outbound	+17704009016	\N	15.9542639255523682	{}	select status		13	\N	\N	3608
2017-10-10 14:03:24.798843+00	2017-10-10 14:07:34.241007+00	6644	completed	Jacob	Orr	Gregorycharlesorr@gmail.com	+16782340526		238	2017-10-10 14:03:24.797253	2017-10-10 14:07:33.892645	CAb625ea77d79319cd2854ca62d0325837	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REdb2f93f8ddd0f927f5adb23b8b347eb4	1	outbound	+17704009016	\N	15.7876880168914795	{}	new lead		13	\N	\N	3680
2017-06-24 18:39:35.530013+00	2017-06-24 18:45:57.738056+00	5651	missed				+16786930172		41	2017-06-24 18:39:35.52806	2017-06-24 18:40:16.099287	CA0bd7d161f7fb3b0dbe9e536f8d0659d5	\N	\N			0	inbound	+17704009016	132	363.325953006744385	\N	new lead		13	\N	\N	3690
2017-05-01 18:03:24.525188+00	2017-11-29 18:38:49.808073+00	4524	completed				+14696019553		72	2017-05-01 18:03:24.522342	2017-05-01 18:04:36.848178	CA47bf1d121d43163b7bf1103de87a1569	\N	126			0	inbound	+12147122250	\N	1.20884919166564941	\N	new lead	cell phone   tx	9	\N	\N	3806
2017-03-10 18:34:35.653796+00	2017-11-29 18:38:53.212025+00	3376	completed				+19547724005		709	2017-03-10 18:34:35.651255	2017-03-10 18:46:24.811833	CA818e39276335f47cf0fc3dd482a3e529	\N	\N			0	inbound	+12146922088	\N	7.709136962890625	\N	new lead	kapner michelle	9	\N	\N	3810
2016-08-17 14:01:02.630418+00	2016-12-10 00:55:45.165356+00	1547	completed				+13178601200		8	2016-08-17 14:01:02.627104	2016-08-17 14:01:10.475021	CAc4289786c43e34d71984478c95ad45cf	\N	24			0	inbound	+18557129406	\N	1.32599306106567383	null	new lead		3	\N	\N	3812
2017-09-05 19:41:24.677171+00	2017-09-05 19:44:34.870101+00	6261	completed				+16824148871		189	2017-09-05 19:41:24.67494	2017-09-05 19:44:33.65577	CA2f02611772db1cb0e253e74a6a8fbcdd	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE29c85fabd630cb1eae5c882453b5993b	0	inbound	+18177569010	124	9.74431586265563965	\N	new lead	dallas  tx	12	\N	\N	3814
2017-09-05 20:00:20.452019+00	2017-09-05 20:01:57.32855+00	6262	completed				+16824148871		95	2017-09-05 20:00:20.450366	2017-09-05 20:01:55.133698	CA0c50e5d4e9ae345aa05f5ca0a345a57b	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE84f03a9749f0dadda81b62a399c9186c	0	inbound	+18177569010	124	13.2778007984161377	\N	new lead	dallas  tx	12	\N	\N	3814
2017-09-13 18:32:00.570382+00	2017-09-13 18:35:44.295813+00	6334	completed				+16822039384		223	2017-09-13 18:32:00.568482	2017-09-13 18:35:43.567012	CA5811f2455e352f4144fa477846c9e618	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REcddae42deb2c230d23ef0855d15f80dd	0	inbound	+18177569010	124	7.57079410552978516	\N	new lead	landry lizzie	12	\N	\N	3822
2016-02-02 02:46:03.892854+00	2016-02-02 03:03:30.423486+00	24	completed	Piet Pompies			+15712799579		\N	2016-02-02 02:46:03.89187	\N	CAf978b9a2418957dab988e45981c71c0f	\N	1			0	inbound		\N	\N	\N	new lead		1	\N	\N	3827
2016-11-02 15:43:32.985398+00	2016-11-02 16:04:18.962351+00	2554	completed				+16787615333		1241	2016-11-02 15:43:32.983837	2016-11-02 16:04:13.737421	CA766d2bdf9cd85f7e6f82b94e36f0c091	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REa33006817da71ad922ea9e58770ab328	0	inbound	+18557240606	49	2.0189969539642334	null	new lead		1	\N	\N	3831
2017-08-31 13:31:19.134232+00	2017-08-31 13:37:02.168932+00	6213	completed				+16786986220		343	2017-08-31 13:31:19.132376	2017-08-31 13:37:02.146942	CAe2963aebf45f6f2614f441d147c900d0	\N	153			0	inbound	+17707665732	133	8.78438997268676758	\N	new lead		13	\N	\N	3833
2017-08-31 13:53:25.378571+00	2017-08-31 13:55:04.131589+00	6214	completed				+16786986220		99	2017-08-31 13:53:25.376046	2017-08-31 13:55:04.118962	CAc9ad0fe9b765e29c33cc9c17319a1abe	\N	153			0	inbound	+17707665732	133	16.955967903137207	\N	new lead		13	\N	\N	3833
2017-08-31 17:36:04.284512+00	2017-08-31 17:44:25.904918+00	6219	completed	Jkiesha 	Elder	Witnessmissy00@aol.com	+16786986220		145	2017-08-31 17:36:04.283254	2017-08-31 17:44:25.884944	CA99f93f9d247f387388f4ba36f8309776	e611622e-d408-4b1f-85fa-8cba4306b7ab	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REfb84d7681925151e54e8a694e4d0dfbf	3	outbound	+17704009016	\N	351.856596946716309	{}	new lead		13	\N	\N	3833
2017-09-01 13:11:50.838829+00	2017-09-01 13:14:37.290639+00	6231	completed	Jkiesha 	Elder		+16786986220		166	2017-09-01 13:11:50.836536	2017-09-01 13:14:37.269612	CA218fa884e310638bbdc39560c6784f19	\N	152			0	inbound	+17707665732	133	13.8435320854187012	\N	new lead		13	\N	\N	3833
2016-08-10 14:55:51.051813+00	2016-12-09 17:06:53.90578+00	1383	completed				+12156328595		224	2016-08-10 14:55:51.050617	2016-08-10 14:59:35.1801	CAd604e1e067083f46693ca29e79d1d01f	\N	21			0	inbound	+18558021330	\N	3.26786398887634277	null	new lead		3	\N	\N	3835
2017-07-26 17:38:06.073079+00	2017-07-26 17:42:45.595526+00	5855	completed				+16822467939		279	2017-07-26 17:38:06.071629	2017-07-26 17:42:44.94749	CA4231b8fd7fcb263a99f4b7973bffe7b3	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE618086addaec627421d689e07052d766	0	inbound	+18177569010	124	10.028947114944458	\N	new lead	jarvis sonya	12	\N	\N	3844
2017-07-26 17:37:28.931804+00	2017-08-17 14:35:21.045666+00	5854	completed				+16822467939		33	2017-07-26 17:37:28.930014	2017-07-26 17:38:02.303099	CAa8c55df01099cf630e8cb23221f697fb	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REed1bdfea76e1bad76561e2cca3c6c91f	0	inbound	+18177569010	124	5.40134787559509277	\N	new lead	jarvis sonya	12	\N	\N	3844
2017-12-11 18:29:54.342664+00	2017-12-11 18:41:00.92733+00	7786	missed	Rachael 	Mason	rachaelmason25@yahoo.com	+17708434139		0	2017-12-11 18:29:54.340734	2017-12-11 18:36:05.641395	CA23f5637feb7217690d77fb3ffb12d36a	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			3	outbound	+17704009016	\N	16.9549050331115723	{}	select status		13	\N	\N	3259
2017-12-11 18:39:51.023246+00	2017-12-11 18:41:01.878901+00	7787	completed	Rachael 	Mason	rachaelmason25@yahoo.com	+17708434139		71	2017-12-11 18:39:51.021281	2017-12-11 18:41:01.876397		\N	153			0	outbound	+17704009016	132	\N	\N	select status		13	\N	\N	3259
2017-03-15 20:26:51.451511+00	2017-11-29 18:31:18.808926+00	3454	missed				+17022097844		34	2017-03-15 20:26:51.446965	2017-03-15 20:27:25.123641	CAbc758a3238926109a7234c6cefa5d0e5	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REd9ae24800dacd21a8286e3601cecdae6	0	inbound	+18556311439	\N	\N	\N	new lead		1	\N	\N	3692
2016-09-17 16:03:53.614711+00	2016-12-09 17:06:53.905935+00	2037	completed				+12674710830		725	2016-09-17 16:03:53.613655	2016-09-17 16:15:58.132963	CAd83fa2aaff575d308bdecb3ee7290f4c	\N	21			0	inbound	+18558021330	\N	2.45840311050415039	null	new lead		3	\N	\N	3847
2016-09-17 16:03:05.440571+00	2016-12-09 17:06:53.905928+00	2036	completed				+12674710830		34	2016-09-17 16:03:05.437304	2016-09-17 16:03:39.763587	CAd35447cb85311e1e1fec53cf361d9c27	\N	21			0	inbound	+18558021330	\N	2.08675909042358398	null	new lead		3	\N	\N	3847
2016-11-02 18:41:34.249099+00	2016-11-02 18:48:48.602986+00	2583	completed				+18177331570		434	2016-11-02 18:41:34.247871	2016-11-02 18:48:48.10171	CA13660275672aa76c0dfbc8d6726ab55b	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REb404bf43076fb1910f1950855e3af4a9	0	inbound	+18557240606	49	1.48254084587097168	null	new lead		1	\N	\N	3852
2017-05-05 16:00:59.912569+00	2017-11-29 18:38:49.809882+00	4755	completed				+12145227461		74	2017-05-05 16:00:59.911049	2017-05-05 16:02:13.883912	CA14581e6a7dc9b38c6a8653c804614414	\N	125			0	inbound	+12147122250	\N	1.14200186729431152	\N	new lead	dallas  tx	9	\N	\N	3853
2017-05-05 16:02:18.500051+00	2017-11-29 18:38:49.809896+00	4757	completed				+12145227461		167	2017-05-05 16:02:18.497779	2017-05-05 16:05:05.112361	CAb365c5ef9d12bb6e3cf25fe2ad4adfe2	\N	\N			0	inbound	+12147122250	\N	1.24189186096191406	\N	new lead	john ridings lee	9	\N	\N	3853
2016-07-28 15:27:02.515144+00	2017-11-29 18:31:10.261695+00	995	completed	Carmen	Woody	woodycin@yahoo.com	+15133743199		44	2016-07-28 15:27:02.513346	2016-07-28 15:27:46.656645		\N	\N			0	outbound	+18556311490	\N	\N	null	new lead		1	\N	\N	3854
2016-07-28 15:22:13.972225+00	2017-01-27 21:12:23.812204+00	994	completed	Carmen	Woody	woodycin@yahoo.com	+15133743199		44	2016-07-28 15:22:13.970042	2016-07-28 15:23:10.852006	CA4961da5da2f8b842ba1664fb17c16f86	25d0200e-983d-4413-94ae-eb664b99711c	\N			1	outbound	+18556311490	\N	24.8373279571533203	{}	new lead		1	\N	\N	3854
2016-07-28 15:27:58.705608+00	2017-11-29 18:31:10.261711+00	996	completed	Carmen	Woody	woodycin@yahoo.com	+15133743199		121	2016-07-28 15:27:58.704603	2016-07-28 15:29:59.757288		\N	\N			0	outbound	+18556311490	\N	\N	null	new lead		1	\N	\N	3854
2017-12-21 23:47:33.622706+00	2017-12-22 00:15:41.663228+00	8062	completed				+18324908941		1685	2017-12-21 23:47:33.620472	2017-12-22 00:15:38.430105	CA07f92cc8200def31dccf87cee419a84b	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE69c7073ca1ce62830f07f1e3ffca6565	0	inbound	+18558645656	136	2.4154961109161377	\N	new lead		15	\N	\N	3856
2017-06-27 15:34:31.151811+00	2017-06-27 15:37:52.610826+00	5668	completed	Alesia	Kilgore	cak671@yahoo.com	+14702818489		188	2017-06-27 15:34:31.149764	2017-06-27 15:37:52.346611	CA9ad4f2653c246df4be6053190842beb2	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE1da87dfeb11557588822755b227f01d1	1	outbound	+17704009016	\N	12.3639547824859619	{}	new lead		13	\N	\N	3858
2017-07-01 00:30:17.764722+00	2017-07-01 00:30:17.816018+00	5701	missed	Charra	Kilgore	cak671@yahoo.com	+14702818489		\N	2017-07-01 00:30:17.763265	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	3858
2016-05-24 15:02:17.950546+00	2017-11-29 18:32:10.406393+00	190	completed	Unknown			+16103775348		33	2016-05-24 15:02:17.948695	2016-05-24 15:02:50.897959	CA9c860ec1312315a1f45cb76130f93685	\N	18		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE2a29bc8649168caa6c96fc438421d316	0	inbound	+18552791533	\N	8.54121708869934082	null	new lead		1	\N	\N	3861
2016-07-17 17:41:28.481313+00	2016-07-18 12:45:50.949965+00	885	completed	Serena	Risner	Stressedout_always@yahoo.com	+13303606915		\N	2016-07-17 17:41:28.480015	\N		ee869226-e246-4ab4-aaaa-e9403e2ddd39	\N			0	outbound	+18555983683	\N	\N	{}	new lead		1	\N	\N	3864
2016-06-25 20:25:58.071691+00	2016-06-27 12:25:41.615976+00	465	completed	Amanda	Nichols	amm9622@gmail.com	+18144107135		\N	2016-06-25 20:25:58.070212	\N		ee869226-e246-4ab4-aaaa-e9403e2ddd39	\N			0	outbound	+18555983683	\N	\N	{}	new lead		1	\N	\N	3866
2017-04-19 20:39:09.205503+00	2017-04-19 21:01:36.428472+00	4101	completed				+12142288253		1347	2017-04-19 20:39:09.203952	2017-04-19 21:01:36.406333	CAd27e555bf3daffbde404ccd870bfa8b0	\N	129			0	inbound	+18172104002	126	1320.0168731212616	\N	new lead	ewing kristin  	12	\N	\N	3867
2017-04-12 18:01:33.336051+00	2017-11-29 18:38:49.804592+00	3826	missed				+14012138082		29	2017-04-12 18:01:33.333315	2017-04-12 18:02:02.052442	CA6f1c0870946ee6a30c3f90c439103f4f	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	service	9	\N	\N	3868
2016-09-29 14:52:30.371125+00	2016-12-09 17:08:31.90882+00	2103	completed				+17708807847		258	2016-09-29 14:52:30.369433	2016-09-29 14:56:47.887067	CA8ab1d4a980579a3256fa1d0632428505	\N	67			0	inbound	+18552576059	\N	1.25797200202941895	null	new lead		3	\N	\N	3869
2017-03-09 18:15:51.813713+00	2017-11-29 18:47:25.067672+00	3363	completed				+18185963818		384	2017-03-09 18:15:51.812169	2017-03-09 18:22:15.658758	CA0b21c134263f03fc1c1704c26fdb323f	\N	84		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REa00ddb400acad77dcaab9bb20c137a0f	0	inbound	+19728330116	\N	\N	\N	new lead	canoga park  ca	8	\N	\N	3870
2016-08-21 18:47:34.138548+00	2016-08-22 11:53:21.980551+00	1635	missed	frankie	spencer	fspencer23.fs@gmail.com	+19372707399		\N	2016-08-21 18:47:34.137209	\N		253cd8e5-09ac-4056-92ec-7e351aa19233	\N			0	outbound	+18557824539	\N	\N	{}	application submitted - autopay		1	\N	\N	3873
2016-08-01 19:53:12.066006+00	2017-11-29 18:31:05.368924+00	1091	completed				+19372707399		245	2016-08-01 19:53:12.062812	2016-08-01 19:57:16.768418	CA622212767b82e9bafed37773bdaa7aab	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE2c3837aa4bac676452360f28389968ce	0	inbound	+18557824539	\N	9.00415205955505371	null	application submitted - autopay		1	\N	\N	3873
2016-11-01 23:35:25.136409+00	2016-11-01 23:35:25.162613+00	2523	missed	mark	maness	marksmaness@gmail.com	+18177149526		\N	2016-11-01 23:35:25.134886	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	3876
2017-08-03 21:20:42.528546+00	2017-08-03 21:21:31.272747+00	5929	completed	Corey	Kidd	cmk198531@gmail.com	+18643970636		38	2017-08-03 21:20:42.527057	2017-08-03 21:21:31.20478	CAf6db262c012a4b342f30e6efac6bd77a	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE219926e99dce5210a083e7be95757e97	1	outbound	+17704009016	\N	10.2364540100097656	{}	new lead		13	\N	\N	3883
2017-08-03 21:22:05.425051+00	2017-08-03 21:30:25.591605+00	5930	completed	Corey	Kidd		+18643970636		500	2017-08-03 21:22:05.423742	2017-08-03 21:30:25.588901	CA1e5e69dcee68dd870cd67604ae6aa734	\N	153			0	inbound	+17704009016	132	328.720196008682251	\N	new lead		13	\N	\N	3883
2016-08-08 13:42:50.165717+00	2016-12-10 01:01:54.351654+00	1316	completed				+17607058888		8	2016-08-08 13:42:50.164156	2016-08-08 13:42:57.980121	CA07d9d6cf2786ab6b58be125ca7333ef0	\N	49			0	inbound	+18559584242	\N	2.07885289192199707	null	new lead		3	\N	\N	3884
2017-04-11 12:37:35.046408+00	2017-11-29 18:31:10.26276+00	3777	completed	Vickie	Williams		+15137858796		95	2017-04-11 12:37:35.041005	2017-04-11 12:39:10.181195		\N	16			0	outbound	+18556311490	\N	\N	\N	general interest		1	\N	\N	2694
2016-08-24 14:44:56.829398+00	2016-12-09 17:07:45.331531+00	1700	completed				+17732909650		14	2016-08-24 14:44:56.828121	2016-08-24 14:45:11.017417	CA6ebe856d6b590b341f6a2730d695beed	\N	55			0	inbound	+18552467810	\N	3.62566590309143066	null	new lead		3	\N	\N	3742
2016-06-28 00:25:28.315061+00	2016-12-10 00:55:45.164841+00	563	completed	Unknown			+17732909650		36	2016-06-28 00:25:28.313733	2016-06-28 00:26:03.90645	CA9035a8a600e07962ee4cb98f2ff26602	\N	24			0	inbound	+18557129406	\N	1.66028809547424316	null	new lead		3	\N	\N	3742
2017-07-19 20:03:02.95043+00	2017-11-29 18:32:13.822043+00	5816	missed				+13303851337		23	2017-07-19 20:03:02.94791	2017-07-19 20:03:26.088017	CAd9cbe859b5c2c5cab421ab27334a9ce3	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE92a88c5fd1b9b97c7143699b119387ba	0	inbound	+18555983683	\N	\N	\N	new lead		1	\N	\N	3748
2017-07-21 16:06:44.511815+00	2017-11-29 18:32:13.82205+00	5827	missed				+13303851337		21	2017-07-21 16:06:44.510083	2017-07-21 16:07:05.408545	CA767a7416e41e6b9b7071e70552bd2d7c	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE414794b76d1449a294a4fc7cba2258b3	0	inbound	+18555983683	\N	\N	\N	new lead		1	\N	\N	3748
2017-05-30 23:41:35.273369+00	2017-11-29 18:38:49.814167+00	5518	completed				+14694046707		81	2017-05-30 23:41:35.269987	2017-05-30 23:42:56.011654	CAd87d5401c06f1444733294241ab523e5	\N	127			0	inbound	+12147122250	\N	2.00364089012145996	\N	new lead	cell phone   tx	9	\N	\N	3749
2017-05-30 23:42:50.135232+00	2017-11-29 18:38:49.814175+00	5519	completed				+14694046707		42	2017-05-30 23:42:50.133686	2017-05-30 23:43:31.830595	CA381427a95b875cc92863d6d62eb8444f	\N	105			0	inbound	+12147122250	\N	7.22835707664489746	\N	new lead	cell phone   tx	9	\N	\N	3749
2017-03-14 13:53:07.804447+00	2017-03-14 13:53:38.542902+00	3415	missed				+18037797300		31	2017-03-14 13:53:07.802319	2017-03-14 13:53:38.532941	CAaa9c8aaa5b935f3c97a9e4571a79c61a	\N	\N			0	inbound	+18036184106	123	\N	\N	new lead		10	\N	\N	3750
2016-06-03 14:22:00.065023+00	2017-11-29 18:31:10.260936+00	363	completed	Marbeth	Carmack		+15139482141		54	2016-06-03 14:22:00.063359	2016-06-03 14:22:54.139236	CAf19389a3f56ffdc0515f4b9e2679ce78	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE21b85f0b90a7213b82cec9e5db4d2fc4	0	inbound	+18556311490	\N	14.5878880023956299	null	new lead		1	\N	\N	3753
2017-06-21 21:25:58.203927+00	2017-06-24 13:44:45.085714+00	5626	completed	Angela	Graham	Mayberry9804@gmail.com	+17704804323		55	2017-06-21 21:25:58.201608	2017-06-21 21:27:05.096415	CAe2230147e73546a9e37e09f7b27259dc	0427608a-ae09-4db0-a1e8-374423ee28c3	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE4a89c72c411566243de8b8bf60d977e0	1	outbound	+17704009016	\N	11.11991286277771	{}	new lead		13	\N	\N	3887
2017-06-21 21:29:23.719935+00	2017-06-24 13:44:45.085721+00	5627	completed	Angela	Graham		+17704804323		194	2017-06-21 21:29:23.717608	2017-06-21 21:32:37.432992	CAc10f612d5f685877bbe137123d98df5c	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REd32f197275ed1690e41335ea374012aa	0	inbound	+17704009016	132	9.4008328914642334	\N	new lead		13	\N	\N	3887
2017-10-23 19:43:31.261814+00	2017-10-23 19:44:31.198568+00	6787	completed	William	Richey	Williamrichey678@yahoo.com	+17066149637		49	2017-10-23 19:43:31.259922	2017-10-23 19:44:30.997877	CAe16d7249d57bb9f0993ad769b3ea40c0	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE949fc818b61e04f3d6269d9287002b4d	1	outbound	+17704009016	\N	10.0066208839416504	{}	new lead		13	\N	\N	3888
2017-09-20 23:03:12.221523+00	2017-09-20 23:25:32.535366+00	6410	missed				+19032169977		36	2017-09-20 23:03:12.219672	2017-09-20 23:03:48.092104	CA27f67d8a0e9a6a6b2bb5303a21cc5948	\N	\N			0	inbound	+18177569010	124	1318.52113389968872	\N	new lead	cell phone   tx	12	\N	\N	3891
2017-09-21 14:13:15.053432+00	2017-09-21 14:36:30.675555+00	6415	missed				+19032169977		91	2017-09-21 14:13:15.051701	2017-09-21 14:14:46.40194	CA4beae0f15a60611edafd27dffba1216e	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE7bdd0d5ed3a687984032ed0828cc2df6	0	inbound	+18177569010	124	1373.89534401893616	\N	new lead	cell phone   tx	12	\N	\N	3891
2017-09-23 17:34:58.796824+00	2017-09-23 17:36:02.475731+00	6468	completed				+19032169977		63	2017-09-23 17:34:58.794838	2017-09-23 17:36:01.329408	CAc2933917e5bb08ae4ac94b0bd47f5e94	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE1d9efd59a9a339f20c8a384f3a1c9533	0	inbound	+18177569010	124	10.7119050025939941	\N	new lead	cell phone   tx	12	\N	\N	3891
2017-09-23 16:41:59.70972+00	2017-09-23 16:53:16.712208+00	6466	completed				+19032169977		676	2017-09-23 16:41:59.707913	2017-09-23 16:53:15.839902	CAf87a61d97ec577985529825756c49c37	\N	155		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REda2374441d91224fd21c448ef70f57ac	0	inbound	+18177569010	124	22.3531010150909424	\N	new lead	cell phone   tx	12	\N	\N	3891
2017-08-25 22:47:45.405776+00	2017-08-25 22:54:12.255107+00	6168	missed				+17069495914		55	2017-08-25 22:47:45.403577	2017-08-25 22:48:39.934065	CA5c7627ba08cb15d7e7fb2207fac76cfd	\N	\N			0	inbound	+17704009016	132	25.7445199489593506	\N	new lead		13	\N	\N	3894
2016-11-02 22:40:18.570991+00	2016-11-02 22:40:18.59973+00	2601	missed	Patricio	Armenta	Pat.armenta@hotmail.com	+16232931614		\N	2016-11-02 22:40:18.569817	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	3898
2016-11-16 16:02:27.084317+00	2016-12-10 01:01:00.200614+00	2916	missed				+18585411100		37	2016-11-16 16:02:27.082581	2016-11-16 16:03:04.15562	CA56affbc93b1f3a0b3d1829446d76e76c	\N	\N			0	inbound	+18557860909	\N	\N	null	new lead		3	\N	\N	3900
2017-11-08 17:51:06.350667+00	2017-11-08 17:52:34.097678+00	6978	completed	Oliver	Fuss	oliverfuss45@gmail.com	+17705474818		76	2017-11-08 17:51:06.349114	2017-11-08 17:52:32.822971	CA7d1c6914d6dd4fab3c618c8f09ee7d43	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REbb107e621139dc4f3739e14a11fa8d58	1	outbound	+17704009016	\N	10.53584885597229	{}	new lead		13	\N	\N	3901
2017-09-09 13:18:59.708222+00	2017-09-09 13:19:00.267657+00	6298	missed				+14049106377		1	2017-09-09 13:18:59.706041	2017-09-09 13:19:00.259794	CA155b2b4434ff122a6687298383efc8de	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	950
2017-12-12 18:45:53.018776+00	2017-12-12 18:46:10.264741+00	7819	completed				+17707497720		16	2017-12-12 18:45:53.017266	2017-12-12 18:46:09.151092	CA5bd2f1b275bd3e3716f62ed14423e9a1	\N	154		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REe86b50197d5939bd7168f1a89f470194	0	inbound	+17707665699	134	1.86167502403259277	\N	select status	atlanta  ga	13	\N	\N	1044
2017-08-08 03:12:03.162951+00	2017-11-29 18:47:25.068594+00	5961	missed				+19162568700		69	2017-08-08 03:12:03.161191	2017-08-08 03:13:12.573062	CA2e7bb3098f1bf05ef1caa301d4b974af	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE6321fceee072000368ce1b4d83e82c45	0	inbound	+19728330116	\N	\N	\N	new lead	lewis thurman	8	\N	\N	3763
2017-08-08 03:20:07.378134+00	2017-11-29 18:47:25.068601+00	5962	missed				+19162568700		79	2017-08-08 03:20:07.376015	2017-08-08 03:21:26.589467	CAb3a48bc055d5d9466e7811e47a2fd306	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE7a7c14b43d382a9b43de28bf7014a354	0	inbound	+19728330116	\N	\N	\N	new lead	lewis thurman	8	\N	\N	3763
2017-12-12 15:00:10.923483+00	2017-12-12 15:00:51.029076+00	7808	completed				+17065258865		39	2017-12-12 15:00:10.921689	2017-12-12 15:00:49.743167	CAeca418a14679d2b7cb787c40cb88b027	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE8339edf30cf1e56ed9ff9058e86b907d	0	inbound	+17707665732	133	11.0776679515838623	\N	new lead	cell phone   ga	13	\N	\N	3764
2017-11-28 16:26:13.022794+00	2017-11-28 16:32:38.009401+00	7360	missed				+17707666368		384	2017-11-28 16:26:13.021055	2017-11-28 16:32:36.683931	CAc4316af850b6cd4339b92e1f1d71211a	\N	\N			0	inbound	+17707665732	133	315.622922897338867	\N	new lead	atlanta  ga	13	\N	\N	3767
2016-06-28 16:35:44.905979+00	2016-06-28 17:38:29.38247+00	592	completed	CATHY	EWING	cewing@rothbros.com	+13302408056		0	2016-06-28 16:35:44.904697	2016-06-28 16:36:13.28798	CA14d7692fa03c62f94d87209437527c93	ee869226-e246-4ab4-aaaa-e9403e2ddd39	\N			1	outbound	+18555983683	\N	14.5234391689300537	{}	new lead		1	\N	\N	3770
2017-08-11 19:34:09.351065+00	2017-08-11 19:43:17.851813+00	5992	completed				+16786302951		547	2017-08-11 19:34:09.347536	2017-08-11 19:43:16.666729	CA87888edfe254b673b9f438bb2a0cf423	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE16cd8b91016924092ae6fd994928696d	0	inbound	+17704009016	132	396.049026966094971	\N	new lead		13	\N	\N	4059
2016-05-27 11:42:12.507527+00	2016-12-09 17:06:53.90562+00	253	missed	Unknown			+19315261880		14	2016-05-27 11:42:12.505221	2016-05-27 11:42:26.507199	CA9064dbde4eea9e3866fc0080b8db8570	\N	\N			0	inbound	+18558021330	\N	3.06512904167175293	null	new lead		3	\N	\N	3914
2017-06-18 18:22:36.183943+00	2017-06-18 18:22:51.382801+00	5603	missed				+16622427155		15	2017-06-18 18:22:36.179816	2017-06-18 18:22:51.30841	CA81d88158a44011805ad9e4befa592291	\N	\N			0	inbound	+17704009016	132	\N	\N	new lead		13	\N	\N	3917
2017-12-08 21:10:17.586457+00	2017-12-08 21:14:55.318327+00	7730	completed				+19567233977		276	2017-12-08 21:10:17.584124	2017-12-08 21:14:54.08188	CAd65a4c8f06762e8e6c028ea479e2c6a0	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REfa62f135599fd922488df258d84f23c7	0	inbound	+18558645656	136	3.51750898361206055	\N	new lead		15	\N	\N	3919
2017-03-22 18:12:26.354072+00	2017-11-29 18:38:53.212784+00	3544	completed				+12148813571		36	2017-03-22 18:12:26.352027	2017-03-22 18:13:02.472428	CAde59b69797ba8aa5836f242fd75ac10e	\N	105			0	inbound	+12146922088	\N	2.79432392120361328	\N	new lead	garza juan	9	\N	\N	3920
2017-03-20 22:13:20.048724+00	2017-11-29 18:38:53.212686+00	3515	completed				+12148813571		54	2017-03-20 22:13:20.046571	2017-03-20 22:14:14.206789	CA2725c617254e436288e4f2d6dd0533c8	\N	\N			0	inbound	+12146922088	\N	4.05406689643859863	\N	new lead		9	\N	\N	3920
2017-03-20 22:15:15.110661+00	2017-11-29 18:38:53.212693+00	3516	completed				+12148813571		301	2017-03-20 22:15:15.108349	2017-03-20 22:20:16.535128	CA6a3667a507626323acfc883e7a1e3dba	\N	107			0	inbound	+12146922088	\N	5.30310606956481934	\N	new lead		9	\N	\N	3920
2017-03-22 17:57:39.310866+00	2017-11-29 18:38:53.21277+00	3540	completed				+12148813571		50	2017-03-22 17:57:39.308444	2017-03-22 17:58:29.429095	CA304ed3c91c599452710a465feaf9e2ae	\N	\N			0	inbound	+12146922088	\N	4.96069002151489258	\N	new lead	garza juan	9	\N	\N	3920
2017-03-22 17:58:42.880605+00	2017-11-29 18:38:53.212777+00	3541	completed				+12148813571		55	2017-03-22 17:58:42.878347	2017-03-22 17:59:37.729972	CAff08fec9039147883a64a0a5d03a62de	\N	\N			0	inbound	+12146922088	\N	4.0426180362701416	\N	new lead	garza juan	9	\N	\N	3920
2017-12-07 14:08:38.559597+00	2017-12-07 14:09:03.295112+00	7676	missed				+17062639592		25	2017-12-07 14:08:38.557902	2017-12-07 14:09:03.282291	CA7ddd6eccf876a8732992176f252461a2	\N	\N			0	inbound	+17706597466	137	\N	\N	new lead		14	\N	\N	3923
2017-11-04 15:23:04.028871+00	2017-11-04 15:25:21.901883+00	6929	completed				+13253702410		138	2017-11-04 15:23:04.026824	2017-11-04 15:25:21.899704	CAbccb3757e951c0845c00879413a388fe	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REbe7be1a0954b47df5e3a43cb6dafc4bf	0	inbound	+18177569010	124	21.5331029891967773	\N	new lead	dunnam jamie	12	\N	\N	3929
2016-10-04 20:53:13.612913+00	2016-12-10 01:01:00.200121+00	2148	completed				+16197944943		184	2016-10-04 20:53:13.611251	2016-10-04 20:56:17.48496	CAd5d0729843dd70e31c94155b18c1064f	\N	57			0	inbound	+18557860909	\N	16.5741579532623291	null	new lead		3	\N	\N	3930
2017-10-13 16:03:18.120586+00	2017-10-13 16:05:34.578454+00	6690	completed				+13255134430		136	2017-10-13 16:03:18.118019	2017-10-13 16:05:34.02206	CAbbd41883670e8e3463b6a50aab699014	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE2b4d27e8f273791087c65deccd2022ca	0	inbound	+18177569010	124	20.481705904006958	\N	new lead	farias isaac	12	\N	\N	3935
2017-10-13 17:03:07.784224+00	2017-10-13 17:03:44.46124+00	6693	completed				+13255134430		36	2017-10-13 17:03:07.78208	2017-10-13 17:03:43.741919	CA6a7986b73b38ebd395a16d6f996917d6	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE0af4dafc306a7ed2bf44f5268f7bb1fd	0	inbound	+18177569010	124	6.88255715370178223	\N	new lead	farias isaac	12	\N	\N	3935
2017-07-22 21:24:42.882425+00	2017-07-22 21:30:09.75695+00	5835	completed				+18175350150		326	2017-07-22 21:24:42.880362	2017-07-22 21:30:08.649352	CA6d403125d0914048a3d39c6a021c4785	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE9656379245ff58b0995463281bb43e84	0	inbound	+18177569010	124	11.5359160900115967	\N	new lead	martin karen	12	\N	\N	3937
2017-12-12 22:08:24.618013+00	2017-12-12 23:26:47.833563+00	7830	missed	Melissa	Lawley	Melissalawley72@gmail.com	+16788580541		0	2017-12-12 22:08:24.616436	2017-12-12 22:14:17.499428	CA5f5b41089ae1646ea279fe76b37ee737	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			3	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	3511
2017-12-12 23:36:39.063754+00	2017-12-12 23:39:21.938466+00	7833	completed	Kayla	King	Kingkayla144@gmail.com	+17068099232		77	2017-12-12 23:36:39.06208	2017-12-12 23:38:18.362386	CA7b5691bea836bd638752a3fd0126bd7b	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REffde01de9de7770e01dd9a44d1617a9b	1	outbound	+17704009016	\N	21.8734169006347656	{}	select status		13	\N	\N	3529
2016-06-27 20:13:37.799748+00	2017-11-29 18:32:13.820639+00	547	completed	John	Cornelius		+17082147776		102	2016-06-27 20:13:37.798121	2016-06-27 20:15:20.228453	CA5a60f14fa21e0c23bcbe24107408cbe3	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REc7de310aad450959f4a8be095ed3cfa0	0	inbound	+18555983683	\N	2.56548380851745605	null	new lead		1	\N	\N	3787
2016-06-29 16:35:58.694324+00	2017-11-29 18:32:13.820928+00	649	completed	John	Cornelius		+17082147776		33	2016-06-29 16:35:58.69285	2016-06-29 16:36:31.748186	CA690d547e118d1290e1b2795b90e4e205	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REeb823768ef933161bbb98290ee13bef1	0	inbound	+18555983683	\N	14.0326719284057617	null	new lead		1	\N	\N	3787
2016-06-29 16:42:05.827477+00	2017-11-29 18:32:13.820935+00	651	completed	John	Cornelius		+17082147776		56	2016-06-29 16:42:05.826304	2016-06-29 16:43:01.654962	CA61b8b776be2e39de852eeb11029097e2	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE52a8e940e78fffae91b4215fc45cdf4a	0	inbound	+18555983683	\N	13.84368896484375	null	new lead		1	\N	\N	3787
2016-06-29 17:17:58.303998+00	2017-11-29 18:32:13.820942+00	653	completed	Unknown			+17082147776		55	2016-06-29 17:17:58.303123	2016-06-29 17:18:53.334052	CA418d26d5cc27cd5d7fef91b8a2914086	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE57c9b29241eb9a086dba1c306d22f6aa	0	inbound	+18555983683	\N	9.48920106887817383	null	new lead		1	\N	\N	3787
2017-07-22 12:11:29.468234+00	2017-07-22 12:11:36.298576+00	5830	missed				+16782279450		7	2017-07-22 12:11:29.466166	2017-07-22 12:11:36.290634	CAbb3e55e6164052701b1fe0ecf5b7489b	\N	\N			0	inbound	+17704009016	132	\N	\N	new lead		13	\N	\N	3790
2016-10-03 20:26:54.240258+00	2016-12-10 01:04:28.706392+00	2130	completed				+19095870316		51	2016-10-03 20:26:54.237881	2016-10-03 20:27:45.38508	CA03f9688e70aaa00b3cbb0815f4917276	\N	61			0	inbound	+18557579140	\N	1.07099699974060059	null	new lead		3	\N	\N	3792
2016-08-07 16:16:44.321434+00	2016-08-09 17:08:43.530706+00	1312	missed	Cole	Aufderheide	cwaufderheide@gmail.com	+15132180718		\N	2016-08-07 16:16:44.320049	\N		25d0200e-983d-4413-94ae-eb664b99711c	\N			0	outbound	+18556311490	\N	\N	{}	application submitted - autopay		1	\N	\N	3940
2016-08-18 15:21:20.764483+00	2017-11-29 18:31:10.262429+00	1579	completed	Cole	Aufderheide	cwaufderheide@gmail.com	+15132180718		84	2016-08-18 15:21:20.763173	2016-08-18 15:22:44.600406		\N	16			0	outbound	+18556311490	\N	\N	null	application submitted - autopay		1	\N	\N	3940
2017-06-24 17:26:40.749324+00	2017-06-24 17:34:11.738506+00	5650	completed				+17706865726		448	2017-06-24 17:26:40.747261	2017-06-24 17:34:08.397437	CA7f5a8ff8e8cc030bf9869373318a67de	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REab1933707128587bec8863f0a28fccad	0	inbound	+17704009016	132	16.4449059963226318	\N	new lead		13	\N	\N	3943
2017-10-17 14:36:16.524088+00	2017-10-17 14:38:18.121372+00	6729	completed				+18173533452		121	2017-10-17 14:36:16.520757	2017-10-17 14:38:17.746029	CAce48a9c848c23b9a62c413849b84746e	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REd6a81bbc3b2ced039c6f08533d40541f	0	inbound	+18177569010	124	89.7017970085144043	\N	new lead	and tree c	12	\N	\N	3944
2017-10-17 14:42:06.926813+00	2017-10-17 14:45:08.029287+00	6730	completed				+18173533452		180	2017-10-17 14:42:06.923861	2017-10-17 14:45:06.835224	CAd9b2bf8fe3d029ca1750caa4010c3d0a	\N	155		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE044998c05734aec4fa9bd45aeffa2d6d	0	inbound	+18177569010	124	25.7252168655395508	\N	new lead	and tree c	12	\N	\N	3944
2017-12-21 17:53:47.060386+00	2017-12-21 17:54:49.301746+00	8053	completed	Danny	Lee	DANNYLEE3938@YAHOO.COM	+14707767380		22	2017-12-21 17:53:47.058578	2017-12-21 17:54:26.915517	CA268505a443cc556945aab90adb5a229c	0427608a-ae09-4db0-a1e8-374423ee28c3	153			1	outbound	+17704009016	\N	17.3359260559082031	{}	new lead		13	\N	\N	3945
2017-11-22 20:03:09.72228+00	2017-11-22 20:13:22.309338+00	7178	completed				+14042018410		613	2017-11-22 20:03:09.719493	2017-11-22 20:13:22.305121	CA2058d37d23f968818752740d2a15e5d3	\N	150			0	inbound	+17704009016	132	320.240275859832764	\N	new lead		13	\N	\N	3946
2017-07-18 15:53:19.888357+00	2017-11-29 18:47:25.068537+00	5799	completed				+16016069399		133	2017-07-18 15:53:19.885776	2017-07-18 15:55:32.895148	CA640ead2a53c6cbb6171cda6c1d19f4a5	\N	115		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REc5f9d529965e31e0cc43b89a961f1622	0	inbound	+19728330116	\N	12.4038867950439453	\N	new lead	greer randall  	8	\N	\N	3947
2017-09-27 21:07:37.893507+00	2017-09-27 21:09:26.010572+00	6500	completed				+14697669610		107	2017-09-27 21:07:37.89141	2017-09-27 21:09:24.91729	CA1fb666b342603220ce66bdf465fab5df	\N	155		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE2332bd5fd12809b13329cb8cfd541d42	0	inbound	+18177569010	124	8.95850110054016113	\N	new lead	campbell keonta	12	\N	\N	3950
2016-10-27 19:44:08.865159+00	2016-12-09 17:08:44.542525+00	2361	completed				+16094486418		125	2016-10-27 19:44:08.862828	2016-10-27 19:46:14.206341	CA9a2210d8ab32dc46603eff0be4efd23f	\N	67			0	inbound	+18552199307	\N	0.809584856033325195	null	new lead		3	\N	\N	3951
2018-03-20 02:54:26.388088+00	2018-03-20 02:55:04.952268+00	8222	completed				+17739699892		35	2018-03-20 02:54:26.386812	2018-03-20 02:55:01.286255	CAcf857235da2060a770c4299152c1d94d	\N	15		https://buyercall-test-recordings.s3.amazonaws.com/Testing%20Group_4/8222_recording_5d351e53ae1e4652b946420cdab67bf0	0	inbound	+13367394103	150	14.9988689422607422	\N	new lead	chicago  il	4	\N	\N	3801
2018-03-20 02:56:20.776212+00	2018-03-20 02:56:51.427226+00	8223	completed				+17739699892		27	2018-03-20 02:56:20.775052	2018-03-20 02:56:47.716663	CA825a65bc44bc83d34c6b79ff08f359e1	\N	183		https://buyercall-test-recordings.s3.amazonaws.com/Testing%20Group_4/8223_recording_86a66056425c4289bbfd0f820ca454ae	0	inbound	+13367394103	150	11.0587949752807617	\N	new lead	chicago  il	4	\N	\N	3801
2017-06-26 20:15:43.613127+00	2017-06-26 20:19:07.650977+00	5665	completed				+14049338064		203	2017-06-26 20:15:43.611278	2017-06-26 20:19:06.941801	CA0a517b4a843610c4a83213cc99a5eb04	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE2df322aa388f61999ad6adb0cc621bd5	0	inbound	+17704009016	132	7.46607112884521484	\N	new lead		13	\N	\N	3952
2016-11-01 16:01:29.052855+00	2016-11-01 16:01:29.078499+00	2470	missed	Kimberly	Cooley	kcooley0707@comcast.net	+17708248199		\N	2016-11-01 16:01:29.051767	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	3954
2016-11-04 20:08:00.432634+00	2016-12-10 00:57:48.4619+00	2728	completed				+18057607531		172	2016-11-04 20:08:00.431575	2016-11-04 20:10:52.674302	CA5e91c57609ab1f7c82c1ee2171a13392	\N	30			0	inbound	+18559652184	\N	2.04838204383850098	null	new lead		3	\N	\N	3956
2016-05-31 19:18:38.971414+00	2017-11-29 18:31:10.260632+00	297	completed	Unknown			+15136336838		349	2016-05-31 19:18:38.969171	2016-05-31 19:24:27.919919	CAb28dd4da077b0ab1f358d371cf2660d6	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE1b48943dd6ac62571651c3616b148f7b	0	inbound	+18556311490	\N	4.24799299240112305	null	new lead		1	\N	\N	3957
2016-05-27 13:59:54.351657+00	2016-05-27 14:44:37.962545+00	257	completed	Wesley	Blalock	eye.cu22@hotmail.com	+15136336838		8	2016-05-27 13:59:54.350487	2016-05-27 14:00:15.727539	CA650977e86e9f750ffdf66ab6b063e5f2	25d0200e-983d-4413-94ae-eb664b99711c	\N			1	outbound	+18556311490	\N	10.2021260261535645	{}	new lead		1	\N	\N	3957
2016-05-31 18:23:01.658921+00	2016-05-31 18:24:39.552444+00	290	completed				+15136336838		93	2016-05-31 18:23:01.656399	2016-05-31 18:24:39.549988	CA34c2c7cc56d715b4e01a99984b5bad53	cd89e433-4bde-4f86-9b22-8f52c2413fcd	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE14ebba1fd9e599fba7773a5dc6b5d218	1	outbound	+18556311490	\N	1.55993390083312988	{}	new lead		1	\N	\N	3957
2016-05-31 19:15:38.104223+00	2016-05-31 19:16:55.540697+00	296	completed				+15136336838		74	2016-05-31 19:15:38.101867	2016-05-31 19:16:55.538414	CA60e710c883d257bb9e107e64d3cea2ab	cd89e433-4bde-4f86-9b22-8f52c2413fcd	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE9c83830a898dfaefa38aaa7a70fbe105	1	outbound	+18556311490	\N	1.35645198822021484	{}	new lead		1	\N	\N	3957
2016-06-01 13:14:04.396449+00	2016-06-01 13:15:30.89075+00	304	completed				+15136336838		81	2016-06-01 13:14:04.394592	2016-06-01 13:15:30.88973	CA97803d1a913cfcc212bc3760e0a10a19	cd89e433-4bde-4f86-9b22-8f52c2413fcd	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REe1f19cd523071b0e26ce01fa5c6391c9	1	outbound	+18556311490	\N	1.58433794975280762	{}	new lead		1	\N	\N	3957
2016-05-27 13:44:45.540514+00	2017-11-29 18:31:10.260519+00	256	completed	Unknown			+15136336838		919	2016-05-27 13:44:45.538969	2016-05-27 14:00:04.364601	CA09ce805ce7e2539fe449e62cb01893a9	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REaf70f20febc0b24abde46e2709924297	0	inbound	+18556311490	\N	5.34021615982055664	null	new lead		1	\N	\N	3957
2016-05-31 19:09:59.97402+00	2017-11-29 18:31:10.260615+00	295	completed	Unknown			+15136336838		37	2016-05-31 19:09:59.972783	2016-05-31 19:10:36.912682	CA7f8ba7fcf3d7f674a48fa0e90e4d7ac8	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REac9424a72d1e6a7fb3f981268626b111	0	inbound	+18556311490	\N	14.3208980560302734	null	new lead		1	\N	\N	3957
2016-06-01 13:41:14.087173+00	2017-11-29 18:31:10.260665+00	306	completed	Unknown			+15136336838		130	2016-06-01 13:41:14.085638	2016-06-01 13:43:23.73495	CA0cf71eebf811d75e814aeff2d188809e	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE5dac8d5483bd1bd638987fc10df7266d	0	inbound	+18556311490	\N	3.4988100528717041	null	new lead		1	\N	\N	3957
2017-05-01 17:56:39.393918+00	2017-11-29 18:38:49.808061+00	4523	completed				+12143754271		482	2017-05-01 17:56:39.390266	2017-05-01 18:04:41.410246	CAc30e3c16bc1a1ce8e475c4c2e08e1d8e	\N	105			0	inbound	+12147122250	\N	4.70559287071228027	\N	new lead	gsbc credit uni	9	\N	\N	3959
2018-05-08 20:28:40.082197+00	2018-05-08 20:28:53.818966+00	8246	completed				+17378742833		14	2018-05-08 20:28:40.079913	2018-05-08 20:28:53.816759	CA1d6b7ec831e0b436fcddc4d4c5acc3f0	\N	164			0	inbound	+13367394103	158	0.17222905158996582	\N	new lead		4	\N	\N	3960
2018-05-08 20:20:22.653593+00	2018-05-08 20:20:24.710566+00	8245	completed				+17378742833		2	2018-05-08 20:20:22.650881	2018-05-08 20:20:24.708549	CA09d4d87a0906592a79dde08e25e1845d	\N	164			0	inbound	+13367394103	158	0.265838146209716797	\N	new lead		4	\N	\N	3960
2018-05-09 09:15:10.584335+00	2018-05-09 09:15:23.929677+00	8247	completed				+17378742833		13	2018-05-09 09:15:10.582301	2018-05-09 09:15:23.927537	CA0109ed44f88d8fd77a2b194de9014bfd	\N	164			0	inbound	+13367394103	158	0.105619907379150391	\N	new lead		4	\N	\N	3960
2016-10-13 17:25:40.763888+00	2016-12-10 00:57:48.461838+00	2287	completed				+18056446990		315	2016-10-13 17:25:40.761956	2016-10-13 17:30:56.151027	CA5de57fa91c18e6d11f648a98c18b55aa	\N	30			0	inbound	+18559652184	\N	2.37945199012756348	null	new lead		3	\N	\N	3961
2017-08-17 19:02:28.212088+00	2017-08-17 19:04:41.894034+00	6077	completed				+18004928377		134	2017-08-17 19:02:28.209917	2017-08-17 19:04:41.882167	CA196f96e782f90884c37667709a518415	\N	150			0	inbound	+17707665732	133	11.0637729167938232	\N	new lead		13	\N	\N	3966
2017-08-17 19:02:23.578691+00	2017-08-17 19:07:59.589766+00	6076	completed				+18004928377		336	2017-08-17 19:02:23.576484	2017-08-17 19:07:59.583711	CA4f7b4cc48ef5363a92974508849b5b5c	\N	153			0	inbound	+17707665732	133	308.865067958831787	\N	new lead		13	\N	\N	3966
2017-07-08 14:25:09.724387+00	2017-07-08 14:26:31.966665+00	5735	completed				+14692314591		81	2017-07-08 14:25:09.722568	2017-07-08 14:26:30.849652	CA1b557fde28f7c886bdd9c425526fa65d	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE48388f3f86457498601680f6fbb92396	0	inbound	+18177569010	124	8.19934701919555664	\N	new lead	perez gabriel	12	\N	\N	3973
2017-10-09 20:22:57.485608+00	2017-10-09 20:24:05.355984+00	6635	completed				+14047342471		67	2017-10-09 20:22:57.483082	2017-10-09 20:24:04.840518	CAc9b378d383ad229a91f6f6158a17cf88	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE86c83b68fbac02644c47e6a335470977	0	inbound	+17704009016	132	14.035973072052002	\N	new lead		13	\N	\N	3974
2017-08-26 15:13:20.221897+00	2017-08-26 15:13:47.630078+00	6175	completed				+19178252042		27	2017-08-26 15:13:20.219912	2017-08-26 15:13:46.916485	CAf53bf5ad5ad455ea9c95c419283cdcb6	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REa2415fccdf9d0cb2936edb03d5b56fb9	0	inbound	+17704009016	132	13.5979909896850586	\N	new lead		13	\N	\N	3975
2017-03-29 21:20:51.070286+00	2017-11-29 18:38:53.213134+00	3625	completed				+19183612505		86	2017-03-29 21:20:51.068389	2017-03-29 21:22:17.548261	CAe98ac9c0db63d8dcf045aeb2860353bf	\N	\N			0	inbound	+12146922088	\N	4.27970600128173828	\N	new lead	aery stephen   	9	\N	\N	3980
2017-12-27 15:13:16.608587+00	2017-12-27 15:24:08.542658+00	8119	completed	paul	foster	sfoster_53@yahoo.com	+18172293853		648	2017-12-27 15:13:16.607258	2017-12-27 15:24:08.540594	CAaaf1fce91480ecf1aa62d48395aebf6e	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.79606103897094727	{}	new lead		15	\N	\N	3981
2017-09-01 12:37:44.508113+00	2017-09-01 12:37:59.225259+00	6230	missed	Jkiesha 	Elder		+16786986220		15	2017-09-01 12:37:44.506322	2017-09-01 12:37:59.208353	CA57cdd84f0b86b2155c43aa4213aa0a4d	\N	\N			0	inbound	+17707665732	133	\N	\N	new lead		13	\N	\N	3833
2017-09-02 13:14:39.799149+00	2017-09-02 13:20:11.022237+00	6240	missed	Jkiesha 	Elder		+16786986220		1	2017-09-02 13:14:39.796682	2017-09-02 13:14:41.15558	CA2ad1ae8672c9565e1ed7e0c907f22f16	\N	\N			0	inbound	+17707665732	133	\N	\N	new lead		13	\N	\N	3833
2017-06-30 01:30:02.802619+00	2017-06-30 01:30:02.883777+00	5688	missed	Andros	King	androsllking@gmail.com	+16783824561		\N	2017-06-30 01:30:02.800335	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	3836
2017-08-02 23:11:41.867473+00	2017-08-17 14:35:21.045702+00	5923	completed				+18174485776		263	2017-08-02 23:11:41.86459	2017-08-02 23:16:05.088092	CA54b498d741656b993f8b3419644a156e	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE81b88fd3acce45e4352f235d7bd1ed2a	0	inbound	+18177569010	124	5.41532206535339355	\N	new lead	hernandez jose	12	\N	\N	3837
2017-12-07 14:14:57.970448+00	2017-12-07 14:18:19.704198+00	7677	completed				+16824297066		201	2017-12-07 14:14:57.968711	2017-12-07 14:18:18.971324	CAc525584d218750def3050a80f6e9ccd6	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REadfe527c5d1996bc0bb834418c5bf90d	0	inbound	+18177569010	124	10.3071930408477783	\N	new lead	swayne erik	12	\N	\N	3986
2017-11-15 21:54:03.633798+00	2017-11-15 21:57:42.575088+00	7071	completed	Michael	Cosby	Mike416@uga.edu	+17066146358		199	2017-11-15 21:54:03.631565	2017-11-15 21:57:42.528664	CAfd649477f289de7aa83b9b0cf5894a34	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REabfeb28f3557a2e5357759361fdb9090	1	outbound	+17704009016	\N	17.7639529705047607	{}	new lead		13	\N	\N	3987
2017-04-12 17:54:31.813196+00	2017-11-29 18:32:01.935524+00	3820	completed				+13148245205		16	2017-04-12 17:54:31.809513	2017-04-12 17:54:48.269675		\N	16			0	outbound	+18556311513	\N	\N	\N	do not contact		1	\N	\N	3988
2017-04-12 17:16:41.475111+00	2017-11-29 18:32:01.935516+00	3817	missed	Juday	Alverez		+13148245205		37	2017-04-12 17:16:41.473272	2017-04-12 17:17:18.095872	CAc0e205e3b4f5305e2a41202d3ba4c690	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REd6639c60891c904e61e42115a9ec3d2b	0	inbound	+18556311513	\N	\N	\N	do not contact		1	\N	\N	3988
2017-08-22 13:38:44.228963+00	2017-08-22 13:45:36.152434+00	6131	completed	Almono	Martin	almonomartin9@gmail.com	+17064241269		49	2017-08-22 13:38:44.227555	2017-08-22 13:45:36.067949	CA0cd53b303720ac4b389d9059a4960238	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE39856669c0f08fffccdd7281697eccb4	3	outbound	+17704009016	\N	358.899318933486938	{}	new lead		13	\N	\N	3991
2017-08-22 14:05:48.935424+00	2017-08-22 14:08:25.150673+00	6132	completed	Almono	Martin		+17064241269		155	2017-08-22 14:05:48.933705	2017-08-22 14:08:23.969849	CA15dd3b2b6e2c69738965bfb5d0675c2a	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE7bba60efeceef4f78a41ee1488e5ec46	0	inbound	+17704009016	132	16.7881979942321777	\N	new lead		13	\N	\N	3991
2017-08-23 19:39:48.751869+00	2017-08-23 19:43:52.579825+00	6147	completed	Almono	Martin		+17064241269		243	2017-08-23 19:39:48.750152	2017-08-23 19:43:51.909286	CAdfa6408175feab8df0eb790b08233feb	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE7fda5f1dc7d364711e46758ad7e66423	0	inbound	+17704009016	132	12.5707550048828125	\N	new lead		13	\N	\N	3991
2016-08-08 18:57:12.298395+00	2016-08-08 18:57:19.700534+00	1336	missed				+18606176244		7	2016-08-08 18:57:12.296831	2016-08-08 18:57:19.699022	CA132baf17cd6eee3bbef21b2078e52b10	\N	\N			0	inbound	+18557240606	49	\N	null	new lead		1	\N	\N	3992
2017-12-05 22:18:08.854892+00	2017-12-05 22:20:23.055895+00	7613	completed				+18176029622		133	2017-12-05 22:18:08.853209	2017-12-05 22:20:21.876964	CA5f1bbd1538f7cef3901f7d4680d4ba70	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REf319c6ee1cdb12a754c2cf652cbf7e5c	0	inbound	+18177569010	124	10.275576114654541	\N	new lead	debouse diana	12	\N	\N	3996
2017-03-27 16:57:13.679505+00	2017-11-29 18:38:53.212986+00	3590	completed				+19292567196		126	2017-03-27 16:57:13.677649	2017-03-27 16:59:20.045807	CAa2b39f48843f82cbb54d1aadf5a47cb2	\N	107			0	inbound	+12146922088	\N	3.57924890518188477	\N	new lead	manhattan  ny	9	\N	\N	3999
2017-05-02 17:53:51.698478+00	2017-11-29 18:38:49.808688+00	4581	completed				+19165673000		78	2017-05-02 17:53:51.696487	2017-05-02 17:55:09.360738	CA268c58eeaf4f40b8f668e73ed5cb6507	\N	125			0	inbound	+12147122250	\N	1.24594783782958984	\N	new lead	diamond auto	9	\N	\N	4002
2017-05-02 17:55:03.385702+00	2017-11-29 18:38:49.808699+00	4582	completed				+19165673000		246	2017-05-02 17:55:03.383566	2017-05-02 17:59:08.963244	CA08d9e6d8a61cfa42b5c804ee85ee60a1	\N	\N			0	inbound	+12147122250	\N	7.92907309532165527	\N	new lead	diamond auto	9	\N	\N	4002
2017-05-03 20:31:18.34387+00	2017-11-29 18:38:49.809458+00	4663	completed				+19165673000		42	2017-05-03 20:31:18.342644	2017-05-03 20:32:00.4159	CAf2f7c040f734ef583f31fd7a3aa347db	\N	125			0	inbound	+12147122250	\N	1.34997415542602539	\N	new lead	diamond auto	9	\N	\N	4002
2017-05-03 20:31:56.004265+00	2017-11-29 18:38:49.809465+00	4664	completed				+19165673000		43	2017-05-03 20:31:56.002729	2017-05-03 20:32:38.881163	CA019362e6dc5a15b54dfb61a273d68675	\N	105			0	inbound	+12147122250	\N	7.74073004722595215	\N	new lead	diamond auto	9	\N	\N	4002
2017-05-03 21:14:30.288039+00	2017-11-29 18:38:49.809479+00	4666	completed				+19165673000		51	2017-05-03 21:14:30.284488	2017-05-03 21:15:21.585501	CA0b76cdbada8d9c741d58fc38ebfc4ffe	\N	125			0	inbound	+12147122250	\N	1.2868349552154541	\N	new lead	diamond autospo	9	\N	\N	4002
2016-08-15 18:57:48.32263+00	2017-01-27 21:12:23.81325+00	1506	completed				+16613719372		89	2016-08-15 18:57:48.321424	2016-08-15 18:59:17.182572		\N	\N			0	outbound	+18555343978	48	\N	null	application started		1	\N	\N	4004
2016-08-13 22:22:46.244353+00	2017-11-29 18:31:37.368925+00	1477	missed				+16613719372		50	2016-08-13 22:22:46.242658	2016-08-13 22:23:35.77182	CA3a19f0940b7f8ee209d826f294e48854	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REd009f1435af52417e156eb54d5aa9fe0	0	inbound	+18555472453	\N	\N	null	application started		1	\N	\N	4004
2016-08-17 17:04:01.902123+00	2016-08-17 17:05:00.37423+00	1558	missed	Dennis	Hamill	dennishamill@yahoo.com	+16613719372		\N	2016-08-17 17:04:01.901075	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application started		1	\N	\N	4004
2017-11-05 23:10:48.544436+00	2017-11-05 23:10:48.603012+00	6941	missed	Alaina	Bowen	alainabrenee@gmail.com	+17064918203		\N	2017-11-05 23:10:48.542813	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	4009
2017-07-08 23:50:11.058731+00	2017-07-08 23:50:11.11167+00	5739	missed	Terrence	Walker	Walkerterrence912@gmail.com	+17324853601		\N	2017-07-08 23:50:11.057086	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	4011
2017-11-28 15:34:47.073944+00	2017-11-28 15:41:32.234027+00	7357	missed				+10000000000		13	2017-11-28 15:34:47.071553	2017-11-28 15:35:00.091129	CAa34733ae7ccc588280cbea684a9b0f9c	\N	\N			0	inbound	+17704009016	132	336.735640048980713	\N	new lead		13	\N	\N	4012
2017-11-29 19:44:40.473733+00	2017-11-29 19:51:25.235793+00	7398	missed				+10000000000		13	2017-11-29 19:44:40.471467	2017-11-29 19:44:53.2342	CA2ce57435760be1c0a63c743b96213fc6	\N	\N			0	inbound	+17704009016	132	322.627470970153809	\N	new lead		13	\N	\N	4012
2016-05-25 16:39:10.028191+00	2016-05-25 16:40:19.472534+00	208	completed				+15135284643		65	2016-05-25 16:39:10.026974	2016-05-25 16:40:19.47031	CA3a098aada950bdbfe882971893f1d834	cd89e433-4bde-4f86-9b22-8f52c2413fcd	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE23b543d2d65db7138f51fd2d54ca4b01	1	outbound	+18556311490	\N	1.46973013877868652	{}	new lead		1	\N	\N	4015
2017-12-14 04:28:31.837672+00	2017-12-14 04:29:53.750209+00	7858	completed	David	Ring	dlring98@yahoo.com	+15132310820		78	2017-12-14 04:28:31.836038	2017-12-14 04:29:53.749069	CA4d0297f9dc152d2e67234fb66383dd6a	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.17690515518188477	{}	new lead		15	\N	\N	972
2017-03-13 16:47:56.543288+00	2017-11-29 18:38:53.212104+00	3395	completed				+14322519661		158	2017-03-13 16:47:56.540602	2017-03-13 16:50:34.388296	CA12e8619695c1b77f6aedb7eadbb33f49	\N	107			0	inbound	+12146922088	\N	8.69167208671569824	\N	new lead	allen eddy     	9	\N	\N	3879
2016-08-17 21:29:51.740789+00	2017-01-27 21:12:23.813428+00	1567	missed				+19372637132		73	2016-08-17 21:29:51.739193	2016-08-17 21:31:04.245597		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	3881
2016-08-23 21:52:09.652397+00	2017-01-27 21:12:23.813651+00	1686	completed				+19372637132		48	2016-08-23 21:52:09.649967	2016-08-23 21:52:57.795147		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	3881
2016-07-25 20:06:32.107012+00	2017-11-29 18:31:05.368889+00	940	missed				+19372637132		38	2016-07-25 20:06:32.10536	2016-07-25 20:07:10.177004	CA860f2a1b1f28f336694fbb04238d5ee7	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REc8bec825189165a6d409c19eab64a620	0	inbound	+18557824539	\N	24.7771039009094238	null	general interest		1	\N	\N	3881
2016-08-01 19:57:41.25008+00	2017-11-29 18:31:05.368931+00	1092	completed				+19372637132		18	2016-08-01 19:57:41.249059	2016-08-01 19:57:59.606262	CAe5e1b14c2ebb89c998421ed5eebc13fc	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE942a44657c82b6bb491c5eeecf5b9318	0	inbound	+18557824539	\N	3.63250422477722168	null	general interest		1	\N	\N	3881
2016-11-11 18:37:26.165581+00	2016-11-11 18:39:37.057457+00	2865	completed				+19369319410		130	2016-11-11 18:37:26.164008	2016-11-11 18:39:36.409362	CA6087f0b5f289b1ca66bf73eb4c8d6e40	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE3a68c1a4c3a35ffc049e8b551c2d1483	0	inbound	+18557240606	49	1.98542499542236328	null	new lead		1	\N	\N	3882
2016-05-20 21:29:32.910537+00	2017-11-29 18:31:10.260247+00	145	completed	Unknown			+15135284643		16	2016-05-20 21:29:32.908852	2016-05-20 21:29:48.542473	CA94a4ef98633a9fcb1527217d78c1db54	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE865b4634381081937a416a7f987a5a0f	0	inbound	+18556311490	\N	\N	null	new lead		1	\N	\N	4015
2017-11-02 17:16:18.432747+00	2017-11-02 17:20:43.540162+00	6904	completed				+12149809338		264	2017-11-02 17:16:18.430605	2017-11-02 17:20:42.673591	CA6952660cb57a3d4445b8ffe9f3c3850d	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE98f53a2f9a597bc06f372e69f0db8ad1	0	inbound	+18177569010	124	71.7703020572662354	\N	new lead	hoard ann	12	\N	\N	4017
2017-12-04 15:03:59.428339+00	2017-12-04 15:08:37.492846+00	7529	completed				+16824720953		277	2017-12-04 15:03:59.425282	2017-12-04 15:08:36.435615	CAe2c48ac3cab8b65e182f265af137000b	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE845412b121e17bb15012dacf3ade85a0	0	inbound	+18177569010	124	9.92634201049804688	\N	new lead	wright randall	12	\N	\N	4020
2017-03-17 21:05:19.586362+00	2017-11-29 18:47:25.067799+00	3479	completed				+18172987897		58	2017-03-17 21:05:19.584031	2017-03-17 21:06:17.938293	CA6ffb964cf30fdf1d770925443340ff66	\N	117		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REfc3fe9427cb5cd2fcefc05a805c2abc7	0	inbound	+19728330116	\N	19.7958548069000244	\N	new lead	dallas  tx	8	\N	\N	4021
2017-12-04 17:49:34.321885+00	2017-12-04 17:50:32.192044+00	7546	completed				+14043977024		57	2017-12-04 17:49:34.319645	2017-12-04 17:50:30.843755	CA64bce9164ba2d86e97b18e9a16aea980	\N	157		https://api.twilio.com/2010-04-01/Accounts/ACbd7756819f4882feb347788ad7959655/Recordings/REa5786d1d47e0449109e79984fb2a94a8	0	inbound	+17706597466	137	7.05967593193054199	\N	new lead		14	\N	\N	4022
2017-12-30 16:25:11.289244+00	2017-12-30 16:26:14.475548+00	8161	completed				+18176946717		62	2017-12-30 16:25:11.286967	2017-12-30 16:26:13.313854	CAbc73fb28f0ec16434832ef85ea098de7	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REa27af62793f39458578d5886c9aa4ca4	0	inbound	+18177569010	124	12.863839864730835	\N	new lead	parker hannifin	12	\N	\N	4028
2017-08-22 16:19:22.18284+00	2017-08-22 16:41:02.883184+00	6135	missed				+18177566367		1300	2017-08-22 16:19:22.180048	2017-08-22 16:41:02.644953	CAff610854669b26c1198785222ef23b18	\N	\N			0	inbound	+18177569010	124	1283.04315495491028	\N	new lead	dallas  tx	12	\N	\N	4034
2017-11-27 15:27:56.36321+00	2017-11-27 15:28:41.37009+00	7333	completed				+18172300700		44	2017-11-27 15:27:56.360552	2017-11-27 15:28:40.723778	CAbf925a6352d08e7bf93cc1a724f4364b	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE383e448308e35c11e89291791316866b	0	inbound	+18177569010	124	7.76046395301818848	\N	new lead	d r horton	12	\N	\N	4036
2017-01-18 22:53:10.428841+00	2017-11-29 18:32:01.935495+00	3127	missed				+12529458667		9	2017-01-18 22:53:10.427018	2017-01-18 22:53:19.893682	CAad309b10cc3e8663bb5ab9db11388fa1	\N	\N			0	inbound	+18556311513	\N	1.95223498344421387	null	new lead		1	\N	\N	4037
2016-09-07 20:03:14.626054+00	2016-12-10 01:01:51.440849+00	1945	completed				+16196188602		38	2016-09-07 20:03:14.623126	2016-09-07 20:03:52.885573	CAbdc28a655fe63a0bcc161201c7d345a2	\N	50			0	inbound	+18559693782	\N	2.14086508750915527	null	new lead		3	\N	\N	4040
2016-09-07 20:04:02.026886+00	2016-12-10 01:01:51.440856+00	1946	completed				+16196188602		482	2016-09-07 20:04:02.025951	2016-09-07 20:12:03.891667	CAaed6ca7ff14eb7c74335119a87c113c4	\N	50			0	inbound	+18559693782	\N	2.10465598106384277	null	new lead		3	\N	\N	4040
2017-06-23 17:26:14.266902+00	2017-06-24 13:44:45.085774+00	5641	completed				+17709051462		48	2017-06-23 17:26:14.264076	2017-06-23 17:27:02.058474	CA972abfb0ca503e63c3fe4c721668ddf1	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE34734a59ddb2b428b727f49bbfe21dec	0	inbound	+17704009016	132	7.97162890434265137	\N	new lead		13	\N	\N	4043
2017-05-20 21:48:17.268351+00	2017-11-29 18:38:49.812435+00	5257	completed				+12144970181		36	2017-05-20 21:48:17.26658	2017-05-20 21:48:53.593314	CAe88ae95be9fc05dd3c91100d9e0f2ed9	\N	\N			0	inbound	+12147122250	\N	7.01296401023864746	\N	new lead	turney kimberly	9	\N	\N	4045
2017-05-20 21:49:04.342171+00	2017-11-29 18:38:49.812442+00	5258	completed				+12144970181		91	2017-05-20 21:49:04.339531	2017-05-20 21:50:35.732769	CAdcea1f6997c7a67aee73dda2c2589f29	\N	\N			0	inbound	+12147122250	\N	5.1188359260559082	\N	new lead	turney kimberly	9	\N	\N	4045
2016-10-05 14:31:59.960494+00	2016-11-09 15:46:59.235312+00	2161	completed				+13027922212		119	2016-10-05 14:31:59.958816	2016-10-05 14:33:58.80627	CA9d2fd4835be3edf336fc3f006f0661ed	\N	43			0	inbound	+18556279610	\N	2.25224995613098145	null	new lead		3	\N	\N	4049
2017-11-25 18:27:35.394435+00	2017-11-25 18:27:35.614257+00	7302	missed				+17702978700		0	2017-11-25 18:27:35.393186	2017-11-25 18:27:35.60469	CA6f9c99b1fce34834e55ec3bf754983b2	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2016-08-03 02:04:25.524094+00	2016-08-03 13:10:17.340167+00	1164	missed	Alan	Stansbery	alan.stansbery@sbcglobal.net	+16612211692		\N	2016-08-03 02:04:25.522985	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - credit union		1	\N	\N	3908
2017-04-19 14:54:06.106765+00	2017-11-29 18:38:53.214248+00	4084	completed				+12147169177		20	2017-04-19 14:54:06.104116	2017-04-19 14:54:26.196306	CA2996c352c0f426d01fdebabbdc1a3b94	\N	105			0	inbound	+12146922088	\N	5.85414314270019531	\N	new lead	solis jorge	9	\N	\N	3909
2016-08-03 05:25:34.316312+00	2016-08-03 13:09:50.314633+00	1166	missed	Kylie	Bullock	kcollubk@hotmail.com	+16613493086		\N	2016-08-03 05:25:34.315055	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - credit union		1	\N	\N	3910
2016-07-14 17:37:28.864736+00	2017-11-29 18:32:13.821481+00	871	completed				+13303220804		261	2016-07-14 17:37:28.862679	2016-07-14 17:41:49.990702	CAfc07c65f7ae2049f80376450f21cff27	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE7365a197b84f5853637dfdd6ac5d9808	0	inbound	+18555983683	\N	15.7751719951629639	null	do not contact		1	\N	\N	3911
2016-08-17 22:18:19.031155+00	2017-01-27 21:12:23.813456+00	1571	completed	Catlin	Labote		+13303220804		48	2016-08-17 22:18:19.029143	2016-08-17 22:19:06.970475		\N	\N			0	outbound	+18555343978	48	\N	null	do not contact		1	\N	\N	3911
2016-08-25 17:13:19.663235+00	2017-01-27 21:12:23.813771+00	1775	completed	Catlin	Labonte		+13303220804		56	2016-08-25 17:13:19.661883	2016-08-25 17:14:16.125295		\N	\N			0	outbound	+18555343978	48	\N	null	do not contact		1	\N	\N	3911
2016-09-07 18:14:35.267258+00	2016-12-10 01:01:51.440828+00	1932	missed				+16195200766		0	2016-09-07 18:14:35.266221	2016-09-07 18:14:35.499577	CA7ea7761f3d06bbc3f6bc4e7271b85c7c	\N	\N			0	inbound	+18559693782	\N	\N	null	new lead		3	\N	\N	3916
2016-09-07 18:14:34.38477+00	2016-12-10 01:01:51.440821+00	1931	missed				+16195200766		0	2016-09-07 18:14:34.383854	2016-09-07 18:14:34.625373	CA3e4079d1c5f3ee91e7b28efd36a979c5	\N	\N			0	inbound	+18559693782	\N	\N	null	new lead		3	\N	\N	3916
2017-05-05 16:28:41.913185+00	2017-11-29 18:38:49.809938+00	4763	completed				+19728003004		89	2017-05-05 16:28:41.91136	2017-05-05 16:30:10.760268	CA5c0933ac3d12cf4a44dd52966524f549	\N	125			0	inbound	+12147122250	\N	1.43040108680725098	\N	new lead	jallah ivor    	9	\N	\N	3918
2016-07-12 15:57:07.638822+00	2017-11-29 18:31:56.600125+00	854	missed				+15708249546		9	2016-07-12 15:57:07.637804	2016-07-12 15:57:16.854182	CAb987e7dad0be766cdc8022bf2e25e265	\N	\N			0	inbound	+18556311397	\N	\N	null	new lead		1	\N	\N	4050
2016-08-08 15:08:49.00599+00	2017-01-27 21:12:23.812825+00	1327	completed				+15708249546		103	2016-08-08 15:08:49.004998	2016-08-08 15:10:31.830213		\N	\N			0	outbound	+18555343978	48	\N	null	new lead		1	\N	\N	4050
2017-11-03 16:39:39.610215+00	2017-11-03 16:40:56.985872+00	6918	completed				+19202064473		76	2017-11-03 16:39:39.60801	2017-11-03 16:40:55.76327	CA7cd52394d3144783def889f275d3486a	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE43c187cf82e8727dad62dcd56c0087eb	0	inbound	+18177569010	124	34.5179398059844971	\N	new lead	bethesda luther	12	\N	\N	4051
2017-04-20 20:56:18.38911+00	2017-11-29 18:47:25.068186+00	4161	completed				+14693741103		142	2017-04-20 20:56:18.387283	2017-04-20 20:58:40.264539	CAac61e409b0b6e66e163317a61cc9bee4	\N	118		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE92ffc27e1315cea6ba5e1ad03f3b291b	0	inbound	+19728330116	\N	24.2151150703430176	\N	new lead	miguel estrada	8	\N	\N	4052
2016-07-02 01:17:28.180191+00	2016-07-05 12:16:41.147065+00	736	completed	Tenisha 	Mack	nisharonniyah@yahoo.com	+12168575463		\N	2016-07-02 01:17:28.178879	\N		ea8e48b7-042e-42ec-8dde-d03bf75a9bad	\N			0	outbound	+18556311350	\N	\N	{}	new lead		1	\N	\N	4055
2017-12-08 16:21:06.57696+00	2017-12-08 16:38:42.549437+00	7715	completed				+18172628351		1053	2017-12-08 16:21:06.574802	2017-12-08 16:38:39.080641	CA0f28fefc4ea561273d56b4fa5c9f5590	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REc03984609932bde857b23b05272de32a	0	inbound	+18558645656	136	2.5363919734954834	\N	new lead		15	\N	\N	4057
2016-08-24 22:24:45.471122+00	2016-12-10 01:01:00.199775+00	1754	completed				+16193730032		141	2016-08-24 22:24:45.469389	2016-08-24 22:27:06.902253	CAb469aab9ef80a0717b330845ebd0fcb5	\N	57			0	inbound	+18557860909	\N	18.6274349689483643	null	new lead		3	\N	\N	4058
2016-09-07 17:08:12.868687+00	2016-12-10 01:04:42.413643+00	1913	missed				+19096932585		0	2016-09-07 17:08:12.867726	2016-09-07 17:08:13.123072	CA1c16e55f81580bd4f47e87d532a4a2a6	\N	\N			0	inbound	+18552187903	\N	\N	null	new lead		3	\N	\N	4063
2016-09-07 17:08:30.789533+00	2016-12-10 01:04:42.41365+00	1914	missed				+19096932585		0	2016-09-07 17:08:30.787993	2016-09-07 17:08:30.992061	CA7639c99d318e0ed1ab5f36268f830a29	\N	\N			0	inbound	+18552187903	\N	\N	null	new lead		3	\N	\N	4063
2016-09-07 17:08:31.534457+00	2016-12-10 01:04:42.413657+00	1915	missed				+19096932585		0	2016-09-07 17:08:31.533485	2016-09-07 17:08:31.812458	CA557e960535de0984ab868f855eab9325	\N	\N			0	inbound	+18552187903	\N	\N	null	new lead		3	\N	\N	4063
2016-11-01 19:07:06.956903+00	2016-11-01 19:14:57.084098+00	2491	completed				+18172299040		469	2016-11-01 19:07:06.955252	2016-11-01 19:14:55.652995	CA1b58a99fdab108c355229cee2453a1c8	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REd20f9c830668806b4382d7de065ea8e4	0	inbound	+18557240606	49	1.79472804069519043	null	new lead		1	\N	\N	4064
2016-11-09 16:16:11.813307+00	2016-11-09 16:20:27.907233+00	2818	completed				+18172299040		255	2016-11-09 16:16:11.811626	2016-11-09 16:20:27.136783	CA28a26207c1634945dc464a57c2382de2	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE247079fc0d748b65a24259698d1f15bc	0	inbound	+18557240606	49	2.24103808403015137	null	new lead		1	\N	\N	4064
2016-11-09 16:20:36.251135+00	2016-11-09 16:40:58.029869+00	2819	completed				+18172299040		1219	2016-11-09 16:20:36.250037	2016-11-09 16:40:55.02256	CAe647c1441646621ca0235d42935af468	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REc4b7321c028001c066808facf98cc61e	0	inbound	+18557240606	49	2.49385714530944824	null	new lead		1	\N	\N	4064
2016-11-03 22:12:49.405451+00	2017-01-27 21:12:23.813939+00	2666	completed				+18172299040		113	2016-11-03 22:12:49.402019	2016-11-03 22:14:42.860788		\N	\N			0	outbound	+18557240606	49	\N	null	new lead		1	\N	\N	4064
2017-12-14 23:53:26.194265+00	2017-12-15 15:04:14.782377+00	7884	missed				+17702408888		392	2017-12-14 23:53:26.192256	2017-12-14 23:59:58.35728	CA7d32653803b80f93f8cf1b5b8e30566c	\N	\N			0	inbound	+17704009016	132	320.435317039489746	\N	select status	kpmg llp	13	\N	\N	2787
2016-07-20 12:17:11.84503+00	2016-12-10 00:55:45.164933+00	900	missed				+16102873244		10	2016-07-20 12:17:11.842324	2016-07-20 12:17:21.572726	CAcbc9e6439713a8994f981fcdf6b12e2b	\N	\N			0	inbound	+18557129406	\N	\N	null	new lead		3	\N	\N	3939
2017-12-21 17:54:49.02304+00	2017-12-21 17:56:38.651588+00	8054	completed	Danny	Lee	DANNYLEE3938@YAHOO.COM	+14707767380		110	2017-12-21 17:54:49.021272	2017-12-21 17:56:38.649409		\N	153			0	outbound	+17704009016	132	\N	\N	new lead		13	\N	\N	3945
2016-11-04 15:26:56.90023+00	2017-01-27 21:12:23.81396+00	2691	completed				+18172299040		112	2016-11-04 15:26:56.898474	2016-11-04 15:28:49.27614		\N	\N			0	outbound	+18555343978	48	\N	null	new lead		1	\N	\N	4064
2017-03-07 02:17:12.139766+00	2017-11-29 18:47:25.06763+00	3333	missed				+12149244365		31	2017-03-07 02:17:12.136135	2017-03-07 02:17:42.695368	CA3c51630304a8a843889f6359948e3312	\N	\N			0	inbound	+19728330116	\N	1302.52778100967407	\N	new lead	k and sons expr	8	\N	\N	4065
2017-04-19 14:19:17.023139+00	2017-11-29 18:38:49.805688+00	4083	completed				+13185700030		74	2017-04-19 14:19:17.020807	2017-04-19 14:20:31.251571	CAb3a5c57d5bccc6da53ecb3219d0cb810	\N	105			0	inbound	+12147122250	\N	17.7303569316864014	\N	new lead	monroe  la	9	\N	\N	4066
2017-04-19 15:41:57.40414+00	2017-11-29 18:38:49.80571+00	4088	completed				+13185700030		583	2017-04-19 15:41:57.401604	2017-04-19 15:51:40.191483	CA02d75c66fa2c5d2eebbf5fe41f837249	\N	\N			0	inbound	+12147122250	\N	5.0569911003112793	\N	new lead	monroe  la	9	\N	\N	4066
2016-10-19 15:02:11.767714+00	2016-12-10 01:01:04.035868+00	2316	missed				+18182558705		37	2016-10-19 15:02:11.765942	2016-10-19 15:02:48.781859	CAe562f2f46aad2e7c4373f7b947b8cb28	\N	\N			0	inbound	+18559652047	\N	\N	null	new lead		3	\N	\N	4069
2016-10-19 15:03:10.779874+00	2016-12-10 01:01:04.035896+00	2317	missed				+18182558705		37	2016-10-19 15:03:10.778022	2016-10-19 15:03:47.609397	CA788ba94243a1a88eb9b7ac77c603804d	\N	\N			0	inbound	+18559652047	\N	\N	null	new lead		3	\N	\N	4069
2016-10-19 17:36:04.891321+00	2016-12-10 01:01:04.035905+00	2318	completed				+18182558705		317	2016-10-19 17:36:04.889708	2016-10-19 17:41:21.607764	CA77bc103885310ab3ef9ca8e7afa5f08b	\N	57			0	inbound	+18559652047	\N	6.01504898071289062	null	new lead		3	\N	\N	4069
2017-04-26 19:48:25.129188+00	2017-11-29 18:47:25.068334+00	4337	completed				+14692866192		143	2017-04-26 19:48:25.12699	2017-04-26 19:50:48.306198	CAb4f7a93a7c3df73deeedeb7aa5a1b7e4	\N	83		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REdedf64ec4797d70a85d27a8e8dbdf429	0	inbound	+19728330116	\N	6.36017704010009766	\N	new lead	huynh lyhuong	8	\N	\N	4072
2017-04-06 19:04:25.126381+00	2017-08-17 14:35:21.044966+00	3706	completed				+18177662481		1312	2017-04-06 19:04:25.124507	2017-04-06 19:26:16.995248	CA3ac89d3ce5b9b4562b476521cde8abe8	\N	\N			0	inbound	+18177569010	124	1280.43217897415161	\N	new lead	dallas  tx	12	\N	\N	4073
2017-05-11 23:01:00.199635+00	2017-08-17 14:35:21.045176+00	5023	completed				+18177978036		294	2017-05-11 23:01:00.195517	2017-05-11 23:05:54.014933	CAf150ec076ffd1480d6cbf898e24a7334	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE1f2cc2b6c583be8b430fa82a77b2f070	0	inbound	+18177569010	124	6.35040998458862305	\N	new lead	carol black	12	\N	\N	4075
2017-05-17 21:29:57.666239+00	2017-11-29 18:38:49.812118+00	5177	completed				+12147787355		65	2017-05-17 21:29:57.664204	2017-05-17 21:31:02.771732	CA50a5d7042e94cd94e5dc30250ace4cfa	\N	125			0	inbound	+12147122250	\N	2.05229496955871582	\N	new lead	chaney benny	9	\N	\N	4077
2017-04-21 16:49:26.260713+00	2017-11-29 18:38:49.806138+00	4179	completed				+12147787355		70	2017-04-21 16:49:26.258097	2017-04-21 16:50:36.512733	CA2e3ba25123c7340f72e5a14a9dcce70a	\N	124			0	inbound	+12147122250	\N	1.26352906227111816	\N	new lead	chaney benny	9	\N	\N	4077
2017-04-21 16:51:02.358713+00	2017-11-29 18:38:49.806146+00	4180	completed				+12147787355		85	2017-04-21 16:51:02.356147	2017-04-21 16:52:27.564143	CAa3b6ac4d1fc24c973d1361c93b7eeffc	\N	127			0	inbound	+12147122250	\N	0.968347072601318359	\N	new lead	chaney benny	9	\N	\N	4077
2017-04-21 16:52:22.580533+00	2017-11-29 18:38:49.806152+00	4181	completed				+12147787355		93	2017-04-21 16:52:22.578863	2017-04-21 16:53:55.923419	CA12af6a73e08df877918b530cae22dca9	\N	125			0	inbound	+12147122250	\N	1.06506896018981934	\N	new lead	chaney benny	9	\N	\N	4077
2017-04-21 17:11:07.184304+00	2017-11-29 18:38:49.806181+00	4186	completed				+12147787355		42	2017-04-21 17:11:07.183241	2017-04-21 17:11:49.677643	CA99314e383d7f6746bcc86daabce3fe31	\N	125			0	inbound	+12147122250	\N	1.0259709358215332	\N	new lead	chaney benny	9	\N	\N	4077
2017-04-27 19:58:41.617514+00	2017-11-29 18:38:49.807116+00	4391	completed				+12147787355		70	2017-04-27 19:58:41.615156	2017-04-27 19:59:51.42445	CAf7752e57e61decdd84f7b0a11ec48656	\N	124			0	inbound	+12147122250	\N	1.25456500053405762	\N	new lead	chaney benny	9	\N	\N	4077
2017-05-17 21:50:55.286556+00	2017-11-29 18:38:49.812125+00	5178	completed				+12147787355		83	2017-05-17 21:50:55.284138	2017-05-17 21:52:18.12249	CA165e019a420afcedbb390b7662552959	\N	107			0	inbound	+12147122250	\N	5.75848603248596191	\N	new lead	chaney benny	9	\N	\N	4077
2016-05-25 18:20:27.115273+00	2016-05-25 18:20:47.468802+00	223	completed				+19196213378		15	2016-05-25 18:20:27.114278	2016-05-25 18:20:47.467902	CAf929b1051da62e4e8f611c3ca1cedfe7	8f30d55b-8601-40b9-9d7f-11bfe29c5449	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE7c35d23e9e8cd84681b45a28a14bcd55	1	outbound	+18555472453	\N	1.7447209358215332	{}	new lead		1	\N	\N	4078
2016-05-22 16:51:42.586601+00	2017-11-29 18:31:37.368151+00	160	completed	Unknown			+19196213378		317	2016-05-22 16:51:42.584286	2016-05-22 16:57:00.073036	CA5007c1e79708347678d3b831f969cc9c	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE5d97bea9a80cba697ce99ea9c46eb26c	0	inbound	+18555472453	\N	\N	null	new lead		1	\N	\N	4078
2017-04-04 21:51:32.159906+00	2017-11-29 18:31:18.808954+00	3690	completed				+18136040019		37	2017-04-04 21:51:32.158443	2017-04-04 21:52:09.616813		\N	16			0	outbound	+18556311439	\N	\N	\N	do not contact		1	\N	\N	4079
2017-04-04 21:46:08.741821+00	2017-11-29 18:31:18.808947+00	3687	completed				+18136040019		41	2017-04-04 21:46:08.739775	2017-04-04 21:46:49.428997		\N	16			0	outbound	+18556311439	\N	\N	\N	do not contact		1	\N	\N	4079
2017-03-29 18:59:58.893357+00	2017-11-29 18:31:18.80894+00	3622	missed				+18136040019		18	2017-03-29 18:59:58.891441	2017-03-29 19:00:17.109908	CA67ebe5edc1a9f2049b878feaf80ed683	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE4f67617bd6bdda29683de5ac9902b4f1	0	inbound	+18556311439	\N	\N	\N	do not contact		1	\N	\N	4079
2017-09-23 17:19:29.549058+00	2017-09-23 17:21:01.91789+00	6467	completed				+16303067212		91	2017-09-23 17:19:29.547002	2017-09-23 17:21:00.801181	CA79d3b1e51ae06ad4a535770d14b5943a	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REaa43c717bb5dc8105970d47f411494be	0	inbound	+18177569010	124	6.48934197425842285	\N	new lead	kesireddy madhu	12	\N	\N	4080
2016-11-03 23:02:10.601855+00	2016-11-03 23:02:10.635317+00	2676	missed	Misty	Pinke	mpinke1@yahoo.com	+19035704469		\N	2016-11-03 23:02:10.600773	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	4082
2016-07-29 17:48:17.30242+00	2016-07-29 17:49:24.792255+00	1036	completed				+13307572787		64	2016-07-29 17:48:17.300455	2016-07-29 17:49:24.791051	CA00efb4f2de7c69bd1ec520bad2480a71	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	2.7289421558380127	{}	new lead		1	\N	\N	4084
2016-07-29 18:34:42.312706+00	2016-07-29 18:44:38.440189+00	1041	completed				+13307572787		593	2016-07-29 18:34:42.311175	2016-07-29 18:44:38.438785	CAcc4cc2af45a3f87f8b55492a653e974d	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	2.63279199600219727	{}	new lead		1	\N	\N	4084
2016-07-29 16:44:29.578501+00	2017-11-29 18:32:13.821613+00	1033	completed				+13307572787		178	2016-07-29 16:44:29.577556	2016-07-29 16:47:27.833021	CA147c02444d2877b8303fe1fee0f24850	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REb6a3a67e9cb0786cc0b29017a0944505	0	inbound	+18555983683	\N	9.68851494789123535	null	new lead		1	\N	\N	4084
2016-05-31 20:48:14.272199+00	2017-11-29 18:31:05.368859+00	300	completed	Unknown			+16463554438		328	2016-05-31 20:48:14.268628	2016-05-31 20:53:42.021142	CAf873435309dbf2aeca5b4da816800323	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REb7366e5fe032b4a568b05ce981c73f40	0	inbound	+18557824539	\N	14.4934530258178711	null	new lead		1	\N	\N	3962
2016-08-03 13:43:03.555661+00	2016-12-10 00:55:45.165045+00	1167	completed				+16107050657		180	2016-08-03 13:43:03.553823	2016-08-03 13:46:03.086835	CA20b4e9e5ba85c9ddd756071f6eaaf57b	\N	24			0	inbound	+18557129406	\N	1.63684201240539551	null	new lead		3	\N	\N	3965
2016-07-29 17:19:41.080941+00	2017-11-29 18:32:13.82162+00	1034	completed				+13307572787		44	2016-07-29 17:19:41.079915	2016-07-29 17:20:24.897708	CA0ae34087d9bd587ad2d8e40875438224	\N	18		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE7a509f25aa801c21a63084fd52c2eb63	0	inbound	+18555983683	\N	24.3035790920257568	null	new lead		1	\N	\N	4084
2016-07-29 17:22:38.461743+00	2017-11-29 18:32:13.821627+00	1035	completed				+13307572787		84	2016-07-29 17:22:38.460491	2016-07-29 17:24:02.411662	CA0371788b9ebf153a7e03abc31bdc980b	\N	17		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REe2719613e5f710ae9984d48a659ad506	0	inbound	+18555983683	\N	21.9703350067138672	null	new lead		1	\N	\N	4084
2017-09-13 19:44:42.975939+00	2017-09-13 19:45:41.914457+00	6337	completed				+19125840759		59	2017-09-13 19:44:42.973445	2017-09-13 19:45:41.897638	CAf6161ddcb3aae2bbac50eee123f2df5b	\N	153			0	inbound	+17707665732	133	11.4945590496063232	\N	new lead		13	\N	\N	4085
2017-09-05 18:54:17.842849+00	2017-09-05 19:05:10.360072+00	6260	completed				+19125840759		653	2017-09-05 18:54:17.840987	2017-09-05 19:05:10.356316	CA9cd1fbd2014fe5ee7d3e9ecd592a701e	\N	152			0	inbound	+17707665732	133	380.591744899749756	\N	new lead		13	\N	\N	4085
2017-09-05 18:46:49.475889+00	2017-09-05 18:53:29.764513+00	6259	missed				+19125840759		69	2017-09-05 18:46:49.47388	2017-09-05 18:47:58.336751	CA3c861904d7dcd18d868d59ffccb63206	\N	\N			0	inbound	+17707665732	133	\N	\N	new lead		13	\N	\N	4085
2017-09-05 20:44:11.277099+00	2017-09-05 20:51:40.792859+00	6265	completed				+19125840759		450	2017-09-05 20:44:11.274625	2017-09-05 20:51:40.790011	CAc2202a05e1b564d78cf67ab78dd93d6d	\N	152			0	inbound	+17707665732	133	382.581105947494507	\N	new lead		13	\N	\N	4085
2016-10-29 23:18:35.645487+00	2016-10-29 23:18:35.676042+00	2372	missed	William	Luznar	wdluznar1@gmail.com	+18178001954		\N	2016-10-29 23:18:35.64431	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	4087
2017-04-20 20:01:16.326369+00	2017-11-29 18:38:53.214326+00	4153	completed				+18174219420		378	2017-04-20 20:01:16.324448	2017-04-20 20:07:33.890885	CA5fa8bba9029acd1e8f3e806b0ef8dd68	\N	99			0	inbound	+12146922088	\N	11.4356520175933838	\N	new lead	weiler eric    	9	\N	\N	4088
2016-11-02 14:47:42.398881+00	2016-11-02 14:50:50.113031+00	2546	completed				+14045363884		183	2016-11-02 14:47:42.396736	2016-11-02 14:50:45.800467	CAccf1d26ddd475ecf8faa6279a382335a	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REc5f5b148b2287835f5569a2a511f0373	0	inbound	+18557240606	49	1.87349677085876465	null	new lead		1	\N	\N	4091
2016-11-02 14:50:54.239991+00	2016-11-02 14:56:42.96238+00	2547	completed				+14045363884		348	2016-11-02 14:50:54.238957	2016-11-02 14:56:42.262274	CA74bd8621480bc68d8380c18d039c391f	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REe83ec4fb9eee853fcb201fb594505174	0	inbound	+18557240606	49	1.90398192405700684	null	new lead		1	\N	\N	4091
2016-11-02 15:59:27.107704+00	2016-11-02 15:59:27.127944+00	2559	missed	VENKATA	TIPPARAJU	st04989@gmail.com	+14045363884		\N	2016-11-02 15:59:27.106752	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	4091
2017-04-27 22:20:21.093996+00	2017-11-29 18:38:53.214724+00	4413	completed				+12148938313		200	2017-04-27 22:20:21.09105	2017-04-27 22:23:40.677569	CAb65af8bdcb42dea7ee7516e83e2986c3	\N	\N			0	inbound	+12146922088	\N	8.93167901039123535	\N	new lead	hood michael   	9	\N	\N	4093
2017-05-05 18:43:47.795878+00	2017-11-29 18:38:49.810037+00	4774	completed				+16078821055		110	2017-05-05 18:43:47.793589	2017-05-05 18:45:37.597726	CAe44f097d44b212fae96555c8a314203e	\N	127			0	inbound	+12147122250	\N	1.83212900161743164	\N	new lead	semidey laiza  	9	\N	\N	4094
2017-12-15 15:52:05.806305+00	2017-12-15 16:12:37.107524+00	7891	completed	Christina	Butler	tinaabutler1954@icloud.com	+18623336017		1225	2017-12-15 15:52:05.804826	2017-12-15 16:12:37.106225	CA48b075d097bb11799cf24d493494a999	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.67707014083862305	{}	new lead		15	\N	\N	4102
2016-08-01 22:42:39.712539+00	2017-11-29 18:31:37.368366+00	1102	missed				+16619174074		16	2016-08-01 22:42:39.710933	2016-08-01 22:42:55.98873	CA4f88a48692eaa153c6c5a0d799cc8f49	\N	\N			0	inbound	+18555472453	\N	\N	null	general interest		1	\N	\N	4106
2016-08-06 00:03:57.982436+00	2016-08-08 14:02:26.170765+00	1297	missed				+16619174074		13	2016-08-06 00:03:57.979313	2016-08-06 00:04:11.3884	CAf9b076b868d4763f5df87745be647033	\N	\N			0	inbound	+18555343978	48	\N	null	general interest		1	\N	\N	4106
2016-08-06 00:05:30.45221+00	2016-08-08 14:02:26.170773+00	1298	missed				+16619174074		15	2016-08-06 00:05:30.451039	2016-08-06 00:05:45.207381	CA828e6804c2989dc78b4aaba1a180aeab	\N	\N			0	inbound	+18555343978	48	\N	null	general interest		1	\N	\N	4106
2016-08-05 21:45:11.505084+00	2017-01-27 21:12:23.812763+00	1292	completed				+16619174074		108	2016-08-05 21:45:11.504171	2016-08-05 21:46:59.788598		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	4106
2016-08-17 16:22:01.660615+00	2017-01-27 21:12:23.813372+00	1554	completed				+16619174074		98	2016-08-17 16:22:01.659738	2016-08-17 16:23:39.371835		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	4106
2016-08-06 00:13:46.01005+00	2016-08-08 14:02:26.152162+00	1300	missed				+16619174074		8	2016-08-06 00:13:46.008985	2016-08-06 00:13:54.140269	CA1ea508126d27b72e4d02e72e400e3ea8	\N	\N			0	inbound	+18555343978	48	\N	null	general interest		1	\N	\N	4106
2016-08-08 13:58:17.447515+00	2017-01-27 21:12:23.812784+00	1318	completed				+16619174074		195	2016-08-08 13:58:17.445501	2016-08-08 14:01:32.527975		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	4106
2016-08-09 19:34:24.239611+00	2017-01-27 21:12:23.812986+00	1366	completed				+16619174074		94	2016-08-09 19:34:24.238434	2016-08-09 19:35:57.809384		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	4106
2017-12-06 15:58:30.629396+00	2017-12-06 16:00:35.324346+00	7632	completed				+17708659117		124	2017-12-06 15:58:30.627972	2017-12-06 16:00:34.666284	CAc69c6ab78f888102772c3c62fc60a3e3	\N	157		https://api.twilio.com/2010-04-01/Accounts/ACbd7756819f4882feb347788ad7959655/Recordings/RE37a17cf2f794363ba3ccf83072a21aee	0	inbound	+17706597466	137	7.76586508750915527	\N	new lead		14	\N	\N	4107
2017-11-07 01:42:15.362985+00	2017-11-07 01:42:15.414677+00	6956	missed	Tiffani	Perry	tiffani81perry@gmail.com	+17069412214		\N	2017-11-07 01:42:15.36149	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	4108
2017-09-18 16:02:31.920253+00	2017-09-18 16:05:35.851619+00	6389	completed				+18178841814		183	2017-09-18 16:02:31.918188	2017-09-18 16:05:34.679538	CA9d1119f15e0cb38bddb0a61594c4c36c	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE9a7b16f60d6b94e69f98804c39f2448c	0	inbound	+18177569010	124	14.5558629035949707	\N	new lead	fort worth  tx	12	\N	\N	4113
2017-08-25 21:03:42.958886+00	2017-08-25 21:05:17.628648+00	6166	completed				+14698447525		94	2017-08-25 21:03:42.957152	2017-08-25 21:05:16.496349	CA9e56e6fc146e156bf015496c1c0a885f	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE44c0c0f7eeab6c21655c6f0101483516	0	inbound	+18177569010	124	21.5318090915679932	\N	new lead	dallas  tx	12	\N	\N	4114
2017-06-13 17:29:58.687809+00	2017-06-13 17:33:40.114407+00	5580	completed				+14794623497		220	2017-06-13 17:29:58.685276	2017-06-13 17:33:39.010772	CA2529825e64f410ca3eb88aa24bdd5419	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REaa4e7c994517c544e1bb475bfd542dff	0	inbound	+18177569010	124	12.8825249671936035	\N	new lead	wireless caller	12	\N	\N	4116
2017-12-16 00:27:35.260443+00	2017-12-16 00:27:35.322095+00	7919	missed	Rachael	Mason	rachaelmason25@yahoo.com	+17708434139		\N	2017-12-16 00:27:35.258663	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	3259
2016-08-17 16:50:53.828968+00	2017-01-27 21:12:23.813386+00	1556	completed				+16613719372		785	2016-08-17 16:50:53.826851	2016-08-17 17:03:59.190373	CAd45012e44b15d69d40fcc25e96f3a3b1	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REd0d4985934da2999fd00e8b9868cbff1	0	inbound	+18555343978	48	7.17605304718017578	null	application started		1	\N	\N	4004
2017-12-29 03:15:42.403807+00	2017-12-29 03:15:42.460183+00	8144	missed	Miranda	Minter	miranda.minter@pwipartners.com	+17062978108		\N	2017-12-29 03:15:42.402348	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	4005
2017-06-13 17:28:21.472302+00	2017-08-17 14:35:21.045449+00	5579	completed				+14794623497		49	2017-06-13 17:28:21.469837	2017-06-13 17:29:10.547515	CAe33c8bf358e91b0032c6da81bf0c189d	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE0c10a01c25860462f73b5c0e99f2c57e	0	inbound	+18177569010	124	8.09102201461791992	\N	new lead	wireless caller	12	\N	\N	4116
2017-08-05 18:46:26.173088+00	2017-08-05 18:50:46.835191+00	5939	completed	Chandler	Hughes	hughes.chandler13@yahoo.com	+14705120113		251	2017-08-05 18:46:26.171439	2017-08-05 18:50:46.617374	CAb644ab5ad315f2d458fffe5b791178b7	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REffdbc6bc32e1fbfac9f91b447b530078	1	outbound	+17704009016	\N	9.22553801536560059	{}	new lead		13	\N	\N	4119
2017-12-04 16:31:07.620571+00	2017-12-04 16:56:37.478511+00	7537	completed				+18152383376		1527	2017-12-04 16:31:07.618782	2017-12-04 16:56:34.644332	CA6e2926d643893289efe1618729906b2a	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REae3892baea062974fb7940619d12b6b9	0	inbound	+18558645656	136	2.96102094650268555	\N	new lead		15	\N	\N	4120
2017-05-10 15:14:30.984497+00	2017-11-29 18:38:53.215555+00	4949	completed				+12603520528		56	2017-05-10 15:14:30.982539	2017-05-10 15:15:26.900578	CAffb26dac2aaff96c2dfedd3e698893d4	\N	107		https://api.twilio.com/2010-04-01/Accounts/AC5422b9b221417a7a84556a92f6edc492/Recordings/RE492674d5bd7e986ad8244a092ae40500	0	inbound	+12146922088	\N	4.72496199607849121	\N	new lead	prater alice   	9	\N	\N	4122
2016-09-03 19:40:34.837709+00	2017-01-27 21:12:23.813827+00	1876	completed				+15133283852		113	2016-09-03 19:40:34.835402	2016-09-03 19:42:27.949472		\N	\N			0	outbound	+18555343978	48	\N	null	application submitted - autopay		1	\N	\N	4124
2016-09-03 20:17:25.210384+00	2016-09-07 17:37:42.920086+00	1878	missed	Donald	Fite	rancherd721@yahoo.com	+15133283852		\N	2016-09-03 20:17:25.209382	\N		25d0200e-983d-4413-94ae-eb664b99711c	\N			0	outbound	+18556311490	\N	\N	{}	application submitted - autopay		1	\N	\N	4124
2016-09-03 19:43:10.73895+00	2017-01-27 21:12:23.813834+00	1877	completed	Donald 	fite		+15133283852		973	2016-09-03 19:43:10.737721	2016-09-03 19:59:23.944895		\N	\N			0	outbound	+18555343978	48	\N	null	application submitted - autopay		1	\N	\N	4124
2016-09-03 15:11:40.370236+00	2017-11-29 18:31:10.262582+00	1870	missed				+15133283852		41	2016-09-03 15:11:40.368793	2016-09-03 15:12:21.672809	CA31b2f3d6879cc74ab169fb8c686a3538	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE21d8cf292e73b846d1f80401f66efa7c	0	inbound	+18556311490	\N	\N	null	application submitted - autopay		1	\N	\N	4124
2017-12-08 20:20:00.583635+00	2017-12-08 20:21:22.138396+00	7724	completed				+17082075421		81	2017-12-08 20:20:00.581992	2017-12-08 20:21:21.841704	CAf37868906cb8f1cd32d9541b97082327	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REf670d8b1f78221176d92aaa6fd3801e0	0	inbound	+18558645656	136	2.37867116928100586	\N	new lead		15	\N	\N	4125
2017-12-08 20:21:42.687565+00	2017-12-08 20:27:03.185084+00	7725	completed				+17082075421		319	2017-12-08 20:21:42.686318	2017-12-08 20:27:02.011047	CAf58a3634c244a81ed99c20690964c6d6	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REf9f39ee0ad3493be1044ad44770be48f	0	inbound	+18558645656	136	2.89920592308044434	\N	new lead		15	\N	\N	4125
2017-12-08 20:27:49.455117+00	2017-12-08 20:49:30.329129+00	7727	completed				+17082075421		1297	2017-12-08 20:27:49.45292	2017-12-08 20:49:26.928602	CAb75436b6a0b2b52b3f013924fc78dfe3	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REba51b1b1ff4098ba8fb3b15dd0102234	0	inbound	+18558645656	136	2.43186187744140625	\N	new lead		15	\N	\N	4125
2016-10-31 19:57:28.9107+00	2016-11-03 15:23:06.26533+00	2416	missed				+17049333055		0	2016-10-31 19:57:28.909592	2016-10-31 19:57:29.204872	CA0a55004a69c867e7ec33d2e611a41864	\N	\N			0	inbound	+18557240606	49	\N	null	select status		1	\N	\N	4129
2016-10-31 19:57:30.677971+00	2016-11-03 15:23:06.265348+00	2417	missed				+17049333055		0	2016-10-31 19:57:30.676253	2016-10-31 19:57:30.908098	CAc7d57d1393d6d75de4bcb3a87528be1e	\N	\N			0	inbound	+18557240606	49	\N	null	select status		1	\N	\N	4129
2016-10-31 19:43:20.695917+00	2016-11-03 15:23:06.264925+00	2395	completed				+17049333055		47	2016-10-31 19:43:20.693681	2016-10-31 19:44:07.77043	CAce51663a3f601ae63a541b0d65cabd98	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE085e1390355fde2dd91d84504babb70c	0	inbound	+18557240606	49	1.85871100425720215	null	select status		1	\N	\N	4129
2016-10-31 19:55:13.704828+00	2016-11-03 15:23:06.264991+00	2398	missed				+17049333055		3	2016-10-31 19:55:13.703847	2016-10-31 19:55:17.028098	CAcb67509e043d14c8e2f55f9cc9ff6216	\N	\N			0	inbound	+18557240606	49	\N	null	select status		1	\N	\N	4129
2016-10-31 19:55:40.268973+00	2016-11-03 15:23:06.265009+00	2399	missed				+17049333055		0	2016-10-31 19:55:40.267617	2016-10-31 19:55:40.607492	CA20c9e499ddf138d488a002b3431dabbf	\N	\N			0	inbound	+18557240606	49	\N	null	select status		1	\N	\N	4129
2016-10-31 19:57:31.325545+00	2016-11-03 15:23:06.265366+00	2418	missed				+17049333055		0	2016-10-31 19:57:31.324535	2016-10-31 19:57:31.58903	CAeedeb1fb17a8f0fffb0926332c6a5022	\N	\N			0	inbound	+18557240606	49	\N	null	select status		1	\N	\N	4129
2016-10-31 19:55:12.856957+00	2016-11-03 15:23:06.264969+00	2397	missed				+17049333055		0	2016-10-31 19:55:12.855992	2016-10-31 19:55:13.187267	CAa9b1341c7f7cd765edb87726b118a348	\N	\N			0	inbound	+18557240606	49	\N	null	select status		1	\N	\N	4129
2016-10-31 19:56:24.842351+00	2016-11-03 15:23:06.265155+00	2407	missed				+17049333055		0	2016-10-31 19:56:24.841285	2016-10-31 19:56:25.103024	CAf4cfd6c6f894e8063d0034e5d3435e04	\N	\N			0	inbound	+18557240606	49	\N	null	select status		1	\N	\N	4129
2016-10-31 19:56:19.308641+00	2016-11-03 15:23:06.265082+00	2403	missed				+17049333055		0	2016-10-31 19:56:19.306755	2016-10-31 19:56:19.604738	CA4245c33b57ca334686d7836013fd8266	\N	\N			0	inbound	+18557240606	49	\N	null	select status		1	\N	\N	4129
2016-10-31 19:56:28.349664+00	2016-11-03 15:23:06.265205+00	2410	missed				+17049333055		0	2016-10-31 19:56:28.348558	2016-10-31 19:56:28.677927	CA2b96637061ec2fcdbebdab2aa83404f6	\N	\N			0	inbound	+18557240606	49	\N	null	select status		1	\N	\N	4129
2016-10-31 19:56:30.280047+00	2016-11-03 15:23:06.265223+00	2411	missed				+17049333055		0	2016-10-31 19:56:30.278813	2016-10-31 19:56:30.48173	CAb0269591ef71e1d11244a3a341b066b1	\N	\N			0	inbound	+18557240606	49	\N	null	select status		1	\N	\N	4129
2016-10-31 19:56:31.020898+00	2016-11-03 15:23:06.265241+00	2412	missed				+17049333055		0	2016-10-31 19:56:31.019927	2016-10-31 19:56:31.323786	CAea61f4e321c59a3f0265e48b89a71d07	\N	\N			0	inbound	+18557240606	49	\N	null	select status		1	\N	\N	4129
2016-10-31 19:57:25.332513+00	2016-11-03 15:23:06.265259+00	2413	missed				+17049333055		0	2016-10-31 19:57:25.331592	2016-10-31 19:57:25.583842	CA9adfd5d6a0bd38250ac879137314988b	\N	\N			0	inbound	+18557240606	49	\N	null	select status		1	\N	\N	4129
2016-10-31 19:57:26.04422+00	2016-11-03 15:23:06.265291+00	2414	missed				+17049333055		0	2016-10-31 19:57:26.043045	2016-10-31 19:57:26.342386	CA09ea7fc416e9bb001f33f282a4b52ff8	\N	\N			0	inbound	+18557240606	49	\N	null	select status		1	\N	\N	4129
2017-12-05 23:27:04.892031+00	2017-12-05 23:38:26.52157+00	7618	completed				+15616024448		679	2017-12-05 23:27:04.890429	2017-12-05 23:38:23.452673	CA1ecefc5ae5a558ff1e17cefc1df4c98f	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REfb92966f97e4eabd7a68b3284ad1e132	0	inbound	+18558645656	136	2.80672311782836914	\N	new lead		15	\N	\N	4053
2016-11-03 15:21:17.696474+00	2017-01-27 21:12:23.813932+00	2625	completed		Ms. Torrens		+17049333055		79	2016-11-03 15:21:17.694184	2016-11-03 15:22:37.144343		\N	\N			0	outbound	+18557240606	49	\N	null	select status		1	\N	\N	4129
2016-11-02 14:59:31.026635+00	2017-01-27 21:12:23.813918+00	2548	completed		Ms. Torrens		+17049333055		112	2016-11-02 14:59:31.024665	2016-11-02 15:01:23.012206		\N	\N			0	outbound	+18557240606	49	\N	null	select status		1	\N	\N	4129
2016-09-19 15:01:42.866097+00	2017-11-29 18:31:56.600196+00	2040	missed				+15708220436		32	2016-09-19 15:01:42.864193	2016-09-19 15:02:14.76257	CA78d1c722d97bc792f996458a0293277c	\N	\N			0	inbound	+18556311397	\N	32.7245919704437256	null	new lead		1	\N	\N	4130
2016-09-19 15:02:01.022088+00	2017-11-29 18:31:56.600204+00	2041	missed				+15708220436		15	2016-09-19 15:02:01.020278	2016-09-19 15:02:15.626599	CA8b166d191a0a1ee8a5f660c7ca980454	\N	\N			0	inbound	+18556311397	\N	2.16698503494262695	null	new lead		1	\N	\N	4130
2016-12-01 17:17:16.681116+00	2016-12-10 01:01:54.351692+00	3016	completed				+13125867081		10	2016-12-01 17:17:16.679314	2016-12-01 17:17:26.998665	CA3e6c2d607c2ac18e1c1827cccac9cb30	\N	49			0	inbound	+18559584242	\N	2.77772688865661621	null	new lead		3	\N	\N	4133
2017-01-14 17:09:17.456653+00	2017-01-14 17:29:11.154386+00	3124	completed				+16824385733		1191	2017-01-14 17:09:17.455537	2017-01-14 17:29:08.611094	CAcfb298798fc55150236fbdcda5d8df21	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REa72491fb4c8a8ba67b3828c596659796	0	inbound	+18557240606	49	1.98939204216003418	null	new lead		1	\N	\N	4135
2017-05-24 18:58:38.836104+00	2017-08-17 14:35:21.045327+00	5372	completed				+18177565066		1293	2017-05-24 18:58:38.834249	2017-05-24 19:20:11.407386	CA30b8081962420eb8c80f4c559e77eac7	\N	\N			0	inbound	+18177569010	124	1275.37995004653931	\N	new lead	gc - easytel hu	12	\N	\N	4136
2016-06-28 17:25:47.187723+00	2016-06-28 17:27:08.253702+00	607	completed				+18623688214		77	2016-06-28 17:25:47.186535	2016-06-28 17:27:08.25265	CA7a0c6d206b3bc60ef7a674f22defc358	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.41471099853515625	{}	new lead		1	\N	\N	4137
2016-06-28 17:16:48.205701+00	2017-11-29 18:32:13.820799+00	603	completed	Unknown			+18623688214		22	2016-06-28 17:16:48.204156	2016-06-28 17:17:10.112441	CAa0b4546b114bcadb0279b2ad2e6ef519	\N	\N			0	inbound	+18555983683	\N	14.2588469982147217	null	new lead		1	\N	\N	4137
2016-06-28 17:19:57.627372+00	2017-11-29 18:32:13.820805+00	604	completed	Orland	Milan		+18623688214		50	2016-06-28 17:19:57.626436	2016-06-28 17:20:47.165397	CA0828c64fef06498d88b55115e0099e59	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE02435fb6b2371ca9a66adf0920e7a91b	0	inbound	+18555983683	\N	14.7468750476837158	null	new lead		1	\N	\N	4137
2017-05-05 16:44:50.978676+00	2017-11-29 18:38:49.809952+00	4765	completed				+18702268505		62	2017-05-05 16:44:50.976786	2017-05-05 16:45:53.145234	CAba51523b229004e535258e9b3a8879ed	\N	125			0	inbound	+12147122250	\N	2.21666097640991211	\N	new lead	warren pub scho	9	\N	\N	4138
2017-05-03 21:26:39.439706+00	2017-11-29 18:38:53.214979+00	4667	completed				+12132585840		96	2017-05-03 21:26:39.437235	2017-05-03 21:28:15.763472	CA6a944c2eb6beae348652ca389033c0d9	\N	103			0	inbound	+12146922088	\N	19.1593749523162842	\N	new lead	piao zhong     	9	\N	\N	4139
2017-08-28 19:36:39.052763+00	2017-08-28 19:38:37.930189+00	6187	completed	Kimberly	Smith	kasmith305@aol.com	+17064618562		31	2017-08-28 19:36:39.050756	2017-08-28 19:37:21.431403	CAe14687316611dadaba0a89cb964b8f68	0427608a-ae09-4db0-a1e8-374423ee28c3	153			1	outbound	+17704009016	\N	10.0046980381011963	{}	new lead		13	\N	\N	4140
2017-08-28 20:57:33.757275+00	2017-08-28 21:01:30.406813+00	6188	completed	Kimberly	Smith		+17064618562		235	2017-08-28 20:57:33.755449	2017-08-28 21:01:28.823008	CA59c9a4641dda3f3c2ff302c961f40afe	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE6cbcd58e00b189088a692107256e85e8	0	inbound	+17704009016	132	24.5245168209075928	\N	new lead		13	\N	\N	4140
2017-03-22 22:50:17.939629+00	2017-08-17 14:35:21.044886+00	3550	completed				+16824720158		180	2017-03-22 22:50:17.93761	2017-03-22 22:53:18.009063	CAecf465d772d24b265b7ef865a4ec4aed	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE35c3879923b4e834a732b4b057c1c99e	0	inbound	+18177569010	124	10.0611381530761719	\N	new lead	gutierrez maria	12	\N	\N	4141
2017-01-23 16:16:51.846191+00	2017-02-08 14:10:58.903004+00	3131	missed	Traci	Jancik-Lynch	traci.jancik@gmail.com	+16787900560		\N	2017-01-23 16:16:51.845123	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	application submitted - autopay		1	\N	\N	4142
2016-11-10 21:24:10.525534+00	2016-11-10 21:24:10.556737+00	2851	missed	Daniel	Gonzalez 	Daniel_gonza_@hotmail.com	+19802540719		\N	2016-11-10 21:24:10.524382	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	new lead		1	\N	\N	4143
2016-10-12 11:27:58.447835+00	2016-12-10 01:05:18.401168+00	2272	completed				+16104763633		344	2016-10-12 11:27:58.446906	2016-10-12 11:33:41.951778	CA4c16841c3240670f2e88aab7f1aeae48	\N	24			0	inbound	+18557088731	\N	0.814589023590087891	null	new lead		3	\N	\N	4144
2017-11-14 14:39:36.034004+00	2017-11-14 14:41:44.071369+00	7047	completed	Annette	Walters	Jeannettelove26@gmail.com	+16785984153		115	2017-11-14 14:39:36.032333	2017-11-14 14:41:44.069631	CA19ae3976c054ff60080da0b37b167780	0427608a-ae09-4db0-a1e8-374423ee28c3	150			1	outbound	+17704009016	\N	11.3675968647003174	{}	new lead		13	\N	\N	4145
2016-12-14 23:24:21.770452+00	2016-12-14 23:24:21.794979+00	3084	missed	Samuel	Sanchez Sr	mas46mas@gmail.com	+16023390101		\N	2016-12-14 23:24:21.769575	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	4146
2016-12-14 23:24:19.47004+00	2016-12-14 23:24:19.500593+00	3083	missed	Samuel	Sanchez Sr	mas46mas@gmail.com	+16023390101		\N	2016-12-14 23:24:19.468787	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	4146
2017-05-25 18:46:52.048956+00	2017-05-25 18:46:52.090501+00	5410	missed	DAN	PARK	aadanpark@yahoo.com	+14802626130		\N	2017-05-25 18:46:52.047648	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	4147
2017-07-12 12:33:54.840565+00	2017-07-12 12:34:11.896787+00	5762	missed				+17062395281		17	2017-07-12 12:33:54.838066	2017-07-12 12:34:11.88792	CA24b15b611ba2e366b3c905fef8458767	\N	\N			0	inbound	+17704009016	132	\N	\N	new lead		13	\N	\N	4148
2017-03-15 22:29:38.910827+00	2017-11-29 18:38:53.212382+00	3455	completed				+13162919562		20	2017-03-15 22:29:38.90828	2017-03-15 22:29:59.098382	CAf886cb1b2dd28d21cebb96cd8517c586	\N	105			0	inbound	+12146922088	\N	8.59280705451965332	\N	new lead	foulston siefki	9	\N	\N	4149
2017-08-21 15:21:18.703763+00	2017-08-21 15:21:51.621562+00	6124	completed	Gary	Cummings	corvis81@gmail.com	+15026089695		25	2017-08-21 15:21:18.702148	2017-08-21 15:21:51.620185	CA167196350a9ef9a62bd6231a6726c6e2	0427608a-ae09-4db0-a1e8-374423ee28c3	153			1	outbound	+17704009016	\N	7.2875521183013916	{}	new lead		13	\N	\N	4150
2017-09-29 15:34:12.912735+00	2017-09-29 15:36:08.326728+00	6530	completed				+14045479933		115	2017-09-29 15:34:12.909753	2017-09-29 15:36:07.681362	CA63db8b733f1472df07cae77d70cedc13	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REd776a35781152337388b2195ec7395f1	0	inbound	+17704009016	132	17.3180341720581055	\N	new lead		13	\N	\N	4152
2017-11-17 15:08:56.92358+00	2017-11-17 15:09:55.50691+00	7099	completed				+17705729684		59	2017-11-17 15:08:56.920918	2017-11-17 15:09:55.497198	CA3a21492d579749443873c92ec452b1b8	\N	150			0	inbound	+17707665732	133	13.8270831108093262	\N	new lead		13	\N	\N	4153
2017-05-19 20:01:07.842168+00	2017-11-29 18:38:49.812309+00	5234	completed				+19725896845		82	2017-05-19 20:01:07.839924	2017-05-19 20:02:30.161422	CA470fac6f549b1f0201b9715c448d66d0	\N	127			0	inbound	+12147122250	\N	2.10370302200317383	\N	new lead	mike welch	9	\N	\N	4154
2017-05-19 20:02:28.044099+00	2017-11-29 18:38:49.812317+00	5235	completed				+19725896845		20	2017-05-19 20:02:28.041943	2017-05-19 20:02:48.390504	CA5e131964c13bdbab954a3c2fd3ac3726	\N	105			0	inbound	+12147122250	\N	2.5930788516998291	\N	new lead	mike welch	9	\N	\N	4154
2016-11-11 02:53:53.750396+00	2016-11-11 02:54:27.583529+00	2857	completed				+17735030711		34	2016-11-11 02:53:53.748605	2016-11-11 02:54:27.293199	CAd3ac17acefc3715ec603633dd97cef44	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REb670b67a6e0d208b9c8fda85e5fd1074	0	inbound	+18557240606	49	2.01560497283935547	null	new lead		1	\N	\N	4155
2017-04-24 22:43:03.693228+00	2017-11-29 18:47:25.068298+00	4273	completed				+18175830062		323	2017-04-24 22:43:03.691332	2017-04-24 22:48:27.140943	CA15a7957337f27aca077157933dac9ea0	\N	84		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE2dc44a5d393a6a99441737a4bd8a8a3f	0	inbound	+19728330116	\N	12.0296659469604492	\N	new lead	rosales de cade	8	\N	\N	1372
2017-12-16 18:50:42.969037+00	2017-12-16 18:50:43.455145+00	7929	missed	Devi	Johnson-Evans		+14044493407		0	2017-12-16 18:50:42.967855	2017-12-16 18:50:43.44619	CA95b1c5b014814b8f37e802cf3a5c11ad	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead	devi chef	13	\N	\N	3224
2017-03-29 18:59:25.026942+00	2017-11-29 18:31:18.808933+00	3621	missed				+18136040019		17	2017-03-29 18:59:25.024396	2017-03-29 18:59:42.333077	CAacb4160af87b1157a94c2d3a603a7238	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REa9100d1e263dd798bf94bf67648d34b2	0	inbound	+18556311439	\N	\N	\N	do not contact		1	\N	\N	4079
2017-08-03 17:18:41.191947+00	2017-08-03 17:20:33.789548+00	5925	completed				+12142596673		112	2017-08-03 17:18:41.190028	2017-08-03 17:20:33.165875	CAe79553c2ebe9dd847f5d67c264766c4f	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE90fa575571abb3ca5e49e2cf8da81c91	0	inbound	+18177569010	124	8.71071815490722656	\N	new lead	dallas  tx	12	\N	\N	4156
2017-10-26 13:44:21.570649+00	2017-10-26 13:47:19.274779+00	6810	completed				+17063405682		178	2017-10-26 13:44:21.568033	2017-10-26 13:47:19.259183	CA12ccc7a33033286ac107984494686680	\N	153			0	inbound	+17707665732	133	12.4845390319824219	\N	new lead		13	\N	\N	4157
2017-10-26 13:56:45.053973+00	2017-10-26 13:58:11.306357+00	6811	completed				+17063405682		86	2017-10-26 13:56:45.051805	2017-10-26 13:58:11.29443	CA3c21b0340655ba7a1e2ff577e562477a	\N	153			0	inbound	+17707665732	133	13.4863100051879883	\N	new lead		13	\N	\N	4157
2017-10-26 14:00:45.963494+00	2017-10-26 14:01:39.514173+00	6812	completed				+17063405682		54	2017-10-26 14:00:45.961618	2017-10-26 14:01:39.502855	CAaa5741bfd3e8151667d5a774cd118f68	\N	153			0	inbound	+17707665732	133	9.06451106071472168	\N	new lead		13	\N	\N	4157
2016-07-26 20:59:29.382467+00	2016-07-26 21:00:37.006616+00	958	completed	Donald	Bice		+18599161291		62	2016-07-26 20:59:29.380078	2016-07-26 21:00:37.005555	CA788e5ad946215db3b790267fc9385a09	cd89e433-4bde-4f86-9b22-8f52c2413fcd	16			1	outbound	+18556311490	\N	1.72748899459838867	{}	new lead		1	\N	\N	4158
2016-07-27 19:29:18.715029+00	2016-07-27 19:29:22.902872+00	968	missed	Donald	Bice		+18599161291		0	2016-07-27 19:29:18.712953	2016-07-27 19:29:22.902044	CA86e9b5a156a7b9b69ae576330d4905e4	cd89e433-4bde-4f86-9b22-8f52c2413fcd	\N			1	outbound	+18556311490	\N	1.78970789909362793	{}	new lead		1	\N	\N	4158
2016-07-27 19:29:36.056387+00	2016-07-27 19:30:26.133806+00	969	completed	Donald	Bice		+18599161291		45	2016-07-27 19:29:36.054832	2016-07-27 19:30:26.132537	CA271234baba26ae1df06fa4f1da4bad5a	cd89e433-4bde-4f86-9b22-8f52c2413fcd	16			1	outbound	+18556311490	\N	2.1955571174621582	{}	new lead		1	\N	\N	4158
2016-07-27 19:31:35.872363+00	2016-07-27 19:32:52.247285+00	970	completed	Donald	Bice		+18599161291		71	2016-07-27 19:31:35.870537	2016-07-27 19:32:52.24604	CA18c6712be8ff5c95dbe8c43ba282a060	cd89e433-4bde-4f86-9b22-8f52c2413fcd	16			1	outbound	+18556311490	\N	2.59320306777954102	{}	new lead		1	\N	\N	4158
2016-07-27 21:54:51.197452+00	2016-07-27 21:57:01.050834+00	983	completed	Donald	Bice		+18599161291		123	2016-07-27 21:54:51.196266	2016-07-27 21:57:01.049691	CAd17db97e7903daa649e38e8a0ecc2d9b	cd89e433-4bde-4f86-9b22-8f52c2413fcd	16			1	outbound	+18556311490	\N	2.65916013717651367	{}	new lead		1	\N	\N	4158
2016-07-24 21:57:48.732172+00	2016-07-25 12:53:05.533143+00	928	completed	Donald	Bice	brian.bice@yahoo.com	+18599161291		\N	2016-07-24 21:57:48.730811	\N		25d0200e-983d-4413-94ae-eb664b99711c	\N			0	outbound	+18556311490	\N	\N	{}	new lead		1	\N	\N	4158
2016-07-26 20:42:51.819798+00	2017-11-29 18:31:10.261622+00	957	completed	Donald	Bice		+18599161291		152	2016-07-26 20:42:51.81763	2016-07-26 20:45:24.136889	CAf6c5f92e6c21be3edfb9672b1b9ac369	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE102b45487827e524a344a37d4e95ef59	0	inbound	+18556311490	\N	11.3705620765686035	null	new lead		1	\N	\N	4158
2016-07-27 21:33:37.919168+00	2017-11-29 18:31:10.261677+00	982	completed	Donald	Bice		+18599161291		46	2016-07-27 21:33:37.918157	2016-07-27 21:34:24.403779	CAf9fa3fca0d6a9830bbfeff1da26a70a2	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE8b88615e69b6ec4a9e2f8cc28317e0a7	0	inbound	+18556311490	\N	\N	null	new lead		1	\N	\N	4158
2017-07-10 19:01:01.168694+00	2017-07-10 19:02:14.34607+00	5747	completed				+18178911299		72	2017-07-10 19:01:01.165861	2017-07-10 19:02:13.553035	CA113a0f38878a6a3005f42b0a75081af8	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE0f13bfa262d9c720d64504214186fe3b	0	inbound	+18177569010	124	9.48309993743896484	\N	new lead	hudson tameka	12	\N	\N	4159
2017-07-10 19:18:23.718486+00	2017-07-10 19:24:17.886326+00	5748	completed				+18178911299		354	2017-07-10 19:18:23.716597	2017-07-10 19:24:17.33877	CA6d6acbdc5947040f8ee4ff200c1a7d78	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REc896723516f80dbbbb04be104b0822e4	0	inbound	+18177569010	124	73.4318430423736572	\N	new lead	hudson tameka	12	\N	\N	4159
2017-05-01 23:09:21.721064+00	2017-11-29 18:38:49.808483+00	4558	completed				+16464135014		164	2017-05-01 23:09:21.719168	2017-05-01 23:12:05.320973	CAc5e454db3baaf7143a307c7a9b563ae4	\N	\N			0	inbound	+12147122250	\N	13.7415640354156494	\N	new lead	manhattan  ny	9	\N	\N	4160
2017-08-05 20:40:24.495149+00	2017-08-17 14:35:21.045738+00	5943	completed				+18174566942		1552	2017-08-05 20:40:24.492753	2017-08-05 21:06:16.724054	CA17bc83fa0c134fc4cc3b1149d1418dae	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REea54cbe20728748a6819c0b113d99bc7	0	inbound	+18177569010	124	1330.47317600250244	\N	new lead	cell phone   tx	12	\N	\N	4161
2016-09-13 17:38:08.793082+00	2016-09-13 17:38:08.816711+00	2005	missed	Elyse	Hall	hall.elyse@yahoo.com	+17577390567		\N	2016-09-13 17:38:08.792263	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	4162
2017-12-01 16:37:06.354662+00	2017-12-01 16:38:15.488594+00	7430	completed	Daniel	Hollister	dannobassist1963@gmail.com	+16143120936		66	2017-12-01 16:37:06.35318	2017-12-01 16:38:15.487424	CAf1330329e151ece30a69dae3efebc79b	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.4365382194519043	{}	new lead		15	\N	\N	4163
2017-06-19 21:24:58.406133+00	2017-06-24 13:45:04.893988+00	5611	completed				+12295881727		36	2017-06-19 21:24:58.404054	2017-06-19 21:25:34.285507	CA93b0f66d9c3a4f0932dcb4caceb44c39	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REf240dfae9aa8b7b813e748c1251a87e8	0	inbound	+17704009016	132	11.1881520748138428	\N	new lead		13	\N	\N	4164
2017-06-19 21:23:10.462818+00	2017-06-24 13:45:04.893981+00	5610	completed				+12295881727		71	2017-06-19 21:23:10.460256	2017-06-19 21:24:21.034345	CA538badd4f9238af7047d124ca6dd0812	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE783dbf250fafddf547f50c7154ccfcb4	0	inbound	+17704009016	132	13.7624340057373047	\N	new lead		13	\N	\N	4164
2016-07-06 18:45:23.466703+00	2016-07-06 18:46:14.230749+00	781	completed				+13307790740		47	2016-07-06 18:45:23.464934	2016-07-06 18:46:14.229803	CA1b064240a8d177c1aec181838d518837	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.47735309600830078	{}	new lead		1	\N	\N	4165
2016-07-06 18:41:37.656642+00	2017-11-29 18:32:13.821396+00	780	completed	Daniel	Teminski		+13307790740		52	2016-07-06 18:41:37.655664	2016-07-06 18:42:29.571276	CAd92d2481d5dcadf1bbcde196f1359243	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE43a8d20ed3fb0f52cebccef51cb02cb0	0	inbound	+18555983683	\N	14.188856840133667	null	new lead		1	\N	\N	4165
2017-12-16 20:51:22.599862+00	2017-12-18 14:28:01.202676+00	7940	missed	Dylon	Singleton	Dylons131@gmail.com	+14042662996		0	2017-12-16 20:51:22.598368	2017-12-16 20:57:53.217168	CAb043897e3c2a4ce7ef05f1d5cd03d63b	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			3	outbound	+17704009016	\N	18.3637681007385254	{}	select status		13	\N	\N	166
2017-08-05 18:07:48.134173+00	2017-08-05 18:08:49.534129+00	5937	completed	Mike	Tucker	Hartford1800@gmail.com	+14043961361		49	2017-08-05 18:07:48.132782	2017-08-05 18:08:49.505778	CAb4ac8bf43501486b9eb524f57de042f1	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE007cc41f18278b8d0f9c390d7e2127d0	1	outbound	+17704009016	\N	10.6057150363922119	{}	new lead		13	\N	\N	4166
2017-08-05 18:09:01.723108+00	2017-08-05 18:12:23.145839+00	5938	completed	Mike	Tucker		+14043961361		200	2017-08-05 18:09:01.72122	2017-08-05 18:12:22.015823	CAa4b740ec559b8902a615708fa094a623	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE24c7cf89bdabfaf7df61426c87f800f1	0	inbound	+17704009016	132	8.7780449390411377	\N	new lead		13	\N	\N	4166
2016-08-01 13:36:12.145467+00	2016-12-10 01:01:47.491756+00	1067	completed	Kevin	Stroble		+16107033116		9	2016-08-01 13:36:12.144193	2016-08-01 13:36:20.908325	CA42574e1bc97e9e713c568acbd1ff1363	\N	51			0	inbound	+18559584949	\N	2.06809592247009277	null	new lead		3	\N	\N	4167
2016-09-02 15:33:48.329631+00	2016-12-10 01:01:00.199891+00	1860	completed	Kevin	Stroble		+16107033116		22	2016-09-02 15:33:48.328534	2016-09-02 15:34:10.384567	CAfff688bb5b00fe9226e33e996d91ea2a	\N	57			0	inbound	+18557860909	\N	10.1152060031890869	null	new lead		3	\N	\N	4167
2016-09-26 15:17:21.401574+00	2016-10-06 22:13:35.551034+00	2081	completed	Kevin	Stroble		+16107033116		14	2016-09-26 15:17:21.399804	2016-09-26 15:17:35.441114	CA146353bca4a25c8841f6191a6e73ac74	\N	55			0	inbound	+18559763838	\N	1.48160004615783691	null	new lead		3	\N	\N	4167
2016-09-28 15:53:31.561782+00	2016-12-09 17:07:42.6276+00	2097	completed	Kevin	Stroble		+16107033116		8	2016-09-28 15:53:31.560739	2016-09-28 15:53:39.309036	CA6254d9e834972f2712e98d5f742ec709	\N	55			0	inbound	+18552010960	\N	2.87245798110961914	null	new lead		3	\N	\N	4167
2016-09-28 15:52:55.961984+00	2016-12-09 17:07:47.979238+00	2095	completed	Kevin	Stroble		+16107033116		8	2016-09-28 15:52:55.960978	2016-09-28 15:53:03.480737	CA3c62291572c5d837f2bfd6ca9a89c3dc	\N	55			0	inbound	+18556708891	\N	2.34698987007141113	null	new lead		3	\N	\N	4167
2016-09-26 21:14:57.363639+00	2016-12-09 17:08:31.908773+00	2084	completed	Kevin	Stroble		+16107033116		16	2016-09-26 21:14:57.362559	2016-09-26 21:15:13.573293	CA7872dfa987a854b5af62e25b898d13f6	\N	67			0	inbound	+18552576059	\N	1.35248398780822754	null	new lead		3	\N	\N	4167
2016-09-28 20:28:00.339689+00	2016-12-09 17:08:31.908811+00	2102	completed	Kevin	Stroble		+16107033116		10	2016-09-28 20:28:00.336929	2016-09-28 20:28:10.575133	CA704208750eb3455a714e4f6045984eab	\N	67			0	inbound	+18552576059	\N	1.30030202865600586	null	new lead		3	\N	\N	4167
2016-09-26 21:13:56.605242+00	2016-12-09 17:08:44.542501+00	2083	completed	Kevin	Stroble		+16107033116		10	2016-09-26 21:13:56.602657	2016-09-26 21:14:06.475569	CA9f32567ad0295813dd840c5c8f48e046	\N	67			0	inbound	+18552199307	\N	1.34381508827209473	null	new lead		3	\N	\N	4167
2016-09-28 16:06:28.604336+00	2016-12-09 17:08:44.542518+00	2099	completed	Kevin	Stroble		+16107033116		9	2016-09-28 16:06:28.601946	2016-09-28 16:06:37.6131	CA7ebc65fe2ba12d2b83f658c970c64f2a	\N	67			0	inbound	+18552199307	\N	1.45868396759033203	null	new lead		3	\N	\N	4167
2016-09-28 15:59:23.375486+00	2016-12-10 01:03:20.58595+00	2098	completed	Kevin	Stroble		+16107033116		8	2016-09-28 15:59:23.373827	2016-09-28 15:59:30.934935	CA576078323d12373a7df93d0c91ce3944	\N	66			0	inbound	+18558891151	\N	0.627617120742797852	null	new lead		3	\N	\N	4167
2016-08-26 15:24:50.836026+00	2016-12-09 17:06:53.905822+00	1785	completed	Kevin	Stroble		+16107033116		23	2016-08-26 15:24:50.834254	2016-08-26 15:25:14.018168	CA29f1a2a6ae521f2dd3f875368edec954	\N	21			0	inbound	+18558021330	\N	2.16793107986450195	null	new lead		3	\N	\N	4167
2016-09-01 21:23:15.984164+00	2016-12-09 17:07:45.331588+00	1849	completed	Kevin	Stroble		+16107033116		7	2016-09-01 21:23:15.982261	2016-09-01 21:23:23.018692	CAece703ab1201e65f526e4fcb5e4c438d	\N	55			0	inbound	+18552467810	\N	1.34214687347412109	null	new lead		3	\N	\N	4167
2016-09-28 15:52:16.125725+00	2016-12-09 17:07:45.331683+00	2094	completed	Kevin	Stroble		+16107033116		11	2016-09-28 15:52:16.12468	2016-09-28 15:52:27.107566	CA46ab7301a5b905d2f86e1d0b6c873121	\N	55			0	inbound	+18552467810	\N	2.5263819694519043	null	new lead		3	\N	\N	4167
2016-09-28 15:53:13.018035+00	2016-12-09 17:07:45.33169+00	2096	completed	Kevin	Stroble		+16107033116		8	2016-09-28 15:53:13.017013	2016-09-28 15:53:20.643904	CA6d822dcc0e6cd0c277b1118f25605260	\N	55			0	inbound	+18552467810	\N	2.4181520938873291	null	new lead		3	\N	\N	4167
2016-08-18 11:47:59.024392+00	2016-12-09 17:10:25.285001+00	1572	missed	Kevin	Stroble		+16107033116		8	2016-08-18 11:47:59.022812	2016-08-18 11:48:07.508671	CA40088c603f044381c08e3dfa60d6d0ed	\N	\N			0	inbound	+18556126020	\N	\N	null	new lead		3	\N	\N	4167
2016-08-18 11:48:59.067704+00	2016-12-09 17:10:25.285028+00	1573	missed	Kevin	Stroble		+16107033116		10	2016-08-18 11:48:59.066576	2016-08-18 11:49:08.767931	CA9a99d4efcf63a8e2764c401425245950	\N	\N			0	inbound	+18556126020	\N	\N	null	new lead		3	\N	\N	4167
2016-09-02 15:30:33.681846+00	2016-12-10 01:01:51.440772+00	1859	completed	Kevin	Stroble		+16107033116		9	2016-09-02 15:30:33.68089	2016-09-02 15:30:42.247173	CA166f32e84c1dc8db489f316da60cf5f4	\N	50			0	inbound	+18559693782	\N	2.011627197265625	null	new lead		3	\N	\N	4167
2016-08-01 13:35:48.859687+00	2016-12-10 01:01:54.351627+00	1066	completed	Kevin	Stroble		+16107033116		11	2016-08-01 13:35:48.858779	2016-08-01 13:35:59.85642	CA800e0e0fd38eba3cfbc5fb8f67449ee5	\N	49			0	inbound	+18559584242	\N	2.26731300354003906	null	new lead		3	\N	\N	4167
2016-08-24 21:32:42.289543+00	2016-12-09 17:07:47.979214+00	1753	completed	Kevin	Stroble		+16107033116		12	2016-08-24 21:32:42.286939	2016-08-24 21:32:54.138321	CAf01a7d53a2d33d82299a59936c61b106	\N	55			0	inbound	+18556708891	\N	3.59083080291748047	null	new lead		3	\N	\N	4167
2016-08-01 13:35:01.486677+00	2016-12-10 01:01:51.440647+00	1065	missed	Kevin	Stroble		+16107033116		14	2016-08-01 13:35:01.48526	2016-08-01 13:35:15.729139	CA43e8c16a1df666f0f31c99a36913df3a	\N	\N			0	inbound	+18559693782	\N	2.06620001792907715	null	new lead		3	\N	\N	4167
2016-08-01 13:36:31.788649+00	2016-12-10 01:01:51.440677+00	1068	missed	Kevin	Stroble		+16107033116		10	2016-08-01 13:36:31.78772	2016-08-01 13:36:41.707622	CAf3ddd54044566c6e7e863bdc67d95ec4	\N	\N			0	inbound	+18559693782	\N	2.0873711109161377	null	new lead		3	\N	\N	4167
2016-05-26 10:28:51.936563+00	2016-05-26 10:28:51.95897+00	241	missed	Kevin	Stroble	kstroble@ptd.net	+16107033116		\N	2016-05-26 10:28:51.934405	\N		949dfa1a-fa15-4d8d-b6c3-42eaeaade433	\N			0	outbound	+18552000227	\N	\N	{"vin": "5TDYK3DC3CS248988"}	new lead		3	\N	\N	4167
2016-05-26 12:57:26.429819+00	2016-05-26 12:57:26.447962+00	243	missed	Kevin	Stroble	kstroble@ptd.net	+16107033116		\N	2016-05-26 12:57:26.428733	\N		949dfa1a-fa15-4d8d-b6c3-42eaeaade433	\N			0	outbound	+18552000227	\N	\N	{"vin": "5TDYK3DC3CS248988"}	new lead		3	\N	\N	4167
2016-05-27 18:24:49.177669+00	2016-05-27 18:24:53.722086+00	262	missed	Kevin	Stroble	kstroble@ptd.net	+16107033116		0	2016-05-27 18:24:49.175893	2016-05-27 18:24:53.721131	CA6166c1e485771722744bf9b6a463b8b4	949dfa1a-fa15-4d8d-b6c3-42eaeaade433	\N			1	outbound	+18552000227	\N	2.26697993278503418	{"vin": "5TDYK3DC3CS248988"}	new lead		3	\N	\N	4167
2016-05-27 18:27:53.439006+00	2016-05-27 18:27:58.801236+00	263	missed	Kevin	Stroble	kstroble@ptd.net	+16107033116		0	2016-05-27 18:27:53.438057	2016-05-27 18:27:58.800333	CA9e7ab762b3cd2caedf9787551a095add	949dfa1a-fa15-4d8d-b6c3-42eaeaade433	\N			1	outbound	+18552000227	\N	3.38702797889709473	{"vin": "5TDYK3DC3CS248988"}	new lead		3	\N	\N	4167
2016-08-18 11:51:19.69072+00	2016-12-09 17:10:17.413063+00	1574	missed	Kevin	Stroble		+16107033116		5	2016-08-18 11:51:19.689582	2016-08-18 11:51:24.622811	CA3c0a39d212d5e7a893883cfcd61ad59a	\N	\N			0	inbound	+18552716856	\N	\N	null	new lead		3	\N	\N	4167
2016-08-18 11:53:29.810876+00	2016-12-09 17:10:17.413094+00	1575	missed	Kevin	Stroble		+16107033116		5	2016-08-18 11:53:29.809852	2016-08-18 11:53:34.974228	CAd4a6329ca02cec214b1812a341b85976	\N	\N			0	inbound	+18552716856	\N	\N	null	new lead		3	\N	\N	4167
2016-08-18 12:01:17.735772+00	2016-12-10 01:05:14.588912+00	1576	missed	Kevin	Stroble		+16107033116		5	2016-08-18 12:01:17.734327	2016-08-18 12:01:22.546002	CAb25ea60785da4e40644bd7deae181528	\N	\N			0	inbound	+18556216819	\N	\N	null	new lead		3	\N	\N	4167
2016-08-18 19:38:21.650478+00	2016-12-10 00:57:54.467664+00	1589	completed	Kevin	Stroble		+16107033116		10	2016-08-18 19:38:21.64896	2016-08-18 19:38:31.535756	CAa09b5ca1d87aae40eae2b7a5211c637d	\N	29			0	inbound	+18559651592	\N	2.07683205604553223	null	new lead		3	\N	\N	4167
2016-08-18 20:50:12.29802+00	2016-12-10 01:00:22.123981+00	1591	missed	Kevin	Stroble		+16107033116		46	2016-08-18 20:50:12.296268	2016-08-18 20:50:57.908016	CA2bf3adad79f8c46fc3249323df07f3fa	\N	\N			0	inbound	+18555426998	\N	\N	null	new lead		3	\N	\N	4167
2017-12-17 10:06:54.587065+00	2017-12-18 13:55:42.343006+00	7954	missed	Gwen	Sutton	gwensutton5@gmail.com	+17702036089		\N	2017-12-17 10:06:54.585289	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	1248
2017-12-18 05:48:56.287885+00	2017-12-18 14:13:36.054573+00	7960	missed	Cochitta 	Watson 	Cochittawatson@gmail.com	+17062470593		\N	2017-12-18 05:48:56.286421	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	2292
2017-12-17 07:10:06.318571+00	2017-12-18 13:53:52.761949+00	7953	missed	Ellen	Brown	Ebzipo@yahoo.com	+17064272532		\N	2017-12-17 07:10:06.316566	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	3478
2017-12-18 13:23:26.368189+00	2017-12-18 14:19:58.983151+00	7962	missed	diane	dodd	dianedodd998@gmail.com	+17063521522		\N	2017-12-18 13:23:26.366903	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	3594
2016-10-31 19:56:20.109998+00	2016-11-03 15:23:06.2651+00	2404	missed				+17049333055		0	2016-10-31 19:56:20.109001	2016-10-31 19:56:20.404565	CAcfe049a230ee2026b0127aa2e077d56c	\N	\N			0	inbound	+18557240606	49	\N	null	select status		1	\N	\N	4129
2016-10-31 19:56:22.007755+00	2016-11-03 15:23:06.265119+00	2405	missed				+17049333055		0	2016-10-31 19:56:22.006693	2016-10-31 19:56:22.27197	CAb8ca5ef6e0cb2f3beb98156a3b261e11	\N	\N			0	inbound	+18557240606	49	\N	null	select status		1	\N	\N	4129
2016-10-31 19:56:22.68935+00	2016-11-03 15:23:06.265137+00	2406	missed				+17049333055		0	2016-10-31 19:56:22.687699	2016-10-31 19:56:23.003905	CAf98cfd9f42bb85ce145860bec942fd8e	\N	\N			0	inbound	+18557240606	49	\N	null	select status		1	\N	\N	4129
2016-10-31 19:56:25.641394+00	2016-11-03 15:23:06.265172+00	2408	missed				+17049333055		0	2016-10-31 19:56:25.640024	2016-10-31 19:56:25.922665	CA1b3aff0e42273b85da67e9675608f8f0	\N	\N			0	inbound	+18557240606	49	\N	null	select status		1	\N	\N	4129
2016-10-31 19:56:27.575921+00	2016-11-03 15:23:06.26519+00	2409	missed				+17049333055		0	2016-10-31 19:56:27.574526	2016-10-31 19:56:27.865768	CA78177834ba274a88d0d834775469788b	\N	\N			0	inbound	+18557240606	49	\N	null	select status		1	\N	\N	4129
2016-10-31 19:57:28.217047+00	2016-11-03 15:23:06.265312+00	2415	missed				+17049333055		0	2016-10-31 19:57:28.216132	2016-10-31 19:57:28.552583	CAc2270b92c496fc8ce9a480fb27001837	\N	\N			0	inbound	+18557240606	49	\N	null	select status		1	\N	\N	4129
2016-10-31 19:55:41.161887+00	2016-11-03 15:23:06.265027+00	2400	missed				+17049333055		0	2016-10-31 19:55:41.160899	2016-10-31 19:55:41.426155	CA34d54d56bdb2396f19c952ec0042760d	\N	\N			0	inbound	+18557240606	49	\N	null	select status		1	\N	\N	4129
2016-10-31 19:56:16.257346+00	2016-11-03 15:23:06.265046+00	2401	missed				+17049333055		0	2016-10-31 19:56:16.256391	2016-10-31 19:56:16.549482	CA12a8f7ecfbb384442488b6ff777c3cc0	\N	\N			0	inbound	+18557240606	49	\N	null	select status		1	\N	\N	4129
2016-10-31 19:56:17.100591+00	2016-11-03 15:23:06.265064+00	2402	missed				+17049333055		0	2016-10-31 19:56:17.099501	2016-10-31 19:56:17.363664	CA2d25208fddd3ed787608de0657bdf57a	\N	\N			0	inbound	+18557240606	49	\N	null	select status		1	\N	\N	4129
2016-08-18 12:01:34.256943+00	2016-12-10 01:05:18.400798+00	1577	missed	Kevin	Stroble		+16107033116		4	2016-08-18 12:01:34.256094	2016-08-18 12:01:38.697516	CA456354d5bcb850d45cb74b6e4c9aa5ff	\N	\N			0	inbound	+18557088731	\N	\N	null	new lead		3	\N	\N	4167
2016-08-18 16:42:20.039942+00	2016-12-10 01:05:18.400806+00	1585	completed	Kevin	Stroble		+16107033116		15	2016-08-18 16:42:20.038654	2016-08-18 16:42:35.308933	CAb467065cd213187d4a15927adef16d80	\N	24			0	inbound	+18557088731	\N	1.86779308319091797	null	new lead		3	\N	\N	4167
2016-08-18 20:54:52.933004+00	2016-12-10 01:00:22.124008+00	1593	completed	Kevin	Stroble		+16107033116		6	2016-08-18 20:54:52.931709	2016-08-18 20:54:58.595689	CAdab94d3716e77a00ff86e24ddcf87336	\N	56			0	inbound	+18555426998	\N	4.20566391944885254	null	new lead		3	\N	\N	4167
2016-08-18 20:56:42.652052+00	2016-12-10 01:00:22.124017+00	1594	completed	Kevin	Stroble		+16107033116		38	2016-08-18 20:56:42.650683	2016-08-18 20:57:20.925503	CAff7c87d607a75489b13d24c293c61bf3	\N	56			0	inbound	+18555426998	\N	3.23620891571044922	null	new lead		3	\N	\N	4167
2016-08-18 20:57:43.052555+00	2016-12-10 01:01:51.440708+00	1595	completed	Kevin	Stroble		+16107033116		8	2016-08-18 20:57:43.051464	2016-08-18 20:57:51.093753	CAaacc0673fcaa8cf82df6c8c2a2bb3d20	\N	50			0	inbound	+18559693782	\N	2.03839802742004395	null	new lead		3	\N	\N	4167
2016-08-24 14:51:54.323769+00	2016-12-09 17:10:17.41311+00	1701	completed	Kevin	Stroble		+16107033116		26	2016-08-24 14:51:54.322339	2016-08-24 14:52:20.602559	CA5a4be9d1410fb086a3fb29c931742703	\N	27			0	inbound	+18552716856	\N	7.18361496925354004	null	new lead		3	\N	\N	4167
2016-08-26 15:25:38.848643+00	2016-12-10 01:05:18.40084+00	1786	completed	Kevin	Stroble		+16107033116		15	2016-08-26 15:25:38.846775	2016-08-26 15:25:53.85439	CAf980903423a03c1b70c43a343cce2b38	\N	24			0	inbound	+18557088731	\N	2.20076704025268555	null	new lead		3	\N	\N	4167
2016-08-27 11:44:53.224959+00	2016-12-10 01:05:18.400861+00	1794	completed	Kevin	Stroble		+16107033116		9	2016-08-27 11:44:53.222824	2016-08-27 11:45:01.95983	CA535d2bcd49ba3e9c79611d3dd88b717a	\N	24			0	inbound	+18557088731	\N	1.94710803031921387	null	new lead		3	\N	\N	4167
2016-08-30 15:47:53.726586+00	2016-12-09 17:06:53.90583+00	1818	completed	Kevin	Stroble		+16107033116		45	2016-08-30 15:47:53.724534	2016-08-30 15:48:38.866865	CA3631f46838ecbb08a9df44140419c6c6	\N	21			0	inbound	+18558021330	\N	3.89758706092834473	null	new lead		3	\N	\N	4167
2016-08-30 15:47:20.45361+00	2016-12-10 01:05:18.400875+00	1817	completed	Kevin	Stroble		+16107033116		9	2016-08-30 15:47:20.452517	2016-08-30 15:47:29.562404	CA6cc5e244bb24f030fa9ad8fa899804fb	\N	24			0	inbound	+18557088731	\N	2.20907902717590332	null	new lead		3	\N	\N	4167
2016-09-02 15:34:23.226021+00	2016-12-10 01:05:18.400882+00	1861	completed	Kevin	Stroble		+16107033116		8	2016-09-02 15:34:23.225114	2016-09-02 15:34:31.067204	CAce560772c413407fe4e63a1ce0c5d62d	\N	24			0	inbound	+18557088731	\N	2.6347661018371582	null	new lead		3	\N	\N	4167
2016-09-02 15:30:03.168212+00	2016-12-09 17:06:53.905851+00	1858	completed	Kevin	Stroble		+16107033116		17	2016-09-02 15:30:03.166008	2016-09-02 15:30:20.499683	CA4008e5f87bf3b5aeccf8a2f9e8aea1d5	\N	21			0	inbound	+18558021330	\N	1.66494989395141602	null	new lead		3	\N	\N	4167
2017-12-18 16:08:04.571504+00	2017-12-18 16:08:31.636938+00	7967	completed				+18133309215		26	2017-12-18 16:08:04.569653	2017-12-18 16:08:30.895772	CAa77b73ac837552280f6482ff719fc0db	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REffabbebce2c2473eef81d8d43bd618ce	0	inbound	+18558645656	136	2.6964409351348877	\N	new lead		15	\N	\N	2900
2017-04-12 17:38:47.119113+00	2017-11-29 18:38:49.804548+00	3818	completed				+12147836038		114	2017-04-12 17:38:47.117448	2017-04-12 17:40:41.351513	CAe83736b1c00b491c6435b67d874f9584	\N	124			0	inbound	+12147122250	\N	1.24445700645446777	\N	new lead	shumaker john	9	\N	\N	3410
2017-12-02 19:10:00.378594+00	2017-12-02 19:34:15.714501+00	7496	completed				+13045595672		1452	2017-12-02 19:10:00.376739	2017-12-02 19:34:12.52242	CA4ce4e2720af64071fdfc70e42185e8a9	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REafdc8ca6af8163f4692f6950bc92be42	0	inbound	+18558645656	136	2.68108892440795898	\N	new lead		15	\N	\N	4134
2017-01-14 17:06:49.126089+00	2017-01-14 17:07:50.860558+00	3123	completed				+16824385733		61	2017-01-14 17:06:49.123015	2017-01-14 17:07:50.348377	CA30e2415640d9d8c5ce9271062275609d	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE68f3cded52cdca62a5dc6426becebd2a	0	inbound	+18557240606	49	1.72648191452026367	null	new lead		1	\N	\N	4135
2016-09-02 15:34:43.307654+00	2016-12-09 17:10:17.413383+00	1862	completed	Kevin	Stroble		+16107033116		29	2016-09-02 15:34:43.306508	2016-09-02 15:35:12.718629	CA1c5e98527d2ca8fef00a3f9848c0c10e	\N	27			0	inbound	+18552716856	\N	4.88883090019226074	null	new lead		3	\N	\N	4167
2016-09-02 15:29:21.077787+00	2016-12-10 00:57:48.461709+00	1857	completed	Kevin	Stroble		+16107033116		28	2016-09-02 15:29:21.076586	2016-09-02 15:29:48.886405	CAb4cf6d6113fae2a4cc0fed0d9692bbb4	\N	30			0	inbound	+18559652184	\N	5.66243290901184082	null	new lead		3	\N	\N	4167
2016-09-02 15:19:10.678873+00	2016-12-10 01:00:18.568357+00	1856	completed	Kevin	Stroble		+16107033116		23	2016-09-02 15:19:10.677299	2016-09-02 15:19:33.9793	CAe388b65cf4ab91aea8a29866ba5865ab	\N	56			0	inbound	+18556775511	\N	6.51982712745666504	null	new lead		3	\N	\N	4167
2016-10-17 17:41:57.613539+00	2016-12-10 00:59:38.158495+00	2307	completed	Kevin	Stroble		+16107033116		6	2016-10-17 17:41:57.610622	2016-10-17 17:42:03.716073	CAf28c0f1190e2a3f95d84099af27dea52	\N	59			0	inbound	+18559695739	\N	0.779335975646972656	null	new lead		3	\N	\N	4167
2016-11-05 12:42:48.31594+00	2016-12-09 17:11:09.059051+00	2743	completed	Kevin	Stroble		+16107033116		27	2016-11-05 12:42:48.31458	2016-11-05 12:43:15.63489	CA97da72e0f238190f234e2476722c2ee1	\N	71			0	inbound	+18553381735	\N	7.93481993675231934	null	new lead		3	\N	\N	4167
2016-11-05 12:18:01.989159+00	2016-12-10 01:02:33.817621+00	2741	completed	Kevin	Stroble		+16107033116		58	2016-11-05 12:18:01.987192	2016-11-05 12:19:00.327548	CAd25194c926924145f1639022dc83ca18	\N	75			0	inbound	+18555211733	\N	4.70727300643920898	null	new lead		3	\N	\N	4167
2016-08-18 15:51:55.062186+00	2016-12-10 00:55:45.165363+00	1581	completed				+16102879659		15	2016-08-18 15:51:55.060412	2016-08-18 15:52:10.447388	CAe52eb7f80901c5662e23daa46e79e624	\N	24			0	inbound	+18557129406	\N	1.79963803291320801	null	new lead		3	\N	\N	4168
2016-08-18 15:52:24.426714+00	2016-12-10 00:55:45.16537+00	1582	completed				+16102879659		15	2016-08-18 15:52:24.425635	2016-08-18 15:52:39.426815	CA91ee3565181593ed4404e0f7a99cf835	\N	24			0	inbound	+18557129406	\N	1.71057415008544922	null	new lead		3	\N	\N	4168
2016-08-02 19:14:52.20193+00	2016-12-10 00:55:45.165005+00	1130	completed				+14846865872		579	2016-08-02 19:14:52.2008	2016-08-02 19:24:31.010803	CA398571532f6631c53a241119524c8181	\N	24			0	inbound	+18557129406	\N	6.72952699661254883	null	new lead		3	\N	\N	4169
2016-08-02 19:24:59.564029+00	2016-12-10 00:55:45.165013+00	1131	completed				+14846865872		104	2016-08-02 19:24:59.56293	2016-08-02 19:26:43.760521	CA0bc6cfcc640df87c9adfd786c7e89497	\N	24			0	inbound	+18557129406	\N	1.76069498062133789	null	new lead		3	\N	\N	4169
2016-08-02 19:28:56.751729+00	2016-12-10 00:55:45.165028+00	1132	completed				+14846865872		65	2016-08-02 19:28:56.750047	2016-08-02 19:30:02.104557	CA03d9d320d3d1ff5ba320c188248bed87	\N	24			0	inbound	+18557129406	\N	1.62538695335388184	null	new lead		3	\N	\N	4169
2017-12-06 18:56:10.36708+00	2017-12-06 18:56:37.711626+00	7649	completed				+14046834818		27	2017-12-06 18:56:10.365218	2017-12-06 18:56:37.152789	CA00ffbde8ff88069d2dcf875a90f32ccf	\N	157		https://api.twilio.com/2010-04-01/Accounts/ACbd7756819f4882feb347788ad7959655/Recordings/RE712be86c9f137987813b7ac78d69265b	0	inbound	+17706597466	137	10.4725871086120605	\N	new lead		14	\N	\N	4170
2017-12-06 18:47:54.162849+00	2017-12-06 18:48:23.29495+00	7648	completed				+14046834818		28	2017-12-06 18:47:54.160501	2017-12-06 18:48:22.533824	CA7f8d66f4ff65f0615486891b3c5004bf	\N	157		https://api.twilio.com/2010-04-01/Accounts/ACbd7756819f4882feb347788ad7959655/Recordings/RE2bb36421e3e0c66c954a8e8527a2e71d	0	inbound	+17706597466	137	6.06868100166320801	\N	new lead		14	\N	\N	4170
2016-11-04 00:51:20.43084+00	2016-11-04 00:51:54.317508+00	2678	completed				+12392819826		33	2016-11-04 00:51:20.429119	2016-11-04 00:51:53.544862	CAa560f910dca7ead856d7be593dcab3f0	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REcd1da321b482a58a7153aad870241b6e	0	inbound	+18557240606	49	2.30231904983520508	null	new lead		1	\N	\N	4173
2016-11-04 13:35:32.241543+00	2016-11-04 13:37:00.996278+00	2683	completed				+12392819826		88	2016-11-04 13:35:32.240052	2016-11-04 13:37:00.33174	CAe3fb5a46526e9075b4ad75ce30bc71f4	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REeac01568fdd94db5d941a43b76516775	0	inbound	+18557240606	49	2.17995095252990723	null	new lead		1	\N	\N	4173
2016-11-04 13:37:06.680098+00	2016-11-04 13:42:25.147051+00	2684	completed				+12392819826		318	2016-11-04 13:37:06.679117	2016-11-04 13:42:24.696464	CA10d2314d15e9f95cdd32b6947cb9976c	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE28794fb67c18821b4c09cec2355aa4a7	0	inbound	+18557240606	49	1.86457490921020508	null	new lead		1	\N	\N	4173
2016-11-04 14:36:23.781769+00	2016-11-04 14:49:24.54414+00	2686	completed				+12392819826		779	2016-11-04 14:36:23.780347	2016-11-04 14:49:23.26958	CA8f799e11a86572d5bad53cdee415f4db	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE2c0de4f63522a13cc8af57f0552e8898	0	inbound	+18557240606	49	2.45213890075683594	null	new lead		1	\N	\N	4173
2016-11-05 14:26:23.733441+00	2016-11-05 14:31:29.185971+00	2745	completed				+12392819826		305	2016-11-05 14:26:23.730488	2016-11-05 14:31:28.333456	CA8b5c11011f4ebfebbe673127c78807d5	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REf50a7a619eb406b6cf040153f83ed657	0	inbound	+18557240606	49	1.68572402000427246	null	new lead		1	\N	\N	4173
2017-03-10 20:00:58.536466+00	2017-03-10 20:02:59.778179+00	3378	completed				+13474796141		120	2017-03-10 20:00:58.533971	2017-03-10 20:02:58.439169	CA1ab9670b343d968a3e53434b13d0c805	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE9852562399ee1190f70d7432053d64dc	0	inbound	+18557240606	49	3.11012697219848633	\N	new lead		1	\N	\N	4174
2017-05-02 15:36:04.820868+00	2017-11-29 18:38:49.808552+00	4566	missed				+18173908433		18	2017-05-02 15:36:04.819198	2017-05-02 15:36:22.821439	CA3a507529423c8a1ece7df9257db9153c	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	bass enterprise	9	\N	\N	4176
2017-05-02 15:36:58.510441+00	2017-11-29 18:38:49.808563+00	4567	completed				+18173908433		175	2017-05-02 15:36:58.509066	2017-05-02 15:39:53.582577	CAa977e7ab116c7b7a304345d096fa9265	\N	133			0	inbound	+12147122250	\N	5.38374495506286621	\N	new lead	bass enterprise	9	\N	\N	4176
2017-09-29 17:27:00.121286+00	2017-09-29 17:28:18.884817+00	6533	completed				+14045479933		77	2017-09-29 17:27:00.119413	2017-09-29 17:28:17.61929	CAdc4ef70ee21940f8149053967c47659c	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE4e3461a086fad9d3a9c220391958dbac	0	inbound	+17704009016	132	17.9565980434417725	\N	new lead		13	\N	\N	4152
2017-09-29 18:04:40.713886+00	2017-09-29 18:05:46.635301+00	6537	completed				+14045479933		65	2017-09-29 18:04:40.712176	2017-09-29 18:05:45.886473	CAb769dec4af86be2e8f65f648790475e4	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE5a98340f625f95c0e10a60f406cc83c8	0	inbound	+17704009016	132	13.1376569271087646	\N	new lead		13	\N	\N	4152
2017-05-29 22:17:54.192362+00	2017-11-29 18:38:49.813961+00	5484	completed				+19035212815		84	2017-05-29 22:17:54.190469	2017-05-29 22:19:18.500172	CA6dfd33473a549d54bdaaa809c447fa00	\N	127			0	inbound	+12147122250	\N	1.98771190643310547	\N	new lead	wood charles   	9	\N	\N	4177
2016-11-01 13:20:55.648059+00	2016-11-01 13:20:55.67187+00	2454	missed	MARIA	SANCHEZ	sanvar53@sbcglobal.net	+14698314475		\N	2016-11-01 13:20:55.647064	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	4178
2017-12-14 18:19:18.758855+00	2017-12-14 18:33:28.748393+00	7871	completed				+19035275343		847	2017-12-14 18:19:18.756922	2017-12-14 18:33:25.556954	CA1909177e812f2b7062032675290f3403	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE5aa705f88a187c783f83eca9fbca562c	0	inbound	+18558645656	136	2.20688700675964355	\N	new lead		15	\N	\N	4179
2017-12-18 18:58:22.300319+00	2017-12-18 19:02:30.912327+00	7973	completed				+19035275343		247	2017-12-18 18:58:22.298494	2017-12-18 19:02:29.723599	CAeec0135fec8b94a94c48164e38c6be82	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REfc6af3a3e255d5107f1fd198069e7345	0	inbound	+18558645656	136	2.45979714393615723	\N	new lead		15	\N	\N	4179
2017-03-16 15:21:00.591341+00	2017-11-29 18:38:53.212411+00	3459	completed				+12255715202		79	2017-03-16 15:21:00.587079	2017-03-16 15:22:19.362875	CA61dec289e8c00fca9afc0841f25f5673	\N	\N			0	inbound	+12146922088	\N	8.33601593971252441	\N	new lead		9	\N	\N	4180
2016-08-25 14:21:14.941648+00	2016-08-25 14:45:19.80611+00	1771	missed	Stephanie	Parks	Devonn2017@gmail.com	+12165263459		\N	2016-08-25 14:21:14.940327	\N		ea8e48b7-042e-42ec-8dde-d03bf75a9bad	\N			0	outbound	+18556311350	\N	\N	{}	application submitted - credit union		1	\N	\N	4181
2016-08-25 16:06:42.062529+00	2017-01-27 21:12:23.813764+00	1773	completed	Stephanie	Parks		+12165263459		85	2016-08-25 16:06:42.060986	2016-08-25 16:08:07.323696	CA55d70f7bfee83019341aa2f0c4e45e35	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE812a2353d418a2b78dd6228372804410	0	inbound	+18555343978	48	6.5874779224395752	null	application submitted - credit union		1	\N	\N	4181
2016-08-25 20:22:52.466357+00	2017-01-27 21:12:23.813778+00	1782	completed	Stephanie	Parks		+12165263459		91	2016-08-25 20:22:52.465341	2016-08-25 20:24:23.883854	CA81c1a79a3e65da2d19b1e0e96011363d	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE910bfb011e3ba23c160b4e7ec3018f6d	0	inbound	+18555343978	48	5.87515115737915039	null	application submitted - credit union		1	\N	\N	4181
2017-07-31 23:06:11.160438+00	2017-07-31 23:06:11.232581+00	5906	missed	Annette	Miller	nanni061412@gmail.com	+18636056563		\N	2017-07-31 23:06:11.158165	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	4182
2017-08-14 12:11:04.466676+00	2017-08-14 12:11:04.818146+00	6017	missed				+17705387855		0	2017-08-14 12:11:04.464327	2017-08-14 12:11:04.810405	CA7ed7587be5b8161a2f410c208ed61ee6	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4183
2017-04-22 21:26:01.166957+00	2017-04-22 21:27:33.136756+00	4234	completed				+14692712199		91	2017-04-22 21:26:01.165459	2017-04-22 21:27:31.887525	CAdf4367703a593fa54d21eb1592efdd10	\N	129		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REaecb72113eae3c69d104678dcfc01bd6	0	inbound	+18172104002	126	12.7581257820129395	\N	new lead	cell phone   tx	12	\N	\N	4184
2017-05-13 17:45:57.942108+00	2017-11-29 18:38:49.811458+00	5057	completed				+14047497905		316	2017-05-13 17:45:57.93992	2017-05-13 17:51:13.620144	CAc4829482bbe527774cc1bd6c5ed89f51	\N	107			0	inbound	+12147122250	\N	4.30113005638122559	\N	new lead	williams damiya	9	\N	\N	4185
2017-05-15 16:27:40.012986+00	2017-11-29 18:38:49.811523+00	5071	completed				+14047497905		74	2017-05-15 16:27:40.011281	2017-05-15 16:28:53.874316	CAb1447baf381d7695871c095d26b617ea	\N	125			0	inbound	+12147122250	\N	2.14056301116943359	\N	new lead	williams damiya	9	\N	\N	4185
2017-05-17 19:31:44.5833+00	2017-11-29 18:38:49.812054+00	5167	completed				+14047497905		112	2017-05-17 19:31:44.581757	2017-05-17 19:33:36.296637	CA0ed7f53cd4be9c62ce626d55215f197c	\N	\N			0	inbound	+12147122250	\N	5.91870594024658203	\N	new lead	massacar r	9	\N	\N	4185
2017-05-17 19:38:21.059187+00	2017-11-29 18:38:49.812061+00	5168	completed				+14047497905		499	2017-05-17 19:38:21.05737	2017-05-17 19:46:39.609549	CA7b640ce7bf8b3462cb8109dbc9b3d1f3	\N	107			0	inbound	+12147122250	\N	7.05511999130249023	\N	new lead	massacar r	9	\N	\N	4185
2017-05-17 19:54:04.938495+00	2017-11-29 18:38:49.812068+00	5169	completed				+14047497905		18	2017-05-17 19:54:04.934719	2017-05-17 19:54:22.608753	CAc5baaa000824d66825f54b2498e6ad6e	\N	107			0	inbound	+12147122250	\N	7.0050349235534668	\N	new lead	williams damiya	9	\N	\N	4185
2017-05-17 19:54:39.749859+00	2017-11-29 18:38:49.812075+00	5170	completed				+14047497905		116	2017-05-17 19:54:39.748068	2017-05-17 19:56:35.755928	CA9bb02b622c8ced0e21b5701d327226c4	\N	\N			0	inbound	+12147122250	\N	4.72718501091003418	\N	new lead	massacar r	9	\N	\N	4185
2017-05-17 19:56:50.829663+00	2017-11-29 18:38:49.812082+00	5171	completed				+14047497905		168	2017-05-17 19:56:50.827596	2017-05-17 19:59:38.433159	CAe601d2d8a88a9b5d30000b752e9b68dc	\N	133			0	inbound	+12147122250	\N	7.99104714393615723	\N	new lead	williams damiya	9	\N	\N	4185
2016-09-12 11:15:49.779591+00	2016-12-10 01:05:18.400951+00	1995	completed				+16107924577		203	2016-09-12 11:15:49.777653	2016-09-12 11:19:12.83925	CA896353e37cb8ccc72574d330d584a510	\N	24			0	inbound	+18557088731	\N	0.891016960144042969	null	new lead		3	\N	\N	4186
2017-04-22 15:34:54.097988+00	2017-11-29 18:38:49.806301+00	4210	completed				+12392494444		238	2017-04-22 15:34:54.095664	2017-04-22 15:38:52.536257	CA35ef6581cc51415300ecf249984e6b53	\N	107			0	inbound	+12147122250	\N	9.86415195465087891	\N	new lead	wilkins adam   	9	\N	\N	4187
2017-11-25 19:43:00.689096+00	2017-11-25 19:46:11.233621+00	7324	completed	Melissa	Prince	19melissaprince@gmail.com	+16787605849		56	2017-11-25 19:43:00.686806	2017-11-25 19:44:05.439095	CA32c0db4a53c064b5bcc33399101d031f	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE680eaa9e7237c0ac54f0d81f73b60169	1	outbound	+17704009016	\N	12.3298218250274658	{}	select status		13	\N	\N	4188
2016-08-25 16:19:31.653974+00	2016-12-10 01:00:18.568315+00	1774	completed				+16193571157		164	2016-08-25 16:19:31.652858	2016-08-25 16:22:15.810444	CA3c458e06cdc6656a1dd36046703865b7	\N	56			0	inbound	+18556775511	\N	3.41588115692138672	null	new lead		3	\N	\N	4189
2016-11-03 17:04:04.213151+00	2016-11-03 17:04:04.249844+00	2640	missed	Valerie	Boyce	vboycedsc@yahoo.com	+13133501254		\N	2016-11-03 17:04:04.211755	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	4190
2017-04-19 16:42:50.794947+00	2017-11-29 18:38:49.805725+00	4091	completed				+12147623126		142	2017-04-19 16:42:50.792956	2017-04-19 16:45:12.540944	CA3a864bd52b4bfbfe2c74d95009c23a6c	\N	126			0	inbound	+12147122250	\N	0.985898971557617188	\N	new lead	cormier philip 	9	\N	\N	4191
2017-11-30 22:05:37.772359+00	2017-11-30 22:07:01.419096+00	7417	completed	Anthony	mervine	karson10aj@gmail.com	+19013897218		68	2017-11-30 22:05:37.770704	2017-11-30 22:07:01.385685	CAfe1be456b7ef26cfa1b09f01a66e8cfd	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE3cfcc6f2772ffc46c1bffaebd9482280	1	outbound	+17704009016	\N	22.7736108303070068	{}	new lead		13	\N	\N	4192
2017-10-10 23:58:03.684749+00	2017-10-10 23:59:58.694869+00	6656	completed				+18173508519		113	2017-10-10 23:58:03.681097	2017-10-10 23:59:57.133343	CA83fcadbb3aaa47490ccf469755556f2f	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REbc33677d817d158b2aa46ff3b2216ffd	0	inbound	+18177569010	124	11.4526159763336182	\N	new lead	williams iesha	12	\N	\N	4193
2017-10-10 23:28:29.954646+00	2017-10-10 23:30:08.091432+00	6655	completed				+18173508519		95	2017-10-10 23:28:29.952871	2017-10-10 23:30:04.746428	CAe220b5323c02617ec5c684beb51d36ae	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE4188fe3b74f97c37770db50becfc1620	0	inbound	+18177569010	124	9.18651700019836426	\N	new lead	williams iesha	12	\N	\N	4193
2017-04-25 19:24:28.583859+00	2017-11-29 18:38:49.80666+00	4299	completed				+12142573928		102	2017-04-25 19:24:28.581765	2017-04-25 19:26:10.710405	CA432087d8625130ebbe646ec7e3b6eb48	\N	105			0	inbound	+12147122250	\N	7.56790804862976074	\N	new lead	brazil tonya	9	\N	\N	60
2017-12-05 15:42:50.314629+00	2017-12-05 15:58:19.689398+00	7586	completed				+13055955900		926	2017-12-05 15:42:50.312264	2017-12-05 15:58:16.524806	CA21a94c2aa162ad24ed96258c2b521468	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REe67178a697c0acb67febb3e1b6046806	0	inbound	+18558645656	136	2.57477402687072754	\N	new lead		15	\N	\N	61
2017-05-30 17:11:43.315857+00	2017-11-29 18:38:49.814025+00	5497	completed				+18647601910		67	2017-05-30 17:11:43.313409	2017-05-30 17:12:50.089223	CA8309ceacd6a378bcb4a2c8a13bb99fc6	\N	105			0	inbound	+12147122250	\N	2.29693198204040527	\N	new lead	spartanburg  sc	9	\N	\N	62
2017-05-30 17:12:43.25206+00	2017-11-29 18:38:49.814032+00	5498	completed				+18647601910		99	2017-05-30 17:12:43.24859	2017-05-30 17:14:21.863229	CAd2ff0a3f7ca57a08f738e1f214c10353	\N	103			0	inbound	+12147122250	\N	0.686939001083374023	\N	new lead	spartanburg  sc	9	\N	\N	62
2017-03-23 16:07:30.124888+00	2017-08-17 14:35:21.044894+00	3554	completed				+16823605357		107	2017-03-23 16:07:30.122935	2017-03-23 16:09:16.817097	CA569e7a142efd2536b511b73bb8c4c5e4	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REc3e3e35ee169049f6ce387046e3bde36	0	inbound	+18177569010	124	12.4449729919433594	\N	new lead	princess	12	\N	\N	64
2017-04-04 17:09:24.798241+00	2017-05-17 15:41:07.224276+00	3684	completed				+16822219638		113	2017-04-04 17:09:24.796156	2017-04-04 17:11:18.090026	CA8b7a23d5778dde36de2e2dcc51e1d475	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REbe22ffaca68850c484b9b0284462bcfe	0	inbound	+18177569010	124	7.29853391647338867	\N	new lead	rodger charles	12	\N	\N	66
2017-04-28 19:16:03.982165+00	2017-11-29 18:38:49.807314+00	4435	completed				+12142075406		75	2017-04-28 19:16:03.979976	2017-04-28 19:17:18.50716	CA6c2cca0903e01223933f55ce0ee6ff5f	\N	125			0	inbound	+12147122250	\N	1.16105198860168457	\N	new lead	mcnabb ann     	9	\N	\N	71
2017-04-28 19:24:21.848334+00	2017-11-29 18:38:49.807321+00	4437	completed				+12142075406		126	2017-04-28 19:24:21.845925	2017-04-28 19:26:27.851875	CAb96b9843223c3bec2e867c643ec5ee09	\N	127			0	inbound	+12147122250	\N	1.23447108268737793	\N	new lead	mcnabb ann     	9	\N	\N	71
2017-03-17 21:24:58.300132+00	2017-11-29 18:38:53.212545+00	3483	completed				+12142075406		523	2017-03-17 21:24:58.297881	2017-03-17 21:33:40.895652	CA235664ded43f317e188c9a8415ffa105	\N	\N			0	inbound	+12146922088	\N	5.01870298385620117	\N	new lead		9	\N	\N	71
2016-08-25 19:23:01.501396+00	2016-12-10 00:55:45.165434+00	1781	completed				+16109338382		66	2016-08-25 19:23:01.500335	2016-08-25 19:24:07.619914	CAcf56228a51568a1574dd031695fbc20e	\N	24			0	inbound	+18557129406	\N	2.42835903167724609	null	new lead		3	\N	\N	73
2016-08-25 18:55:44.738863+00	2016-12-10 00:55:45.165427+00	1780	completed				+16109338382		254	2016-08-25 18:55:44.736086	2016-08-25 18:59:59.166445	CA68c9e5f6817b9b48e80bb118c8bfce74	\N	24			0	inbound	+18557129406	\N	2.41394901275634766	null	new lead		3	\N	\N	73
2017-12-18 13:21:43.813123+00	2017-12-18 14:16:43.123454+00	7961	missed	Shane	Buckley	buckleyss2003@gmail.com	+16193635710		\N	2017-12-18 13:21:43.811531	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	83
2017-12-08 01:22:13.937961+00	2017-12-08 01:48:13.293446+00	7699	completed				+17133493018		1556	2017-12-08 01:22:13.935534	2017-12-08 01:48:09.976489	CA88dce9bc721796f7e8532dc8527faa12	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE82a6f660149f49c54088f753cab65f9c	0	inbound	+18558645656	136	2.20955705642700195	\N	new lead		15	\N	\N	81
2017-12-10 18:14:15.186427+00	2017-12-10 18:15:38.079632+00	7762	completed				+17133493018		82	2017-12-10 18:14:15.181085	2017-12-10 18:15:36.912512	CA1dde37263d6c4ab76444363c7bff5a72	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE0ead0a049a4a424e99e65773f138a38b	0	inbound	+18558645656	136	2.45009183883666992	\N	new lead		15	\N	\N	81
2017-12-10 18:15:43.92124+00	2017-12-10 18:17:05.673124+00	7763	completed				+17133493018		81	2017-12-10 18:15:43.919768	2017-12-10 18:17:04.977803	CAc7263198d7cb291e8ede178998012d17	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REe07e721d7132fbaff33c5a3da46f8911	0	inbound	+18558645656	136	2.26543307304382324	\N	new lead		15	\N	\N	81
2017-12-10 20:48:57.176733+00	2017-12-10 20:50:07.31998+00	7764	completed				+17133493018		69	2017-12-10 20:48:57.174883	2017-12-10 20:50:06.085592	CA4893b518007ea2f70392cef801b22dd2	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE51fb56ee0b59c068d1fa60847012c26c	0	inbound	+18558645656	136	1.97144007682800293	\N	new lead		15	\N	\N	81
2017-12-12 00:53:34.459551+00	2017-12-12 00:53:50.401539+00	7802	completed				+17133493018		15	2017-12-12 00:53:34.457921	2017-12-12 00:53:49.60281	CA92eb1eef4f167139d492b834b2078008	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE25729cf83d892a5e7fc9895eb3c955b8	0	inbound	+18558645656	136	2.40616703033447266	\N	new lead		15	\N	\N	81
2017-05-03 22:52:54.308534+00	2017-11-29 18:38:49.809548+00	4688	completed				+12148610921		116	2017-05-03 22:52:54.305608	2017-05-03 22:54:50.261219	CA43aa9c99f058036f8a70e4bc61014c11	\N	126			0	inbound	+12147122250	\N	1.32536792755126953	\N	new lead	kennedy joshua	9	\N	\N	89
2017-05-05 21:40:10.643408+00	2017-11-29 18:38:49.810145+00	4794	completed				+12148610921		55	2017-05-05 21:40:10.641208	2017-05-05 21:41:05.523786	CA56964abf7f40c411ef2f64b3c832a360	\N	127			0	inbound	+12147122250	\N	1.25215697288513184	\N	new lead	kennedy joshua	9	\N	\N	89
2017-05-05 17:49:55.062372+00	2017-11-29 18:38:49.809988+00	4770	completed				+12148610921		80	2017-05-05 17:49:55.060319	2017-05-05 17:51:14.98512	CA511f4eecb4131010eb377ae5e433dbee	\N	127			0	inbound	+12147122250	\N	0.972741842269897461	\N	new lead	kennedy joshua	9	\N	\N	89
2017-05-05 19:29:59.379757+00	2017-11-29 18:38:49.810087+00	4782	completed				+12148610921		66	2017-05-05 19:29:59.378103	2017-05-05 19:31:05.281762	CAbc788c3c81236a9b9c587caf93db9966	\N	124			0	inbound	+12147122250	\N	0.994792938232421875	\N	new lead	kennedy joshua	9	\N	\N	89
2017-05-08 17:21:09.207629+00	2017-11-29 18:38:49.810336+00	4855	completed				+12148610921		78	2017-05-08 17:21:09.205066	2017-05-08 17:22:26.937988	CA9aba892eff10893acbd2a73ab6ab78fb	\N	\N			0	inbound	+12147122250	\N	1.04734992980957031	\N	new lead	kennedy joshua	9	\N	\N	89
2017-05-09 20:48:43.044625+00	2017-11-29 18:38:49.810725+00	4934	completed				+12148610921		61	2017-05-09 20:48:43.04232	2017-05-09 20:49:43.989809	CA51048793a502cdd4755927bfd7a3d2d0	\N	127			0	inbound	+12147122250	\N	1.79628491401672363	\N	new lead	kennedy joshua	9	\N	\N	89
2017-05-09 20:49:40.865596+00	2017-11-29 18:38:49.810732+00	4935	completed				+12148610921		80	2017-05-09 20:49:40.864143	2017-05-09 20:51:01.328905	CAad4159521168ca5d81ea4d27bcac8f11	\N	105			0	inbound	+12147122250	\N	3.80661916732788086	\N	new lead	kennedy joshua	9	\N	\N	89
2017-05-09 21:18:41.559936+00	2017-11-29 18:38:49.810739+00	4936	completed				+12148610921		53	2017-05-09 21:18:41.557754	2017-05-09 21:19:34.905613	CAe6cc7586d3905b3b22e42752b9124c4d	\N	105			0	inbound	+12147122250	\N	7.05855393409729004	\N	new lead	kennedy joshua	9	\N	\N	89
2017-05-04 15:39:40.887505+00	2017-11-29 18:38:53.215092+00	4710	completed				+14055123439		1080	2017-05-04 15:39:40.885446	2017-05-04 15:57:40.509876	CA0ab21e47074191adc39a46a3c1d7c1fd	\N	\N			0	inbound	+12146922088	\N	1.5310828685760498	\N	new lead	steward josh	9	\N	\N	91
2017-05-26 19:28:21.631343+00	2017-08-17 14:35:21.045363+00	5446	completed				+18175848245		428	2017-05-26 19:28:21.629139	2017-05-26 19:35:29.379787	CAdb2b0b10cba8fc1228668fefbeefa1a9	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE0eecacc2f4f859260a87069cf5e7e327	0	inbound	+18177569010	124	371.413007020950317	\N	new lead	sinquefield arl	12	\N	\N	93
2017-04-27 21:10:51.559377+00	2017-11-29 18:38:49.807158+00	4398	completed				+13863382929		224	2017-04-27 21:10:51.557718	2017-04-27 21:14:35.787647	CA6ea11a34e5637e0b4b14c42e56c95c31	\N	\N			0	inbound	+12147122250	\N	6.96374917030334473	\N	new lead	mckaig lissa   	9	\N	\N	97
2017-12-19 21:04:09.433628+00	2017-12-19 21:09:51.106912+00	8014	completed	Bailey	Grifffith-Driver	baileydriver98@gmail.com	+17063485216		95	2017-12-19 21:04:09.430768	2017-12-19 21:05:43.941983		\N	153			0	outbound	+17704009016	132	\N	\N	select status		13	\N	\N	2577
2017-12-19 21:02:03.140739+00	2017-12-19 21:09:51.117205+00	8013	completed	Bailey	Grifffith-Driver	baileydriver98@gmail.com	+17063485216		32	2017-12-19 21:02:03.139187	2017-12-19 21:08:34.401562	CA14209e8a4585469f52370c8c3e84b295	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REe06f8136501bd869bc6f76ee470cf278	3	outbound	+17704009016	\N	355.106204032897949	{}	select status		13	\N	\N	2577
2017-12-19 20:41:38.970876+00	2017-12-19 21:11:44.219407+00	8012	completed	PJ	HUGGINS		+16787252110		246	2017-12-19 20:41:38.968974	2017-12-19 20:45:44.907861	CA5b344bc1ae4aab09a6b025e224f59add	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REab3f2d59db9fb1b2ac694b1f46003fea	0	inbound	+17707665732	133	15.6098730564117432	\N	select status	cell phone   ga	13	\N	\N	3782
2016-08-18 20:51:15.310312+00	2016-12-10 01:01:51.440701+00	1592	completed	Kevin	Stroble		+16107033116		8	2016-08-18 20:51:15.309348	2016-08-18 20:51:23.122417	CA588b2af2b97ca57fcd490456ed712e43	\N	50			0	inbound	+18559693782	\N	1.97878313064575195	null	new lead		3	\N	\N	4167
2017-10-07 13:30:05.319944+00	2017-10-07 13:31:34.210891+00	6612	completed	Brandon 	Johnson 	Juju03222017@icloud.com	+16787782040		72	2017-10-07 13:30:05.318524	2017-10-07 13:31:33.960689	CAc5431b169bcf6ed297f401dffc2acc23	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE61c3c846970384f50f2fa5066d478152	1	outbound	+17704009016	\N	12.7221379280090332	{}	new lead		13	\N	\N	100
2017-10-07 14:13:53.256678+00	2017-10-07 14:19:40.122937+00	6613	completed	Brandon 	Johnson 		+16787782040		346	2017-10-07 14:13:53.254318	2017-10-07 14:19:39.370996	CA4d4d7e4064f3cb11cb6d5c83d550d3bf	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE5eead4a66a244b3c60065a30ea497900	0	inbound	+17704009016	132	316.943199872970581	\N	new lead		13	\N	\N	100
2017-05-16 16:33:14.13967+00	2017-11-29 18:38:49.81176+00	5110	completed				+13128361121		96	2017-05-16 16:33:14.136874	2017-05-16 16:34:49.863322	CAbbe26cfca721dd84da7ad113fc28c977	\N	126			0	inbound	+12147122250	\N	1.26571989059448242	\N	new lead	lasalle warrant	9	\N	\N	107
2017-04-27 19:27:28.108856+00	2017-11-29 18:38:49.807059+00	4383	completed				+14807510319		74	2017-04-27 19:27:28.106563	2017-04-27 19:28:42.242513	CA55b87c54b942a8757feae93ec0ead4aa	\N	126			0	inbound	+12147122250	\N	1.34065008163452148	\N	new lead	wireless caller	9	\N	\N	108
2017-04-27 19:28:38.858111+00	2017-11-29 18:38:49.80708+00	4386	completed				+14807510319		75	2017-04-27 19:28:38.856604	2017-04-27 19:29:53.356843	CA8b95a4a6c234ed488b7d7a6303d3162e	\N	124			0	inbound	+12147122250	\N	2.27036404609680176	\N	new lead	wireless caller	9	\N	\N	108
2017-04-27 19:29:54.522365+00	2017-11-29 18:38:49.807095+00	4388	completed				+14807510319		131	2017-04-27 19:29:54.520619	2017-04-27 19:32:05.515484	CA31452d7bba545723d7df677c6a75ab7e	\N	107			0	inbound	+12147122250	\N	8.00129604339599609	\N	new lead	wireless caller	9	\N	\N	108
2017-05-08 21:29:05.296775+00	2017-11-29 18:38:49.810484+00	4880	completed				+14807510319		252	2017-05-08 21:29:05.293663	2017-05-08 21:33:17.071193	CA341ba24a7ea2f9cd650931fcc0caf801	\N	\N			0	inbound	+12147122250	\N	1.00812792778015137	\N	new lead	wireless caller	9	\N	\N	108
2017-12-04 17:23:30.231981+00	2017-12-04 17:24:15.265263+00	7544	completed				+17083551005		44	2017-12-04 17:23:30.228993	2017-12-04 17:24:13.952513	CA4e7bf7e770106d98047d2a7171e238c1	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE58486d3ad6c6afec6a16d2a1b7bc9c04	0	inbound	+18558645656	136	2.49387097358703613	\N	new lead		15	\N	\N	109
2017-12-04 17:24:29.611263+00	2017-12-04 17:30:42.630541+00	7545	completed				+17083551005		372	2017-12-04 17:24:29.609936	2017-12-04 17:30:41.359095	CAaea0651fb6774aed5f61232320e6e280	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REefebeb770299c1dca030c02cf235b82a	0	inbound	+18558645656	136	2.97878909111022949	\N	new lead		15	\N	\N	109
2016-11-10 16:37:42.029941+00	2016-11-10 16:52:03.660254+00	2832	completed				+17709749512		859	2016-11-10 16:37:42.028486	2016-11-10 16:52:01.484229	CA5c8429970387c4359fdb3746392ff344	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE067851580433f59bc5aa7cac22671f82	0	inbound	+18557240606	49	1.53641891479492188	null	new lead		1	\N	\N	113
2017-06-26 18:18:00.118015+00	2017-06-26 18:22:50.981672+00	5664	completed				+14707745864		289	2017-06-26 18:18:00.114878	2017-06-26 18:22:48.828551	CAc8b5e6cdcdd0ab976c0b80efd2484b11	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE6d315fae2930841ea5417d6e38bdae26	0	inbound	+17704009016	132	8.71862220764160156	\N	new lead		13	\N	\N	117
2017-08-21 12:34:50.498751+00	2017-08-21 12:34:50.919436+00	6116	missed				+16788637510		0	2017-08-21 12:34:50.496968	2017-08-21 12:34:50.911787	CA06106a64289fbf4294e9a499f17c3411	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	120
2017-08-21 12:35:26.928562+00	2017-08-21 12:35:27.276022+00	6117	missed				+16788637510		0	2017-08-21 12:35:26.926602	2017-08-21 12:35:27.262488	CA4002240992a11bb243b55620d92783d5	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	120
2017-08-21 12:35:45.755904+00	2017-08-21 12:35:46.110299+00	6118	missed				+16788637510		0	2017-08-21 12:35:45.754598	2017-08-21 12:35:46.096097	CA29aec1072bd5a22ded6927794dffe47d	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	120
2017-08-21 12:37:34.524386+00	2017-08-21 12:37:34.871105+00	6119	missed				+16788637510		0	2017-08-21 12:37:34.522422	2017-08-21 12:37:34.85689	CA671b0364fd535ffe92d319b00581a3c5	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	120
2017-08-21 13:09:34.338406+00	2017-08-21 13:12:55.614226+00	6122	completed				+16788637510		201	2017-08-21 13:09:34.336468	2017-08-21 13:12:55.596509	CA50ed59055fe50dd947d435f3c0c141d9	\N	154			0	inbound	+17707665699	134	1.0778040885925293	\N	new lead		13	\N	\N	120
2017-05-17 15:06:58.24906+00	2017-08-17 14:35:21.045241+00	5153	completed				+14698796997		89	2017-05-17 15:06:58.246088	2017-05-17 15:08:27.639072	CA5f75f91805d797d3c06540f2a64cd5f1	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REdd19c032a3622f66ca8714643f4cc695	0	inbound	+18177569010	124	6.14505481719970703	\N	new lead	hassell michael	12	\N	\N	124
2017-11-30 15:04:52.498463+00	2017-11-30 15:26:50.17571+00	7408	missed				+12144159920		16	2017-11-30 15:04:52.495638	2017-11-30 15:05:08.335121	CA98c1d7fd94289b9f0ef6539acd2ded1c	\N	\N			0	inbound	+18177569010	124	1295.5203378200531	\N	new lead	ramos ricardo h	12	\N	\N	127
2016-11-13 15:49:28.162838+00	2016-11-13 15:49:52.917781+00	2884	completed				+13146146760		24	2016-11-13 15:49:28.159384	2016-11-13 15:49:52.400298	CA14595409f406fc1d1fc2df88572b375e	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE89bc98051cf5bdd09cf8f21112ed1e27	0	inbound	+18557240606	49	2.38493990898132324	null	new lead		1	\N	\N	130
2017-05-06 19:58:37.337917+00	2017-11-29 18:47:25.068397+00	4812	completed				+12145571886		84	2017-05-06 19:58:37.335487	2017-05-06 20:00:01.678659	CAf7a9dd19527552e3c3b985c87b31e7b7	\N	82		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE506694ed7f9474312ec67e3a6fc47cee	0	inbound	+19728330116	\N	8.55547118186950684	\N	new lead	barnes tiffany	8	\N	\N	131
2017-12-20 19:45:03.42457+00	2017-12-20 19:50:51.456842+00	8035	completed				+16789397772		328	2017-12-20 19:45:03.422646	2017-12-20 19:50:31.920103	CAf3f79ed83f3f710fd101ea9f6e3f7335	\N	154		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REaf1b709b1528aeab1dd675fdabb5899a	0	inbound	+17707665699	134	1.70312905311584473	\N	select status	potters clinton	13	\N	\N	2185
2017-12-20 19:44:18.272655+00	2017-12-20 19:50:55.473288+00	8034	completed				+16789397772		397	2017-12-20 19:44:18.270288	2017-12-20 19:50:55.470276	CA815b2e413e5249cd021bdb19793507df	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE8247d532e244be7fca0168a40d2645ae	0	inbound	+17707665732	133	327.688244104385376	\N	select status	potters clinton	13	\N	\N	2185
2017-12-20 19:52:30.862274+00	2017-12-20 19:52:30.988068+00	8037	missed				+16789397772		0	2017-12-20 19:52:30.860426	2017-12-20 19:52:30.975122	CA05ba4511398b5fa4b780d2c271228c2c	\N	\N			0	inbound	+17707665732	133	\N	\N	select status	potters clinton	13	\N	\N	2185
2017-12-20 19:53:02.460925+00	2017-12-20 19:54:15.924161+00	8038	completed				+16789397772		73	2017-12-20 19:53:02.459088	2017-12-20 19:54:15.146285	CAf7d2d0e74fb7b458ee02ab2b64db04e1	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE946615811de805a8572d4bef470ec73b	0	inbound	+17707665732	133	24.4911060333251953	\N	select status	potters clinton	13	\N	\N	2185
2017-12-01 16:29:55.131683+00	2017-12-01 16:31:33.714118+00	7429	completed	Alannah	Davis	alannah.shauri@gmail.com	+17063724651		23	2017-12-01 16:29:55.129469	2017-12-01 16:30:38.626005	CA82cc07789fa724edd816a9eb8d74f55c	0427608a-ae09-4db0-a1e8-374423ee28c3	150			1	outbound	+17704009016	\N	24.0705881118774414	{}	select status		13	\N	\N	4171
2017-08-14 04:32:51.343052+00	2017-08-14 04:32:51.405775+00	6016	missed	Amber	Richardson	Amber01975@gmail.com	+17705497689		\N	2017-08-14 04:32:51.34151	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	4172
2017-09-01 02:22:37.327423+00	2017-09-01 02:22:37.378291+00	6229	missed	Netanya 	Rolling 	Netanyarolling96@gmail.com	+17063087820		\N	2017-09-01 02:22:37.326015	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	4175
2017-08-18 03:18:48.445624+00	2017-08-18 03:18:48.518106+00	6086	missed	Quinndaren	Odister	quinndaren68@gmail.com	+17069639526		\N	2017-08-18 03:18:48.443068	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	132
2017-05-03 16:07:32.084813+00	2017-11-29 18:38:53.214951+00	4631	completed				+12147211248		184	2017-05-03 16:07:32.083001	2017-05-03 16:10:35.725303	CAed0a5593e77bc0b81443e4da120e26d2	\N	133			0	inbound	+12146922088	\N	8.35332083702087402	\N	new lead	dean foods	9	\N	\N	135
2017-09-16 14:48:10.590443+00	2017-09-16 14:50:58.782967+00	6376	completed				+19032035455		167	2017-09-16 14:48:10.588444	2017-09-16 14:50:57.990318	CA0fd852e31ce5fb40285e77b2dddc793c	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE87665979bd6711cb6615fc049186106a	0	inbound	+18177569010	124	7.98612618446350098	\N	new lead	farmers bra  tx	12	\N	\N	136
2017-04-22 19:55:18.316378+00	2017-11-29 18:38:49.806391+00	4227	completed				+18173018988		185	2017-04-22 19:55:18.313955	2017-04-22 19:58:23.680792	CA7ce500defc5a249f4e71f55043223d17	\N	124			0	inbound	+12147122250	\N	1.26123189926147461	\N	new lead	cell phone   tx	9	\N	\N	137
2017-10-23 15:09:07.71579+00	2017-10-23 15:11:46.194649+00	6783	completed				+17066373916		158	2017-10-23 15:09:07.713708	2017-10-23 15:11:46.181885	CAa806eb64dda6828df793e3d0f37a3e36	\N	153			0	inbound	+17707665732	133	12.8600740432739258	\N	new lead		13	\N	\N	139
2017-10-24 22:16:54.441318+00	2017-10-24 22:20:54.105442+00	6796	completed	Marvin 	Randolph	Randolphmarvin3@gmail.com	+17066373916		226	2017-10-24 22:16:54.439693	2017-10-24 22:20:53.895854	CA7653c550faef1ef072f83976a3267bb6	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE52d0d2560c784287ab9836d884d81b2f	1	outbound	+17704009016	\N	11.8378651142120361	{}	new lead		13	\N	\N	139
2017-03-27 21:08:28.935006+00	2017-11-29 18:38:53.213076+00	3599	completed				+13187754637		217	2017-03-27 21:08:28.933252	2017-03-27 21:12:05.880155	CA70b13f27456d3629ebca873529b8af73	\N	99			0	inbound	+12146922088	\N	7.7672879695892334	\N	new lead	king morgan	9	\N	\N	140
2016-12-09 21:29:59.883101+00	2016-12-10 01:01:00.20065+00	3074	completed				+16193179135		227	2016-12-09 21:29:59.881604	2016-12-09 21:33:46.716893	CA6ab3a504a2cedeeef85453849f15f89a	\N	57			0	inbound	+18557860909	\N	6.26379919052124023	null	new lead		3	\N	\N	147
2016-11-02 01:05:20.429184+00	2016-11-02 01:05:20.464288+00	2533	missed	Chris	Habbershaw	chabber@me.com	+19195646843		\N	2016-11-02 01:05:20.427467	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	156
2016-09-01 21:29:29.586468+00	2016-12-09 17:07:45.331595+00	1850	completed				+16103063223		8	2016-09-01 21:29:29.58554	2016-09-01 21:29:37.469343	CA027eecd3a91cc10c9a3365d1fe3838fc	\N	55			0	inbound	+18552467810	\N	1.49406099319458008	null	new lead		3	\N	\N	159
2016-09-01 21:29:49.702891+00	2016-12-09 17:07:45.331602+00	1851	completed				+16103063223		5	2016-09-01 21:29:49.701873	2016-09-01 21:29:54.449744	CA1090880ccac9b36638c57b860bd32b20	\N	55			0	inbound	+18552467810	\N	1.31799888610839844	null	new lead		3	\N	\N	159
2017-12-28 16:45:57.931818+00	2017-12-28 16:49:35.835572+00	8138	completed				+14109619980		217	2017-12-28 16:45:57.929291	2017-12-28 16:49:34.536497	CAcc3c215787b2dad9caf976957db37ae4	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE93dc7bc65dd094e166a785acc750c366	0	inbound	+17707665732	133	11.7568540573120117	\N	new lead	harvey tina	13	\N	\N	160
2017-12-29 14:48:35.326247+00	2017-12-29 14:48:46.720112+00	8147	completed				+17622301419		11	2017-12-29 14:48:35.324405	2017-12-29 14:48:45.979498	CA2ec6b0e1aab288190009daffcbd17f3b	\N	154		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE27a649c53a74c8b6ceb3f183fa199fa0	0	inbound	+17707665699	134	1.13532400131225586	\N	new lead	cell phone   ga	13	\N	\N	162
2017-11-17 13:08:17.308721+00	2017-11-17 13:08:17.839935+00	7089	missed				+17702033342		1	2017-11-17 13:08:17.306743	2017-11-17 13:08:17.832165	CAf9fb0a8e06171980b5e981b8b4fd1881	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	163
2017-11-17 13:08:36.5672+00	2017-11-17 13:08:37.097799+00	7092	missed				+17702033342		1	2017-11-17 13:08:36.566087	2017-11-17 13:08:37.090474	CAe43ce6efc65a479c5dc6c280a1adf259	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	163
2017-11-17 13:08:22.307009+00	2017-11-17 13:08:22.694557+00	7090	missed				+17702033342		0	2017-11-17 13:08:22.30572	2017-11-17 13:08:22.686856	CA6432ff4459317781b12478765f24c325	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	163
2017-12-20 23:39:33.792174+00	2017-12-20 23:43:24.908927+00	8045	completed	Brian 	Edwards 	brianmedwards@hotmail.com	+17063060963		179	2017-12-20 23:39:33.790517	2017-12-20 23:42:43.867955	CAfa2c13288b63f0a959768403d9f1567a	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE9bcd94fb0452b79e78ea6bc1884436da	1	outbound	+17704009016	\N	11.7726302146911621	{}	select status		13	\N	\N	1673
2017-12-20 22:27:18.328005+00	2017-12-20 22:53:13.960057+00	8044	completed	JAMES 	ANDERSON		+17069737494		276	2017-12-20 22:27:18.326199	2017-12-20 22:31:54.134205	CA3b2472bd954df3a74460c2c8269e02bb	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE0348fa7477e1c56046cd2ed9227a2a26	0	inbound	+17707665732	133	18.5365960597991943	\N	select status	cell phone   ga	13	\N	\N	1749
2017-12-20 20:24:20.37946+00	2017-12-21 14:10:39.569881+00	8040	completed				+17062065312		302	2017-12-20 20:24:20.376947	2017-12-20 20:29:22.759885	CA4d9c696f2e21d5bb2aaba73fe99ebe43	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE601b4609100c3966f042a632dfbb7ce9	0	inbound	+17707665732	133	41.8301630020141602	\N	select status	lewinsky paris	13	\N	\N	2070
2017-12-21 05:44:54.029351+00	2017-12-21 14:10:39.569899+00	8046	missed	Brandon	Brown	bbga2351@gmail.com	+17062065312		\N	2017-12-21 05:44:54.027979	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	2070
2017-12-21 14:09:05.590125+00	2017-12-21 14:10:39.559051+00	8049	completed	Brandon	Brown	bbga2351@gmail.com	+17062065312		43	2017-12-21 14:09:05.588162	2017-12-21 14:09:48.343879		\N	153			0	outbound	+17704009016	132	\N	\N	select status		13	\N	\N	2070
2017-12-21 14:27:00.116053+00	2017-12-21 14:32:46.703497+00	8051	completed	Michelle	Vaughn	michelle.vaughn@AMPmv.com	+17067145352		64	2017-12-21 14:27:00.114084	2017-12-21 14:28:13.802492	CA0b016c1b8f45df8a88d8032ad7bc7520	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE738593bbd71e2947a21869a7a65d5716	1	outbound	+17704009016	\N	14.3010919094085693	{}	select status		13	\N	\N	2213
2017-12-21 08:17:48.474586+00	2017-12-21 14:17:27.443518+00	8047	missed	William	Schoenbrun	Williamwilson621@gmail.com	+17063000644		\N	2017-12-21 08:17:48.472787	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	2918
2017-12-21 14:15:37.495617+00	2017-12-21 14:17:27.426775+00	8050	completed	William	Schoenbrun	Williamwilson621@gmail.com	+17063000644		52	2017-12-21 14:15:37.493763	2017-12-21 14:16:29.463266		\N	153			0	outbound	+17704009016	132	\N	\N	select status		13	\N	\N	2918
2017-12-21 14:33:23.69135+00	2017-12-21 14:35:20.887713+00	8052	completed	William	Schoenbrun		+17063000644		116	2017-12-21 14:33:23.689724	2017-12-21 14:35:19.703439	CAbdbafb8ca3dcf7d1731cd2f763bc360c	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REbba9417f42d433ad8daa448a9d805461	0	inbound	+17704009016	132	26.0064601898193359	\N	select status	schoenbrun w   	13	\N	\N	2918
2016-08-25 13:07:51.355982+00	2017-11-29 18:31:33.775599+00	1761	missed				+12165263459		50	2016-08-25 13:07:51.353555	2016-08-25 13:08:41.798129	CA34ed6f8ac6fae87d931309e6318699dd	\N	\N			0	inbound	+18556311350	\N	33.6789839267730713	null	application submitted - credit union		1	\N	\N	4181
2016-08-25 14:11:56.952885+00	2017-01-27 21:12:23.81375+00	1769	completed				+12165263459		69	2016-08-25 14:11:56.951924	2016-08-25 14:13:05.558177		\N	\N			0	outbound	+18555343978	48	\N	null	application submitted - credit union		1	\N	\N	4181
2016-08-25 14:05:29.769326+00	2017-01-27 21:12:23.813736+00	1768	completed				+12165263459		96	2016-08-25 14:05:29.767316	2016-08-25 14:07:05.575985		\N	\N			0	outbound	+18555343978	48	\N	null	application submitted - credit union		1	\N	\N	4181
2017-11-17 13:08:27.800519+00	2017-11-17 13:08:28.173176+00	7091	missed				+17702033342		0	2017-11-17 13:08:27.799397	2017-11-17 13:08:28.165176	CAf0134429a01e0d448507029b0e4b1e5e	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	163
2017-04-29 16:55:35.634847+00	2017-11-29 18:38:53.214816+00	4465	completed				+14694816796		33	2017-04-29 16:55:35.632052	2017-04-29 16:56:08.513136	CAe92e6d10938f1e82964d126165cfd25e	\N	\N			0	inbound	+12146922088	\N	3.48406100273132324	\N	new lead	birk michael   	9	\N	\N	164
2017-04-29 16:56:34.881138+00	2017-11-29 18:38:49.80741+00	4466	completed				+14694816796		164	2017-04-29 16:56:34.880008	2017-04-29 16:59:18.923181	CAba031bea750dcb9e45e14e4361d3728e	\N	\N			0	inbound	+12147122250	\N	5.2213740348815918	\N	new lead	birk michael   	9	\N	\N	164
2017-12-27 20:58:56.599536+00	2017-12-27 21:02:39.67271+00	8126	completed	Kevin	Crawford		+17064918061		222	2017-12-27 20:58:56.597843	2017-12-27 21:02:38.445606	CAc965c6cb8a9775e8b5c6aee19a6ac1fb	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE6182f9e2d6f01cb7a0709142bd451198	0	inbound	+17707665732	133	11.3709530830383301	\N	new lead	miller mike	13	\N	\N	168
2017-12-22 17:02:14.559495+00	2017-12-22 17:04:34.240391+00	8068	completed	JAMES 	ANDERSON		+17069737494		139	2017-12-22 17:02:14.557625	2017-12-22 17:04:33.469979	CA4b343b4d69887c29e425f1ab74d514bb	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REb608cd1f6c869080aa7b411114322c02	0	inbound	+17707665732	133	13.0068750381469727	\N	select status	cell phone   ga	13	\N	\N	1749
2017-12-21 19:39:50.846451+00	2017-12-21 19:42:58.638923+00	8056	completed	Michelle	Vaughn		+17067145352		187	2017-12-21 19:39:50.844522	2017-12-21 19:42:57.493629	CA248fb33ed80cf7d0ae4e18b95a36794c	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE3ea37ef8bf88ab8cc283b269b9ed48e2	0	inbound	+17704009016	132	14.7684009075164795	\N	select status	voaughn edith	13	\N	\N	2213
2017-12-22 17:14:23.150779+00	2017-12-22 18:03:31.140391+00	8069	completed	Crystal	Harris	Harrisharris723@gmail.com	+16789141840		30	2017-12-22 17:14:23.149205	2017-12-22 17:20:29.882861	CA448a70cd7804deb0abca606e34eec046	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE87ae92b8962566a0dd2df365f1dccd63	3	outbound	+17704009016	\N	336.500939846038818	{}	select status		13	\N	\N	2793
2017-04-22 20:23:32.550543+00	2017-04-22 20:23:45.720801+00	4230	completed				+14692712199		13	2017-04-22 20:23:32.548748	2017-04-22 20:23:45.707866	CAab4666bf44c565f07b3e265b5c7bd820	\N	129			0	inbound	+18172104002	126	3.21344900131225586	\N	new lead	cell phone   tx	12	\N	\N	4184
2017-04-22 20:24:21.272348+00	2017-04-22 20:26:12.290652+00	4231	completed				+14692712199		110	2017-04-22 20:24:21.270998	2017-04-22 20:26:11.138027	CA13827e2e0cdd907d2b700a55973d7199	\N	129		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE1d986c47a611a7b8e1273501b6406d9f	0	inbound	+18172104002	126	9.46525716781616211	\N	new lead	cell phone   tx	12	\N	\N	4184
2017-05-17 20:11:13.618425+00	2017-11-29 18:38:49.812089+00	5173	completed				+14047497905		99	2017-05-17 20:11:13.616495	2017-05-17 20:12:52.949175	CA2c2d94f4e6c9954ec94979f80a98649e	\N	107			0	inbound	+12147122250	\N	8.50916409492492676	\N	new lead	williams damiya	9	\N	\N	4185
2017-09-15 13:51:07.982031+00	2017-09-15 13:55:33.013348+00	6366	completed	Kevin	Crawford		+17064918061		265	2017-09-15 13:51:07.979949	2017-09-15 13:55:32.994483	CA196ced29be2d2f007df6ba7c70cace10	\N	153			0	inbound	+17707665732	133	38.6163139343261719	\N	new lead		13	\N	\N	168
2017-08-31 16:54:50.470847+00	2017-08-31 16:56:34.177058+00	6217	completed	Kevin	Crawford	kaylabowen.cr@gmail.com	+17064918061		83	2017-08-31 16:54:50.469366	2017-08-31 16:56:33.743299	CA3724eb20c9a53c0990db4bf46a04c826	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE52a958d6b2183f46799557618b196dd7	1	outbound	+17704009016	\N	23.9262039661407471	{}	new lead		13	\N	\N	168
2017-12-17 00:18:35.007334+00	2017-12-17 00:40:05.443167+00	7950	missed				+18176144095		10	2017-12-17 00:18:35.005318	2017-12-17 00:18:45.39746	CAa07b597d92a53c2d0f95d4284a182c09	\N	\N			0	inbound	+18177569010	124	1268.90061593055725	\N	new lead	martinez rodrig	12	\N	\N	176
2017-04-25 13:18:41.843338+00	2017-11-29 18:38:49.806525+00	4276	completed				+17135965808		79	2017-04-25 13:18:41.84082	2017-04-25 13:20:00.602788	CAa008cb66dcf361d882e1f325df77eac2	\N	124			0	inbound	+12147122250	\N	1.28479290008544922	\N	new lead	houston  tx	9	\N	\N	177
2017-05-04 14:51:08.567429+00	2017-11-29 18:38:49.809607+00	4708	completed				+17135965808		103	2017-05-04 14:51:08.565371	2017-05-04 14:52:51.979636	CAa6b9949c887028d3ae6552cb79264302	\N	127			0	inbound	+12147122250	\N	1.37819600105285645	\N	new lead	houston  tx	9	\N	\N	177
2017-05-12 15:13:43.100728+00	2017-11-29 18:38:49.811275+00	5030	completed				+17135965808		88	2017-05-12 15:13:43.09874	2017-05-12 15:15:11.369689	CA1857a92c155fb1e8e9d2df61dbc5dd30	\N	124			0	inbound	+12147122250	\N	1.10833001136779785	\N	new lead	houston  tx	9	\N	\N	177
2017-03-14 20:23:15.352867+00	2017-11-29 18:38:53.212247+00	3423	completed				+17135965808		103	2017-03-14 20:23:15.350861	2017-03-14 20:24:58.61192	CA33b57becfcb61be917ea6afbccc46c83	\N	\N			0	inbound	+12146922088	\N	15.5397891998291016	\N	new lead	houston  tx	9	\N	\N	177
2017-09-21 20:45:18.661799+00	2017-09-21 20:51:14.331405+00	6421	missed				+17068098287		26	2017-09-21 20:45:18.659939	2017-09-21 20:45:44.900254	CAa1c16519cafc571d390b6d6ed3711481	\N	\N			0	inbound	+17707665732	133	336.155323028564453	\N	new lead		13	\N	\N	181
2017-04-12 20:43:30.32068+00	2017-11-29 18:38:49.804657+00	3836	completed				+16023772963		66	2017-04-12 20:43:30.318197	2017-04-12 20:44:35.830869	CAc299b66ce494e45825045203e024aaf9	\N	125			0	inbound	+12147122250	\N	1.4340360164642334	\N	new lead	osterkorn s    	9	\N	\N	182
2016-10-07 23:36:33.46328+00	2016-12-10 01:01:51.441079+00	2238	completed				+16192671590		302	2016-10-07 23:36:33.460575	2016-10-07 23:41:35.03305	CA39ec6da722a00b17b93e1b1b242c1532	\N	50			0	inbound	+18559693782	\N	2.10333609580993652	null	new lead		3	\N	\N	183
2017-05-01 16:53:53.38402+00	2017-11-29 18:38:49.807992+00	4517	missed				+12145348632		25	2017-05-01 16:53:53.381849	2017-05-01 16:54:18.795947	CA5d7290c20be7e3f7eb3fa1b97e409eda	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	cell phone   tx	9	\N	\N	184
2017-12-14 21:31:07.613255+00	2017-12-14 21:31:22.114548+00	7880	completed				+16787773915		13	2017-12-14 21:31:07.611463	2017-12-14 21:31:20.886036	CAff0ef3c7ec436051d78e2f1c36c0a0e9	\N	157		https://api.twilio.com/2010-04-01/Accounts/ACbd7756819f4882feb347788ad7959655/Recordings/RE6cfa133f8d4be03e4f1f45a1387536d9	0	inbound	+17706597466	137	8.50843286514282227	\N	new lead		14	\N	\N	187
2017-12-14 21:31:28.962571+00	2017-12-14 21:31:59.853166+00	7881	completed				+16787773915		30	2017-12-14 21:31:28.960826	2017-12-14 21:31:58.762475	CAb532263973bb118685c1ba25730b04ce	\N	157		https://api.twilio.com/2010-04-01/Accounts/ACbd7756819f4882feb347788ad7959655/Recordings/REef06cd56a6576995338e71a06c2d71fb	0	inbound	+17706597466	137	5.85338711738586426	\N	new lead		14	\N	\N	187
2017-10-23 20:53:51.684802+00	2017-10-23 20:55:32.139518+00	6788	completed	Paula	Cantrell	cantrellpaula1215@yahoo.com	+16786969170		82	2017-10-23 20:53:51.683154	2017-10-23 20:55:30.813253	CA5a5f2be71d3756c8cfb591bad109cf88	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE508e86661fa85bbb40e790f32d9216e9	1	outbound	+17704009016	\N	15.7934691905975342	{}	new lead		13	\N	\N	188
2016-07-13 17:34:55.333702+00	2016-12-10 00:55:45.1649+00	867	completed				+16109486899		296	2016-07-13 17:34:55.332023	2016-07-13 17:39:51.612145	CAd585db29a844e852755e8c005afccea4	\N	24			0	inbound	+18557129406	\N	3.46879291534423828	null	new lead		3	\N	\N	189
2017-12-05 16:10:04.972426+00	2017-12-05 16:15:17.780734+00	7587	completed	Dante	Hall	kingdante8787@gmail.com	+15869254342		309	2017-12-05 16:10:04.970656	2017-12-05 16:15:17.779241	CA093404f0c12251ffb38cc2e5724e89ee	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	3.04153895378112793	{}	new lead		15	\N	\N	191
2017-12-22 20:15:49.22265+00	2017-12-22 20:19:34.155494+00	8070	completed	Javar	Garvin	Javargarvin@gmail.com	+18038424601		175	2017-12-22 20:15:49.220954	2017-12-22 20:18:58.493803	CA470ecad9e68185991c7c7fc45459791c	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REaecee60ffba3a1a5f47360c2bea48b2b	1	outbound	+17704009016	\N	13.4508180618286133	{}	select status		13	\N	\N	1587
2017-12-23 15:02:19.164325+00	2017-12-23 15:06:55.694667+00	8078	completed	Crystal	Harris		+16789141840		276	2017-12-23 15:02:19.161828	2017-12-23 15:06:54.846759	CAff20fd3572764d1ea1eb3098e19e0d63	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE76e55fea219c09dae4201d786ace2a6e	0	inbound	+17707665732	133	15.5686838626861572	\N	select status	herrera c	13	\N	\N	2793
2017-12-23 14:18:52.709887+00	2017-12-23 14:24:41.087475+00	8077	completed	Dimarcus	Curry	collegepark96@gmail.com	+17065401874		224	2017-12-23 14:18:52.707482	2017-12-23 14:22:53.264244	CAf99947f237c7d22e0225dcff1cb6cf4d	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REb6d784ceac5d1edcfd9f7dae05a36349	1	outbound	+17704009016	\N	14.4234039783477783	{}	select status		13	\N	\N	3716
2017-12-22 20:36:08.864012+00	2017-12-22 21:14:03.489687+00	8072	completed	Quinten	Bullock	qmbullock@gmail.com	+17062546652		159	2017-12-22 20:36:08.862412	2017-12-22 20:38:58.899663	CA141198670eff33628b1ea7ee534d0be7	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REe45ca1463cbf847c047d3f3c49a1e4e0	1	outbound	+17704009016	\N	15.3479540348052979	{}	select status		13	\N	\N	3780
2017-12-04 20:07:13.888286+00	2017-12-04 20:07:53.709907+00	7553	completed				+14802757171		40	2017-12-04 20:07:13.886272	2017-12-04 20:07:53.699383	CAb2f76b9eabb6d2ef7cb88875f9665a8a	\N	153			0	inbound	+17707665732	133	14.7501120567321777	\N	new lead	secureclose  ll	13	\N	\N	193
2016-09-01 21:47:26.925206+00	2016-12-10 01:01:51.440758+00	1852	completed				+16192789399		57	2016-09-01 21:47:26.923003	2016-09-01 21:48:23.589083	CAc0b9d133fee0d1de71c77443ff5165b6	\N	50			0	inbound	+18559693782	\N	1.98552894592285156	null	new lead		3	\N	\N	194
2017-05-18 19:38:45.80352+00	2017-11-29 18:38:49.812203+00	5218	completed				+18005785000		63	2017-05-18 19:38:45.801104	2017-05-18 19:39:48.568071	CAa06173cd2149594eb13ee952409bc319	\N	105			0	inbound	+12147122250	\N	5.96379518508911133	\N	new lead	bmw financial services	9	\N	\N	196
2017-05-18 19:40:10.957998+00	2017-11-29 18:38:49.812217+00	5220	completed				+18005785000		119	2017-05-18 19:40:10.956715	2017-05-18 19:42:09.792045	CA03ba4d28a5cafccf66c17a5e528657e9	\N	127			0	inbound	+12147122250	\N	1.53220796585083008	\N	new lead	bmw financial services	9	\N	\N	196
2017-04-14 17:11:34.589008+00	2017-11-29 18:38:53.213915+00	3923	completed				+14057145102		38	2017-04-14 17:11:34.585661	2017-04-14 17:12:12.668495	CA9dd70e1103837bf5d6f6389e7d63e0aa	\N	99			0	inbound	+12146922088	\N	7.29696297645568848	\N	new lead	cell phone   ok	9	\N	\N	197
2017-05-29 08:52:35.927531+00	2017-05-29 08:53:03.217139+00	5480	missed				+17195026027		27	2017-05-29 08:52:35.925176	2017-05-29 08:53:03.208629	CA911f0489cb11eee254c2d5abc96ccb3a	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE1ef50cb2b7f570c90acc6a3c2a75be5e	0	inbound	+18177569010	124	\N	\N	new lead	ackerman wiland	12	\N	\N	201
2016-07-05 20:54:21.006437+00	2016-07-05 20:55:07.109739+00	763	completed				+13308984612		41	2016-07-05 20:54:21.005401	2016-07-05 20:55:07.107976	CA793d6e64edfc8ab240006537834e09b9	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.52590703964233398	{}	new lead		1	\N	\N	205
2016-07-01 02:23:45.177103+00	2017-11-29 18:32:13.821159+00	698	completed	Unknown			+13308984612		36	2016-07-01 02:23:45.175593	2016-07-01 02:24:21.019743	CAc49d073d940bac046376c981d1961dcc	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE6c40c813e2d299039bfad315b56678c1	0	inbound	+18555983683	\N	\N	null	new lead		1	\N	\N	205
2016-07-01 13:57:51.105644+00	2016-07-01 13:58:49.505553+00	705	completed				+13308984612		54	2016-07-01 13:57:51.103899	2016-07-01 13:58:49.504397	CA0648443c0e56677f03704ab17cce1369	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.46907305717468262	{}	new lead		1	\N	\N	205
2016-07-05 20:26:16.430075+00	2017-11-29 18:32:13.821332+00	759	completed				+13308984612		41	2016-07-05 20:26:16.428741	2016-07-05 20:26:57.013973	CAd31fa636f60c40bd00fabd0e58f74d0b	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE010f651b48c5985ebdc9ddec9588c9ee	0	inbound	+18555983683	\N	1.59117603302001953	null	new lead		1	\N	\N	205
2016-07-05 20:28:32.90896+00	2017-11-29 18:32:13.821339+00	760	completed				+13308984612		42	2016-07-05 20:28:32.907818	2016-07-05 20:29:15.343885	CA306d2f798db5761494b41b9f090e22dd	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE1a2c64fb2ff7d1bb3f19b4801fa4a89e	0	inbound	+18555983683	\N	14.3967909812927246	null	new lead		1	\N	\N	205
2017-03-16 19:33:18.661974+00	2017-11-29 18:38:53.212474+00	3468	completed				+12146045741		273	2017-03-16 19:33:18.659493	2017-03-16 19:37:51.592585	CAf48157935385e73e533d333fd651cd6b	\N	99			0	inbound	+12146922088	\N	7.86003398895263672	\N	new lead		9	\N	\N	206
2016-11-02 20:47:13.257406+00	2016-11-02 20:47:13.289851+00	2592	missed	David	Manning	dave@themannings.net	+19193790825		\N	2016-11-02 20:47:13.256005	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	207
2017-12-11 17:17:03.14931+00	2017-12-11 17:20:26.032138+00	7783	completed	Tyler	Parr	Typarr11@gmail.com	+17063622354		180	2017-12-11 17:17:03.147932	2017-12-11 17:20:26.008028	CA5494454d4900d5662cc7f5153e610d62	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REb6931b53ae2d8703c20469f10cbaf709	1	outbound	+17704009016	\N	18.5623228549957275	{}	new lead		13	\N	\N	208
2017-08-25 18:46:15.375782+00	2017-08-25 18:49:59.896084+00	6164	completed				+17064248212		225	2017-08-25 18:46:15.373828	2017-08-25 18:49:59.884081	CA4ce393cd4cabb6622cf503e4d460ef1b	\N	150			0	inbound	+17707665732	133	13.8411622047424316	\N	new lead		13	\N	\N	209
2017-11-27 19:42:28.477835+00	2017-11-27 19:43:54.610667+00	7349	completed	Brian	Woodbury	Woodburybrian17@gmail.com	+16788789737		51	2017-11-27 19:42:28.475768	2017-11-27 19:43:33.00812	CA18f76acff0347f51a4de5f6aff701436	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REfe1991e0849fed6a00d1fe3fd403f3fa	1	outbound	+17704009016	\N	12.1620481014251709	{}	select status		13	\N	\N	211
2017-04-15 14:04:48.661087+00	2017-11-29 18:38:53.213993+00	3951	completed				+12147276248		193	2017-04-15 14:04:48.659107	2017-04-15 14:08:01.265449	CA655640f33db0449bf793ed7f2b9f0590	\N	\N			0	inbound	+12146922088	\N	17.5758638381958008	\N	new lead	valdes glenn   	9	\N	\N	216
2017-04-15 13:54:16.516857+00	2017-11-29 18:38:53.213986+00	3950	completed				+12147276248		36	2017-04-15 13:54:16.515052	2017-04-15 13:54:52.922551	CAe2c9a6fe581a009bbd1a0919de62241e	\N	\N			0	inbound	+12146922088	\N	11.9815449714660645	\N	new lead	valdes glenn   	9	\N	\N	216
2017-12-23 16:33:31.658727+00	2017-12-23 16:38:04.803222+00	8085	completed				+17062864628		272	2017-12-23 16:33:31.656159	2017-12-23 16:38:04.062461	CAe85a862f959b3f804c6f00fb163513e2	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REe72b6190f83eac36bf0462b4fb809145	0	inbound	+17707665732	133	14.2549209594726562	\N	new lead	cell phone   ga	13	\N	\N	1409
2017-12-23 15:54:02.188392+00	2017-12-23 16:01:18.686861+00	8082	completed	Candice 	Allison 	hunter02042017@gmail.con	+14702725545		56	2017-12-23 15:54:02.185758	2017-12-23 15:55:15.345329	CA0f4b934949818ab2ad933a13f5db2e44	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REb770da883ae868a0ceac1feba1985c16	1	outbound	+17704009016	\N	16.1574289798736572	{}	select status		13	\N	\N	1440
2017-05-03 17:52:18.983937+00	2017-05-03 17:53:16.551667+00	4645	completed				+18179466941		56	2017-05-03 17:52:18.982182	2017-05-03 17:53:15.158338	CAcca6cb5316a2fd8e4241c64cac410bd7	\N	132		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REa7c410fd24af47885e04835d998c0a6f	0	inbound	+18172104002	126	8.30066800117492676	\N	new lead	mancha omar    	12	\N	\N	4097
2017-12-23 15:59:39.438037+00	2017-12-26 16:56:14.169379+00	8083	completed	Takeisheya	Brown 	Takeisheyab@yahoo.com	+13526811968		59	2017-12-23 15:59:39.435952	2017-12-23 16:00:54.71097	CA11e24e4c5ca045cc22a46733fd69725d	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE0eab174af29f2bb14ff17fca70f714fb	1	outbound	+17704009016	\N	14.2236409187316895	{}	select status		13	\N	\N	4151
2017-12-23 16:09:30.453515+00	2017-12-26 16:56:14.169404+00	8084	missed	Takeisheya	Brown 		+13526811968		41	2017-12-23 16:09:30.451633	2017-12-23 16:10:11.243678	CA951e7b7b873236d451b2c145fd512a5d	\N	\N			0	inbound	+17704009016	132	356.449508905410767	\N	select status	cell phone   fl	13	\N	\N	4151
2017-12-23 17:38:19.496522+00	2017-12-26 16:56:14.169413+00	8087	missed	Takeisheya	Brown 		+13526811968		42	2017-12-23 17:38:19.494387	2017-12-23 17:39:01.548028	CA22516488e7ae26268499f66c69170625	\N	\N			0	inbound	+17704009016	132	\N	\N	select status	cell phone   fl	13	\N	\N	4151
2017-12-12 00:54:30.462957+00	2017-12-12 00:59:22.060437+00	7803	completed				+17133493018		290	2017-12-12 00:54:30.461273	2017-12-12 00:59:20.769982	CA6c8e349d9420c9f8f1ea5414d331406d	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE7a04b2325f83a27a9129207c4b390dcf	0	inbound	+18558645656	136	2.50595998764038086	\N	new lead		15	\N	\N	81
2017-12-06 01:24:25.531765+00	2017-12-06 01:25:06.28766+00	7622	completed				+17133493018		40	2017-12-06 01:24:25.529702	2017-12-06 01:25:05.061597	CAf781eaf6384818e2df4211ed44c50857	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE277631815339b2ccb5c888223e01480f	0	inbound	+18558645656	136	2.71020293235778809	\N	new lead		15	\N	\N	81
2017-10-11 21:22:46.273435+00	2017-10-11 21:25:48.181046+00	6668	completed				+13473536880		181	2017-10-11 21:22:46.271185	2017-10-11 21:25:47.37231	CA90bbc37a25385bb1aec05acb5f9bef4c	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REf5ef57690579e18eacb8f39812f16bd3	0	inbound	+18177569010	124	6.506195068359375	\N	new lead	freeman troy	12	\N	\N	82
2017-10-11 21:39:36.970286+00	2017-10-11 21:40:34.306119+00	6669	completed				+13473536880		57	2017-10-11 21:39:36.968203	2017-10-11 21:40:34.021593	CA3bae7de00974ce75843c5cb9cf542378	\N	155			0	inbound	+18177569010	124	25.361055850982666	\N	new lead	freeman troy	12	\N	\N	82
2017-10-12 16:30:59.825131+00	2017-10-12 16:31:48.85134+00	6679	completed				+13473536880		48	2017-10-12 16:30:59.822733	2017-10-12 16:31:47.698008	CAcce6c3d9c109de8973e09e5017651671	\N	155		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE16ad8fe5b2c9f3f17397a46b672dae4f	0	inbound	+18177569010	124	11.8742561340332031	\N	new lead	freeman troy	12	\N	\N	82
2016-10-05 18:35:39.561735+00	2016-12-10 01:01:00.200274+00	2192	completed				+16192282800		299	2016-10-05 18:35:39.560307	2016-10-05 18:40:38.863832	CA4fbd352442cd78c94ec66309f9b2211b	\N	57			0	inbound	+18557860909	\N	27.4564688205718994	null	new lead		3	\N	\N	86
2017-08-08 14:37:36.010171+00	2017-08-08 14:38:43.784314+00	5963	completed	Justin	Robinson	quackster1620@gmail.com	+17706082633		51	2017-08-08 14:37:36.008751	2017-08-08 14:38:43.756966	CAf5ee94214237469f42d2295085be28c2	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REff5140d83661cce61074bb964b3d77ee	1	outbound	+17704009016	\N	15.7369530200958252	{}	new lead		13	\N	\N	218
2017-12-27 01:11:13.183833+00	2017-12-27 20:38:14.262333+00	8112	missed	Katie	Moore	kearwood@gmail.com	+14702587628		\N	2017-12-27 01:11:13.1825	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	706
2017-05-04 20:48:28.301295+00	2017-11-29 18:38:53.215107+00	4724	completed				+19256988100		88	2017-05-04 20:48:28.299342	2017-05-04 20:49:56.117196	CAe23f41b90df3f2415360c893a2f4c06f	\N	\N			0	inbound	+12146922088	\N	1.90381979942321777	\N	new lead	cell phone   ca	9	\N	\N	1767
2017-12-26 15:44:59.506608+00	2017-12-26 16:12:32.159819+00	8097	completed	Michael	Edmonds	Edmondsmichael1976@gmail.com	+17062971673		165	2017-12-26 15:44:59.505202	2017-12-26 15:48:05.702315	CAe5cce7b81e38b9f47d4324ee20eeb621	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REc09f3ae3d33862f45e09abc0ee8428d6	1	outbound	+17704009016	\N	16.4333560466766357	{}	select status		13	\N	\N	2349
2017-12-26 16:53:18.479985+00	2017-12-26 16:56:14.155876+00	8102	completed	Aja	Hall		+13526811968		97	2017-12-26 16:53:18.478606	2017-12-26 16:54:55.068594	CA25879a0afadd9da6cd0ec8ed5cced82e	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE45cd2597bbcefd2af8a6bdde1c02c391	0	inbound	+17704009016	132	15.4278678894042969	\N	select status	cell phone   fl	13	\N	\N	4151
2017-12-26 16:52:56.565726+00	2017-12-26 16:58:48.618074+00	8101	missed	Aja	Hall		+13526811968		8	2017-12-26 16:52:56.56387	2017-12-26 16:53:04.351059	CA2c10d1344d9ecfb9b8ec5097c8876226	\N	\N			0	inbound	+17704009016	132	333.940533876419067	\N	select status	cell phone   fl	13	\N	\N	4151
2017-12-26 15:57:24.824035+00	2017-12-26 16:56:14.16942+00	8098	completed	Aja	Hall	ajasimonehall@gmail.com	+13526811968		50	2017-12-26 15:57:24.822361	2017-12-26 15:58:27.991808	CAc0bec71afe9fcadf237a9ad020cf8fbf	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE112cf15a37ac6547ea668bf5fb119c62	1	outbound	+17704009016	\N	17.8564000129699707	{}	select status		13	\N	\N	4151
2017-12-26 15:58:33.356517+00	2017-12-26 16:56:14.169427+00	8099	completed	Aja	Hall		+13526811968		202	2017-12-26 15:58:33.354983	2017-12-26 16:01:55.597478	CA42469c9790aa9f8ae2f735c1150678b4	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REe5ed700b44b0fdd0d1848da9809b1bed	0	inbound	+17704009016	132	11.0100560188293457	\N	select status	cell phone   fl	13	\N	\N	4151
2017-12-26 17:39:45.710514+00	2017-12-26 17:41:06.860211+00	8103	completed	Aja	Hall		+13526811968		80	2017-12-26 17:39:45.707155	2017-12-26 17:41:05.616454	CA7770717036e0fadf97d54455173d1fac	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REecffe1bc2f8982dd463f2ba1b5143601	0	inbound	+17704009016	132	17.5560190677642822	\N	select status	cell phone   fl	13	\N	\N	4151
2017-12-26 17:41:21.596168+00	2017-12-26 17:47:21.37392+00	8104	completed	Aja	Hall		+13526811968		359	2017-12-26 17:41:21.594427	2017-12-26 17:47:20.732575	CAd7a01272673d5734538bcb1e7390e4d9	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE714c37c896b7626f49cbed6a4de99015	0	inbound	+17704009016	132	18.0682752132415771	\N	select status	cell phone   fl	13	\N	\N	4151
2017-08-08 14:38:17.119118+00	2017-08-08 14:44:30.059893+00	5964	completed	Justin	Robinson		+17706082633		372	2017-08-08 14:38:17.117949	2017-08-08 14:44:29.316935	CA26d86ce1909e95adb9538c795f7a7f51	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE68e0355ae1ad49e7ed7e08d885ad2341	0	inbound	+17704009016	132	26.0121250152587891	\N	new lead		13	\N	\N	218
2017-08-08 15:07:48.642958+00	2017-08-08 15:09:34.321764+00	5965	completed	Justin	Robinson		+17706082633		105	2017-08-08 15:07:48.641116	2017-08-08 15:09:33.553446	CAa1f2ae8ac0bf0f0a09ead94086eebd37	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REe802e46c8b343d5cf8d3ad7cf3900c20	0	inbound	+17704009016	132	17.7808539867401123	\N	new lead		13	\N	\N	218
2017-04-02 18:32:53.480793+00	2017-11-29 18:38:53.213256+00	3666	completed				+12818441089		39	2017-04-02 18:32:53.479013	2017-04-02 18:33:32.90216	CAe6c4095d6abcb65e964ea5d06891c31f	\N	105			0	inbound	+12146922088	\N	6.344757080078125	\N	new lead	s s food servic	9	\N	\N	219
2017-04-02 18:36:46.095328+00	2017-11-29 18:38:53.213263+00	3667	completed				+12818441089		534	2017-04-02 18:36:46.093556	2017-04-02 18:45:40.133969	CA40064e8387ad39ba09870ac442ad82b3	\N	\N			0	inbound	+12146922088	\N	3.80273699760437012	\N	new lead	s s food servic	9	\N	\N	219
2017-09-25 13:44:53.35268+00	2017-09-25 13:48:21.246021+00	6476	completed				+14049332915		208	2017-09-25 13:44:53.350964	2017-09-25 13:48:21.222074	CAecb2871f6fd669f591bbf3bb580033d9	\N	153			0	inbound	+17707665732	133	7.32029008865356445	\N	new lead		13	\N	\N	220
2016-11-02 16:14:40.018625+00	2016-11-02 16:17:43.801892+00	2562	completed				+18176828563		183	2016-11-02 16:14:40.017014	2016-11-02 16:17:42.876475	CAa748f6397b3b1f53d78fba2f398ece7b	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REbaf742b33c34883eb9f48ed3aede5fe0	0	inbound	+18557240606	49	\N	null	new lead		1	\N	\N	221
2017-05-10 16:09:50.435666+00	2017-11-29 18:38:53.215562+00	4951	completed				+16823338808		306	2017-05-10 16:09:50.433395	2017-05-10 16:14:55.93653	CAf7ba4a489af65b24b80babbcfe38c856	\N	133		https://api.twilio.com/2010-04-01/Accounts/AC5422b9b221417a7a84556a92f6edc492/Recordings/RE21fa2c827eb395d64e37cc741912d6be	0	inbound	+12146922088	\N	3.61816716194152832	\N	new lead	minez g	9	\N	\N	223
2017-12-27 14:31:41.155493+00	2017-12-27 14:35:04.72148+00	8118	completed				+16822053433		202	2017-12-27 14:31:41.153649	2017-12-27 14:35:03.569446	CAe00d6ff21da45d14fe64011c88b0b72b	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE0b5d6d05c7f133406cc80bd01e67aced	0	inbound	+18177569010	124	14.9361810684204102	\N	new lead	dempsey  glenda	12	\N	\N	102
2017-12-27 20:32:47.920553+00	2017-12-27 20:38:14.248012+00	8124	completed	Katie	Moore	kearwood@gmail.com	+14702587628		177	2017-12-27 20:32:47.917222	2017-12-27 20:35:44.527462		\N	153			0	outbound	+17704009016	132	\N	\N	select status		13	\N	\N	706
2017-12-27 14:27:14.783693+00	2017-12-27 14:27:51.678552+00	8117	completed	Aja	Hall		+13526811968		36	2017-12-27 14:27:14.781721	2017-12-27 14:27:51.151405	CAcc302f1ccbb0b6f0f6be6f7c0f90b9f9	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE4f08d9d6df7cf24b66540329ee25e0cb	0	inbound	+17704009016	132	28.1212930679321289	\N	select status	cell phone   fl	13	\N	\N	4151
2017-04-27 21:58:06.133708+00	2017-11-29 18:38:49.807208+00	4411	completed				+13863382929		44	2017-04-27 21:58:06.13205	2017-04-27 21:58:50.149792	CA4c3f306750e0749e75b5cf6efd5b150a	\N	\N			0	inbound	+12147122250	\N	5.71536684036254883	\N	new lead	mckaig lissa   	9	\N	\N	97
2017-05-24 16:07:52.722477+00	2017-11-29 18:38:49.813034+00	5352	completed				+13863382929		183	2017-05-24 16:07:52.719642	2017-05-24 16:10:55.321827	CAf9ddd03ed8b18474f2024eebab7b03b7	\N	107			0	inbound	+12147122250	\N	6.51196002960205078	\N	new lead	mckaig lissa   	9	\N	\N	97
2017-10-06 21:41:49.118748+00	2017-10-06 21:43:34.958416+00	6608	completed				+16787916069		106	2017-10-06 21:41:49.116453	2017-10-06 21:43:34.937337	CAafe96658a1821fd69ac9bb30e2c65e8a	\N	150			0	inbound	+17707665732	133	23.8622889518737793	\N	new lead		13	\N	\N	99
2017-04-26 20:40:54.601869+00	2017-11-29 18:38:49.806801+00	4338	completed				+12152458100		112	2017-04-26 20:40:54.599204	2017-04-26 20:42:46.118147	CA8bb3175c6592c543d8201ed6d6543b5b	\N	124			0	inbound	+12147122250	\N	0.946839094161987305	\N	new lead	eddington  pa	9	\N	\N	225
2017-04-27 13:55:17.797124+00	2017-11-29 18:38:49.806873+00	4356	completed				+12152458100		609	2017-04-27 13:55:17.795222	2017-04-27 14:05:26.861326	CAb3aa002937719cb4e3cd248171442375	\N	127			0	inbound	+12147122250	\N	1.12792801856994629	\N	new lead	eddington  pa	9	\N	\N	225
2017-04-27 13:56:31.730788+00	2017-11-29 18:38:49.80688+00	4357	completed				+12152458100		70	2017-04-27 13:56:31.729539	2017-04-27 13:57:41.723392	CA39a1cd49a09a1591e8f8c8fe43eb60ff	\N	125			0	inbound	+12147122250	\N	1.08503389358520508	\N	new lead	eddington  pa	9	\N	\N	225
2017-04-27 16:10:58.676365+00	2017-11-29 18:38:49.806915+00	4363	completed				+12152458100		108	2017-04-27 16:10:58.674283	2017-04-27 16:12:46.363901	CA04abcccac133cc06ebf65b58423b221f	\N	124			0	inbound	+12147122250	\N	1.24964594841003418	\N	new lead	eddington  pa	9	\N	\N	225
2017-04-28 16:13:19.772546+00	2017-11-29 18:38:49.807258+00	4421	completed				+12152458100		71	2017-04-28 16:13:19.768665	2017-04-28 16:14:30.739618	CA7e17d444bb5c44f3b57bcebcfe5a3cdb	\N	124			0	inbound	+12147122250	\N	1.30870509147644043	\N	new lead	eddington  pa	9	\N	\N	225
2017-04-28 16:14:24.714976+00	2017-11-29 18:38:49.807265+00	4422	completed				+12152458100		137	2017-04-28 16:14:24.712028	2017-04-28 16:16:41.917595	CAa583299e0fc91778f7dba709cbb8857d	\N	\N			0	inbound	+12147122250	\N	8.77191305160522461	\N	new lead	eddington  pa	9	\N	\N	225
2017-04-28 16:28:12.900398+00	2017-11-29 18:38:49.807272+00	4424	completed				+12152458100		184	2017-04-28 16:28:12.898512	2017-04-28 16:31:16.457255	CA219e484de5b7f572be70f6cf5691be5c	\N	105			0	inbound	+12147122250	\N	2.21486115455627441	\N	new lead	eddington  pa	9	\N	\N	225
2017-05-24 19:50:11.183223+00	2017-11-29 18:38:49.813284+00	5377	completed				+12152458100		69	2017-05-24 19:50:11.180739	2017-05-24 19:51:19.807854	CAee13654f0ef384b6e3ed6aa6f377a3c7	\N	124			0	inbound	+12147122250	\N	1.75917482376098633	\N	new lead	eddington  pa	9	\N	\N	225
2017-05-24 19:51:13.042507+00	2017-11-29 18:38:49.813293+00	5378	completed				+12152458100		66	2017-05-24 19:51:13.04085	2017-05-24 19:52:18.609343	CAc611bba697f6be125646f4739e043fdf	\N	124			0	inbound	+12147122250	\N	1.22099685668945312	\N	new lead	eddington  pa	9	\N	\N	225
2017-05-24 19:52:13.560257+00	2017-11-29 18:38:49.813301+00	5379	completed				+12152458100		77	2017-05-24 19:52:13.558354	2017-05-24 19:53:30.163726	CA91f9ac33e365a4424200005e083fe70f	\N	127			0	inbound	+12147122250	\N	1.14505720138549805	\N	new lead	eddington  pa	9	\N	\N	225
2017-05-24 19:53:31.1013+00	2017-11-29 18:38:49.813316+00	5381	completed				+12152458100		56	2017-05-24 19:53:31.099421	2017-05-24 19:54:26.980875	CA0738f2fbe0f68b9cea74556692b6ab2c	\N	\N			0	inbound	+12147122250	\N	5.90583515167236328	\N	new lead	eddington  pa	9	\N	\N	225
2017-05-24 19:54:22.829983+00	2017-11-29 18:38:49.813323+00	5382	completed				+12152458100		73	2017-05-24 19:54:22.828664	2017-05-24 19:55:36.245071	CA7484ef764ea2c953ddc7a1cc67754292	\N	125			0	inbound	+12147122250	\N	1.43454408645629883	\N	new lead	eddington  pa	9	\N	\N	225
2017-05-25 14:11:19.509546+00	2017-11-29 18:38:49.813344+00	5385	completed				+12152458100		72	2017-05-25 14:11:19.507687	2017-05-25 14:12:31.433756	CA9d111cc8e26a483d53c86741c8e17e19	\N	125			0	inbound	+12147122250	\N	0.994096994400024414	\N	new lead	eddington  pa	9	\N	\N	225
2016-11-04 18:45:57.139112+00	2016-11-04 18:45:57.168084+00	2718	missed	Derek	Stay	derektylerstay@gmail.com	+17706176598		\N	2016-11-04 18:45:57.138045	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	230
2016-09-29 16:18:16.452937+00	2017-02-11 20:02:07.779507+00	2104	completed				+16466783620		164	2016-09-29 16:18:16.449514	2016-09-29 16:21:00.241764	CA6ebe18c56af41fc2efe6884b652ccbab	\N	\N			0	inbound	+18559763286	\N	2.36408185958862305	null	new lead		3	\N	\N	231
2016-11-09 21:16:07.441692+00	2016-11-09 21:16:07.478952+00	2824	missed	richard	tedford	rcted@gmail.com	+18324162670		\N	2016-11-09 21:16:07.440423	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	232
2017-10-05 15:10:26.784483+00	2017-10-05 15:11:34.567663+00	6592	completed				+12294493853		68	2017-10-05 15:10:26.782254	2017-10-05 15:11:34.556692	CA5360f9af7c8fa7683e5e9357a2b90829	\N	153			0	inbound	+17707665732	133	17.3844170570373535	\N	new lead		13	\N	\N	236
2017-10-27 20:58:56.633954+00	2017-10-27 21:03:31.839072+00	6847	completed				+12294493853		275	2017-10-27 20:58:56.631775	2017-10-27 21:03:31.821647	CA291cf1795d08d68109096b4b138707d5	\N	153			0	inbound	+17707665732	133	9.68684196472167969	\N	new lead		13	\N	\N	236
2017-11-01 13:05:48.769951+00	2017-11-01 13:10:42.250157+00	6887	completed	Corey	Burden	Ceburden@hotmail.com	+12294493853		282	2017-11-01 13:05:48.768267	2017-11-01 13:10:42.249051	CA8210fb8a43a7dccf0feee56a634bf92c	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REb85363d30fd540c764b1cbe66622f5f1	1	outbound	+17704009016	\N	9.40533685684204102	{}	new lead		13	\N	\N	236
2016-06-07 20:09:18.974484+00	2016-06-07 20:10:08.344879+00	392	completed				+15136587330		44	2016-06-07 20:09:18.972968	2016-06-07 20:10:08.34365	CAdb2398e2e9d9bd2e82e7c3983ec2dadb	1b57cdfb-d740-4953-b96e-8faa81f78a40	16			1	outbound	+18557824539	\N	1.7935631275177002	{}	new lead		1	\N	\N	237
2016-05-24 01:25:24.951547+00	2016-05-25 17:58:25.282453+00	184	completed	Nicholas	Seitz	seitzn@gmail.com	+15136587330		\N	2016-05-24 01:25:24.950519	\N		253cd8e5-09ac-4056-92ec-7e351aa19233	\N			0	outbound	+18557824539	\N	\N	{}	new lead		1	\N	\N	237
2016-11-14 16:59:42.72173+00	2016-11-14 17:29:00.027727+00	2888	completed				+18587350468		1754	2016-11-14 16:59:42.720411	2016-11-14 17:28:57.119281	CAd1076de6877e29497a1f617d9bc060f0	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REe9e082032391d9d737792afdd9b8e1f0	0	inbound	+18557240606	49	2.17379307746887207	null	new lead		1	\N	\N	128
2016-07-06 17:28:30.626767+00	2017-11-29 18:31:41.490326+00	777	completed	David	Salvado		+17402154664		46	2016-07-06 17:28:30.625764	2016-07-06 17:29:17.084684	CA800e056732199a88b9b72204d344df1f	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE5f27d44a31c40eeba049481fb2cf9542	0	inbound	+18552959002	\N	14.1335239410400391	null	application started		1	\N	\N	129
2017-03-21 15:46:42.721408+00	2017-11-29 18:38:53.212714+00	3519	completed				+12147663716		284	2017-03-21 15:46:42.719187	2017-03-21 15:51:26.507072	CA75f847e6501dc1381adef6cfd0536d98	\N	107			0	inbound	+12146922088	\N	7.77563881874084473	\N	new lead		9	\N	\N	143
2016-05-25 17:20:53.101353+00	2016-05-25 17:22:04.163143+00	220	completed				+15136587330		66	2016-05-25 17:20:53.100134	2016-05-25 17:22:04.162168	CA597b0de9ed056b703c40498790489d7a	1b57cdfb-d740-4953-b96e-8faa81f78a40	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE8226089db7922f4d008e877dd9e2f83a	1	outbound	+18557824539	\N	2.53939104080200195	{}	new lead		1	\N	\N	237
2016-06-07 20:12:56.199936+00	2016-06-07 20:14:17.29477+00	393	completed				+15136587330		77	2016-06-07 20:12:56.198899	2016-06-07 20:14:17.293304	CAc0b05af337f553c2e142c19c6b15e0ce	1b57cdfb-d740-4953-b96e-8faa81f78a40	16			1	outbound	+18557824539	\N	1.49302887916564941	{}	new lead		1	\N	\N	237
2016-05-24 01:05:58.583684+00	2017-11-29 18:31:05.368837+00	183	completed	Unknown			+15136587330		13	2016-05-24 01:05:58.582025	2016-05-24 01:06:11.428898	CA3c880f9098080f256c87af161fe9d85a	\N	\N			0	inbound	+18557824539	\N	\N	null	new lead		1	\N	\N	237
2016-06-06 15:21:02.908187+00	2016-06-06 15:21:51.444587+00	383	completed				+12168624697		44	2016-06-06 15:21:02.907258	2016-06-06 15:21:51.443646	CA8c735cca342a28da0ab792892f4efa42	c6c46e91-97c9-404c-92ba-454008d80db7	16			1	outbound	+18556311397	\N	2.22423195838928223	{}	new lead		1	\N	\N	238
2016-06-06 15:20:26.112056+00	2016-06-06 15:22:17.817087+00	382	completed				+12168624697		16	2016-06-06 15:20:26.110875	2016-06-06 15:20:46.32106	CA9d2beb02fd8343ee21089653f60c4b89	c6c46e91-97c9-404c-92ba-454008d80db7	\N			1	outbound	+18556311397	\N	1.29401206970214844	{}	new lead		1	\N	\N	238
2016-06-03 19:47:28.93487+00	2017-11-29 18:31:56.600104+00	372	completed	Unknown			+12168624697		9	2016-06-03 19:47:28.932807	2016-06-03 19:47:38.370682	CA126ac61762eaed0ea7a01f6a5e3c39f6	\N	\N			0	inbound	+18556311397	\N	\N	null	new lead		1	\N	\N	238
2017-03-20 18:41:48.059396+00	2017-11-29 18:38:53.21265+00	3509	completed				+12146002874		43	2017-03-20 18:41:48.057154	2017-03-20 18:42:30.939988	CA4295b11abd0d9cc342842f131d28b1c8	\N	105			0	inbound	+12146922088	\N	4.55817198753356934	\N	new lead		9	\N	\N	239
2017-03-20 18:48:22.8849+00	2017-11-29 18:38:53.212657+00	3510	completed				+12146002874		137	2017-03-20 18:48:22.88163	2017-03-20 18:50:39.975066	CA561be42ad9ba2541f00baffaec3e776d	\N	107			0	inbound	+12146922088	\N	6.24726295471191406	\N	new lead		9	\N	\N	239
2017-12-09 18:01:09.916172+00	2017-12-09 22:24:31.116094+00	7746	completed	Alexander	dunn	dunn.alexander93@gmail.com	+17063515069		56	2017-12-09 18:01:09.914913	2017-12-09 18:02:17.885081	CA3e952587c2afb1fc910fe65ebdcebb03	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REa6a5c63d7dbd24165c1c2b1eb0843431	1	outbound	+17704009016	\N	12.1878321170806885	{}	select status		13	\N	\N	242
2017-03-08 22:43:10.757751+00	2017-11-29 18:38:53.211925+00	3352	completed				+13148520290		197	2017-03-08 22:43:10.755599	2017-03-08 22:46:27.452592	CA269c8d9d60acb706f75fbda4fae89e6f	\N	107			0	inbound	+12146922088	\N	10.9191198348999023	\N	new lead	end            	9	\N	\N	243
2016-10-31 21:43:13.770061+00	2016-10-31 22:28:05.59421+00	2425	completed				+17703693197		2687	2016-10-31 21:43:13.768273	2016-10-31 22:28:00.818634	CA44bbcab707711c1f11178456f916411d	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE4bfee8750f9974040e291ef916292122	0	inbound	+18557240606	49	2.12136602401733398	null	new lead		1	\N	\N	244
2016-10-03 21:14:20.063855+00	2016-12-10 01:01:51.440981+00	2131	completed				+18589224160		372	2016-10-03 21:14:20.061547	2016-10-03 21:20:32.452854	CA54fb9c68a65367db11e7f436d8be80c2	\N	50			0	inbound	+18559693782	\N	2.15194988250732422	null	new lead		3	\N	\N	245
2017-12-20 14:04:29.769275+00	2017-12-20 14:07:06.653873+00	8021	completed	Bryan	Bay	bryan.a.bay@gmail.com	+18167260738		153	2017-12-20 14:04:29.766702	2017-12-20 14:07:06.650341	CA6fc04e577adf5b740ad0287207c57ea1	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.56274199485778809	{}	new lead		15	\N	\N	247
2017-12-06 01:33:29.085766+00	2017-12-06 01:34:08.967827+00	7624	completed				+17862390471		39	2017-12-06 01:33:29.083881	2017-12-06 01:34:08.203791	CA4c3e17be808cf089d1bb1c4329a63513	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REcab378c03688277df5c30abc96059aac	0	inbound	+18558645656	136	3.01592516899108887	\N	new lead		15	\N	\N	250
2017-12-18 18:07:47.467136+00	2017-12-18 18:08:09.353741+00	7971	completed				+14045736782		21	2017-12-18 18:07:47.465367	2017-12-18 18:08:08.636732	CAd52ef242ed61da1b0ccfc583597d3962	\N	157		https://api.twilio.com/2010-04-01/Accounts/ACbd7756819f4882feb347788ad7959655/Recordings/RE30af35a5a05c276f24527cd624d9dd4b	0	inbound	+17706597466	137	4.92541909217834473	\N	new lead		14	\N	\N	252
2017-08-12 14:30:26.934126+00	2017-08-12 14:34:30.025259+00	6001	completed	Derrick 	Jones 	Jonesd30601@yahoo.com	+17065406666		230	2017-08-12 14:30:26.932518	2017-08-12 14:34:29.999528	CA10edf0ec1cf1f366601db0ca3efd6a1c	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REa381d222ed89f465e67f5baca553273c	1	outbound	+17704009016	\N	8.5592951774597168	{}	new lead		13	\N	\N	253
2016-11-01 15:46:49.200132+00	2016-11-01 15:46:49.234891+00	2467	missed	Kiri	Norman	Pink_angel3792@yahoo.com	+14692718396		\N	2016-11-01 15:46:49.198872	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	254
2016-09-07 17:07:16.540383+00	2016-12-10 01:04:42.413625+00	1911	completed				+15625057588		225	2016-09-07 17:07:16.538709	2016-09-07 17:11:01.357392	CA95250513bf413022c6793cc037e2c3b0	\N	58			0	inbound	+18552187903	\N	1.21665716171264648	null	new lead		3	\N	\N	259
2017-12-14 19:36:37.174871+00	2017-12-14 19:53:22.398815+00	7874	completed				+17067137708		193	2017-12-14 19:36:37.173202	2017-12-14 19:39:50.306567	CAd72ead02fc7a93643950bb37929a4458	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REad258a8ecc560d2109620111dda448e8	0	inbound	+17707665732	133	16.2100021839141846	\N	select status	moore jeffery	13	\N	\N	261
2017-12-14 21:25:10.754524+00	2017-12-14 21:26:15.404752+00	7879	completed				+17067137708		64	2017-12-14 21:25:10.75244	2017-12-14 21:26:14.763861	CA2a0ab68f59640ea2bf66b516761be27f	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE61074df9c51708b14a71d2d3425df1e5	0	inbound	+17707665732	133	15.4590270519256592	\N	select status	moore jeffery	13	\N	\N	261
2017-12-06 19:24:35.370477+00	2017-12-06 19:41:32.953313+00	7651	completed	James	Voorhies	faithgolf@hotmail.com	+15129830387		1013	2017-12-06 19:24:35.369123	2017-12-06 19:41:32.951684	CAcdcbe0a52bd295a2f0e51f2dd4281e2b	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.77442002296447754	{}	new lead		15	\N	\N	263
2017-03-22 15:53:32.478714+00	2017-11-29 18:38:53.212756+00	3536	completed				+19056935355		57	2017-03-22 15:53:32.476488	2017-03-22 15:54:29.318737	CAc8e389cc6c79989778fa3d45c46cd41f	\N	\N			0	inbound	+12146922088	\N	3.57856607437133789	\N	new lead	milton  on	9	\N	\N	264
2017-12-29 15:38:11.462683+00	2017-12-29 15:44:09.589987+00	8150	completed	Jerry	Ray	rayjerry555@gmail.com	+14049576976		317	2017-12-29 15:38:11.460967	2017-12-29 15:43:43.89327	CA7755f9d5e67e6c14e8532dafe5a45856	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE8a6338ed1462eb6faea2c47c71724971	1	outbound	+17704009016	\N	24.8697030544281006	{}	select status		13	\N	\N	1720
2017-12-29 16:08:30.073773+00	2017-12-29 16:15:12.259706+00	8151	completed	Nakisha	Knight 		+17063187801		402	2017-12-29 16:08:30.070986	2017-12-29 16:15:11.682679	CA03528278a509f9e1bbd93c5a8fa00bb5	\N	154		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE8739b1dee57ad81b041fe2eaa0bcabdd	0	inbound	+17707665699	134	1.3421778678894043	\N	select status	cell phone   ga	13	\N	\N	3608
2017-10-03 19:36:20.736215+00	2017-10-03 19:37:35.715971+00	6571	completed				+17064985048		75	2017-10-03 19:36:20.732932	2017-10-03 19:37:35.703439	CAfbe595b180f9fafd62866f3ba816548b	\N	150			0	inbound	+17707665732	133	20.247035026550293	\N	new lead		13	\N	\N	170
2017-10-03 19:35:40.835577+00	2017-10-03 19:35:45.11594+00	6570	completed				+17064985048		4	2017-10-03 19:35:40.832298	2017-10-03 19:35:45.098397	CA155daf11c561898a6b70a921131b0d55	\N	154			0	inbound	+17707665699	134	1.61806297302246094	\N	new lead		13	\N	\N	170
2017-08-24 15:26:41.218494+00	2017-08-24 15:31:02.853104+00	6153	completed	Michael	Phelps	mikephelps70@yahoo.com	+17705498552		245	2017-08-24 15:26:41.216914	2017-08-24 15:31:02.3909	CA6de77ff739fd04728d3151e7d32e8499	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REaa3546522e654da77336150856749307	1	outbound	+17704009016	\N	14.7410321235656738	{}	new lead		13	\N	\N	175
2017-12-17 00:19:16.513209+00	2017-12-17 00:19:58.996587+00	7952	completed				+18176144095		41	2017-12-17 00:19:16.511587	2017-12-17 00:19:57.85789	CA31d4eec0bd690cd826106285a79c6ca6	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE4333ca9f593d78d2da8d7002e895095b	0	inbound	+18177569010	124	6.02109408378601074	\N	new lead	martinez rodrig	12	\N	\N	176
2017-01-12 20:52:47.301993+00	2017-02-08 14:11:31.322271+00	3118	missed	andrew	gilinger	gilinger37@gmail.com	+17169570907		\N	2017-01-12 20:52:47.298993	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	application submitted - autopay		1	\N	\N	265
2016-09-03 18:27:10.790446+00	2016-12-10 01:00:18.568378+00	1874	completed				+16194260964		271	2016-09-03 18:27:10.788846	2016-09-03 18:31:41.874631	CAcc53e4ccfa33fead2213846f113bd0b4	\N	56			0	inbound	+18556775511	\N	9.02152609825134277	null	new lead		3	\N	\N	275
2016-06-29 15:06:16.907772+00	2017-11-29 18:32:13.820907+00	641	completed	Unknown			+13303721593		27	2016-06-29 15:06:16.9065	2016-06-29 15:06:44.015815	CAa0a2fe6ee9718f0c5174d042bd786212	\N	\N			0	inbound	+18555983683	\N	13.9465088844299316	null	new lead		1	\N	\N	277
2016-11-03 22:15:49.112506+00	2016-11-03 22:29:55.544924+00	2668	completed				+12149344121		845	2016-11-03 22:15:49.110794	2016-11-03 22:29:53.669078	CA960b9ca6546a1a68f38773dc2fd68852	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REbb7ea6e356d3fe9ada1b9c0412618b2d	0	inbound	+18557240606	49	2.14476799964904785	null	new lead		1	\N	\N	279
2016-11-03 22:31:08.885747+00	2016-11-03 23:07:08.193892+00	2671	completed				+12149344121		2159	2016-11-03 22:31:08.884794	2016-11-03 23:07:07.985614	CAf1db9b4fd827b668e86450ca14798ffd	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REdd3ea307cd31eb36ae79eb6d2e0f06ea	0	inbound	+18557240606	49	1.93877315521240234	null	new lead		1	\N	\N	279
2016-11-01 16:51:29.895644+00	2016-11-01 16:58:20.182846+00	2477	completed				+19194184533		410	2016-11-01 16:51:29.894039	2016-11-01 16:58:19.695371	CA13ba57de3f2891d45fa191f44312dfff	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REb50976086859b81542abb7c699371387	0	inbound	+18557240606	49	1.78510904312133789	null	new lead		1	\N	\N	280
2016-11-01 17:25:37.510819+00	2016-11-01 17:34:04.513633+00	2480	completed				+19194184533		505	2016-11-01 17:25:37.508995	2016-11-01 17:34:02.734054	CA72e1010ddb395b4af875689e12105203	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE356039393bc1b2f2f9d885bbf6d31a32	0	inbound	+18557240606	49	2.24041318893432617	null	new lead		1	\N	\N	280
2017-05-13 19:18:37.809177+00	2017-11-29 18:38:49.811466+00	5058	completed				+19494008887		191	2017-05-13 19:18:37.807047	2017-05-13 19:21:49.018606	CA65d16fd2a77e3509d1a19c8e6d880319	\N	107			0	inbound	+12147122250	\N	10.2218079566955566	\N	new lead	hass steven    	9	\N	\N	282
2017-05-13 19:22:05.803515+00	2017-11-29 18:38:49.811473+00	5059	missed				+19494008887		32	2017-05-13 19:22:05.800754	2017-05-13 19:22:37.612641	CAcf5a17b695fc856d65f017bc8b5a3c62	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	hass steven    	9	\N	\N	282
2017-04-18 20:03:05.904756+00	2017-11-29 18:38:53.214205+00	4055	completed				+13108738022		69	2017-04-18 20:03:05.901634	2017-04-18 20:04:14.889107	CA1928dc170a686586d4f109c11db3bee4	\N	107			0	inbound	+12146922088	\N	3.52655601501464844	\N	new lead	ramirez adriana	9	\N	\N	283
2017-04-18 19:50:26.214172+00	2017-11-29 18:38:53.214191+00	4053	completed				+13108738022		351	2017-04-18 19:50:26.210948	2017-04-18 19:56:17.205499	CA8c9af477310eeba2fd969daf3dc7193d	\N	\N			0	inbound	+12146922088	\N	6.57991600036621094	\N	new lead	ramirez adriana	9	\N	\N	283
2017-04-18 20:15:09.870016+00	2017-11-29 18:38:53.214212+00	4056	completed				+13108738022		74	2017-04-18 20:15:09.86738	2017-04-18 20:16:23.919978	CA58e7421204fc259c5278c1c7377b871b	\N	\N			0	inbound	+12146922088	\N	9.56225204467773438	\N	new lead	ramirez adriana	9	\N	\N	283
2017-04-18 20:00:23.411011+00	2017-11-29 18:38:53.214198+00	4054	missed				+13108738022		4	2017-04-18 20:00:23.408329	2017-04-18 20:00:27.168663	CAa5edc82f5e3b6a5f58b2b825e0f98b41	\N	\N			0	inbound	+12146922088	\N	\N	\N	new lead	kream entertain	9	\N	\N	283
2017-06-20 21:17:37.316557+00	2017-06-24 13:45:04.894025+00	5620	completed	Marc	Meadows	Marcus.meadows@gmail.com	+17708753670		42	2017-06-20 21:17:37.314692	2017-06-20 21:18:31.862208	CAad73b70a8dfc348a155713e89a62cad0	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			1	outbound	+17704009016	\N	10.8161230087280273	{}	new lead		13	\N	\N	284
2017-04-09 21:28:23.052012+00	2017-11-29 18:38:53.213638+00	3756	completed				+15594326868		100	2017-04-09 21:28:23.050102	2017-04-09 21:30:02.790797	CAabe2e6f9d58266fe79b8bb5aedce6905	\N	103			0	inbound	+12146922088	\N	17.9914908409118652	\N	new lead	hartwig lloyd	9	\N	\N	286
2017-12-24 01:18:46.413267+00	2017-12-24 01:19:17.964509+00	8089	missed				+13052137473		32	2017-12-24 01:18:46.411361	2017-12-24 01:19:17.949738	CA41693d1d74a46c9d6d02a786d13ca41d	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACafc5b14e320f72bf4ed973f9ab19c98d/Recordings/REb845bc2d159dbcda80b267f0cfb21e8f	0	inbound	+17735469660	16	\N	\N	new lead	barberousse lio	1	\N	\N	287
2017-12-30 16:33:19.307651+00	2017-12-30 16:38:33.216174+00	8162	completed	Vickie	Lira	Kilratl60@gmail.com	+17707447815		208	2017-12-30 16:33:19.30539	2017-12-30 16:37:02.200096	CAcf815f6b88f890d611a7bb734da6ccb8	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REf7a07ec1d6470c07b1c956ece643314f	1	outbound	+17704009016	\N	18.289391040802002	{}	select status		13	\N	\N	4014
2017-05-18 19:39:41.222748+00	2017-11-29 18:38:49.81221+00	5219	missed				+18005785000		30	2017-05-18 19:39:41.221209	2017-05-18 19:40:10.850697	CA74ad2c8d57f9bb0dc7986ca97405a561	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	bmw finance svc	9	\N	\N	196
2016-08-23 15:00:04.598552+00	2016-12-10 01:00:15.39967+00	1673	missed				+16042778353		18	2016-08-23 15:00:04.595732	2016-08-23 15:00:23.073543	CAfa4bf6c082f272b1edc3e5150cd54fc3	\N	\N			0	inbound	+18555983436	\N	\N	null	new lead		3	\N	\N	285
2017-04-12 22:18:34.067213+00	2017-04-12 22:20:33.119649+00	3846	completed				+18173508528		119	2017-04-12 22:18:34.065249	2017-04-12 22:20:32.855818	CAbeb7df115447ca9da3ca6e6ae9b4bdd1	\N	131		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE51d75c049810c5c2e836e1dcde9ff70f	0	inbound	+18172104002	126	62.5860569477081299	\N	new lead	neeley jamie	12	\N	\N	299
2017-04-12 22:10:12.185106+00	2017-04-12 22:17:34.530265+00	3845	completed				+18173508528		441	2017-04-12 22:10:12.181727	2017-04-12 22:17:33.320546	CA7719932895c9920a285cdf8983818ff7	\N	131		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE57a5800598a4bd379fcf88e93fce24fb	0	inbound	+18172104002	126	387.472159862518311	\N	new lead	neeley jamie	12	\N	\N	299
2017-04-28 17:27:32.451129+00	2017-11-29 18:38:49.807293+00	4429	completed				+12147739339		58	2017-04-28 17:27:32.449267	2017-04-28 17:28:30.656118	CAe1b9d78811fca750f31fad7e0a3e2920	\N	125			0	inbound	+12147122250	\N	1.97360610961914062	\N	new lead	kelly sparks	9	\N	\N	300
2017-04-28 17:28:29.028505+00	2017-11-29 18:38:49.8073+00	4430	completed				+12147739339		117	2017-04-28 17:28:29.026266	2017-04-28 17:30:25.984205	CA6af64c5b637591b16f35b7a5ab9a0c3c	\N	124			0	inbound	+12147122250	\N	1.2665708065032959	\N	new lead	kelly sparks	9	\N	\N	300
2017-05-02 20:09:11.46277+00	2017-11-29 18:38:49.808802+00	4594	completed				+12147739339		68	2017-05-02 20:09:11.461578	2017-05-02 20:10:19.363387	CAa1ce63b94bd64d857bc4bd5d622d8157	\N	125			0	inbound	+12147122250	\N	1.02768397331237793	\N	new lead	kelly sparks	9	\N	\N	300
2017-05-22 15:55:32.258528+00	2017-08-17 14:35:21.045291+00	5275	completed				+19728225757		122	2017-05-22 15:55:32.256851	2017-05-22 15:57:34.092935	CA74967fdc948383dc2824de27e445d0fa	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REdcc5f4e41cf3e9baa5104b89f5327c4d	0	inbound	+18177569010	124	5.5101618766784668	\N	new lead	tuygun	12	\N	\N	306
2017-07-21 14:59:29.574656+00	2017-07-21 15:22:05.436463+00	5824	missed				+19795953344		63	2017-07-21 14:59:29.570753	2017-07-21 15:00:32.783815	CAc0782ae5ce13f06a8ca71eed078140eb	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE4e3599d6e7d84fdae174c8ac0d038f72	0	inbound	+18177569010	124	1335.71092510223389	\N	new lead	cell phone   tx	12	\N	\N	308
2016-07-06 14:29:30.736069+00	2016-07-06 14:30:39.711652+00	768	completed	Lisa	Sapp		+19726895620		63	2016-07-06 14:29:30.734406	2016-07-06 14:30:39.710125	CAdb5de773634b7df5dfe4612b70be982f	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	2.56542301177978516	{}	new lead		1	\N	\N	309
2016-07-08 15:05:14.773513+00	2016-07-08 15:06:28.499534+00	828	completed	Lisa	Sapp		+19726895620		69	2016-07-08 15:05:14.772361	2016-07-08 15:06:28.498364	CA0f660f3f565952d50ca9560902a32a23	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	1.44398403167724609	{}	new lead		1	\N	\N	309
2016-07-01 00:55:06.713562+00	2016-07-01 11:20:50.753738+00	697	completed	Lisa	Sapp	Steels4life@yahoo.com	+19726895620		\N	2016-07-01 00:55:06.712409	\N		d33a481e-e0af-47ac-9f90-260f20b69de5	\N			0	outbound	+18552959002	\N	\N	{}	new lead		1	\N	\N	309
2017-08-14 23:16:25.115024+00	2017-08-17 14:35:21.045845+00	6027	completed				+18177249712		63	2017-08-14 23:16:25.113233	2017-08-14 23:17:28.112468	CA2de9200839dcd3ecd82efc7a732d678c	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REc0aa6cb10d68cd2b8e5d1f48565b832e	0	inbound	+18177569010	124	15.6034219264984131	\N	new lead	jester jade	12	\N	\N	311
2017-10-24 16:29:54.887626+00	2017-10-24 16:31:29.041453+00	6793	completed	Mark	Holland	Ledzepp1212@gmail.com	+17702984107		80	2017-10-24 16:29:54.885936	2017-10-24 16:31:27.608334	CA4b3b334b3b028b1b196907b522cbf946	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REda31219640430ea365e34d37c20fc893	1	outbound	+17704009016	\N	11.673753023147583	{}	new lead		13	\N	\N	312
2017-10-27 14:11:11.729039+00	2017-10-27 14:12:49.103331+00	6833	completed				+17066146833		97	2017-10-27 14:11:11.725915	2017-10-27 14:12:49.084154	CA85cd24defc3b30bb41245ce6aae03ab7	\N	150			0	inbound	+17707665732	133	13.9925658702850342	\N	new lead		13	\N	\N	315
2017-03-25 22:08:04.976455+00	2017-11-29 18:47:25.067926+00	3580	completed				+18706021808		220	2017-03-25 22:08:04.974393	2017-03-25 22:11:44.830951	CAd7ceb8d49e6fd33203c251e76fcc3dab	\N	82		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REf01cc3db902ddd0a0eb9e4cdab1f545f	0	inbound	+19728330116	\N	7.67433691024780273	\N	new lead	cell phone   ar	8	\N	\N	319
2017-03-14 00:23:56.976543+00	2017-11-29 18:38:53.212169+00	3411	completed				+19727500525		338	2017-03-14 00:23:56.974659	2017-03-14 00:29:34.95216	CAfb3c4901360d6f2d6eb6ab1913b88401	\N	\N			0	inbound	+12146922088	\N	7.2607569694519043	\N	new lead	thomas devona	9	\N	\N	320
2017-12-26 21:10:55.414209+00	2017-12-26 21:11:31.098353+00	8110	completed				+12142999856		35	2017-12-26 21:10:55.412459	2017-12-26 21:11:30.394801	CA4ecb231da9cd874c1667668b7cfa3b56	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE7ca45a2be9d6627905db7f15ef9ce811	0	inbound	+18558645656	136	2.3258359432220459	\N	new lead		15	\N	\N	322
2017-12-26 21:12:53.105446+00	2017-12-26 21:34:01.652895+00	8111	completed				+12142999856		1266	2017-12-26 21:12:53.103263	2017-12-26 21:33:58.608543	CA47c729e4beadbe04d4a0b6464810bb55	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE692034221c1ceca62442f9bc2239db1a	0	inbound	+18558645656	136	2.7414391040802002	\N	new lead		15	\N	\N	322
2017-12-28 21:17:55.500944+00	2017-12-28 21:21:35.543879+00	8141	completed				+12142999856		219	2017-12-28 21:17:55.499095	2017-12-28 21:21:34.780358	CAddc9ebc718f8e66e8baad4a6145fa1fe	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE28b4fe69a1c19aab18859c97f8e07e26	0	inbound	+18558645656	136	3.27162599563598633	\N	new lead		15	\N	\N	322
2016-10-17 23:17:18.95408+00	2016-12-10 01:01:00.200468+00	2311	completed				+15595158631		9	2016-10-17 23:17:18.95293	2016-10-17 23:17:28.013717	CA5123955b6ed8664a13f227dc916f63e2	\N	57			0	inbound	+18557860909	\N	1.69479990005493164	null	new lead		3	\N	\N	323
2016-11-03 11:22:49.405049+00	2016-11-03 11:22:49.425904+00	2618	missed	Seung	Lee	seleeusa@yahoo.com	+19728789010		\N	2016-11-03 11:22:49.404216	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	324
2016-11-02 23:18:49.949636+00	2016-11-02 23:53:06.886043+00	2603	completed				+16785388855		2052	2016-11-02 23:18:49.948013	2016-11-02 23:53:01.774472	CA5fa65b1d626eb93077a305781a32235e	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE33387ce78c1e828652b2b874e9132ed2	0	inbound	+18557240606	49	2.57564878463745117	null	new lead		1	\N	\N	326
2017-04-24 16:28:12.589606+00	2017-11-29 18:38:49.806419+00	4249	completed				+16783625685		60	2017-04-24 16:28:12.58756	2017-04-24 16:29:12.215635	CA5ae3d6521781c48e631981dd45ae97b2	\N	\N			0	inbound	+12147122250	\N	7.04322504997253418	\N	new lead	macmaster kenne	9	\N	\N	330
2016-11-01 19:34:08.463726+00	2016-12-10 01:01:00.200541+00	2496	missed				+16192071849		37	2016-11-01 19:34:08.46245	2016-11-01 19:34:45.415505	CA23e02bd3345509475b2f48dc9e0dc72f	\N	\N			0	inbound	+18557860909	\N	\N	null	new lead		3	\N	\N	331
2017-04-26 20:43:32.181283+00	2017-11-29 18:38:49.806808+00	4339	completed				+12152458100		75	2017-04-26 20:43:32.1791	2017-04-26 20:44:47.184887	CA21121622bc98a6b553f0cf9aba6b2b8a	\N	125			0	inbound	+12147122250	\N	2.05576992034912109	\N	new lead	eddington  pa	9	\N	\N	225
2017-04-27 13:52:42.142446+00	2017-11-29 18:38:49.806865+00	4355	completed				+12152458100		100	2017-04-27 13:52:42.140021	2017-04-27 13:54:21.750146	CAebcf6983814c16c237b056f45fbbaf6d	\N	124			0	inbound	+12147122250	\N	2.15861082077026367	\N	new lead	eddington  pa	9	\N	\N	225
2017-09-25 16:59:42.580795+00	2017-09-25 17:01:03.752756+00	6479	completed				+18173747861		80	2017-09-25 16:59:42.578757	2017-09-25 17:01:03.055746	CAfb4261bdd06aba50041f9aa18a6e94c4	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE464c95909ebaab2034826caccbda4f30	0	inbound	+18177569010	124	10.59670090675354	\N	new lead	cook misty	12	\N	\N	336
2017-12-11 19:21:26.406136+00	2017-12-11 19:51:09.759757+00	7790	completed				+18508030206		1780	2017-12-11 19:21:26.404106	2017-12-11 19:51:06.208771	CAfe2c4f3d0522f4ffb1b2fda5e56dd787	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REe5f630bef210bcfcd6e71d91e629e49b	0	inbound	+18558645656	136	2.75621581077575684	\N	new lead		15	\N	\N	339
2017-03-14 15:46:24.846718+00	2017-11-29 18:38:53.212197+00	3416	completed				+12106016907		709	2017-03-14 15:46:24.844615	2017-03-14 15:58:13.714186	CA022a7736f666d62c949676fec7a894b6	\N	105			0	inbound	+12146922088	\N	7.33013200759887695	\N	new lead	biglari shawn  	9	\N	\N	340
2017-04-22 18:40:17.060601+00	2017-11-29 18:38:53.214433+00	4226	completed				+19493819777		380	2017-04-22 18:40:17.058239	2017-04-22 18:46:36.872144	CAae0d39ca57d838e82f3c61c014c1ac2e	\N	\N			0	inbound	+12146922088	\N	6.01378011703491211	\N	new lead	dao nghia      	9	\N	\N	341
2017-10-07 16:10:37.273178+00	2017-10-07 16:12:11.691087+00	6620	completed				+16822035391		93	2017-10-07 16:10:37.270461	2017-10-07 16:12:10.554854	CA40cb2c50424a613c9faa2276335f1fe6	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE98e30b96a1cd7bb03b50c968cf1f7d3d	0	inbound	+18177569010	124	9.59601116180419922	\N	new lead	hair siena	12	\N	\N	342
2017-12-03 20:04:11.913266+00	2017-12-03 20:05:33.199772+00	7510	completed	Beverly	Dyson	bevgarydyson@hotmail.com	+18152753289		78	2017-12-03 20:04:11.911451	2017-12-03 20:05:33.198156	CA39485725771c0489b1f84271105afa72	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.79613709449768066	{}	new lead		15	\N	\N	348
2017-12-03 20:06:05.239159+00	2017-12-03 20:06:05.939062+00	7511	missed	Beverly	Dyson		+18152753289		1	2017-12-03 20:06:05.237207	2017-12-03 20:06:05.926798	CA3d818d189cc38f6ef39a910ba4217d68	\N	\N			0	inbound	+18558645656	136	\N	\N	new lead		15	\N	\N	348
2017-12-03 20:06:12.86393+00	2017-12-03 20:07:35.910147+00	7512	completed	Beverly	Dyson		+18152753289		82	2017-12-03 20:06:12.862205	2017-12-03 20:07:34.7019	CA05aab6c08f2bf460cded81632d3d4b06	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE713716b612c2f8e4043c2781c46ae116	0	inbound	+18558645656	136	3.08048391342163086	\N	new lead		15	\N	\N	348
2017-12-03 20:07:54.374763+00	2017-12-03 20:09:16.475756+00	7513	completed	Beverly	Dyson		+18152753289		81	2017-12-03 20:07:54.373428	2017-12-03 20:09:15.271363	CA93dd4bb045ac9190425eae6aadbf282b	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REcd31caaf49564f36274e26006095e296	0	inbound	+18558645656	136	2.35832095146179199	\N	new lead		15	\N	\N	348
2017-12-03 20:09:28.534961+00	2017-12-03 20:10:50.760913+00	7514	completed	Beverly	Dyson		+18152753289		81	2017-12-03 20:09:28.5335	2017-12-03 20:10:49.973511	CA56d28af1d4c71dadbe00272c6f7dae77	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE25aa715de353fedee219edcc41daa360	0	inbound	+18558645656	136	2.67666387557983398	\N	new lead		15	\N	\N	348
2017-12-03 20:10:59.806873+00	2017-12-03 20:12:21.797222+00	7515	completed	Beverly	Dyson		+18152753289		81	2017-12-03 20:10:59.805525	2017-12-03 20:12:20.538818	CAeb7f6dea5e91817ed39e790c606a3a85	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REf66ccae76a56de9300b7e1ecb622c358	0	inbound	+18558645656	136	2.23166894912719727	\N	new lead		15	\N	\N	348
2017-12-03 20:13:20.647598+00	2017-12-03 20:14:40.716099+00	7516	completed	Beverly	Dyson		+18152753289		79	2017-12-03 20:13:20.645623	2017-12-03 20:14:40.004217	CA25a9935dd41665d4f6342d6c0299ed5f	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE9d0ad235271b401e003de95f59d54154	0	inbound	+18558645656	136	2.21601605415344238	\N	new lead		15	\N	\N	348
2016-11-01 13:07:54.088519+00	2016-11-01 13:33:11.426211+00	2452	completed				+17044215884		1515	2016-11-01 13:07:54.087053	2016-11-01 13:33:08.606614	CAad9547edcfca2ada9ddaa1f8280c70a6	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE35729201d185c3a95cae9f5f5bf8e765	0	inbound	+18557240606	49	\N	null	new lead		1	\N	\N	350
2017-05-01 18:15:03.528202+00	2017-11-29 18:38:49.808084+00	4525	completed				+12543505342		77	2017-05-01 18:15:03.525196	2017-05-01 18:16:20.677093	CA7020cbd17110b59a87442452cfe7c7d2	\N	126			0	inbound	+12147122250	\N	1.43046808242797852	\N	new lead	mendez jonathan	9	\N	\N	353
2017-05-01 18:28:43.260054+00	2017-11-29 18:38:49.808097+00	4527	completed				+12543505342		61	2017-05-01 18:28:43.255939	2017-05-01 18:29:43.915847	CA812f8cfa04edb931b701b3e6512b82cc	\N	126			0	inbound	+12147122250	\N	1.04298019409179688	\N	new lead	mendez jonathan	9	\N	\N	353
2017-05-01 18:32:28.427921+00	2017-11-29 18:38:49.808115+00	4528	completed				+12543505342		36	2017-05-01 18:32:28.424982	2017-05-01 18:33:04.08546	CA1ff102ea5e8c66010d81dfbbf8163510	\N	124			0	inbound	+12147122250	\N	1.0391690731048584	\N	new lead	mendez jonathan	9	\N	\N	353
2017-05-01 18:34:31.007862+00	2017-11-29 18:38:49.808133+00	4529	missed				+12543505342		0	2017-05-01 18:34:31.005485	2017-05-01 18:34:31.158607	CA53c6e2b8ed9a5b5f48642fddbc99d064	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	mendez jonathan	9	\N	\N	353
2016-10-22 19:48:38.208852+00	2017-11-29 18:31:24.09295+00	2337	missed				+16032190190		13	2016-10-22 19:48:38.20712	2016-10-22 19:48:50.906844	CA8bb411bda7c10750a42723a8d15d8a23	\N	\N			0	inbound	+18555915788	\N	\N	null	new lead		1	\N	\N	358
2017-11-30 16:42:38.056314+00	2017-11-30 16:47:13.233893+00	7411	completed				+17068257530		275	2017-11-30 16:42:38.053857	2017-11-30 16:47:12.704626	CAaa7a6556acae9a7ae18e5630fe5da308	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REd5da57d1daa29a05abc7a6bebe206e14	0	inbound	+17704009016	132	9.89303088188171387	\N	new lead	well done trucking co-op	13	\N	\N	359
2017-11-30 16:42:17.732772+00	2017-11-30 16:47:54.932093+00	7410	missed				+17068257530		11	2017-11-30 16:42:17.729728	2017-11-30 16:42:29.168107	CAbd4febaf532fa7579e9f689692b541a1	\N	\N			0	inbound	+17704009016	132	323.016921043395996	\N	new lead	well done trucking co-op	13	\N	\N	359
2016-10-12 12:02:29.220758+00	2016-12-10 01:05:11.337146+00	2273	completed				+17187272740		3	2016-10-12 12:02:29.219084	2016-10-12 12:02:32.715604	CA6b0edef2ef911e4e3a2d0807f356ef23	\N	25			0	inbound	+18555693686	\N	1.38298583030700684	null	new lead		3	\N	\N	360
2016-10-27 03:56:03.104008+00	2016-12-10 01:05:11.337153+00	2352	missed				+17187272740		0	2016-10-27 03:56:03.101783	2016-10-27 03:56:03.398253	CA354db77f6b76b83d65ccb2eea0ac4fe7	\N	\N			0	inbound	+18555693686	\N	\N	null	new lead		3	\N	\N	360
2016-11-01 20:09:57.597943+00	2016-12-09 17:08:31.90885+00	2501	completed				+16093699865		126	2016-11-01 20:09:57.595863	2016-11-01 20:12:03.494132	CA361d96c9007368a53300d22fccbc8785	\N	67			0	inbound	+18552576059	\N	1.61850404739379883	null	new lead		3	\N	\N	362
2016-11-01 20:12:18.95749+00	2016-12-09 17:08:31.908858+00	2502	completed				+16093699865		130	2016-11-01 20:12:18.956302	2016-11-01 20:14:28.745655	CA0678f024afc8efa0f619d7450f757743	\N	67			0	inbound	+18552576059	\N	1.94006085395812988	null	new lead		3	\N	\N	362
2016-06-05 18:32:09.385159+00	2016-06-06 12:06:42.052493+00	379	completed	Mary	Mendoza	Scoot28@sbcglobal.net	+16612562135		\N	2016-06-05 18:32:09.384288	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	new lead		1	\N	\N	363
2017-09-08 16:49:18.812502+00	2017-09-08 16:51:16.436377+00	6293	completed	david 	rivera	drivera9281ga@gmail.com	+17063463924		104	2017-09-08 16:49:18.811023	2017-09-08 16:51:16.407327	CA3ead94cf13c7955d7ef2ed5e730cfd52	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE527a78ae8ed9d2799a737b82bed185fb	1	outbound	+17704009016	\N	11.8311021327972412	{}	new lead		13	\N	\N	369
2017-04-12 20:05:20.950592+00	2017-11-29 18:38:49.80465+00	3834	missed				+19037382879		45	2017-04-12 20:05:20.948108	2017-04-12 20:06:05.805666	CAd0bc03fd0f1f9fa0181bd54127c6958c	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	cell phone   tx	9	\N	\N	2490
2017-05-03 14:14:00.442961+00	2017-11-29 18:38:53.21493+00	4614	completed				+18323953135		301	2017-05-03 14:14:00.440845	2017-05-03 14:19:01.270226	CA296c012e06f27c0cc71701c152aff948	\N	133			0	inbound	+12146922088	\N	12.5014090538024902	\N	new lead	city of houston	9	\N	\N	371
2017-12-06 19:25:16.007076+00	2017-12-06 19:34:53.693776+00	7652	missed	Demetrius 	Jewett	Demetrius.jewett25@gmail.com	+17793559426		0	2017-12-06 19:25:16.005857	2017-12-06 19:32:16.247777	CA3b58ebaf415a6a6f8478e8ababf82879	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			3	outbound	+17704009016	\N	400.319897174835205	{}	select status		13	\N	\N	372
2016-09-21 16:14:55.465871+00	2016-09-21 16:14:55.465923+00	2065	missed	Tara	Brunette	taralbrunette@gmail.com	+19208192298	I received a flyer telling me to contact SCCU by filling out an application to get a lower rate.  Nowhere on this application did it say my personal information was going to be released to a 3rd party vendor, nor did I approve.  I want this fixed.  	\N	2016-09-21 16:14:55.462525	\N		e8f4669f-1511-4da8-a34e-207b61fae94f	\N			0	outbound	+18556311439	\N	\N	{}	application submitted - autopay		1	\N	\N	374
2016-09-19 14:53:41.629192+00	2016-09-19 16:43:33.955618+00	2039	missed	Francis	Brunette	taralbrunette@gmail.com	+19208192298		\N	2016-09-19 14:53:41.627657	\N		4b51c6b2-49f9-4108-8fdf-a8671e497256	\N			0	outbound	+18556311541	\N	\N	{}	application submitted - autopay		1	\N	\N	374
2017-01-16 20:18:03.361527+00	2017-11-29 18:31:41.490835+00	3125	missed				+17134689002		52	2017-01-16 20:18:03.359199	2017-01-16 20:18:55.619628	CA291e4db24c20a4c9eabc0c255e59b0ec	\N	\N			0	inbound	+18552959002	\N	32.1284329891204834	null	new lead		1	\N	\N	375
2017-01-16 20:24:04.615067+00	2017-11-29 18:31:41.490842+00	3126	missed				+17134689002		52	2017-01-16 20:24:04.613562	2017-01-16 20:24:56.721443	CA2fc45847a7b2cfad4c7f8cfcb8da7d7b	\N	\N			0	inbound	+18552959002	\N	31.8517491817474365	null	new lead		1	\N	\N	375
2017-09-07 21:43:14.327163+00	2017-09-07 21:44:50.700578+00	6288	completed				+18179688196		95	2017-09-07 21:43:14.325356	2017-09-07 21:44:49.610427	CAca6f18a6fb7bbdd38157df6ad67ab4ce	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE6b7e2be5f8255cb324e4806f9aa269f2	0	inbound	+18177569010	124	7.39034295082092285	\N	new lead	boyz wheeler	12	\N	\N	380
2016-08-13 16:31:16.866109+00	2017-11-29 18:31:37.368911+00	1473	missed				+16612733562		29	2016-08-13 16:31:16.863103	2016-08-13 16:31:45.692052	CAf94fee0a9caf93ee86c70021623ecf3a	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE01689c950c4b9aefc5c7fcfa5da6f437	0	inbound	+18555472453	\N	\N	null	new lead		1	\N	\N	382
2017-12-05 14:54:56.125307+00	2017-12-05 15:00:02.511539+00	7579	completed				+19546449641		305	2017-12-05 14:54:56.123252	2017-12-05 15:00:01.269322	CA64407fd58b0f6c92305d8a86730dacb6	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE54ae712c51fc2b0d4ce065aa135db509	0	inbound	+18558645656	136	2.75125694274902344	\N	new lead		15	\N	\N	383
2017-04-13 19:38:30.606512+00	2017-11-29 18:38:49.804866+00	3892	completed				+14698880140		81	2017-04-13 19:38:30.605196	2017-04-13 19:39:51.656074	CAa8f20deede756f79e61f7ba79742816f	\N	124			0	inbound	+12147122250	\N	1.86673402786254883	\N	new lead	yetez rafael	9	\N	\N	384
2017-04-13 19:37:02.807591+00	2017-11-29 18:38:49.804859+00	3891	completed				+14698880140		90	2017-04-13 19:37:02.805083	2017-04-13 19:38:32.818315	CAa9ee876626e32ebc3db233b149e59e63	\N	125			0	inbound	+12147122250	\N	1.17885518074035645	\N	new lead		9	\N	\N	384
2017-04-13 19:39:47.486658+00	2017-11-29 18:38:49.804873+00	3893	completed				+14698880140		63	2017-04-13 19:39:47.484719	2017-04-13 19:40:50.60762	CA6217b8686e8c357038f753f8ebd4fb6e	\N	127			0	inbound	+12147122250	\N	1.22701215744018555	\N	new lead	yetez rafael	9	\N	\N	384
2017-04-15 16:50:35.738437+00	2017-11-29 18:38:49.805089+00	3960	completed				+14698880140		83	2017-04-15 16:50:35.735869	2017-04-15 16:51:58.550392	CAccf68ca91943d7df590d60b52abd55d7	\N	125			0	inbound	+12147122250	\N	0.720535039901733398	\N	new lead	yetez rafael	9	\N	\N	384
2017-04-15 16:51:59.72168+00	2017-11-29 18:38:49.805096+00	3961	completed				+14698880140		72	2017-04-15 16:51:59.71996	2017-04-15 16:53:11.407876	CA4e8ea2c84f194ec4cc3962d95f073940	\N	127			0	inbound	+12147122250	\N	1.73972702026367188	\N	new lead	yetez rafael	9	\N	\N	384
2017-04-15 17:05:07.964874+00	2017-11-29 18:38:49.805104+00	3962	completed				+14698880140		61	2017-04-15 17:05:07.962313	2017-04-15 17:06:09.406589	CAa005f774b137c55c9a85edcb6fe98931	\N	\N			0	inbound	+12147122250	\N	4.0848090648651123	\N	new lead	yetez rafael	9	\N	\N	384
2017-04-15 17:07:02.241117+00	2017-11-29 18:38:49.805111+00	3963	missed				+14698880140		19	2017-04-15 17:07:02.239009	2017-04-15 17:07:20.919001	CA99cb0e1b923a7628d12ace1ba081b026	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	yetez rafael	9	\N	\N	384
2017-04-15 17:07:19.70733+00	2017-11-29 18:38:49.805118+00	3964	completed				+14698880140		43	2017-04-15 17:07:19.706288	2017-04-15 17:08:02.363387	CA4f572a9814475acafd0299b689de68c4	\N	125			0	inbound	+12147122250	\N	1.77029514312744141	\N	new lead	yetez rafael	9	\N	\N	384
2017-04-19 22:20:34.889477+00	2017-11-29 18:38:49.805852+00	4115	completed				+14698880140		64	2017-04-19 22:20:34.886263	2017-04-19 22:21:39.153964	CA832009d4a75951e32a5ed260bae83f68	\N	125			0	inbound	+12147122250	\N	0.94042515754699707	\N	new lead	yetez rafael	9	\N	\N	384
2017-04-22 23:14:52.518032+00	2017-11-29 18:38:49.806405+00	4237	completed				+14698880140		54	2017-04-22 23:14:52.516238	2017-04-22 23:15:46.924097	CAf59ed822eafe7002738b7d0be7223c71	\N	125			0	inbound	+12147122250	\N	1.33543586730957031	\N	new lead	yetez rafael	9	\N	\N	384
2017-05-08 14:54:18.114765+00	2017-11-29 18:38:49.810251+00	4838	completed				+13615483307		74	2017-05-08 14:54:18.11263	2017-05-08 14:55:32.178403	CAdc9ea3ab3f4486af5ef01ca7260a52ad	\N	126			0	inbound	+12147122250	\N	1.07059288024902344	\N	new lead	davila julian	9	\N	\N	385
2017-05-08 14:55:28.4869+00	2017-11-29 18:38:49.810259+00	4839	completed				+13615483307		77	2017-05-08 14:55:28.484992	2017-05-08 14:56:45.481306	CA562cd576a74f210e0a3f36726a565d12	\N	127			0	inbound	+12147122250	\N	1.44950199127197266	\N	new lead	davila julian	9	\N	\N	385
2017-05-08 20:43:53.629578+00	2017-11-29 18:38:49.81044+00	4873	completed				+13615483307		70	2017-05-08 20:43:53.627513	2017-05-08 20:45:04.087622	CAdd5e8785d0d661c2727362a7e4704585	\N	126			0	inbound	+12147122250	\N	1.28012800216674805	\N	new lead	davila julian	9	\N	\N	385
2017-05-09 16:41:58.663269+00	2017-11-29 18:38:49.810576+00	4905	missed				+13615483307		34	2017-05-09 16:41:58.661185	2017-05-09 16:42:32.798905	CAb7c876d0804e9fe7171591d3e21bff05	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	davila julian	9	\N	\N	385
2017-05-09 17:27:57.797617+00	2017-11-29 18:38:49.810612+00	4910	completed				+13615483307		97	2017-05-09 17:27:57.794896	2017-05-09 17:29:34.678097	CA76c186e4d9f0eaa739a3f538e980705d	\N	126			0	inbound	+12147122250	\N	1.6231391429901123	\N	new lead	davila julian	9	\N	\N	385
2017-05-10 14:44:31.5074+00	2017-11-29 18:38:49.810768+00	4946	completed				+13615483307		69	2017-05-10 14:44:31.505065	2017-05-10 14:45:40.545398	CA85dab02b609859c411f5cf989ceebf41	\N	126			0	inbound	+12147122250	\N	1.3722832202911377	\N	new lead	davila julian	9	\N	\N	385
2017-05-10 17:53:37.275068+00	2017-11-29 18:38:49.810818+00	4960	completed				+13615483307		60	2017-05-10 17:53:37.273273	2017-05-10 17:54:37.062739	CAc394ef56f5653155b4065850218412ed	\N	126			0	inbound	+12147122250	\N	0.986320972442626953	\N	new lead	davila julian	9	\N	\N	385
2017-05-10 17:56:12.247302+00	2017-11-29 18:38:49.810832+00	4962	completed				+13615483307		77	2017-05-10 17:56:12.244313	2017-05-10 17:57:29.131412	CA0c66c53cf116369735ebeb9c73dda5b0	\N	127			0	inbound	+12147122250	\N	1.03443002700805664	\N	new lead	davila julian	9	\N	\N	385
2017-05-10 17:57:22.087431+00	2017-11-29 18:38:49.810839+00	4963	completed				+13615483307		126	2017-05-10 17:57:22.085653	2017-05-10 17:59:28.577481	CAfa1a2a58d29be98ec2f72b76e5970f5e	\N	107			0	inbound	+12147122250	\N	7.91851401329040527	\N	new lead	davila julian	9	\N	\N	385
2017-05-10 18:53:36.559059+00	2017-11-29 18:38:49.810861+00	4968	completed				+13615483307		54	2017-05-10 18:53:36.556777	2017-05-10 18:54:30.132676	CA0ed833cef6c5114c72b7722c5212ea09	\N	126			0	inbound	+12147122250	\N	1.03615021705627441	\N	new lead	davila julian	9	\N	\N	385
2017-05-11 14:51:04.47599+00	2017-11-29 18:38:49.811095+00	5002	completed				+13615483307		111	2017-05-11 14:51:04.474427	2017-05-11 14:52:55.958933	CAf31f100825cd75c8ec21551d8286a70d	\N	126			0	inbound	+12147122250	\N	1.53713107109069824	\N	new lead	davila julian	9	\N	\N	385
2017-05-11 14:52:57.905294+00	2017-11-29 18:38:49.811103+00	5003	completed				+13615483307		181	2017-05-11 14:52:57.903628	2017-05-11 14:55:58.866357	CA6bb61779369d64436cd1de5c104e0b09	\N	127			0	inbound	+12147122250	\N	1.30940890312194824	\N	new lead	davila julian	9	\N	\N	385
2017-05-15 14:50:55.393067+00	2017-11-29 18:38:49.811494+00	5066	completed				+13615483307		56	2017-05-15 14:50:55.39057	2017-05-15 14:51:51.857357	CA76dcb36595162bcb21fb68435481c70b	\N	126			0	inbound	+12147122250	\N	1.13090014457702637	\N	new lead	davila julian	9	\N	\N	385
2017-05-08 16:41:46.784796+00	2017-11-29 18:38:49.810308+00	4851	completed				+14699544231		68	2017-05-08 16:41:46.782578	2017-05-08 16:42:54.844765	CA23c64d5de713b3fa0d2b47ab3ecfce7e	\N	126			0	inbound	+12147122250	\N	1.3093419075012207	\N	new lead	nature reflecti	9	\N	\N	293
2017-08-03 19:09:15.606437+00	2017-08-17 14:35:21.045717+00	5927	completed				+15805048829		210	2017-08-03 19:09:15.604347	2017-08-03 19:12:45.158476	CA727ae515f6fa0d6be196b077dfcf0cb9	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE00be0b3df1e596fcfe16fbd5d68131b2	0	inbound	+18177569010	124	7.28910207748413086	\N	new lead	sullivan steven	12	\N	\N	295
2017-10-02 14:30:28.390913+00	2017-10-02 14:33:26.133135+00	6556	completed	Vernell	Fleming	vernellw@charter.net	+17062025489		165	2017-10-02 14:30:28.389499	2017-10-02 14:33:23.769712	CAe8ad631d1148bd1ed3d8db654c9a3a73	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE03c95d810e48a04226f851cbc5457b57	1	outbound	+17704009016	\N	9.34332704544067383	{}	new lead		13	\N	\N	298
2017-05-15 14:51:47.627361+00	2017-11-29 18:38:49.811501+00	5067	completed				+13615483307		142	2017-05-15 14:51:47.626102	2017-05-15 14:54:09.875979	CAf705ab4393964bdcaac9d6259966dda0	\N	127			0	inbound	+12147122250	\N	1.33132481575012207	\N	new lead	davila julian	9	\N	\N	385
2017-05-16 15:17:51.350053+00	2017-11-29 18:38:49.811699+00	5104	completed				+13615483307		84	2017-05-16 15:17:51.348682	2017-05-16 15:19:15.165641	CAe24d4e812302d598a3171b7c2c599d3a	\N	126			0	inbound	+12147122250	\N	2.08880805969238281	\N	new lead	davila julian	9	\N	\N	385
2017-05-16 16:21:35.263268+00	2017-11-29 18:38:49.811753+00	5109	completed				+13615483307		110	2017-05-16 16:21:35.261374	2017-05-16 16:23:25.108508	CAba5fde1b271bd3808c931829fe3d4c01	\N	107			0	inbound	+12147122250	\N	4.80510401725769043	\N	new lead	davila julian	9	\N	\N	385
2017-07-26 18:27:38.903324+00	2017-07-26 18:29:59.192534+00	5856	completed				+16787259748		140	2017-07-26 18:27:38.90118	2017-07-26 18:29:58.47437	CA340dfc7df67b009dabbaaf082a6489dd	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE928c0e2705651688807787668e6d4e51	0	inbound	+17704009016	132	10.0344960689544678	\N	new lead		13	\N	\N	386
2017-07-26 19:05:43.188558+00	2017-07-26 19:11:56.128379+00	5858	missed				+16787259748		41	2017-07-26 19:05:43.186419	2017-07-26 19:06:23.727324	CA90b62cefb9b650aafeb710cfd006f9d3	\N	\N			0	inbound	+17704009016	132	353.606482982635498	\N	new lead		13	\N	\N	386
2017-09-05 13:31:30.490491+00	2017-09-05 13:33:01.633155+00	6256	completed	John	Collier	colliecol51@gmail.com	+14705771459		69	2017-09-05 13:31:30.488981	2017-09-05 13:33:01.63212	CAfa6fc2057af0ad3d8f5736f35b81cb42	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REa20e7b4729cd1cf1f649f21dd3d7e240	1	outbound	+17704009016	\N	19.92917799949646	{}	new lead		13	\N	\N	387
2017-09-05 13:51:09.938472+00	2017-09-05 13:57:18.018061+00	6258	completed	John	Collier		+14705771459		367	2017-09-05 13:51:09.936781	2017-09-05 13:57:16.473398	CAce1269f0810502930aa1c7930f728c7e	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REbaa2900888e9e27d706567885c828afd	0	inbound	+17704009016	132	320.59925389289856	\N	new lead		13	\N	\N	387
2017-05-04 14:47:05.099337+00	2017-11-29 18:38:49.809592+00	4706	completed				+14045788940		56	2017-05-04 14:47:05.097552	2017-05-04 14:48:00.662742	CA6b3dadb3b3e121067755ce0bed72fd9b	\N	\N			0	inbound	+12147122250	\N	2.53608584403991699	\N	new lead	liang will     	9	\N	\N	388
2017-05-04 14:48:01.408138+00	2017-11-29 18:38:49.809599+00	4707	completed				+14045788940		83	2017-05-04 14:48:01.406888	2017-05-04 14:49:24.484444	CA0a8edc40db7a25065861da893a6aadfc	\N	127			0	inbound	+12147122250	\N	1.07414507865905762	\N	new lead	liang will     	9	\N	\N	388
2016-09-07 18:26:41.904367+00	2016-12-10 01:01:00.199949+00	1939	completed				+16199168464		360	2016-09-07 18:26:41.903197	2016-09-07 18:32:41.407167	CAea7f9f9355fbfb442884888bf5cb0742	\N	57			0	inbound	+18557860909	\N	4.10368609428405762	null	new lead		3	\N	\N	389
2016-08-26 17:40:16.124099+00	2017-11-29 18:31:29.180656+00	1789	completed	Nora	Stadler	irishalum78@yahoo.com	+13306084463		69	2016-08-26 17:40:16.121904	2016-08-26 17:41:25.449698		\N	16			0	outbound	+18556311528	\N	\N	null	application submitted - credit union		1	\N	\N	390
2016-08-23 01:58:50.178422+00	2016-08-23 11:59:23.202261+00	1662	missed	Nora	Stadler	irishalum78@yahoo.com	+13306084463		\N	2016-08-23 01:58:50.17722	\N		36dfa45c-0f7c-41c7-b250-561251aebceb	\N			0	outbound	+18556311528	\N	\N	{}	application submitted - credit union		1	\N	\N	390
2017-03-09 22:53:52.674984+00	2017-11-29 18:38:53.212011+00	3368	completed				+19725712765		374	2017-03-09 22:53:52.673065	2017-03-09 23:00:06.293826	CA1138f6e344d5bb1031fe57c60b0da308	\N	\N			0	inbound	+12146922088	\N	7.85757088661193848	\N	new lead	runge matthew  	9	\N	\N	391
2017-12-13 01:27:49.531697+00	2017-12-13 01:28:27.830727+00	7836	completed	Demeshia	Thomas	demeshia.thomas@alumni.twu.edu	+18173128462		35	2017-12-13 01:27:49.529934	2017-12-13 01:28:27.829002	CAb701bbb62490c058781c0dd8f40624c1	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.64539289474487305	{}	new lead		15	\N	\N	392
2017-12-06 16:14:36.978845+00	2017-12-06 16:17:36.121305+00	7635	completed				+14044544482		178	2017-12-06 16:14:36.977177	2017-12-06 16:17:34.924263	CA69c7d5aa08c3879bd912e293470e08c7	\N	157		https://api.twilio.com/2010-04-01/Accounts/ACbd7756819f4882feb347788ad7959655/Recordings/RE8927f43f3ffecd0a3d48e5d3bdf8a4be	0	inbound	+17706597466	137	7.74517703056335449	\N	new lead		14	\N	\N	395
2017-12-06 19:09:09.433558+00	2017-12-06 19:11:59.07871+00	7650	completed	CARL	Douglas	cdouglas.ps@gmail.com	+14044544482		161	2017-12-06 19:09:09.431466	2017-12-06 19:11:59.076734	CA46b077c5137cee83d2e472a9a813a532	cd009b81-ec25-40d7-a806-e428c0f41965	157			1	outbound	+17706597466	\N	8.67910003662109375	{}	new lead		14	\N	\N	395
2017-03-29 14:57:10.360001+00	2017-11-29 18:31:33.775637+00	3618	missed				+14407815516		15	2017-03-29 14:57:10.357526	2017-03-29 14:57:25.085967	CA127e5135c75c898ef4a7ad9a0d43441f	\N	\N			0	inbound	+18556311350	\N	\N	\N	general interest		1	\N	\N	396
2016-12-24 18:17:47.940885+00	2016-12-24 18:17:47.96609+00	3095	missed	Lawrence	Davis Jr	ldavisjr69@gmail.com	+14047720729		\N	2016-12-24 18:17:47.939589	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	397
2017-04-24 15:22:17.611834+00	2017-11-29 18:38:49.806412+00	4245	completed				+12488023657		71	2017-04-24 15:22:17.609006	2017-04-24 15:23:28.276434	CAc78fac96d60bdff6466a5de2d7d2df8d	\N	107			0	inbound	+12147122250	\N	7.46579790115356445	\N	new lead	dan cackowski	9	\N	\N	398
2016-06-29 15:49:42.800006+00	2016-06-29 15:51:02.249482+00	648	completed	Shawn	Razo	Rrazo26@yahoo.com	+13307741453		70	2016-06-29 15:49:42.798225	2016-06-29 15:51:02.248488	CAe5f60e37b4b1ad9aa54c5ea59e33d141	ee869226-e246-4ab4-aaaa-e9403e2ddd39	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE70f91f8828816dd5be41382dc9e3c7d9	1	outbound	+18555983683	\N	3.87667489051818848	{}	new lead		1	\N	\N	399
2017-08-03 19:36:10.668317+00	2017-08-17 14:35:21.045724+00	5928	completed				+15742590634		139	2017-08-03 19:36:10.666326	2017-08-03 19:38:29.41033	CAd88b7bea58b08c4c26916e5eeb5481ea	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE9de6005a038ef6d3cab11d1f6e97767a	0	inbound	+18177569010	124	7.06402492523193359	\N	new lead	vandeventer r  	12	\N	\N	404
2016-11-06 18:05:36.062833+00	2016-11-06 18:05:36.099708+00	2770	missed	Rene	Tatum	rene.a.tatum@hotmail.com	+12819044123		\N	2016-11-06 18:05:36.06103	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	408
2017-03-15 17:59:08.407933+00	2017-11-29 18:38:53.21236+00	3450	completed				+18167199675		680	2017-03-15 17:59:08.404344	2017-03-15 18:10:28.826483	CAffecf6508bbe291c5f0d23543f9461d8	\N	99			0	inbound	+12146922088	\N	9.36847686767578125	\N	new lead	wireless caller	9	\N	\N	409
2017-09-12 13:02:18.464175+00	2017-09-12 13:04:23.191768+00	6322	completed	Sharon	Sadler	sadlersharon65@gmail.com	+14705771311		113	2017-09-12 13:02:18.46269	2017-09-12 13:04:23.021786	CAc68eae07486b1ac111f2b3d2b2b31862	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REf5af205303528aa109fc78ef6b6ae211	1	outbound	+17704009016	\N	15.4065971374511719	{}	new lead		13	\N	\N	967
2017-09-12 12:51:07.740851+00	2017-09-12 12:51:07.791937+00	6321	missed	Briana	Zelinski	Crummy44@gmail.com	+16797550844		\N	2017-09-12 12:51:07.739246	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	1901
2017-05-16 21:53:55.203873+00	2017-08-17 14:35:21.045227+00	5132	completed				+16828043611		103	2017-05-16 21:53:55.202078	2017-05-16 21:55:38.700086	CAe2eb4f85e319ca2e127df7b6da03d0ff	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE621651a100553f75d07b285929c60097	0	inbound	+18177569010	124	14.9186980724334717	\N	new lead	garcia juan	12	\N	\N	3589
2017-09-23 13:51:06.276495+00	2017-09-23 13:52:15.940625+00	6450	completed	Santonio	Ferrell		+14048096644		70	2017-09-23 13:51:06.274987	2017-09-23 13:52:15.925756	CAc1cc7a0b7eb13680211e2c524c3c3861	\N	150			0	inbound	+17707665732	133	12.5003368854522705	\N	new lead		13	\N	\N	3604
2016-11-01 19:36:28.090035+00	2016-12-10 01:01:00.200556+00	2498	completed				+16192071849		112	2016-11-01 19:36:28.088367	2016-11-01 19:38:19.938637	CA2b4ee855aeb1a2bd1a9d72b302abaffb	\N	57			0	inbound	+18557860909	\N	29.0451350212097168	null	new lead		3	\N	\N	331
2016-11-01 19:32:12.766766+00	2016-12-10 01:01:00.200527+00	2495	completed				+16192071849		11	2016-11-01 19:32:12.765522	2016-11-01 19:32:24.214992	CA850d842fcab20cb491e36a8f68fb84fc	\N	57			0	inbound	+18557860909	\N	10.0469582080841064	null	new lead		3	\N	\N	331
2016-11-01 19:35:31.053425+00	2016-12-10 01:01:00.200548+00	2497	missed				+16192071849		37	2016-11-01 19:35:31.052017	2016-11-01 19:36:08.037617	CAd4b528e0429922fe6bff441f033aa05e	\N	\N			0	inbound	+18557860909	\N	\N	null	new lead		3	\N	\N	331
2017-03-15 18:45:16.984336+00	2017-11-29 18:38:53.212374+00	3452	completed				+18167199675		21	2017-03-15 18:45:16.982282	2017-03-15 18:45:37.609476	CAde07156d19058a4fb67e04f536833555	\N	\N			0	inbound	+12146922088	\N	7.36360907554626465	\N	new lead	wireless caller	9	\N	\N	409
2017-03-15 18:11:01.088565+00	2017-11-29 18:38:53.212367+00	3451	completed				+18167199675		32	2017-03-15 18:11:01.087084	2017-03-15 18:11:33.184449	CA481fccf9956f6d1eb93d8bdae586bfe6	\N	99			0	inbound	+12146922088	\N	9.93853998184204102	\N	new lead	wireless caller	9	\N	\N	409
2016-10-04 22:57:39.310248+00	2016-12-09 17:06:53.90602+00	2150	completed				+12159424522		555	2016-10-04 22:57:39.308617	2016-10-04 23:06:54.634056	CAa156968a731d4aea32eee8c576fdee59	\N	21			0	inbound	+18558021330	\N	2.01105117797851562	null	new lead		3	\N	\N	413
2016-11-02 00:18:30.002868+00	2016-11-02 00:18:30.028082+00	2530	missed	christine	williams	tinya63@yahoo.com	+18327548304		\N	2016-11-02 00:18:30.001862	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	414
2017-04-28 18:51:50.820862+00	2017-04-28 18:56:56.963202+00	4432	completed				+18178626118		305	2017-04-28 18:51:50.817484	2017-04-28 18:56:55.854756	CA573c96677a175373734ca29ce8d0eac7	\N	131		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REee595746d65ebd57dcecc8d6c54d3890	0	inbound	+18172104002	126	25.3910369873046875	\N	new lead	modester s	12	\N	\N	415
2017-05-20 17:21:22.564617+00	2017-08-17 14:35:21.045269+00	5251	completed				+18178626118		1415	2017-05-20 17:21:22.562933	2017-05-20 17:44:57.179273	CA3c9948518e5aab462accef4be0abe0f2	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE8a505ea25d64347827fa41371746cfda	0	inbound	+18177569010	124	1353.4896399974823	\N	new lead	modester s	12	\N	\N	415
2017-05-20 17:22:41.519681+00	2017-08-17 14:35:21.045277+00	5252	completed				+18178626118		1421	2017-05-20 17:22:41.517677	2017-05-20 17:46:22.024268	CA4d1332368f6acc3b2d19319dc861fd45	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REe87788a9e8660580145c901eecedbf82	0	inbound	+18177569010	124	1348.76727294921875	\N	new lead	modester s	12	\N	\N	415
2016-11-03 20:25:07.355179+00	2016-12-09 17:07:45.331717+00	2660	completed				+13022290773		11	2016-11-03 20:25:07.353442	2016-11-03 20:25:18.158897	CA899df22eaede20f39cbf7230fcf55831	\N	55			0	inbound	+18552467810	\N	3.33597111701965332	null	new lead		3	\N	\N	418
2016-11-03 20:25:25.328638+00	2016-12-09 17:07:45.331733+00	2661	completed				+13022290773		162	2016-11-03 20:25:25.326547	2016-11-03 20:28:07.209462	CA478a44d09c1a83bacbeed25d64815468	\N	55			0	inbound	+18552467810	\N	3.12343597412109375	null	new lead		3	\N	\N	418
2016-11-04 19:28:26.997208+00	2016-12-09 17:07:45.331756+00	2724	completed				+13022290773		330	2016-11-04 19:28:26.996098	2016-11-04 19:33:56.665438	CAa3ab5694badd9d2e3fde32c850a1de3c	\N	55			0	inbound	+18552467810	\N	3.93724513053894043	null	new lead		3	\N	\N	418
2016-11-03 20:23:17.334603+00	2016-12-09 17:07:45.331699+00	2659	completed				+13022290773		92	2016-11-03 20:23:17.333568	2016-11-03 20:24:49.670921	CA9c15449083c4f02b7a3776b0a938af14	\N	55			0	inbound	+18552467810	\N	2.86050009727478027	null	new lead		3	\N	\N	418
2016-11-04 19:26:56.185449+00	2016-12-09 17:07:45.331741+00	2723	completed				+13022290773		81	2016-11-04 19:26:56.184416	2016-11-04 19:28:17.44602	CA2b1d6dbffaa9f8d59eb400ab7aa40565	\N	55			0	inbound	+18552467810	\N	2.77930283546447754	null	new lead		3	\N	\N	418
2017-08-31 01:13:19.768563+00	2017-08-31 01:13:19.828493+00	6211	missed	Rodney	Scott	Scottrodney706@yahoo.com	+17063518521		\N	2017-08-31 01:13:19.767006	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	419
2016-09-07 17:29:43.599875+00	2016-12-10 01:04:42.413685+00	1921	missed				+19093053663		0	2016-09-07 17:29:43.598919	2016-09-07 17:29:43.80355	CAb26b991d3b42cc4746150958b8896360	\N	\N			0	inbound	+18552187903	\N	\N	null	new lead		3	\N	\N	421
2016-09-07 17:29:49.997219+00	2016-12-10 01:04:42.413692+00	1922	missed				+19093053663		0	2016-09-07 17:29:49.996361	2016-09-07 17:29:50.204642	CAc4b3975c544bb58208a103dacf386e74	\N	\N			0	inbound	+18552187903	\N	\N	null	new lead		3	\N	\N	421
2016-09-07 17:29:50.602978+00	2016-12-10 01:04:42.413699+00	1923	missed				+19093053663		0	2016-09-07 17:29:50.602099	2016-09-07 17:29:50.803656	CA94214c3e4ba94bf5f57700c5dfaa57f1	\N	\N			0	inbound	+18552187903	\N	\N	null	new lead		3	\N	\N	421
2016-09-07 17:29:59.923128+00	2016-12-10 01:04:42.413706+00	1924	missed				+19093053663		0	2016-09-07 17:29:59.921451	2016-09-07 17:30:00.262525	CAafcec22c2c0725761a9f8b6aae60a110	\N	\N			0	inbound	+18552187903	\N	\N	null	new lead		3	\N	\N	421
2016-09-07 17:30:00.548711+00	2016-12-10 01:04:42.413713+00	1925	missed				+19093053663		0	2016-09-07 17:30:00.547759	2016-09-07 17:30:00.752557	CAb474f2ecd32f0008532028356cb1ad60	\N	\N			0	inbound	+18552187903	\N	\N	null	new lead		3	\N	\N	421
2016-09-07 17:30:17.401528+00	2016-12-10 01:04:42.41372+00	1926	missed				+19093053663		0	2016-09-07 17:30:17.400332	2016-09-07 17:30:17.631937	CA36e533b3a1f80789bf6c272d119d4458	\N	\N			0	inbound	+18552187903	\N	\N	null	new lead		3	\N	\N	421
2016-09-07 17:30:18.071232+00	2016-12-10 01:04:42.413728+00	1927	missed				+19093053663		0	2016-09-07 17:30:18.070221	2016-09-07 17:30:18.271105	CAf1261d320ac9ad9dd896afddadfb867d	\N	\N			0	inbound	+18552187903	\N	\N	null	new lead		3	\N	\N	421
2017-06-01 17:47:06.167038+00	2017-11-29 18:38:49.814388+00	5554	completed				+13035252339		60	2017-06-01 17:47:06.165101	2017-06-01 17:48:06.141925	CA897a6bca69be73329b3f0dbef9bd2a59	\N	105			0	inbound	+12147122250	\N	2.58496785163879395	\N	new lead	cell phone   co	9	\N	\N	423
2017-07-20 16:54:00.119046+00	2017-07-20 16:57:27.174562+00	5819	completed				+16785998550		206	2017-07-20 16:54:00.116759	2017-07-20 16:57:26.283574	CA24bedfd8d2498838f4d5467f337e9ca0	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE121b0f366d1e8fbdce067a82110982da	0	inbound	+17704009016	132	9.2244570255279541	\N	new lead		13	\N	\N	424
2017-04-20 21:35:20.386504+00	2017-11-29 18:38:49.806103+00	4167	completed				+14807484835		267	2017-04-20 21:35:20.384839	2017-04-20 21:39:47.571577	CA75f0d594387ec0dfc630ecdf68f7bad6	\N	105			0	inbound	+12147122250	\N	3.57167387008666992	\N	new lead	mb scottsdale	9	\N	\N	428
2016-11-17 16:31:38.112032+00	2016-11-17 17:05:59.299211+00	2935	completed				+17139241600		2057	2016-11-17 16:31:38.110342	2016-11-17 17:05:54.896505	CA7ee3fb5208286e0a3dd4138bd04863e6	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE4ea8ce5ba7ae89e846b85ed3fa4d1f37	0	inbound	+18557240606	49	1.69320297241210938	null	new lead		1	\N	\N	429
2016-11-17 13:25:12.335686+00	2016-11-17 13:25:47.217077+00	2932	completed				+17139241600		34	2016-11-17 13:25:12.333806	2016-11-17 13:25:46.565906	CA22474a0ab2edc3f16ac07501403a8bae	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REe6dd8b05bcdb54cbe8655e5d10d4e11f	0	inbound	+18557240606	49	1.8782041072845459	null	new lead		1	\N	\N	429
2016-12-05 20:23:16.947806+00	2017-11-29 18:31:37.369332+00	3042	missed				+19514545721		56	2016-12-05 20:23:16.945918	2016-12-05 20:24:12.857441	CA4182eea74e02eae49c31db2f74c160c3	\N	\N			0	inbound	+18555472453	\N	31.8925111293792725	null	new lead		1	\N	\N	431
2017-06-06 00:37:08.486632+00	2017-06-06 00:37:41.2676+00	5571	completed				+18172109757		32	2017-06-06 00:37:08.484741	2017-06-06 00:37:40.513233	CA3fd4b45768bab823ccf8696675c4e514	\N	132		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REb56cc33afda2de14b51e1fc9f2f5ccec	0	inbound	+18172104002	126	9.09632205963134766	\N	new lead	melendez a	12	\N	\N	432
2016-05-31 17:57:52.837711+00	2017-11-29 18:31:37.368212+00	289	completed	Unknown			+16178460728		43	2016-05-31 17:57:52.836766	2016-05-31 17:58:35.723991	CAdb9ee394f5d5ddda3c4a6a6287ec4da2	\N	\N			0	inbound	+18555472453	\N	41.4455900192260742	null	new lead		1	\N	\N	436
2016-05-31 18:29:48.896724+00	2016-05-31 18:30:35.002452+00	291	completed				+16178460728		41	2016-05-31 18:29:48.895506	2016-05-31 18:30:35.001342	CAdeea6e06f01748e74c40dd2fff7b37b1	8f30d55b-8601-40b9-9d7f-11bfe29c5449	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REea50f7f32cb28fdbd4a284a8ac85963c	1	outbound	+18555472453	\N	1.55672502517700195	{}	new lead		1	\N	\N	436
2017-12-29 02:38:24.364231+00	2017-12-29 02:38:24.436292+00	8143	missed	Brandon 	Baker 	bakerashley26@gmail.com	+17065219132		\N	2017-12-29 02:38:24.361954	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	437
2017-12-24 01:58:02.220821+00	2017-12-24 01:58:02.287133+00	8090	missed	Brandon 	Baker	bakerashley26@gmail.com	+17065219132		\N	2017-12-24 01:58:02.21909	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	437
2017-12-24 01:58:07.032243+00	2017-12-24 01:58:07.081195+00	8091	missed	Brandon 	Baker	bakerashley26@gmail.com	+17065219132		\N	2017-12-24 01:58:07.031194	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	437
2017-08-06 00:48:27.632629+00	2017-08-17 14:35:21.045745+00	5944	completed				+18178415189		101	2017-08-06 00:48:27.630457	2017-08-06 00:50:08.738393	CA174486f2ff6b9d3726ebb34ca1ee9487	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REb8ab224e623dbee98aa0065cb8ae56fb	0	inbound	+18177569010	124	40.8257250785827637	\N	new lead	dallas  tx	12	\N	\N	438
2016-12-01 18:00:54.371508+00	2016-12-09 17:06:53.90614+00	3017	completed				+12675207201		164	2016-12-01 18:00:54.369784	2016-12-01 18:03:38.83522	CAb63c0a9b7de231e83388d7eca5c95bae	\N	21			0	inbound	+18558021330	\N	2.68425393104553223	null	new lead		3	\N	\N	442
2016-05-21 16:31:33.130908+00	2016-05-25 18:18:59.441741+00	157	completed	Roland	Stokes	roland.stokes@yahoo.com	+16615241531		\N	2016-05-21 16:31:33.12918	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	new lead		1	\N	\N	445
2017-12-05 22:09:04.795605+00	2017-12-05 22:28:18.661484+00	7612	completed				+19155393269		1151	2017-12-05 22:09:04.793723	2017-12-05 22:28:15.626299	CA36c9b6dd2ab44e2371ba09db46a33791	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REd8bdf6e090ef2ca3a7da7d903e247f11	0	inbound	+18558645656	136	2.52977108955383301	\N	new lead		15	\N	\N	446
2017-11-30 18:12:30.209734+00	2017-11-30 18:18:14.291515+00	7412	completed	Randy.	Stevens.	randystevens54@gmail.com	+17064017523		329	2017-11-30 18:12:30.207583	2017-11-30 18:18:14.261601	CAb2e22d66f5eeabe2a1b13155c1c50387	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE0d615e3c7b4f88017be4edf688f18794	1	outbound	+17704009016	\N	11.9958269596099854	{}	new lead		13	\N	\N	447
2016-10-06 13:15:25.207992+00	2016-12-09 17:10:17.41357+00	2209	completed				+16103300954		188	2016-10-06 13:15:25.202694	2016-10-06 13:18:32.774445	CA8431d85afbbe76d39759d360d6919d83	\N	27			0	inbound	+18552716856	\N	7.1793978214263916	null	new lead		3	\N	\N	449
2016-07-18 13:36:10.477384+00	2016-12-10 00:55:45.164925+00	886	completed				+16103823200		255	2016-07-18 13:36:10.475818	2016-07-18 13:40:25.659377	CA8d18633b38c50ac6eaf147c05f320859	\N	24			0	inbound	+18557129406	\N	2.52580881118774414	null	new lead		3	\N	\N	452
2017-04-10 20:34:16.724142+00	2017-11-29 18:38:53.213659+00	3767	completed				+13378922369		144	2017-04-10 20:34:16.721878	2017-04-10 20:36:41.121793	CAb8742746061ac6ce9d7887bf2738d7b0	\N	105			0	inbound	+12146922088	\N	3.1038970947265625	\N	new lead	sth louisiana c	9	\N	\N	453
2016-10-05 14:36:56.050548+00	2016-12-10 01:03:26.835849+00	2163	completed				+12012888984		14	2016-10-05 14:36:56.049378	2016-10-05 14:37:10.229519	CAc6b867dc233656125d76807ca5a5d43f	\N	68			0	inbound	+18553793442	\N	0.528725147247314453	null	new lead		3	\N	\N	454
2016-10-06 19:36:02.332177+00	2016-12-10 00:57:48.461797+00	2221	completed				+18052907318		232	2016-10-06 19:36:02.330614	2016-10-06 19:39:53.976793	CA5424034e5fd235459adc095abdd49776	\N	30			0	inbound	+18559652184	\N	6.11009311676025391	null	new lead		3	\N	\N	455
2018-02-08 23:01:38.69792+00	2018-02-08 23:01:53.868763+00	8209	completed				+17739699892		15	2018-02-08 23:01:38.390305	\N	c-rnk3fxednrdbj5y5o2zxuhy	\N	176		https://buyercall-test-recordings.s3.amazonaws.com/Steve%20Cars_25/8209_recording_8b6d31403da14f30814dd30166ee7744	0	inbound	+15626663928	144	8	\N	new lead	HONDA K MI NCHI	25	\N	\N	457
2017-12-11 15:13:37.747379+00	2017-12-11 15:15:02.512407+00	7777	completed	JOSE	ROSA	robertorosa1791@gmail.com	+12817016521		80	2017-12-11 15:13:37.74596	2017-12-11 15:15:02.510588	CAc61e8294d7ce59fa743bea635f228c63	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	4.03118300437927246	{}	new lead		15	\N	\N	459
2016-08-05 18:37:38.554699+00	2016-08-05 19:07:18.956249+00	1283	missed	Chelsea	Metzger	cmetzgerca@gmail.com	+17148221708		\N	2016-08-05 18:37:38.553681	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - autopay		1	\N	\N	460
2017-12-22 16:04:57.933196+00	2017-12-22 16:18:26.056942+00	8066	completed	Jason	Cremer	Cremer42@aol.com	+15132650599		803	2017-12-22 16:04:57.931188	2017-12-22 16:18:26.05582	CAcd250f6ae10be9bf5d22e55a3e0a32bb	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.22370290756225586	{}	new lead		15	\N	\N	461
2017-05-25 14:44:01.382348+00	2017-05-25 15:06:18.901833+00	5386	missed				+16822402863		50	2017-05-25 14:44:01.379637	2017-05-25 14:44:51.236149	CAaa0c46f4bc469c887239b4d6285b43ff	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE6cbff00e07348c6e751ccefbe16af2be	0	inbound	+18177569010	124	1315.74593806266785	\N	new lead	heavy duty hand	12	\N	\N	462
2017-12-28 19:54:30.694324+00	2017-12-28 20:03:00.830282+00	8140	completed	Joneka	Smith	Blackbarbiejjs@yahoo.com	+17063804865		226	2017-12-28 19:54:30.692812	2017-12-28 19:58:32.708734	CAdb71c49547f44d00cdbbcd3ce78cd75a	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REbeef6daeedcbb124644b3450e9486d55	1	outbound	+17704009016	\N	14.6795470714569092	{}	select status		13	\N	\N	463
2017-12-29 15:07:38.754587+00	2017-12-29 15:09:12.49318+00	8148	completed	Joneka	Smith		+17063804865		93	2017-12-29 15:07:38.752234	2017-12-29 15:09:11.725368	CAefad03e9ef19957eaa91158e9c6d505d	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE780a0ee5ab9300652a83ee2950254d90	0	inbound	+17707665732	133	19.8193058967590332	\N	select status	joneka smith	13	\N	\N	463
2017-05-08 18:52:28.31546+00	2017-11-29 18:38:49.810358+00	4860	completed				+13615483307		76	2017-05-08 18:52:28.312647	2017-05-08 18:53:44.752743	CAd7903289f816ab09afebdd87a871a8d2	\N	126			0	inbound	+12147122250	\N	2.40814208984375	\N	new lead	davila julian	9	\N	\N	385
2017-05-08 18:54:26.01028+00	2017-11-29 18:38:49.810388+00	4862	completed				+13615483307		260	2017-05-08 18:54:26.008306	2017-05-08 18:58:46.226601	CA2b4da08b6ecbe3a36d2bff9f37803718	\N	\N			0	inbound	+12147122250	\N	1.89256191253662109	\N	new lead	davila julian	9	\N	\N	385
2016-06-29 11:49:10.548135+00	2016-06-29 15:56:37.664389+00	626	completed	Sun	Mcguinness	ssm513@aol.com	+13303890760		\N	2016-06-29 11:49:10.54643	\N		ee869226-e246-4ab4-aaaa-e9403e2ddd39	\N			0	outbound	+18555983683	\N	\N	{}	new lead		1	\N	\N	468
2017-12-14 16:16:04.638359+00	2017-12-14 19:56:29.492042+00	7867	completed	Kalip	Sherman		+14048395885		187	2017-12-14 16:16:04.635984	2017-12-14 16:19:11.439068	CA3a1cf581b68d200ab8a8a4f88aa7ec21	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE82e56bc13a529c1a3735b697e2af044e	0	inbound	+17707665732	133	7.89398407936096191	\N	select status	norcross  ga	13	\N	\N	469
2017-12-02 20:57:26.530193+00	2017-12-14 19:56:29.503157+00	7501	completed	Kalip	Sherman	Kalip300@gmail.com	+14048395885		60	2017-12-02 20:57:26.528459	2017-12-02 21:04:17.275199	CA554ac2067855f13f7f07845a9b06a8e1	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE6d448fc2019903297493f0fbbd46d13d	3	outbound	+17704009016	\N	349.240175008773804	{}	select status		13	\N	\N	469
2017-04-13 16:18:12.092882+00	2017-11-29 18:38:53.213844+00	3871	completed				+14356743200		17	2017-04-13 16:18:12.091019	2017-04-13 16:18:28.647544	CAff5ff3265318109524ecdde93107877e	\N	99			0	inbound	+12146922088	\N	4.58304309844970703	\N	new lead	ken garff enter	9	\N	\N	472
2017-12-04 22:52:43.956361+00	2017-12-04 23:16:16.07298+00	7566	completed				+19418968540		1410	2017-12-04 22:52:43.954811	2017-12-04 23:16:13.952646	CA3e1caffe7813dedb13136c748b2c9366	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE188eccded303b0ec482ee3cb10cd007a	0	inbound	+18558645656	136	2.99929404258728027	\N	new lead		15	\N	\N	473
2016-11-03 15:50:07.475965+00	2016-11-03 15:52:32.190701+00	2629	completed				+19034510125		144	2016-11-03 15:50:07.473529	2016-11-03 15:52:31.318714	CAde0553aec328b40e4f62b0e809d9ef64	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE4f04c9e395cd7ea9b4fd24e759b30faa	0	inbound	+18557240606	49	2.10826277732849121	null	new lead		1	\N	\N	477
2016-08-24 18:45:14.005664+00	2016-12-09 17:10:17.413182+00	1728	missed				+16104190506		0	2016-08-24 18:45:14.00414	2016-08-24 18:45:14.246084	CAa530c61430b69f3b83820dd845e5563a	\N	\N			0	inbound	+18552716856	\N	\N	null	new lead		3	\N	\N	479
2016-08-24 18:44:18.508533+00	2016-12-09 17:10:17.413146+00	1723	completed				+16104190506		33	2016-08-24 18:44:18.506562	2016-08-24 18:44:51.804141	CA74e408b5ae621d01e1159299eff9c30e	\N	27			0	inbound	+18552716856	\N	10.5945780277252197	null	new lead		3	\N	\N	479
2016-08-24 18:44:25.973055+00	2016-12-09 17:10:17.413153+00	1724	completed				+16104190506		33	2016-08-24 18:44:25.971959	2016-08-24 18:44:59.169137	CAc9437c533ef31e13284793c0e5da8aba	\N	27			0	inbound	+18552716856	\N	10.0517270565032959	null	new lead		3	\N	\N	479
2016-08-24 18:46:07.695497+00	2016-12-09 17:10:17.413204+00	1731	completed				+16104190506		33	2016-08-24 18:46:07.693763	2016-08-24 18:46:40.935553	CA10e6741a3ac44dc98698bf254eaf662d	\N	27			0	inbound	+18552716856	\N	9.89700007438659668	null	new lead		3	\N	\N	479
2016-08-24 18:46:14.819953+00	2016-12-09 17:10:17.413212+00	1732	completed				+16104190506		33	2016-08-24 18:46:14.818828	2016-08-24 18:46:48.027777	CA878ccc7baf40c3715a5039380221f091	\N	27			0	inbound	+18552716856	\N	9.80848383903503418	null	new lead		3	\N	\N	479
2016-08-24 18:46:22.921876+00	2016-12-09 17:10:17.413219+00	1733	missed				+16104190506		0	2016-08-24 18:46:22.92082	2016-08-24 18:46:23.144873	CAc688167349f66290a69fad7792ec4519	\N	\N			0	inbound	+18552716856	\N	\N	null	new lead		3	\N	\N	479
2016-08-24 18:46:42.199654+00	2016-12-09 17:10:17.413226+00	1734	completed				+16104190506		33	2016-08-24 18:46:42.198563	2016-08-24 18:47:15.413159	CA0e2dcce2970a63a6f413dd532bc61c5c	\N	27			0	inbound	+18552716856	\N	6.41918587684631348	null	new lead		3	\N	\N	479
2016-08-24 18:46:49.860528+00	2016-12-09 17:10:17.413233+00	1735	missed				+16104190506		0	2016-08-24 18:46:49.859381	2016-08-24 18:46:50.099257	CA7aed6c57a6458d34afcf98d186708ddb	\N	\N			0	inbound	+18552716856	\N	\N	null	new lead		3	\N	\N	479
2016-08-24 18:53:41.069523+00	2016-12-09 17:10:17.413325+00	1746	completed				+16104190506		33	2016-08-24 18:53:41.068526	2016-08-24 18:54:14.374575	CA5c80e0490da51b2680a01948b33f4254	\N	27			0	inbound	+18552716856	\N	5.12575507164001465	null	new lead		3	\N	\N	479
2016-08-24 18:53:48.592843+00	2016-12-09 17:10:17.413333+00	1747	missed				+16104190506		0	2016-08-24 18:53:48.591857	2016-08-24 18:53:48.798525	CAd2e0c850a4cc2dd7721aa4fed92f0a03	\N	\N			0	inbound	+18552716856	\N	\N	null	new lead		3	\N	\N	479
2016-08-24 18:54:00.004956+00	2016-12-09 17:10:17.41334+00	1748	missed				+16104190506		0	2016-08-24 18:54:00.003928	2016-08-24 18:54:00.228896	CAa3a98295e022e198de273707417453d4	\N	\N			0	inbound	+18552716856	\N	\N	null	new lead		3	\N	\N	479
2016-08-24 18:55:20.166076+00	2016-12-09 17:10:17.413347+00	1749	completed				+16104190506		336	2016-08-24 18:55:20.164933	2016-08-24 19:00:56.443803	CAb3d185dba96c9bab0fc1013e98b40fb6	\N	27			0	inbound	+18552716856	\N	5.03199386596679688	null	new lead		3	\N	\N	479
2016-08-24 18:44:34.042674+00	2016-12-09 17:10:17.413161+00	1725	missed				+16104190506		0	2016-08-24 18:44:34.04142	2016-08-24 18:44:34.351488	CAe4cbe813891f32d104cd2bca592eef9e	\N	\N			0	inbound	+18552716856	\N	\N	null	new lead		3	\N	\N	479
2016-08-24 18:44:58.515023+00	2016-12-09 17:10:17.413168+00	1726	completed				+16104190506		33	2016-08-24 18:44:58.513418	2016-08-24 18:45:31.790031	CA01f83e9474991b331dde87e96a5af1cc	\N	27			0	inbound	+18552716856	\N	10.8089020252227783	null	new lead		3	\N	\N	479
2016-08-24 18:45:06.00649+00	2016-12-09 17:10:17.413175+00	1727	completed				+16104190506		33	2016-08-24 18:45:06.005315	2016-08-24 18:45:39.305079	CA2aebc36214dd6ebbd7ce5a0e3a3da9e6	\N	27			0	inbound	+18552716856	\N	9.48990797996520996	null	new lead		3	\N	\N	479
2016-08-24 18:45:34.164235+00	2016-12-09 17:10:17.41319+00	1729	completed				+16104190506		33	2016-08-24 18:45:34.163232	2016-08-24 18:46:07.420759	CA09b0cfeed66a80f22a7447ba5f311c15	\N	27			0	inbound	+18552716856	\N	6.44449090957641602	null	new lead		3	\N	\N	479
2016-08-24 18:45:41.615034+00	2016-12-09 17:10:17.413197+00	1730	missed				+16104190506		0	2016-08-24 18:45:41.614058	2016-08-24 18:45:41.837249	CA297b75138e583bdc0b82a47e56c0d10a	\N	\N			0	inbound	+18552716856	\N	\N	null	new lead		3	\N	\N	479
2017-11-10 19:25:36.345839+00	2017-11-10 19:27:36.658378+00	7007	completed	Clara	Anderson 	Clarapray247@att.net	+14048456443		106	2017-11-10 19:25:36.344009	2017-11-10 19:27:36.275208	CA876d7777c0fff629247273a0a357717c	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE1609143acce785075e39e92db317e3c7	1	outbound	+17704009016	\N	13.0784859657287598	{}	new lead		13	\N	\N	483
2016-08-25 17:19:15.345264+00	2016-12-10 00:55:45.16542+00	1776	completed				+12155143078		256	2016-08-25 17:19:15.344157	2016-08-25 17:23:31.281822	CAfffc39262256cd61ccaf4a8cf20baa08	\N	24			0	inbound	+18557129406	\N	3.08909797668457031	null	new lead		3	\N	\N	487
2017-05-11 15:39:45.173406+00	2017-05-17 15:41:07.224459+00	5005	completed				+12544667397		14	2017-05-11 15:39:45.170027	2017-05-11 15:39:59.034454	CAe67ce3010c8b257b60947c127f265614	\N	\N			0	inbound	+18177569010	124	6.87592983245849609	\N	new lead	roseli trejo	12	\N	\N	490
2017-05-11 15:40:07.562587+00	2017-05-17 15:41:07.224466+00	5006	completed				+12544667397		133	2017-05-11 15:40:07.561051	2017-05-11 15:42:20.683156	CA72bd185b52111fcfb9d6bd042e7c80f3	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE1848cbdb8c915d9e36900d3d2e32b36b	0	inbound	+18177569010	124	6.09237790107727051	\N	new lead	roseli trejo	12	\N	\N	490
2017-08-10 16:43:09.508443+00	2017-08-10 16:45:13.617251+00	5983	completed				+16786147719		123	2017-08-10 16:43:09.505357	2017-08-10 16:45:12.927429	CA8e7e53e1e41d3dfbafb1c93fccbb394f	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE167eef0e5d94e6e20a2d79b99270f4f0	0	inbound	+17704009016	132	14.1963479518890381	\N	new lead		13	\N	\N	492
2017-08-12 12:47:27.738143+00	2017-08-12 12:47:57.867385+00	5999	missed				+16786147719		30	2017-08-12 12:47:27.735771	2017-08-12 12:47:57.856004	CA77badd77ffac0c7add8b6f220dcbe75f	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE61ec9b7bec8c763115149914218b3e34	0	inbound	+17704009016	132	\N	\N	new lead		13	\N	\N	492
2017-05-02 23:34:48.139215+00	2017-11-29 18:38:49.80896+00	4610	completed				+18176156089		82	2017-05-02 23:34:48.137109	2017-05-02 23:36:09.832953	CA84b3a5bf6ea109a160f9053299a1cdc7	\N	103			0	inbound	+12147122250	\N	11.2845978736877441	\N	new lead	clark vivian	9	\N	\N	494
2016-11-10 21:20:14.569645+00	2016-11-10 21:20:14.595026+00	2850	missed	Javier	De La Garza	javierdelagarza@msn.com	+17139261800		\N	2016-11-10 21:20:14.568465	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	500
2016-08-08 18:51:26.743777+00	2017-01-27 21:12:23.812853+00	1334	completed		Miller		+15136164811		95	2016-08-08 18:51:26.74184	2016-08-08 18:53:01.637242		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	503
2016-08-09 14:04:09.701453+00	2017-01-27 21:12:23.812923+00	1354	completed		Miller		+15136164811		94	2016-08-09 14:04:09.700393	2016-08-09 14:05:43.478134		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	503
2016-08-01 20:42:23.530825+00	2017-11-29 18:31:37.368317+00	1098	missed		Miller		+15136164811		3	2016-08-01 20:42:23.52991	2016-08-01 20:42:26.403833	CA52425cbcf352246412c7b309b776ca91	\N	\N			0	inbound	+18555472453	\N	\N	null	general interest		1	\N	\N	503
2017-07-27 20:39:08.190421+00	2017-07-27 20:44:52.650204+00	5865	completed				+16788657040		344	2017-07-27 20:39:08.187355	2017-07-27 20:44:52.645998	CA274f9ee9ce7b5a61d0269f08afc2e9af	\N	152			0	inbound	+17704009016	132	321.961616992950439	\N	new lead		13	\N	\N	504
2017-12-21 20:52:12.430144+00	2017-12-21 20:54:03.141736+00	8057	completed				+12317452761		109	2017-12-21 20:52:12.428236	2017-12-21 20:54:01.828891	CA4dc1322cb7b2ac039dba075c067b414c	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE9f026cb8ab148b595fdc3039dd95c92a	0	inbound	+18558645656	136	2.31715607643127441	\N	new lead		15	\N	\N	506
2017-04-14 21:51:08.424402+00	2017-11-29 18:38:53.213972+00	3948	missed				+18325744171		0	2017-04-14 21:51:08.421446	2017-04-14 21:51:08.561841	CA9bdea10b66e0c7e3120f3f1d051196ea	\N	\N			0	inbound	+12146922088	\N	\N	\N	new lead	laurent latour	9	\N	\N	508
2017-04-28 19:12:04.340611+00	2017-04-28 19:12:17.176729+00	4434	completed				+12145164648		13	2017-04-28 19:12:04.338297	2017-04-28 19:12:17.167002	CAbbcb8c2e005f26cb91e65d0f95553e74	\N	129			0	inbound	+18172104002	126	4.09266996383666992	\N	new lead	cell phone   tx	12	\N	\N	510
2017-04-28 20:44:15.938478+00	2017-04-28 20:45:28.063862+00	4446	completed				+12145164648		72	2017-04-28 20:44:15.936136	2017-04-28 20:45:28.059628	CA8b22e3ce931acbefecc9617068c36b92	\N	129			0	inbound	+18172104002	126	14.0666041374206543	\N	new lead	cell phone   tx	12	\N	\N	510
2017-12-11 22:05:57.470774+00	2017-12-11 22:36:46.800216+00	7797	completed				+12693131926		1846	2017-12-11 22:05:57.4691	2017-12-11 22:36:43.539468	CA443dcea9254fb796e9376c81d3f178d8	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REe79898ec82ef0b52c3009479a6fc0a24	0	inbound	+18558645656	136	3.57625007629394531	\N	new lead		15	\N	\N	512
2016-11-05 02:22:28.786355+00	2016-11-05 02:22:28.820159+00	2739	missed	Joseph	Muniz	Josephmuniz7@gmail.com	+14808431777		\N	2016-11-05 02:22:28.785249	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	515
2017-05-10 19:15:55.205182+00	2017-11-29 18:38:53.215597+00	4974	completed				+19567772117		129	2017-05-10 19:15:55.203691	2017-05-10 19:18:03.884119	CA6331bb78e618a56ea26995b1456ca06b	\N	\N		https://api.twilio.com/2010-04-01/Accounts/AC5422b9b221417a7a84556a92f6edc492/Recordings/RE898dbc78a8733f14888bced917ff7b41	0	inbound	+12146922088	\N	4.209259033203125	\N	new lead	villa baldemar	9	\N	\N	516
2017-06-15 22:11:22.258285+00	2017-08-17 14:35:21.045464+00	5585	completed				+18067522795		367	2017-06-15 22:11:22.256239	2017-06-15 22:17:29.124523	CA4c155c4a65ddc3216a2eed577c6b12eb	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE99076762c7ce32a7c9f11e1eb6d30e68	0	inbound	+18177569010	124	6.62729287147521973	\N	new lead	wireless caller	12	\N	\N	519
2017-07-13 19:32:02.760043+00	2017-07-13 19:37:57.717972+00	5771	missed				+16787072380		11	2017-07-13 19:32:02.758404	2017-07-13 19:32:13.582894	CA87e08d534e9b4cae0885347698322e7c	\N	\N			0	inbound	+17704009016	132	335.821424961090088	\N	new lead		13	\N	\N	520
2017-09-15 22:11:09.419622+00	2017-09-15 22:11:43.221729+00	6374	completed				+16787072380		33	2017-09-15 22:11:09.417537	2017-09-15 22:11:42.072093	CA2f9dc514a5252590f043adc66638095a	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE3e6fafeb27049e211080a32b2560e53a	0	inbound	+17704009016	132	17.8701579570770264	\N	new lead		13	\N	\N	520
2017-09-05 22:31:54.075941+00	2017-09-05 22:38:25.874986+00	6267	missed				+16787072380		67	2017-09-05 22:31:54.073629	2017-09-05 22:33:00.72446	CA74748545953381924a247a3050d07244	\N	\N			0	inbound	+17707665732	133	383.910759925842285	\N	new lead		13	\N	\N	520
2017-09-23 16:13:51.483278+00	2017-09-23 16:19:45.684997+00	6464	missed				+16787072380		13	2017-09-23 16:13:51.481478	2017-09-23 16:14:04.08182	CAa5fdc9b2ed1adc4d869469751585ffde	\N	\N			0	inbound	+17707665732	133	334.559345006942749	\N	new lead		13	\N	\N	520
2017-09-24 12:51:04.368939+00	2017-09-24 12:56:29.627157+00	6473	missed				+16787072380		8	2017-09-24 12:51:04.367189	2017-09-24 12:51:12.715943	CAe88ae0b4a253c455912cf04d48e0faf0	\N	\N			0	inbound	+17707665732	133	319.573807001113892	\N	new lead		13	\N	\N	520
2017-09-24 14:28:17.557489+00	2017-09-24 14:34:18.108475+00	6474	completed				+16787072380		361	2017-09-24 14:28:17.55524	2017-09-24 14:34:18.104808	CA06e5332d1905e22b1458c3d380f51ff1	\N	152			0	inbound	+17707665732	133	319.712550163269043	\N	new lead		13	\N	\N	520
2017-10-13 20:29:30.055461+00	2017-10-13 20:35:11.108387+00	6704	missed				+16787072380		6	2017-10-13 20:29:30.054138	2017-10-13 20:29:36.371743	CAfa2867c80dbeeb98df98013b6386e89e	\N	\N			0	inbound	+17707665732	133	324.782158136367798	\N	new lead		13	\N	\N	520
2017-11-06 19:40:13.372402+00	2017-11-06 19:46:05.641279+00	6951	completed				+16787072380		352	2017-11-06 19:40:13.370199	2017-11-06 19:46:05.638686	CA3ebfba015a1d934d883c466126005f30	\N	153			0	inbound	+17707665732	133	315.559752941131592	\N	new lead		13	\N	\N	520
2016-10-31 20:05:11.786388+00	2016-10-31 20:05:11.815626+00	2419	missed	James	Nash	nikkinash08@yahoo.com	+17705438499		\N	2016-10-31 20:05:11.784965	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	526
2017-12-12 16:03:22.258428+00	2017-12-12 16:05:39.083713+00	7813	completed	wanda	martin	wandamartin123@yahoo.com	+16785495816		91	2017-12-12 16:03:22.257168	2017-12-12 16:04:53.215356		\N	150			0	outbound	+17704009016	132	\N	\N	select status		13	\N	\N	527
2017-12-11 23:41:59.53655+00	2017-12-12 16:05:39.094029+00	7799	missed	wanda	martin	wandamartin123@yahoo.com	+16785495816		0	2017-12-11 23:41:59.534757	2017-12-11 23:48:09.339567	CA836ed625b195b801e3817d349242e908	e611622e-d408-4b1f-85fa-8cba4306b7ab	\N			3	outbound	+17704009016	\N	23.9553730487823486	{}	select status		13	\N	\N	527
2017-12-15 22:49:22.268835+00	2017-12-15 22:51:06.29457+00	7914	completed	wanda	martin		+16785495816		103	2017-12-15 22:49:22.267128	2017-12-15 22:51:05.57806	CAaa3e57050039f13ea1b2b4a4c1b39cea	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REc6e6c50ca24648990f4674468d263fa9	0	inbound	+17704009016	132	20.1973068714141846	\N	select status	martin jeffery	13	\N	\N	527
2017-05-22 15:24:27.153166+00	2017-11-29 18:38:49.812529+00	5271	completed				+17702373280		64	2017-05-22 15:24:27.151873	2017-05-22 15:25:30.986941	CA8cb39e0669165df2e2b6e4ed193fc962	\N	99			0	inbound	+12147122250	\N	4.31452298164367676	\N	new lead	myles trucking	9	\N	\N	529
2016-11-08 22:36:49.085687+00	2016-11-08 22:53:40.026448+00	2810	completed				+17138519047		1009	2016-11-08 22:36:49.084042	2016-11-08 22:53:37.81967	CAab79086ef6422f22cceb6e61cd9050b7	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE993c97686df1daf26748b46cbc77dbaf	0	inbound	+18557240606	49	1.72992515563964844	null	new lead		1	\N	\N	532
2017-10-07 16:03:15.333338+00	2017-10-07 16:05:32.066975+00	6619	completed				+16828080696		136	2017-10-07 16:03:15.331592	2017-10-07 16:05:31.351314	CAdbb01faed788354bdba0aef795e92a5f	\N	155		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE19908d3d84f50eaca5c491c546e436f5	0	inbound	+18177569010	124	7.36857891082763672	\N	new lead	hilburn joseph	12	\N	\N	533
2016-08-05 15:26:53.322056+00	2016-08-16 19:30:47.99018+00	1274	missed	Matthew	Cruz-Gonzalez	mattcruz400@gmail.com	+16619021086		\N	2016-08-05 15:26:53.320989	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - autopay		1	\N	\N	538
2017-12-12 14:54:58.899781+00	2017-12-12 14:56:27.047513+00	7807	completed				+17062016238		87	2017-12-12 14:54:58.898089	2017-12-12 14:56:26.17758	CA4be852f3cb27d3b2599b884ab28473e6	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE22739be77a280a755b123b2195eba7ef	0	inbound	+17707665732	133	12.4454009532928467	\N	new lead	tate ella	13	\N	\N	539
2017-04-25 19:47:41.899446+00	2017-11-29 18:47:25.068305+00	4300	completed				+14692744727		342	2017-04-25 19:47:41.896829	2017-04-25 19:53:24.122463	CAca4870a2f6af3920161c15f9f7bc0cfb	\N	83		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE93ea856b7bb06b5e0bbec7ec340a02ca	0	inbound	+19728330116	\N	13.6703121662139893	\N	new lead	zhan yanping	8	\N	\N	541
2017-01-09 22:03:10.534405+00	2017-01-09 22:19:08.785951+00	3113	completed				+16827859919		952	2017-01-09 22:03:10.529935	2017-01-09 22:19:02.800282	CA0727b27571d7cf71d78350573ada1f64	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REfdb86261621f14623971e907922c6a68	0	inbound	+18557240606	49	2.14178204536437988	null	new lead		1	\N	\N	543
2017-05-10 22:31:39.334982+00	2017-11-29 18:38:53.215611+00	4990	completed				+15015637566		51	2017-05-10 22:31:39.333056	2017-05-10 22:32:30.505412	CAd0799e911b185e85881a6e9ca4ac882f	\N	107		https://api.twilio.com/2010-04-01/Accounts/AC5422b9b221417a7a84556a92f6edc492/Recordings/RE6ab19e152add7169b534f1b76684cb63	0	inbound	+12146922088	\N	3.02226805686950684	\N	new lead	akins beryl    	9	\N	\N	545
2017-05-15 15:39:19.126652+00	2017-11-29 18:38:49.811516+00	5069	completed				+15015637566		152	2017-05-15 15:39:19.12489	2017-05-15 15:41:51.429002	CA997b088259e84b6bfc8199bddeeb3298	\N	99			0	inbound	+12147122250	\N	6.38372921943664551	\N	new lead	akins beryl    	9	\N	\N	545
2017-05-19 21:58:30.90272+00	2017-11-29 18:38:49.812361+00	5243	completed				+15015637566		110	2017-05-19 21:58:30.900998	2017-05-19 22:00:21.059866	CA707b2e27294391842de3af93683917d5	\N	107			0	inbound	+12147122250	\N	7.75998806953430176	\N	new lead	akins beryl    	9	\N	\N	545
2017-05-03 22:32:38.99383+00	2017-05-17 15:41:07.224415+00	4682	completed				+18179138885		98	2017-05-03 22:32:38.992378	2017-05-03 22:34:16.604579	CAc8d0611a054e27396879f78389dceef7	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE1e3f315f3d4f420bb844886cdcc28d15	0	inbound	+18177569010	124	22.5212829113006592	\N	new lead	cell phone   tx	12	\N	\N	546
2017-05-12 19:14:12.249349+00	2017-05-17 15:41:07.224473+00	5040	completed				+18179138885		103	2017-05-12 19:14:12.247378	2017-05-12 19:15:55.099173	CA4bc5bb6c81eafd4d6031eae970391e5b	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE8412dde894a35f7e6af09b10bc2083cd	0	inbound	+18177569010	124	8.17113494873046875	\N	new lead	cell phone   tx	12	\N	\N	546
2017-06-06 21:43:46.253678+00	2017-08-17 14:35:21.045435+00	5572	completed				+18179138885		82	2017-06-06 21:43:46.251461	2017-06-06 21:45:08.643323	CA649f0b0cf6b6877435545ab93b841490	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE74bd21389306247ff00c889596163ddc	0	inbound	+18177569010	124	8.38693594932556152	\N	new lead	cell phone   tx	12	\N	\N	546
2017-04-19 18:53:39.902099+00	2017-11-29 18:38:53.214262+00	4094	completed				+12145872260		186	2017-04-19 18:53:39.900028	2017-04-19 18:56:45.430468	CA62925d9077b30680e822f87f1c1cc39e	\N	107			0	inbound	+12146922088	\N	5.87403607368469238	\N	new lead	lumbatis alison	9	\N	\N	547
2017-05-01 21:34:55.15963+00	2017-11-29 18:38:49.808421+00	4551	completed				+17134171808		69	2017-05-01 21:34:55.157403	2017-05-01 21:36:04.357075	CA1b16bacb740e4d74f3fdefa04138ceeb	\N	124			0	inbound	+12147122250	\N	1.38480806350708008	\N	new lead	gold coast inve	9	\N	\N	549
2017-05-01 21:36:01.147473+00	2017-11-29 18:38:49.808437+00	4552	completed				+17134171808		67	2017-05-01 21:36:01.144598	2017-05-01 21:37:08.444811	CA283adf71e74142aa2106a94b1d23dbe2	\N	125			0	inbound	+12147122250	\N	2.06319403648376465	\N	new lead	gold coast inve	9	\N	\N	549
2017-05-01 21:37:09.77915+00	2017-11-29 18:38:49.808449+00	4553	completed				+17134171808		76	2017-05-01 21:37:09.776668	2017-05-01 21:38:25.695246	CAe90ed1a0bcd8e44f3263435358f53adf	\N	127			0	inbound	+12147122250	\N	1.93869304656982422	\N	new lead	gold coast inve	9	\N	\N	549
2017-06-27 14:44:54.435996+00	2017-06-27 14:45:21.473458+00	5667	completed				+18063168889		26	2017-06-27 14:44:54.433647	2017-06-27 14:45:20.148369	CA7c7f6967cd997c0dad741099beff7670	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE5e66a29c70b5faafd7c25f5371323dfa	0	inbound	+18557240606	49	3.76897788047790527	\N	new lead		1	\N	\N	553
2017-05-05 23:31:21.312416+00	2017-11-29 18:38:49.810159+00	4796	completed				+19493552436		273	2017-05-05 23:31:21.310634	2017-05-05 23:35:54.541697	CAb86b7a3935b3a91ea47b963421851947	\N	\N			0	inbound	+12147122250	\N	1.4507758617401123	\N	new lead	stupay geoffrey	9	\N	\N	556
2017-12-18 17:08:27.310245+00	2017-12-18 17:25:31.476086+00	7970	completed				+12693132589		1021	2017-12-18 17:08:27.308274	2017-12-18 17:25:28.147708	CA8c19fdec7a54986a2c76a0608c9f2388	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE5947f82885e62bd7cff5be24dc69f6c0	0	inbound	+18558645656	136	2.75863313674926758	\N	new lead		15	\N	\N	558
2016-11-11 20:13:31.803762+00	2016-11-11 20:13:31.840903+00	2870	missed	CHRISTOPHER	KRAMER	CKRAMER@GAYLORDHOTELS.COM	+18177781237		\N	2016-11-11 20:13:31.802003	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	562
2017-08-28 16:30:06.630741+00	2017-08-28 16:49:05.997777+00	6185	completed				+17705391776		1139	2017-08-28 16:30:06.628949	2017-08-28 16:49:05.983919	CA57fc33ecfdc3658f170a7cc8cf3a5cb2	\N	154			0	inbound	+17707665699	134	1.54738783836364746	\N	new lead		13	\N	\N	563
2016-11-12 16:02:27.419905+00	2016-11-12 16:02:27.44728+00	2875	missed	Danielle	Varner	tdmvarner@gmail.com	+19724001196		\N	2016-11-12 16:02:27.418472	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	567
2017-04-29 16:38:49.087306+00	2017-11-29 18:38:53.214809+00	4464	completed				+12514584452		351	2017-04-29 16:38:49.085723	2017-04-29 16:44:39.746442	CAd5b6d5bd720c021f28799ca5c5a9405e	\N	\N			0	inbound	+12146922088	\N	6.95874500274658203	\N	new lead	somme arne	9	\N	\N	569
2017-05-04 14:40:27.650788+00	2017-11-29 18:38:53.215085+00	4705	completed				+15802767339		341	2017-05-04 14:40:27.648692	2017-05-04 14:46:08.28135	CA5634f611e0d640017897cab14d2e8b98	\N	133			0	inbound	+12146922088	\N	4.57930421829223633	\N	new lead	mathews kent   	9	\N	\N	571
2016-12-09 12:58:55.376071+00	2016-12-10 01:03:35.620648+00	3068	completed				+19179035533		212	2016-12-09 12:58:55.37437	2016-12-09 13:02:27.161304	CA044edee616299ca625dc5150a37a5f83	\N	66			0	inbound	+18557376565	\N	1.39845085144042969	null	new lead		3	\N	\N	572
2016-12-09 15:24:34.577099+00	2016-12-10 01:03:35.620655+00	3070	completed				+19179035533		8	2016-12-09 15:24:34.57491	2016-12-09 15:24:43.065607	CA08fbb62bbc21a7eab20699be9daa35d7	\N	66			0	inbound	+18557376565	\N	1.22953605651855469	null	new lead		3	\N	\N	572
2017-05-01 21:20:57.577357+00	2017-11-29 18:38:49.808371+00	4548	completed				+12148760147		86	2017-05-01 21:20:57.574628	2017-05-01 21:22:23.169339	CAfee1f14ec83c26fb624e71969e25a727	\N	127			0	inbound	+12147122250	\N	1.31673598289489746	\N	new lead	ben e keith bev	9	\N	\N	574
2017-05-01 22:02:38.748143+00	2017-11-29 18:38:49.80846+00	4554	completed				+12148760147		82	2017-05-01 22:02:38.745662	2017-05-01 22:04:01.139193	CA1716172f6371eb0a08c36b4736f45895	\N	107			0	inbound	+12147122250	\N	8.76670408248901367	\N	new lead	ben e	9	\N	\N	574
2017-05-10 17:25:04.734318+00	2017-11-29 18:38:49.810789+00	4955	completed				+12148760147		72	2017-05-10 17:25:04.730705	2017-05-10 17:26:16.514893	CAa8841bd8c6329a3d8f5291aafbac119f	\N	125			0	inbound	+12147122250	\N	0.999789953231811523	\N	new lead	ben e keith bev	9	\N	\N	574
2017-05-10 17:26:14.802858+00	2017-11-29 18:38:49.810797+00	4956	completed				+12148760147		47	2017-05-10 17:26:14.800169	2017-05-10 17:27:02.091255	CAa4fa372a3a4a96cca682a61bd76fa924	\N	107			0	inbound	+12147122250	\N	6.86225199699401855	\N	new lead	ben e keith bev	9	\N	\N	574
2016-08-24 16:05:00.249369+00	2016-08-24 16:31:42.983418+00	1703	missed	Richard	Beno	benorick2014@gmail.com	+19208836494		\N	2016-08-24 16:05:00.248453	\N		4b51c6b2-49f9-4108-8fdf-a8671e497256	\N			0	outbound	+18556311541	\N	\N	{}	application submitted - autopay		1	\N	\N	578
2016-08-23 18:21:17.555554+00	2017-11-29 18:31:14.616524+00	1679	missed				+19208836494		82	2016-08-23 18:21:17.553863	2016-08-23 18:22:39.893259	CAf6e1202d3baf21b449bf80407b817ae1	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE05325d22f22aceb60b90fb2ce9df74a1	0	inbound	+18556311541	\N	31.755511999130249	null	application submitted - autopay		1	\N	\N	578
2016-08-23 18:46:21.227633+00	2017-11-29 18:31:14.616531+00	1680	missed				+19208836494		61	2016-08-23 18:46:21.225693	2016-08-23 18:47:22.155711	CAcfe610034e2b42377cd3d0467e7326f4	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE5fae314c55591db9a33b4dfe835e8b5e	0	inbound	+18556311541	\N	31.374114990234375	null	application submitted - autopay		1	\N	\N	578
2016-08-24 15:52:26.670597+00	2017-11-29 18:31:14.616538+00	1702	completed	Richard	Beno		+19208836494		856	2016-08-24 15:52:26.668471	2016-08-24 16:06:42.295538	CA70a4944c90efedbc09ec5b2a2deb2842	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE33d3f950a87b0eb7137e5ede3b509e0a	0	inbound	+18556311541	\N	5.35758304595947266	null	application submitted - autopay		1	\N	\N	578
2017-04-13 17:27:17.709593+00	2017-11-29 18:38:53.213851+00	3881	completed				+17702928098		329	2017-04-13 17:27:17.70705	2017-04-13 17:32:46.53767	CAcec1af5a353b791909b447ede69dfa22	\N	\N			0	inbound	+12146922088	\N	5.15418505668640137	\N	new lead	cell phone   ga	9	\N	\N	579
2016-11-10 14:16:25.661404+00	2016-12-09 17:08:31.908887+00	2829	completed				+15082533596		39	2016-11-10 14:16:25.65971	2016-11-10 14:17:04.608075	CA7f16aef7d87b1c9bd59a28fb262ac920	\N	67			0	inbound	+18552576059	\N	1.82826113700866699	null	new lead		3	\N	\N	580
2017-03-02 18:55:50.182719+00	2017-11-29 18:47:25.067552+00	3298	completed				+18172341234		275	2017-03-02 18:55:50.180609	2017-03-02 19:00:25.222284	CAa33642f36ec7717a1357eb3900e8c1f6	\N	82		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE45e6efd556eb7cf45e8186f8f2c2858f	0	inbound	+19728330116	\N	10.4959700107574463	\N	new lead	auto leasing	8	\N	\N	581
2016-11-29 19:56:24.527458+00	2016-11-29 20:23:41.94057+00	2998	completed				+18168683181		1626	2016-11-29 19:56:24.525752	2016-11-29 20:23:30.883849	CA3806d46576dc3477c3d4f11641e786d8	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE135e14ee260aacdf95f1ab739e24423e	0	inbound	+18557240606	49	5.38372707366943359	null	new lead		1	\N	\N	584
2017-09-09 20:40:05.45595+00	2017-09-09 20:40:59.98603+00	6305	completed				+18177147649		54	2017-09-09 20:40:05.453931	2017-09-09 20:40:59.286521	CAbedd8857d98951a2ef87eb78e6a26807	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE641464060f619b5cef3fc59c42210067	0	inbound	+18177569010	124	9.29107093811035156	\N	new lead	robles theresa	12	\N	\N	586
2017-09-09 21:06:03.1025+00	2017-09-09 21:08:24.80354+00	6306	completed				+18177147649		141	2017-09-09 21:06:03.100505	2017-09-09 21:08:23.860915	CAe9f4939a308d0e2cd0781c2c0bc2b850	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE76d2f99f3ce59e393c1530263e22751f	0	inbound	+18177569010	124	7.08408498764038086	\N	new lead	robles theresa	12	\N	\N	586
2017-04-24 19:12:12.853715+00	2017-11-29 18:38:53.214504+00	4257	completed				+13363993015		19	2017-04-24 19:12:12.851631	2017-04-24 19:12:32.113369	CAecb5e99dfcd7ba15fc676ae64d23292f	\N	\N			0	inbound	+12146922088	\N	2.34423613548278809	\N	new lead	deal jason     	9	\N	\N	588
2016-07-05 17:03:16.672556+00	2016-07-05 17:04:39.426205+00	756	completed	Scott	Gates		+13302408417		78	2016-07-05 17:03:16.671604	2016-07-05 17:04:39.42493	CAe64b4cfd372b2ae7b2cfe8d9dc1147dc	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.39961099624633789	{}	new lead		1	\N	\N	591
2016-07-05 15:58:53.228942+00	2016-07-05 17:03:36.73581+00	752	completed	Scott	Gates	gates1896@gmail.com	+13302408417		0	2016-07-05 15:58:53.227819	2016-07-05 15:59:21.775303	CAe455d822a701fc68990685fc7b5540e0	ee869226-e246-4ab4-aaaa-e9403e2ddd39	\N			1	outbound	+18555983683	\N	19.2682619094848633	{}	new lead		1	\N	\N	591
2017-11-02 19:30:02.556671+00	2017-11-02 19:31:43.44508+00	6908	completed				+18173612479		100	2017-11-02 19:30:02.553776	2017-11-02 19:31:42.375482	CA69b2e398334249bc7263a58c1e151b79	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE7ef66f11311b50711294834296039c10	0	inbound	+18177569010	124	10.7572999000549316	\N	new lead	rackstraw kamer	12	\N	\N	592
2017-03-04 14:05:16.185355+00	2017-03-04 14:05:16.229672+00	3323	missed	Annette	Lagomarsino	Annettelago@hotmail.com	+17706168441		\N	2017-03-04 14:05:16.182943	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	597
2017-04-17 17:54:59.829122+00	2017-11-29 18:38:53.214085+00	3997	completed				+15125525464		344	2017-04-17 17:54:59.826783	2017-04-17 18:00:43.977858	CAe8e2a792743c22dfd4979323f320a532	\N	107			0	inbound	+12146922088	\N	5.30643391609191895	\N	new lead	star vip	9	\N	\N	598
2017-12-14 20:38:13.840213+00	2017-12-14 20:38:45.631358+00	7877	completed				+19042264075		31	2017-12-14 20:38:13.838407	2017-12-14 20:38:44.901378	CA34d596f8fcbaa8ee0d1a7e3aa4fcd3fe	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE0b2f8ba2d9bf32a7eccc86593ebda07e	0	inbound	+18558645656	136	2.725830078125	\N	new lead		15	\N	\N	601
2017-05-05 16:46:26.377989+00	2017-11-29 18:38:49.809967+00	4767	completed				+16075902105		69	2017-05-05 16:46:26.376284	2017-05-05 16:47:35.546508	CA321b42dc642236cab2b9dfde07af6fd1	\N	126			0	inbound	+12147122250	\N	0.875028133392333984	\N	new lead	binghamton  ny	9	\N	\N	602
2017-12-08 00:16:06.880723+00	2017-12-08 00:38:27.720727+00	7698	missed				+16827748641		46	2017-12-08 00:16:06.878983	2017-12-08 00:16:53.038148	CA1275f51665a534c06690271150e8a4bb	\N	\N			0	inbound	+18177569010	124	1319.08958792686462	\N	new lead	gallaread breun	12	\N	\N	603
2016-11-02 00:13:07.874145+00	2016-11-02 00:13:07.900211+00	2528	missed	Larry	Harrison	larryh01@verizon.net	+18172171232		\N	2016-11-02 00:13:07.873036	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	new lead		1	\N	\N	606
2017-05-17 15:47:15.859248+00	2017-11-29 18:38:49.811975+00	5154	completed				+12104210566		69	2017-05-17 15:47:15.857337	2017-05-17 15:48:24.869813	CA24330751090473d68981099391f991d8	\N	105			0	inbound	+12147122250	\N	3.99037408828735352	\N	new lead	rodriguez gary	9	\N	\N	608
2017-05-17 15:48:23.022164+00	2017-11-29 18:38:49.811983+00	5155	completed				+12104210566		78	2017-05-17 15:48:23.020271	2017-05-17 15:49:41.177068	CA4c55bd329d81221f4fdf9ea43951b65e	\N	107			0	inbound	+12147122250	\N	5.41223406791687012	\N	new lead	rodriguez gary	9	\N	\N	608
2017-05-04 17:17:29.4037+00	2017-11-29 18:38:53.2151+00	4714	completed				+16022788866		25	2017-05-04 17:17:29.401839	2017-05-04 17:17:54.284632	CAcc9d70d461766da1d34d002bd1305712	\N	\N			0	inbound	+12146922088	\N	1.87954211235046387	\N	new lead	naturalite neon	9	\N	\N	610
2017-04-14 21:00:23.755042+00	2017-11-29 18:38:53.213958+00	3945	completed				+18063638220		47	2017-04-14 21:00:23.752542	2017-04-14 21:01:11.241234	CA828d89b98fdf9dd3dbfe3b16b227ae43	\N	105			0	inbound	+12146922088	\N	5.10849308967590332	\N	new lead	1st financial b	9	\N	\N	613
2017-04-14 21:01:27.569711+00	2017-11-29 18:38:53.213965+00	3946	completed				+18063638220		60	2017-04-14 21:01:27.568317	2017-04-14 21:02:27.304857	CA72cd1b41f01fd6531c00ef2ebf5d9fcc	\N	\N			0	inbound	+12146922088	\N	4.78778409957885742	\N	new lead	1st financial b	9	\N	\N	613
2018-01-01 11:09:55.458754+00	2018-01-01 11:09:55.515816+00	8171	missed	Joann	Bohannon	jdbohannon16@gmail.com	+16787256424		\N	2018-01-01 11:09:55.457301	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	614
2016-06-22 19:03:22.128585+00	2016-06-22 19:03:23.689098+00	447	missed	FIVE9			+17732729137		2	2016-06-22 19:03:22.126952	2016-06-22 19:03:23.687346	CA0394b25dc54cd1ab28d69908035ecf21	\N	\N			0	inbound	+17735469660	16	\N	null	new lead		1	\N	\N	615
2016-06-22 19:03:25.067584+00	2016-06-22 19:03:37.616833+00	448	missed	FIVE9			+17732729137		13	2016-06-22 19:03:25.066341	2016-06-22 19:03:37.614706	CAf8e08d0e15724b2085beea97f3a1d7d9	\N	\N			0	inbound	+17735469660	16	\N	null	new lead		1	\N	\N	615
2016-11-01 13:40:41.21757+00	2016-11-01 14:04:17.920257+00	2458	completed				+16784293464		1413	2016-11-01 13:40:41.216291	2016-11-01 14:04:14.598636	CA6051743da1eb8736b01bedbf2e75f72b	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE79401809f787e3d1c627cd3f2d7fecc1	0	inbound	+18557240606	49	2.34838509559631348	null	new lead		1	\N	\N	621
2017-04-26 22:49:54.176538+00	2017-11-29 18:47:25.068341+00	4346	missed				+19494689092		19	2017-04-26 22:49:54.174025	2017-04-26 22:50:12.7716	CA388c9ee11f23109fd53d45a2855376f0	\N	\N			0	inbound	+19728330116	\N	342.186484098434448	\N	new lead	cell phone   ca	8	\N	\N	622
2017-07-25 22:17:56.078372+00	2017-07-25 22:19:18.037693+00	5853	completed				+12817331358		81	2017-07-25 22:17:56.076208	2017-07-25 22:19:16.950881	CAe5bd0d56ae0660013c737207c301619a	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE555a7693c10841e3901cc0afc6813f52	0	inbound	+18177569010	124	7.78719687461853027	\N	new lead	allen darren	12	\N	\N	625
2016-12-06 15:13:26.008088+00	2016-12-06 15:13:26.051465+00	3050	missed	Marilyn	Wilson	marilyngwilson@gmail.com	+12169712616		\N	2016-12-06 15:13:26.00683	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	626
2017-12-09 14:07:36.952973+00	2017-12-09 14:29:20.783862+00	7737	missed				+18179032446		8	2017-12-09 14:07:36.951261	2017-12-09 14:07:45.132186	CAe8c3eae6705a39990883310df2e7d6f2	\N	\N			0	inbound	+18172104002	126	1274.83306789398193	\N	new lead	sistrunk joyce	12	\N	\N	629
2017-09-04 16:02:02.619275+00	2017-09-04 16:04:54.61831+00	6249	completed				+19039411640		171	2017-09-04 16:02:02.61743	2017-09-04 16:04:53.938287	CA16d9096ed4424907b8d3ac18fe3b16d8	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE249e8643bc298205f426121e40b70c56	0	inbound	+18177569010	124	12.8885021209716797	\N	new lead	cell phone   tx	12	\N	\N	630
2016-10-13 17:00:08.258395+00	2016-12-09 17:10:17.413628+00	2286	completed				+19089145248		195	2016-10-13 17:00:08.255946	2016-10-13 17:03:23.352159	CA654ef99d1868fe6cee7fb639f6c9c611	\N	27			0	inbound	+18552716856	\N	7.73885083198547363	null	new lead		3	\N	\N	633
2017-07-21 14:26:43.776273+00	2017-07-21 14:27:25.81705+00	5822	completed				+16787072380		42	2017-07-21 14:26:43.774358	2017-07-21 14:27:25.79994	CA55d06b61be3973bb4420c10d74e42b83	\N	153			0	inbound	+17707665732	133	12.7786519527435303	\N	new lead		13	\N	\N	520
2016-10-05 21:42:35.052435+00	2016-12-10 01:01:00.200311+00	2203	completed				+16193097533		116	2016-10-05 21:42:35.050532	2016-10-05 21:44:31.393254	CA41d3594cd4c6d44df3a995466872afa0	\N	57			0	inbound	+18557860909	\N	3.48926496505737305	null	new lead		3	\N	\N	636
2017-04-22 21:28:13.913096+00	2017-11-29 18:38:53.214461+00	4235	completed				+19564351907		80	2017-04-22 21:28:13.91161	2017-04-22 21:29:33.969881	CA6db1c1ef421a0a5af77d4f1fbcfc17ab	\N	99			0	inbound	+12146922088	\N	7.05779099464416504	\N	new lead	campos abelardo	9	\N	\N	637
2017-04-22 21:24:32.040322+00	2017-11-29 18:38:53.214454+00	4233	completed				+19564351907		227	2017-04-22 21:24:32.038646	2017-04-22 21:28:18.678509	CA579896c74519abddadfe94f2acbb8550	\N	\N			0	inbound	+12146922088	\N	4.06436491012573242	\N	new lead	campos abelardo	9	\N	\N	637
2017-06-26 20:32:04.363706+00	2017-06-26 20:34:40.143582+00	5666	completed				+17067259321		155	2017-06-26 20:32:04.361101	2017-06-26 20:34:39.381995	CA81847e4b049cf6b236c11d003ce09e54	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE92a364a29e8e114661c9441fe802826d	0	inbound	+17704009016	132	9.52635693550109863	\N	new lead		13	\N	\N	640
2017-02-25 13:00:32.041456+00	2017-11-29 18:31:56.600274+00	3258	missed				+15702883037		8	2017-02-25 13:00:32.039515	2017-02-25 13:00:40.127609	CA76e43cfd6688edbc88dd9af82a4613dd	\N	\N			0	inbound	+18556311397	\N	\N	\N	new lead		1	\N	\N	641
2016-11-09 03:56:39.169211+00	2017-11-29 18:31:56.600225+00	2815	missed				+15702883037		12	2016-11-09 03:56:39.167531	2016-11-09 03:56:50.748688	CA7345fabee4caa6a92684a05e86441d16	\N	\N			0	inbound	+18556311397	\N	\N	null	new lead		1	\N	\N	641
2017-05-19 14:24:37.914555+00	2017-11-29 18:38:49.812252+00	5225	completed				+16462330000		73	2017-05-19 14:24:37.91128	2017-05-19 14:25:51.211164	CA447e730f4d9898a895ff3c4c59bd1cfe	\N	126			0	inbound	+12147122250	\N	1.81432986259460449	\N	new lead	no name	9	\N	\N	644
2017-04-08 22:04:52.42121+00	2017-11-29 18:38:53.21359+00	3750	completed				+12405063335		43	2017-04-08 22:04:52.41915	2017-04-08 22:05:35.76314	CAa8284fe90f156c2af3e4635f61300b9f	\N	99			0	inbound	+12146922088	\N	5.12441492080688477	\N	new lead	ding sihan     	9	\N	\N	645
2017-04-08 22:07:20.39892+00	2017-11-29 18:38:53.213598+00	3751	completed				+12405063335		45	2017-04-08 22:07:20.397322	2017-04-08 22:08:05.156302	CA813b83ea7a932d7e1cdb461516d8d84a	\N	107			0	inbound	+12146922088	\N	7.95361900329589844	\N	new lead	ding sihan     	9	\N	\N	645
2017-05-10 20:43:38.69793+00	2017-11-29 18:38:49.810978+00	4982	missed				+19088584123		21	2017-05-10 20:43:38.694983	2017-05-10 20:43:59.608511	CA62b89bac6c0d6e57707653206413033f	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	kerri redon	9	\N	\N	647
2017-05-10 20:45:26.758792+00	2017-11-29 18:38:49.810995+00	4983	completed				+19088584123		70	2017-05-10 20:45:26.755669	2017-05-10 20:46:36.81802	CA829cdaba934fd3551330dfd650be57bf	\N	127			0	inbound	+12147122250	\N	2.15131998062133789	\N	new lead	kerri redon	9	\N	\N	647
2017-05-10 20:46:26.906254+00	2017-11-29 18:38:49.811005+00	4984	completed				+19088584123		371	2017-05-10 20:46:26.904519	2017-05-10 20:52:38.137559	CA42b28d7931bb28b56ea7d2ef27b19b86	\N	107			0	inbound	+12147122250	\N	6.67531704902648926	\N	new lead	kerri redon	9	\N	\N	647
2017-08-22 18:52:46.628985+00	2017-08-22 18:56:23.502701+00	6137	completed	Lawayne	Banka	Lawayneboy@gmail.com	+17063518244		197	2017-08-22 18:52:46.627359	2017-08-22 18:56:22.900915	CA5bda549637c993813eb2bace1c166964	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REa0ec097f36266ac3dc77ae36c0a582d4	1	outbound	+17704009016	\N	18.734766960144043	{}	new lead		13	\N	\N	648
2017-10-26 19:34:09.194767+00	2017-10-26 19:37:48.378085+00	6825	completed	Brandy	Tiller	Dawj27@gmail.com	+17065887662		189	2017-10-26 19:34:09.192947	2017-10-26 19:37:47.047099	CA5e57dc93aa02dde1be02ad94b2a8c8c0	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE1f9e38cde399ee916816d8fedf0f2a8f	1	outbound	+17704009016	\N	25.0989329814910889	{}	new lead		13	\N	\N	650
2017-11-28 01:48:32.46398+00	2017-11-28 01:48:32.52319+00	7355	missed	Ginger	Sabater 	gingersab@hotmail.com	+17064293431		\N	2017-11-28 01:48:32.462235	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	651
2016-08-03 22:09:37.953986+00	2016-08-04 13:18:25.800003+00	1196	missed	Sureyya	Tugrul	sstugrul@gmail.com	+15136461353		\N	2016-08-03 22:09:37.953036	\N		25d0200e-983d-4413-94ae-eb664b99711c	\N			0	outbound	+18556311490	\N	\N	{}	application submitted - autopay		1	\N	\N	652
2017-09-30 11:56:58.967551+00	2017-11-29 18:31:56.600479+00	6546	missed				+15703334318		4	2017-09-30 11:56:58.965483	2017-09-30 11:57:03.137555	CAe77462b9376dc8c823af1be0f21dacd4	\N	\N			0	inbound	+18556311397	\N	\N	\N	new lead		1	\N	\N	653
2017-11-22 14:09:44.488854+00	2017-11-22 14:11:56.993366+00	7171	completed	Sabrina	Menefield	Smenefield4079@gmail.com	+17063528629		86	2017-11-22 14:09:44.486684	2017-11-22 14:11:10.551247		\N	150			0	outbound	+17704009016	132	\N	\N	select status		13	\N	\N	654
2017-11-22 02:36:24.072466+00	2017-11-22 14:11:57.024262+00	7170	missed	Sabrina	Menefield	Smenefield4079@gmail.com	+17063528629		\N	2017-11-22 02:36:24.070596	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	654
2017-11-22 18:15:11.600054+00	2017-11-22 18:15:57.027867+00	7176	completed	Sabrina	Menefield		+17063528629		44	2017-11-22 18:15:11.597743	2017-11-22 18:15:55.754326	CAb73ed3ddd1b5e7d8fa4d0df181de4a9a	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE5e7915c48d915edbb82284598d3e915c	0	inbound	+17704009016	132	24.9262881278991699	\N	select status		13	\N	\N	654
2016-12-02 21:50:55.069593+00	2016-12-02 22:22:05.346931+00	3027	completed				+18176574645		1863	2016-12-02 21:50:55.067871	2016-12-02 22:21:57.738991	CA1324bfde12dbce71480edb3a379d5da1	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE4852c358fb800d0bfee0237eee061e81	0	inbound	+18557240606	49	2.12177896499633789	null	new lead		1	\N	\N	658
2016-07-06 20:11:46.593626+00	2016-07-06 20:36:10.270768+00	787	completed	Trisha	Podvin	Trishpodvin@gmail.com	+16144569738		0	2016-07-06 20:11:46.592397	2016-07-06 20:12:15.264952	CA3c1c1193738a93304663a9b2fe74182e	d33a481e-e0af-47ac-9f90-260f20b69de5	\N			1	outbound	+18552959002	\N	13.9899270534515381	{}	new lead		1	\N	\N	660
2016-07-06 19:37:51.827504+00	2016-07-06 19:41:19.840154+00	786	completed				+16144569738		203	2016-07-06 19:37:51.826405	2016-07-06 19:41:19.839087	CA061a84139eb30532d06558e87ce89e6d	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	1.50981283187866211	{}	new lead		1	\N	\N	660
2016-07-11 19:01:09.979351+00	2017-11-29 18:31:41.490402+00	851	completed	Trisha	Podvin		+16144569738		25	2016-07-11 19:01:09.977798	2016-07-11 19:01:35.228906	CAa4d10479a77387997cb611417d6c3d9f	\N	17		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE4264b8a538e8641013a8067b12e06080	0	inbound	+18552959002	\N	8.70905113220214844	null	new lead		1	\N	\N	660
2016-07-06 19:18:12.119998+00	2017-11-29 18:31:41.490339+00	783	completed				+16144569738		31	2016-07-06 19:18:12.118822	2016-07-06 19:18:43.363035	CA68b7ea037f5cbc996cde88c00fbe970e	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE7d949eb0fd62fda0b969ea16b1dca7bb	0	inbound	+18552959002	\N	14.8203678131103516	null	new lead		1	\N	\N	660
2016-07-06 19:28:24.484994+00	2017-11-29 18:31:41.490347+00	784	completed				+16144569738		27	2016-07-06 19:28:24.483794	2016-07-06 19:28:51.857658	CA35593ea3f37b5bbb9c62420c49edcf6f	\N	\N			0	inbound	+18552959002	\N	14.3384511470794678	null	new lead		1	\N	\N	660
2016-08-04 20:04:30.933675+00	2016-08-08 16:33:20.84504+00	1215	missed	Yolanda	Clark	clayolan@aol.com	+19375726010		\N	2016-08-04 20:04:30.932308	\N		253cd8e5-09ac-4056-92ec-7e351aa19233	\N			0	outbound	+18557824539	\N	\N	{}	application submitted - autopay		1	\N	\N	661
2017-04-13 22:46:52.116826+00	2017-11-29 18:38:49.804895+00	3902	completed				+12145866897		166	2017-04-13 22:46:52.114853	2017-04-13 22:49:38.100423	CAe32abafd1120b326f5b6377fe0235619	\N	126			0	inbound	+12147122250	\N	2.19865012168884277	\N	new lead		9	\N	\N	662
2016-08-15 19:19:43.435935+00	2016-12-10 01:05:18.400757+00	1508	completed				+16109173132		15	2016-08-15 19:19:43.4347	2016-08-15 19:19:57.979886	CAb707948f1781537cc2b43303b6f90d6d	\N	24			0	inbound	+18557088731	\N	1.39547395706176758	null	new lead		3	\N	\N	663
2016-08-15 19:22:29.151524+00	2016-12-10 01:05:18.400763+00	1509	completed				+16109173132		14	2016-08-15 19:22:29.149402	2016-08-15 19:22:43.508467	CA977043f3beb268a6d43522509fa8dbec	\N	24			0	inbound	+18557088731	\N	1.32346415519714355	null	new lead		3	\N	\N	663
2017-07-01 19:56:54.315032+00	2017-11-22 16:25:24.949659+00	5708	missed				+17702978700		8	2017-07-01 19:56:54.312782	2017-07-01 19:57:02.046873	CA88e61bd3017e756d01ec9cc76f64c0e2	\N	\N			0	inbound	+17704009016	132	\N	\N	select status		13	\N	\N	656
2017-06-29 15:28:53.409437+00	2017-06-29 15:29:49.516739+00	5684	completed				+17063512441		54	2017-06-29 15:28:53.407644	2017-06-29 15:29:47.259692	CA050944a9e9170b2171c5d4e9a92686ad	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE98731ecfc4252b3a8290b4e078c971a0	0	inbound	+17704009016	132	6.87977504730224609	\N	new lead		13	\N	\N	2720
2016-08-23 18:56:00.15475+00	2017-01-27 21:12:23.813616+00	1681	missed	Richard	Beno		+19208836494		16	2016-08-23 18:56:00.152679	2016-08-23 18:56:15.804906		\N	\N			0	outbound	+18555343978	48	\N	null	application submitted - autopay		1	\N	\N	578
2016-08-01 22:44:14.2539+00	2017-11-29 18:31:37.368381+00	1103	missed				+16612562500		19	2016-08-01 22:44:14.253003	2016-08-01 22:44:33.625213	CA77216a39bcf16b675b9186aa441221dc	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE58da98025ddfa82921841d948c20d85c	0	inbound	+18555472453	\N	\N	null	general interest		1	\N	\N	667
2016-08-10 21:33:08.404553+00	2017-11-29 18:31:37.368811+00	1400	completed				+16612562500		948	2016-08-10 21:33:08.403186	2016-08-10 21:48:56.761779	CA7c100dde3dfbf12d9b8b1ea202799c67	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE84fbb4f6d3dde7b02f32ee0be33f065e	0	inbound	+18555472453	\N	7.95034599304199219	null	general interest		1	\N	\N	667
2017-05-06 16:25:43.264624+00	2017-08-17 14:35:21.045133+00	4800	completed				+16826675257		13	2017-05-06 16:25:43.262748	2017-05-06 16:25:56.714044	CA54aa54529320dc75376abeca0dc3c2e7	\N	\N			0	inbound	+18177569010	124	9.93755102157592773	\N	new lead	taylor eric	12	\N	\N	671
2017-05-06 16:26:06.309813+00	2017-05-17 15:41:07.224422+00	4801	completed				+16826675257		1360	2017-05-06 16:26:06.307806	2017-05-06 16:48:46.382559	CA34cc818b299bb1045d0da9a882e2c27e	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REc0890037cff0f77d6b6d3fc4469d6b5d	0	inbound	+18177569010	124	1318.38512492179871	\N	new lead	taylor eric	12	\N	\N	671
2017-05-18 18:52:28.551011+00	2017-11-29 18:38:49.812196+00	5217	completed				+12143963769		77	2017-05-18 18:52:28.547897	2017-05-18 18:53:45.491197	CAa4055597ac6aa5aa4b80a4c9e444b68d	\N	124			0	inbound	+12147122250	\N	4.6033790111541748	\N	new lead	praetorian	9	\N	\N	672
2017-04-23 13:50:11.031804+00	2017-11-29 18:47:25.068249+00	4240	missed				+16016131924		49	2017-04-23 13:50:11.027501	2017-04-23 13:50:59.953193	CA828d3fd39e43261a44ecdc7de02aa73c	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE031f295b09d0e235f80c857335a3f7a6	0	inbound	+19728330116	\N	\N	\N	new lead	lloyd arlean   	8	\N	\N	675
2016-09-07 18:09:04.821007+00	2016-12-09 17:06:53.905893+00	1929	completed				+14842386214		21	2016-09-07 18:09:04.818659	2016-09-07 18:09:26.198589	CA61e2cd5db778963d6e014cb574722639	\N	21			0	inbound	+18558021330	\N	2.10362386703491211	null	new lead		3	\N	\N	676
2016-09-14 13:05:41.639779+00	2016-12-09 17:06:53.905914+00	2009	completed				+14842386214		22	2016-09-14 13:05:41.638147	2016-09-14 13:06:03.165485	CAba07285cfda3810e70340ca02a34ae70	\N	21			0	inbound	+18558021330	\N	2.02935314178466797	null	new lead		3	\N	\N	676
2016-09-21 13:03:09.464915+00	2016-12-10 01:05:18.401034+00	2063	completed				+16105840532		185	2016-09-21 13:03:09.460242	2016-09-21 13:06:14.674547	CAd740f183763fb42fcb45bd530423f28a	\N	24			0	inbound	+18557088731	\N	1.45763301849365234	null	new lead		3	\N	\N	677
2017-10-08 17:38:15.343877+00	2017-10-08 17:38:53.438349+00	6623	missed				+18176295664		38	2017-10-08 17:38:15.341699	2017-10-08 17:38:53.427145	CAec6e6682776ba8921d451393b2036250	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE282de8a8a5f39dc6fcd40c73cb3016bd	0	inbound	+18177569010	124	\N	\N	new lead	fort worth  tx	12	\N	\N	678
2016-09-21 18:41:34.71528+00	2016-12-09 17:07:47.979231+00	2069	completed				+14848895552		357	2016-09-21 18:41:34.713242	2016-09-21 18:47:31.740546	CA63c9902d7a01043b78d3f01ed09415ee	\N	55			0	inbound	+18556708891	\N	2.75950813293457031	null	new lead		3	\N	\N	680
2016-09-22 17:50:04.93128+00	2016-12-09 17:07:45.331668+00	2075	completed				+14848895552		196	2016-09-22 17:50:04.928373	2016-09-22 17:53:21.404417	CAe19318e6227e27dbd8afb0052e754079	\N	55			0	inbound	+18552467810	\N	2.92304396629333496	null	new lead		3	\N	\N	680
2017-12-08 20:25:48.943761+00	2017-12-08 20:52:05.593843+00	7726	completed				+14076942200		1573	2017-12-08 20:25:48.9411	2017-12-08 20:52:02.301111	CA692d79b464784b21a825dd0b484802af	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REbc4374f3843c3547f0c6376d7606afb5	0	inbound	+18558645656	136	7.48170709609985352	\N	new lead		15	\N	\N	682
2016-06-01 16:54:38.733437+00	2016-06-01 16:56:04.244064+00	311	completed	Kimberly	Chandler	caliberbass@yahoo.com	+16619164523		57	2016-06-01 16:54:38.732489	2016-06-01 16:56:04.242787	CAa41e90bc9dacba4b8421fe3436243630	99186475-9344-4e80-b3b1-0ed2e7856585	17		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REad835a9d8a057da351ece473783ef954	1	outbound	+18555472453	\N	25.3845169544219971	{}	new lead		1	\N	\N	683
2017-07-07 17:46:46.998135+00	2017-07-07 17:49:23.582378+00	5730	completed				+14322080141		155	2017-07-07 17:46:46.995705	2017-07-07 17:49:22.464316	CA414c980953aea1b89b259460b763fdfb	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REa46087ce5d31ff33e5dba270e65ecfba	0	inbound	+18177569010	124	14.8880569934844971	\N	new lead	cell phone   tx	12	\N	\N	686
2017-04-25 20:00:38.875695+00	2017-11-29 18:38:53.214539+00	4301	completed				+19037860098		369	2017-04-25 20:00:38.872899	2017-04-25 20:06:47.728177	CAc1a3a5644c912f3a9611f0bc4f97dc73	\N	\N			0	inbound	+12146922088	\N	3.34678983688354492	\N	new lead	4 feather alarm	9	\N	\N	687
2017-05-03 16:47:43.942352+00	2017-11-29 18:38:53.214958+00	4635	completed				+19727460146		217	2017-05-03 16:47:43.939601	2017-05-03 16:51:21.263218	CA41a71f8a43c3342581306b47ccabfc0f	\N	\N			0	inbound	+12146922088	\N	4.13388705253601074	\N	new lead	anderson judy  	9	\N	\N	694
2017-04-27 19:29:12.258672+00	2017-11-29 18:38:49.807088+00	4387	completed				+19722520082		98	2017-04-27 19:29:12.257416	2017-04-27 19:30:50.28389	CA594146b6cfe38e783cd253b8ae8c84b4	\N	\N			0	inbound	+12147122250	\N	5.48199105262756348	\N	new lead	big t branding 	9	\N	\N	696
2017-05-26 00:11:50.532567+00	2017-11-29 18:38:49.813571+00	5424	completed				+14695866944		78	2017-05-26 00:11:50.530107	2017-05-26 00:13:08.310185	CA4a3ca5614ebd58f34095e07ca91e6a59	\N	126			0	inbound	+12147122250	\N	1.34277796745300293	\N	new lead	harris myrtle  	9	\N	\N	697
2017-05-25 19:57:19.357275+00	2017-11-29 18:38:49.813508+00	5417	completed				+12126874674		75	2017-05-25 19:57:19.355369	2017-05-25 19:58:33.935192	CA55b82a847c8b43f095c421db3abea0ba	\N	124			0	inbound	+12147122250	\N	1.31974387168884277	\N	new lead	avinari ariel	9	\N	\N	699
2017-12-07 01:27:02.00511+00	2017-12-07 01:31:22.284396+00	7674	completed				+13035527339		259	2017-12-07 01:27:02.003272	2017-12-07 01:31:21.049405	CA27879009e64159ea926e4812b946c677	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE640ec04aee04e6153ff5f312eaf25368	0	inbound	+18558645656	136	2.97138810157775879	\N	new lead		15	\N	\N	702
2016-10-17 23:18:05.27541+00	2016-12-10 01:01:00.200482+00	2312	completed				+16613804912		9	2016-10-17 23:18:05.274116	2016-10-17 23:18:14.464995	CA4fd69d0f7a0f59804594e4f264962b1c	\N	57			0	inbound	+18557860909	\N	1.9237360954284668	null	new lead		3	\N	\N	704
2016-08-04 14:01:58.601081+00	2016-12-10 00:57:54.467648+00	1199	completed				+17066719194		18	2016-08-04 14:01:58.599246	2016-08-04 14:02:16.624253	CA059d9d00b59b900aa89d424bad32b402	\N	29			0	inbound	+18559651592	\N	1.63500308990478516	null	new lead		3	\N	\N	710
2016-08-04 14:02:20.998386+00	2016-12-10 00:57:54.467657+00	1200	completed				+17066719194		14	2016-08-04 14:02:20.997205	2016-08-04 14:02:34.962342	CAc06c00f4a1c5d39f970d5e79a7c87c11	\N	29			0	inbound	+18559651592	\N	6.6964268684387207	null	new lead		3	\N	\N	710
2017-08-31 18:44:59.605561+00	2017-08-31 18:46:33.169194+00	6221	completed				+14049344325		94	2017-08-31 18:44:59.603885	2017-08-31 18:46:33.150411	CAdd9b7a6661a667fe4a94e17e61eead6c	\N	150			0	inbound	+17707665732	133	15.046658992767334	\N	new lead		13	\N	\N	711
2017-04-24 19:13:10.895734+00	2017-11-29 18:38:53.214511+00	4258	completed				+13363993015		771	2017-04-24 19:13:10.892475	2017-04-24 19:26:01.568008	CA3be07ff48d4d0ad8e791894d6b336900	\N	\N			0	inbound	+12146922088	\N	3.8142859935760498	\N	new lead	deal jason     	9	\N	\N	588
2017-12-27 20:27:32.282782+00	2017-12-27 20:28:42.0208+00	8123	completed				+16787325770		46	2017-12-27 20:27:32.281147	2017-12-27 20:28:18.581339	CA9bb829db5bfdde06ce9fcff546ee7b44	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REf18221543972b13965c633da843d25b8	0	inbound	+17707665732	133	11.5886411666870117	\N	select status	whelchel ricky	13	\N	\N	589
2016-11-02 17:14:40.038926+00	2016-11-02 17:15:06.140052+00	2572	completed				+17137946817		25	2016-11-02 17:14:40.037931	2016-11-02 17:15:05.184244	CA37638e94044c7d7164e88de4653e0c0f	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REdf027ef06a99499e47a620742cb4685c	0	inbound	+18557240606	49	2.23029303550720215	null	new lead		1	\N	\N	712
2016-11-02 17:15:08.889013+00	2016-11-02 17:18:16.455782+00	2573	completed				+17137946817		186	2016-11-02 17:15:08.887563	2016-11-02 17:18:15.375107	CAbd562e9666e0a6f407aec5dfd1f5cbd7	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE9bd5fa1e2b7198dbbeba9f5bd6d8f0b4	0	inbound	+18557240606	49	2.58676981925964355	null	new lead		1	\N	\N	712
2016-11-04 21:52:35.022686+00	2016-11-04 21:55:52.680005+00	2732	completed				+18177935244		197	2016-11-04 21:52:35.02149	2016-11-04 21:55:52.455106	CA260ebfe801a86e698c66648271d5863b	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE99f0a4d03875edf86ff6be4aafd6eb95	0	inbound	+18557240606	49	1.70272088050842285	null	new lead		1	\N	\N	713
2017-12-05 00:30:40.483063+00	2017-12-05 00:33:37.345979+00	7570	completed	Simon	Leal	Simonleal@yahoo.com	+12819488834		174	2017-12-05 00:30:40.481415	2017-12-05 00:33:37.343977	CA0d1c2a019da30e3c398b5e743b9be8b1	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.54097199440002441	{}	new lead		15	\N	\N	714
2017-12-18 14:38:43.971753+00	2017-12-18 14:38:46.894089+00	7964	missed				+17635757398		3	2017-12-18 14:38:43.969975	2017-12-18 14:38:46.883145	CAcd27643ede0cd21758bcec1b83c5dfc9	\N	\N			0	inbound	+18558645656	136	\N	\N	new lead		15	\N	\N	715
2017-06-01 13:29:50.327348+00	2017-11-29 18:38:49.81433+00	5544	missed				+14693995918		1	2017-06-01 13:29:50.324281	2017-06-01 13:29:50.94951	CAe35400d5c7ed7d162e571b0789272a1d	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	dallas  tx	9	\N	\N	716
2017-12-08 21:29:31.905573+00	2017-12-08 21:35:13.797816+00	7731	missed				+17707661533		342	2017-12-08 21:29:31.903841	2017-12-08 21:35:13.56456	CA7544e7467713ef71e564a88e967b958e	\N	\N			0	inbound	+17707665732	133	328.047707080841064	\N	new lead	atlanta  ga	13	\N	\N	719
2016-11-15 20:34:09.55814+00	2016-12-09 17:06:53.906119+00	2912	completed				+12159453589		193	2016-11-15 20:34:09.556825	2016-11-15 20:37:22.371658	CAaaf30e0a1d8ac67d3f87cf49469a7d06	\N	21			0	inbound	+18558021330	\N	2.96760702133178711	null	new lead		3	\N	\N	720
2016-05-25 18:27:00.760892+00	2016-05-25 18:27:15.220049+00	227	completed				+16369473022		10	2016-05-25 18:27:00.759879	2016-05-25 18:27:15.218661	CAc23ff892e1de686e532177558b8fa69c	8f30d55b-8601-40b9-9d7f-11bfe29c5449	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REfdb9431f2a6dd1845edd2f3741c2d198	1	outbound	+18555472453	\N	1.76800823211669922	{}	new lead		1	\N	\N	721
2016-05-24 19:07:51.504129+00	2017-11-29 18:31:37.368183+00	192	completed	Unknown			+16369473022		330	2016-05-24 19:07:51.502084	2016-05-24 19:13:21.203408	CA981544c1e48c01aec067e6153408997d	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REcf437249775397ca5b5d78409aa6cb45	0	inbound	+18555472453	\N	13.663794994354248	null	new lead		1	\N	\N	721
2017-03-27 20:00:06.433224+00	2017-11-29 18:38:53.213008+00	3595	completed				+18172693770		273	2017-03-27 20:00:06.430168	2017-03-27 20:04:39.506945	CAf76ffc01105f4f721adb8b2576d868bf	\N	107			0	inbound	+12146922088	\N	11.4659371376037598	\N	new lead	gooden errol   	9	\N	\N	722
2016-11-02 22:29:56.610229+00	2016-11-02 22:29:56.645217+00	2600	missed	Paul	Horgen	paulhorgen@cox.net	+16233268695		\N	2016-11-02 22:29:56.609046	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	727
2017-05-06 23:44:43.189853+00	2017-11-29 18:38:53.215214+00	4818	completed				+12143178253		244	2017-05-06 23:44:43.186538	2017-05-06 23:48:47.172731	CA861a88234818929c002dd2a11368ba4e	\N	\N			0	inbound	+12146922088	\N	7.9196009635925293	\N	new lead	julian pierce	9	\N	\N	729
2017-03-14 16:44:57.212989+00	2017-11-29 18:38:53.212204+00	3417	completed				+12706399469		22	2017-03-14 16:44:57.211056	2017-03-14 16:45:19.62913	CAd2ebd3d447692711de492a414d531141	\N	\N			0	inbound	+12146922088	\N	4.55118918418884277	\N	new lead	dixon  ky	9	\N	\N	731
2016-09-26 17:52:43.137123+00	2016-12-10 01:00:18.568434+00	2082	completed				+16193390499		422	2016-09-26 17:52:43.135521	2016-09-26 17:59:44.750049	CAe1d68f958bb02fa2bc4b70c674529ab2	\N	56			0	inbound	+18556775511	\N	4.2263941764831543	null	new lead		3	\N	\N	738
2016-10-03 16:40:17.72653+00	2016-12-10 01:00:18.568448+00	2126	completed				+16193390499		63	2016-10-03 16:40:17.724932	2016-10-03 16:41:20.857797	CAb50753c407821444713f792ed0f225b0	\N	56			0	inbound	+18556775511	\N	6.61109089851379395	null	new lead		3	\N	\N	738
2017-05-16 15:30:41.325463+00	2017-11-29 18:38:49.81172+00	5107	completed				+14692747829		58	2017-05-16 15:30:41.323448	2017-05-16 15:31:38.824394	CA0b836d46a148dd51ae1780ae280c2c3d	\N	105			0	inbound	+12147122250	\N	8.66483592987060547	\N	new lead	boss the	9	\N	\N	740
2017-05-16 15:31:38.60319+00	2017-11-29 18:38:49.811745+00	5108	completed				+14692747829		57	2017-05-16 15:31:38.601719	2017-05-16 15:32:35.741451	CAe8daa02e9b3d7121048dd780cc3a4c84	\N	124			0	inbound	+12147122250	\N	1.16644096374511719	\N	new lead	boss the	9	\N	\N	740
2017-05-23 16:46:47.25224+00	2017-11-29 18:38:49.812827+00	5322	completed				+14692747829		48	2017-05-23 16:46:47.250944	2017-05-23 16:47:34.832659	CA64c4ce0e79fec69ce1fac4d540294077	\N	107			0	inbound	+12147122250	\N	5.85454297065734863	\N	new lead	boss the	9	\N	\N	740
2017-05-23 16:47:47.930831+00	2017-11-29 18:38:49.812834+00	5323	completed				+14692747829		38	2017-05-23 16:47:47.929245	2017-05-23 16:48:26.034735	CA4e060a274df42d0a1c5e3b8fb88ce7f7	\N	107			0	inbound	+12147122250	\N	7.3872988224029541	\N	new lead	boss the	9	\N	\N	740
2017-05-23 22:28:43.340087+00	2017-11-29 18:38:49.812911+00	5339	completed				+14692747829		92	2017-05-23 22:28:43.338121	2017-05-23 22:30:14.907421	CAff317772bcf6db42ed74f40038ba9b68	\N	124			0	inbound	+12147122250	\N	1.97613906860351562	\N	new lead	boss the	9	\N	\N	740
2017-05-23 22:30:16.002819+00	2017-11-29 18:38:49.812918+00	5340	completed				+14692747829		73	2017-05-23 22:30:16.001377	2017-05-23 22:31:29.104172	CA202dfb616ec188b8ebd193eab2dffddb	\N	126			0	inbound	+12147122250	\N	1.2388310432434082	\N	new lead	boss the	9	\N	\N	740
2017-05-23 23:35:05.093811+00	2017-11-29 18:38:49.812932+00	5343	completed				+14692747829		53	2017-05-23 23:35:05.090117	2017-05-23 23:35:58.452934	CA7005a21f7f2a9ad332f86fe0111ed3cc	\N	126			0	inbound	+12147122250	\N	1.09624004364013672	\N	new lead	boss the	9	\N	\N	740
2017-05-23 23:35:52.112372+00	2017-11-29 18:38:49.812939+00	5344	completed				+14692747829		54	2017-05-23 23:35:52.11052	2017-05-23 23:36:46.507973	CAaf2cce68c3fe954592bb50dc79e549b4	\N	127			0	inbound	+12147122250	\N	1.78379011154174805	\N	new lead	boss the	9	\N	\N	740
2017-05-23 23:36:39.346307+00	2017-11-29 18:38:49.812946+00	5345	completed				+14692747829		29	2017-05-23 23:36:39.344645	2017-05-23 23:37:08.593321	CAc16313eabaf8cb793023ea4c2811cf42	\N	\N			0	inbound	+12147122250	\N	2.35430812835693359	\N	new lead	boss the	9	\N	\N	740
2017-05-24 18:26:23.42963+00	2017-11-29 18:38:49.813111+00	5362	completed				+14692747829		68	2017-05-24 18:26:23.427294	2017-05-24 18:27:31.11321	CAf7e1f12b8bb9822cde9cb65aba236bdd	\N	126			0	inbound	+12147122250	\N	1.32931303977966309	\N	new lead	boss the	9	\N	\N	740
2017-05-26 16:54:11.169948+00	2017-11-29 18:38:49.81365+00	5437	completed				+14692747829		56	2017-05-26 16:54:11.1685	2017-05-26 16:55:06.847358	CA6f04e0f8fb4b4bc60aa1c677feafd348	\N	126			0	inbound	+12147122250	\N	1.30318617820739746	\N	new lead	boss the	9	\N	\N	740
2017-12-31 11:02:34.214581+00	2017-12-31 11:02:34.269801+00	8168	missed	Aletre	Stevens	griffithaletre@gmail.com	+17062026494		\N	2017-12-31 11:02:34.213302	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	741
2017-07-11 13:34:59.766407+00	2017-11-08 14:42:54.353843+00	5752	completed				+17064108586		205	2017-07-11 13:34:59.764286	2017-07-11 13:38:24.727453	CA7de262ac7de6ca76f73f7136ef8bb193	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REb7c018ffaac81b9db184e2debf41a811	0	inbound	+17704009016	132	16.7739830017089844	\N	select status		13	\N	\N	1784
2017-05-11 14:04:15.752723+00	2017-08-17 14:35:21.045169+00	4997	completed				+16822499192		119	2017-05-11 14:04:15.749382	2017-05-11 14:06:14.340965	CA3fc45886d6ba782ff717b8ae79424411	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REfdf83c253df8e91deecad4bc022fa951	0	inbound	+18177569010	124	60.5757358074188232	\N	new lead	terry weeks	12	\N	\N	748
2016-07-24 14:57:31.469153+00	2016-07-25 11:50:19.736053+00	926	completed	Sean	Anderson	sean.anderson@datavirtue.com	+19375098797		\N	2016-07-24 14:57:31.467906	\N		25d0200e-983d-4413-94ae-eb664b99711c	\N			0	outbound	+18556311490	\N	\N	{}	new lead		1	\N	\N	749
2016-07-25 21:18:45.110885+00	2017-11-29 18:31:10.261496+00	943	completed	Sean	Anderson		+19375098797		40	2016-07-25 21:18:45.109523	2016-07-25 21:19:25.60115	CA1cd0284782f23a81222b32215d40ac4c	\N	\N			0	inbound	+18556311490	\N	\N	null	new lead		1	\N	\N	749
2016-07-25 21:17:57.158567+00	2017-11-29 18:31:10.261478+00	942	completed	Sean	Anderson		+19375098797		37	2016-07-25 21:17:57.1568	2016-07-25 21:18:33.740497	CA46c1af3e7f8aa95f1fdb4bc8b6389311	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE71bde1166e753a04da928e227a875b80	0	inbound	+18556311490	\N	1.86873102188110352	null	new lead		1	\N	\N	749
2017-08-09 21:46:13.143242+00	2017-08-17 14:35:21.045767+00	5978	completed				+12143369671		267	2017-08-09 21:46:13.141253	2017-08-09 21:50:39.644323	CAbef7cb9928281772b7968557e8828467	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE6f99ee8561cd756a96246fbeabd4d345	0	inbound	+18177569010	124	6.99522805213928223	\N	new lead	shambrica king	12	\N	\N	750
2017-08-09 22:03:19.334962+00	2017-08-17 14:35:21.045774+00	5979	completed				+12143369671		64	2017-08-09 22:03:19.333196	2017-08-09 22:04:23.572892	CAa06d9051ffb30d28bc65b86a06e32847	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE298bb653fc727cd9423c00765e54e29d	0	inbound	+18177569010	124	9.52715182304382324	\N	new lead	shambrica king	12	\N	\N	750
2016-07-10 10:13:22.876045+00	2016-12-10 01:05:11.336963+00	836	missed				+13478252125		6	2016-07-10 10:13:22.874105	2016-07-10 10:13:29.104347	CA4a52d8004cd382cf5e88d6b2aacb9771	\N	\N			0	inbound	+18555693686	\N	\N	null	new lead		3	\N	\N	751
2016-07-13 02:04:14.454383+00	2016-12-10 01:05:11.336985+00	864	missed				+13478252125		10	2016-07-13 02:04:14.452056	2016-07-13 02:04:24.281337	CAf5a79e84ec709e082ae72baabc1bbd19	\N	\N			0	inbound	+18555693686	\N	\N	null	new lead		3	\N	\N	751
2016-10-10 12:04:03.245259+00	2016-12-09 17:10:17.413599+00	2244	completed				+16105597271		223	2016-10-10 12:04:03.240951	2016-10-10 12:07:46.00463	CA51efa01f81af613362737fdde1d51902	\N	27			0	inbound	+18552716856	\N	6.57947397232055664	null	new lead		3	\N	\N	755
2017-08-26 14:58:46.254728+00	2017-08-26 15:01:37.192621+00	6174	completed				+17063519743		171	2017-08-26 14:58:46.251711	2017-08-26 15:01:37.174394	CAff0dc3c20b604f5d54b8f54bded3f8d9	\N	150			0	inbound	+17707665732	133	13.5903439521789551	\N	new lead		13	\N	\N	758
2017-10-06 13:40:12.196884+00	2017-10-06 13:44:44.541509+00	6597	completed	Melissa	Randolph	melissarandolph31@yahoo.com	+17063519743		256	2017-10-06 13:40:12.195292	2017-10-06 13:44:44.495479	CA2f0b74f8b5d62d5790403a76ca7a68fe	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE70d800ce341d4cd3e551902c6d121ab3	1	outbound	+17704009016	\N	12.1497669219970703	{}	new lead		13	\N	\N	758
2016-11-01 18:27:03.862148+00	2016-11-01 18:43:26.266377+00	2486	completed				+17049314658		980	2016-11-01 18:27:03.860146	2016-11-01 18:43:24.052124	CA4e72cb774b16f20ea9d18a130a5fa33f	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE3f52025f0c7e06a4a78638fa59bfc34d	0	inbound	+18557240606	49	2.0474860668182373	null	new lead		1	\N	\N	759
2017-04-22 16:27:43.314479+00	2017-11-29 18:38:49.806363+00	4219	completed				+12818572215		318	2017-04-22 16:27:43.311966	2017-04-22 16:33:00.837339	CAc693f697ed92d13400062657fb8f333e	\N	99			0	inbound	+12147122250	\N	6.65273904800415039	\N	new lead	houston  tx	9	\N	\N	760
2017-09-28 15:38:01.603831+00	2017-09-28 15:39:37.104975+00	6506	completed				+18008413000		95	2017-09-28 15:38:01.60178	2017-09-28 15:39:37.088252	CA843a470e96e5e74a5f6b65a0e84dfae0	\N	150			0	inbound	+17707665732	133	11.3259501457214355	\N	new lead		13	\N	\N	765
2016-08-02 15:19:36.10063+00	2016-12-10 00:55:45.16499+00	1116	completed				+14849385198		179	2016-08-02 15:19:36.099139	2016-08-02 15:22:34.864206	CA04224434b0a896db3af51a386b5cf001	\N	24			0	inbound	+18557129406	\N	2.78060793876647949	null	new lead		3	\N	\N	766
2017-05-16 20:33:20.326135+00	2017-08-17 14:35:21.04522+00	5126	completed				+16827728792		430	2017-05-16 20:33:20.324253	2017-05-16 20:40:30.298129	CA069184a1cdb9df4295ed3f02cfdfc5b5	\N	\N			0	inbound	+18177569010	124	401.651329040527344	\N	new lead	schmidt zechari	12	\N	\N	771
2017-05-05 19:52:39.4713+00	2017-11-29 18:38:49.810095+00	4784	missed				+13237466115		44	2017-05-05 19:52:39.469954	2017-05-05 19:53:23.669339	CA52012aa657c49b1a20f253db7f742bad	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	dealercenter   	9	\N	\N	772
2016-08-24 01:29:43.25367+00	2016-08-24 12:01:24.830913+00	1690	missed	Angela	Hartsel	malibu_girl_21@yahoo.com	+14196062205		\N	2016-08-24 01:29:43.252551	\N		46af3dca-b597-465f-a167-682b8fc62d0a	\N			0	outbound	+18556311513	\N	\N	{}	application submitted - credit union		1	\N	\N	777
2016-08-29 16:09:05.08192+00	2017-11-29 18:32:13.821914+00	1808	missed				+13302330217		57	2016-08-29 16:09:05.079244	2016-08-29 16:10:02.459294	CAdf12c071293a3eb34dc5908721907188	\N	\N			0	inbound	+18555983683	\N	31.9414489269256592	null	general interest		1	\N	\N	778
2016-08-31 15:26:01.582391+00	2016-08-31 15:27:12.286664+00	1824	missed				+13302330217		71	2016-08-31 15:26:01.580677	2016-08-31 15:27:12.285098	CA0161b775751daa4b7eb107fd0db9c52c	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE3b43c0d7780039d15aa73936e93138bf	0	inbound	+18555343978	48	31.6377038955688477	null	general interest		1	\N	\N	778
2016-09-01 18:12:34.015552+00	2017-11-29 18:32:13.821921+00	1839	missed				+13302330217		57	2016-09-01 18:12:34.01267	2016-09-01 18:13:30.661847	CA1619cae3107527d51bed7d37fc5e7898	\N	\N			0	inbound	+18555983683	\N	31.832050085067749	null	general interest		1	\N	\N	778
2016-09-03 20:29:54.151067+00	2016-09-03 20:30:06.887809+00	1881	missed				+13302330217		13	2016-09-03 20:29:54.150122	2016-09-03 20:30:06.884999	CA272f6825ffe7531252206e0781828ef2	\N	\N			0	inbound	+18555343978	48	\N	null	general interest		1	\N	\N	778
2016-09-03 22:55:14.07522+00	2016-09-03 22:55:27.302479+00	1883	missed				+13302330217		13	2016-09-03 22:55:14.074061	2016-09-03 22:55:27.301037	CA2476543212ca87c8be0a92735c36f333	\N	\N			0	inbound	+18555343978	48	\N	null	general interest		1	\N	\N	778
2016-09-03 23:17:57.211609+00	2016-09-03 23:18:07.665786+00	1885	missed				+13302330217		10	2016-09-03 23:17:57.210564	2016-09-03 23:18:07.663774	CAfc6a286fd0e890d29d2748a4e238a19e	\N	\N			0	inbound	+18555343978	48	\N	null	general interest		1	\N	\N	778
2016-09-03 22:54:26.52639+00	2017-01-27 21:12:23.813854+00	1882	completed				+13302330217		24	2016-09-03 22:54:26.524929	2016-09-03 22:54:50.960437		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	778
2016-08-29 18:07:17.710895+00	2017-01-27 21:12:23.813799+00	1812	completed				+13302330217		165	2016-08-29 18:07:17.709863	2016-08-29 18:10:02.440099		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	778
2016-09-03 20:21:31.930232+00	2017-01-27 21:12:23.813847+00	1880	completed				+13302330217		87	2016-09-03 20:21:31.928374	2016-09-03 20:22:58.964196		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	778
2016-09-03 23:16:41.171757+00	2017-01-27 21:12:23.813862+00	1884	completed				+13302330217		105	2016-09-03 23:16:41.170853	2016-09-03 23:18:25.7		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	778
2017-11-07 15:42:34.050897+00	2017-11-07 15:46:02.958314+00	6958	completed				+14696719979		208	2017-11-07 15:42:34.048559	2017-11-07 15:46:02.156567	CAf2a77ff822f5b7b25a3b8d39dd1d654c	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE6e01aa8cd7f7869df392a636b8909134	0	inbound	+18177569010	124	7.1923978328704834	\N	new lead	dallas  tx	12	\N	\N	782
2017-11-08 20:09:53.142246+00	2017-11-08 20:32:04.240441+00	6982	missed				+14696719979		42	2017-11-08 20:09:53.139734	2017-11-08 20:10:34.656789	CAddcb35188d9e3f11aabda8d15f35a443	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE1644a62385f95cf81d436babbd6a28bd	0	inbound	+18177569010	124	1309.17405915260315	\N	new lead	dallas  tx	12	\N	\N	782
2017-07-10 21:33:39.595926+00	2017-07-10 21:35:40.292111+00	5751	completed				+18172944564		120	2017-07-10 21:33:39.593836	2017-07-10 21:35:39.500941	CA74138693adc22c7b3e2dce70e0cf8d90	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE8301ef957051b4a045d1827e8442c1bf	0	inbound	+18177569010	124	12.4516830444335938	\N	new lead	styles by roy	12	\N	\N	451
2016-08-08 14:14:15.554602+00	2017-01-27 21:12:23.812797+00	1320	completed				+16612562500		48	2016-08-08 14:14:15.553508	2016-08-08 14:15:03.791579		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	667
2017-11-08 20:11:18.321364+00	2017-11-08 20:33:22.215328+00	6983	missed				+14696719979		34	2017-11-08 20:11:18.319502	2017-11-08 20:11:52.417968	CAa393d144cef4857df843f7ebbb510eaa	\N	\N			0	inbound	+18177569010	124	1302.06836104393005	\N	new lead	dallas  tx	12	\N	\N	782
2017-11-09 02:12:42.773194+00	2017-11-09 02:35:23.620862+00	6986	missed				+14696719979		55	2017-11-09 02:12:42.771239	2017-11-09 02:13:37.820192	CA7498d0960799b7322d05061954909d4a	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE121664261ef5b3a0a904beece0a0f08d	0	inbound	+18177569010	124	1339.07157301902771	\N	new lead	dallas  tx	12	\N	\N	782
2017-03-17 21:09:20.595583+00	2017-11-29 18:47:25.067813+00	3481	completed				+14695868435		386	2017-03-17 21:09:20.593315	2017-03-17 21:15:46.106649	CA3f2bc8f4105f022bd7a22b722eeefb61	\N	83		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REa5a5e59586a6f9e1afc7ec66634d455e	0	inbound	+19728330116	\N	323.898226022720337	\N	new lead	wireless caller	8	\N	\N	783
2017-04-25 22:02:52.631862+00	2017-11-29 18:47:25.068312+00	4309	completed				+14695868435		352	2017-04-25 22:02:52.628825	2017-04-25 22:08:44.653269	CAa3adb129cd5cd47c732ee9b03cbcc23f	\N	84			0	inbound	+19728330116	\N	321.991903066635132	\N	new lead	wireless caller	8	\N	\N	783
2017-05-11 14:45:05.3936+00	2017-11-29 18:47:25.06846+00	5001	missed				+14695868435		12	2017-05-11 14:45:05.391552	2017-05-11 14:45:17.337991	CA300215f296e91652e01c3ac0c79ab50f	\N	\N			0	inbound	+19728330116	\N	328.627423048019409	\N	new lead	wireless caller	8	\N	\N	783
2017-02-23 23:15:10.152252+00	2017-11-29 18:47:25.067434+00	3253	completed				+14695868435		350	2017-02-23 23:15:10.15072	2017-02-23 23:21:00.382873	CAa0b8420fad0680f420022ecf837d3f6f	\N	84			0	inbound	+19728330116	\N	\N	\N	new lead		8	\N	\N	783
2017-03-13 19:41:55.756144+00	2017-11-29 18:47:25.067714+00	3403	completed				+14695868435		403	2017-03-13 19:41:55.754228	2017-03-13 19:48:38.318559	CAac0c5aa082d9babb7ae0cecff7847048	\N	83		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REa2c55edb4ac47e1041db0e6cd9a01fa4	0	inbound	+19728330116	\N	327.508770942687988	\N	new lead	wireless caller	8	\N	\N	783
2017-04-07 22:18:12.978237+00	2017-11-29 18:47:25.067989+00	3732	completed				+14695868435		64	2017-04-07 22:18:12.974978	2017-04-07 22:19:17.266158	CA39e4e9f394471b739ffce7c4347b47d9	\N	84		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REc3841be9bf58e4507eb50d89fb831ccd	0	inbound	+19728330116	\N	7.91888284683227539	\N	new lead	wireless caller	8	\N	\N	783
2017-07-10 15:04:45.68145+00	2017-07-10 15:07:22.983797+00	5746	completed				+16826221621		156	2017-07-10 15:04:45.679407	2017-07-10 15:07:21.831742	CAe1c55c3a3abe597a23ea979269fdf690	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE7a3abd7e64c2577da7a90a52cf8b39da	0	inbound	+18177569010	124	11.322998046875	\N	new lead	crystal leon	12	\N	\N	787
2017-12-15 22:47:25.19751+00	2017-12-15 22:59:32.680024+00	7913	completed	Ashley	Brady	Ashthewalkingtornado76@gmail.com	+16789938597		42	2017-12-15 22:47:25.196075	2017-12-15 22:54:26.248625	CAd946295d14c9cd0f91ccfa6ae31d0787	0427608a-ae09-4db0-a1e8-374423ee28c3	152			3	outbound	+17704009016	\N	375.2010178565979	{}	new lead		13	\N	\N	788
2017-05-13 21:07:09.930455+00	2017-05-17 15:41:07.224488+00	5061	completed				+16822407886		161	2017-05-13 21:07:09.926698	2017-05-13 21:09:50.665519	CAfa8673278344e65f1033d50099e1f353	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE12e177ee0dea88eb874f8f4076b70e62	0	inbound	+18177569010	124	7.38634419441223145	\N	new lead	dallas  tx	12	\N	\N	789
2017-09-18 23:27:40.37237+00	2017-09-18 23:27:40.422997+00	6396	missed	Isabella 	Henderson 	macabre27@gmail.com	+14784612869		\N	2017-09-18 23:27:40.371023	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	790
2017-11-30 14:19:31.014773+00	2017-11-30 14:23:16.134876+00	7406	completed	Isabella 	Henderson 	macabre27@gmail.com	+14784612869		210	2017-11-30 14:19:31.012943	2017-11-30 14:23:14.615659	CA2074890cc912210e4c5e7e98b9e1bd9e	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE4e6b33075f0c7d48404f06674fcc47a2	1	outbound	+17704009016	\N	12.6215329170227051	{}	new lead		13	\N	\N	790
2017-09-22 21:08:28.120335+00	2017-09-22 21:12:22.316116+00	6437	completed	Marecka	Harrison	shakelaharrison@gmail.com	+16786304076		218	2017-09-22 21:08:28.117525	2017-09-22 21:12:21.617663	CAb5c8720fbd6cc7178fec23159612c5cf	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE6157df06ca2d57c26b8a6aade174b3c1	1	outbound	+17704009016	\N	19.9877989292144775	{}	new lead		13	\N	\N	791
2017-11-03 22:57:16.173221+00	2017-11-03 23:00:14.41415+00	6925	completed	Quintessa	Fleming	qfleming11@gmail.com	+17069639009		165	2017-11-03 22:57:16.171802	2017-11-03 23:00:13.963792	CA26da86ded70d8add1b6a59ebddfb66a6	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REa2bfe1f20cc8f2ee518f654dbdfe8333	1	outbound	+17704009016	\N	11.8834130764007568	{}	new lead		13	\N	\N	792
2017-11-06 14:25:52.877036+00	2017-11-06 14:26:55.765945+00	6942	completed	Quintessa	Fleming		+17069639009		62	2017-11-06 14:25:52.875083	2017-11-06 14:26:54.477882	CA14e9080b82b9d3675fa50279d48dfbce	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE883267ea6b3ce55de1efdbc86d679e82	0	inbound	+17704009016	132	14.1542720794677734	\N	new lead		13	\N	\N	792
2016-09-07 19:39:19.74159+00	2016-12-09 17:06:53.9059+00	1943	completed				+12674087273		248	2016-09-07 19:39:19.739939	2016-09-07 19:43:27.625717	CAdd95af0e44c99128a3c73a295192790c	\N	21			0	inbound	+18558021330	\N	3.09987306594848633	null	new lead		3	\N	\N	793
2016-06-24 14:20:14.421147+00	2016-06-24 14:24:47.242973+00	450	completed	Susan	Westfall	suebee0770@yahoo.com	+12164078099		244	2016-06-24 14:20:14.419987	2016-06-24 14:24:47.24186	CAc2a2413cf12f373abaf1d4564c9a15ed	36dfa45c-0f7c-41c7-b250-561251aebceb	17		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REa32b7f7dd1323d6683b723c9c831b104	1	outbound	+18556311528	\N	25.2709221839904785	{}	new lead		1	\N	\N	796
2016-10-12 16:43:40.365901+00	2016-12-10 00:57:48.461817+00	2281	completed				+18035243289		173	2016-10-12 16:43:40.36439	2016-10-12 16:46:33.16001	CAe145f533360623a2b7401a9e201a0fec	\N	30			0	inbound	+18559652184	\N	1.67234611511230469	null	new lead		3	\N	\N	800
2016-10-23 16:09:57.724353+00	2016-12-10 00:57:48.461873+00	2338	completed				+18035243289		30	2016-10-23 16:09:57.722248	2016-10-23 16:10:27.806629	CA2368a089dedbd1b2563e40503c05b4af	\N	30			0	inbound	+18559652184	\N	1.78263497352600098	null	new lead		3	\N	\N	800
2016-10-23 19:16:45.503148+00	2016-12-10 00:57:48.46188+00	2339	completed				+18035243289		57	2016-10-23 19:16:45.50157	2016-10-23 19:17:42.88732	CA1674825209c5789b3cc71b35965c900b	\N	30			0	inbound	+18559652184	\N	2.34981799125671387	null	new lead		3	\N	\N	800
2016-10-12 16:46:41.879803+00	2016-12-10 00:57:48.461824+00	2283	completed				+18035243289		110	2016-10-12 16:46:41.878629	2016-10-12 16:48:31.736348	CA9e0c412dd7280de49584d5cb254a0373	\N	30			0	inbound	+18559652184	\N	2.19782590866088867	null	new lead		3	\N	\N	800
2017-04-22 20:20:46.385311+00	2017-11-29 18:38:53.214447+00	4229	completed				+19724398973		339	2017-04-22 20:20:46.38309	2017-04-22 20:26:25.468796	CA0bf83b73f3fa7e57d38f92b74a600750	\N	\N			0	inbound	+12146922088	\N	4.07637786865234375	\N	new lead	stone chase h  	9	\N	\N	802
2017-04-24 17:42:23.567844+00	2017-11-29 18:38:49.806441+00	4254	completed				+19724398973		74	2017-04-24 17:42:23.56565	2017-04-24 17:43:37.304901	CA22805a082ccf41864f6a9c4ce4b0359b	\N	107			0	inbound	+12147122250	\N	7.06854581832885742	\N	new lead	stone chase h	9	\N	\N	802
2016-06-30 14:53:54.477209+00	2016-07-28 14:47:38.371918+00	670	completed	Rodney	Holzapfel	rod.holzapfel@yahoo.com	+17243010151		88	2016-06-30 14:53:54.475751	2016-06-30 14:55:42.022089	CA66a14bd97f4ec0243e1c223ee5daaa09	ee869226-e246-4ab4-aaaa-e9403e2ddd39	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE205126eaa3b37fe987cc58fc5df08bd0	1	outbound	+18555983683	\N	14.3375589847564697	{}	general interest		1	\N	\N	803
2016-06-30 19:16:24.67053+00	2016-07-28 14:47:38.371946+00	687	completed				+17243010151		65	2016-06-30 19:16:24.669125	2016-06-30 19:17:34.244128	CA9ddf776cf0be1be387979a4e08bbf652	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.58740401268005371	{}	general interest		1	\N	\N	803
2016-07-01 18:44:31.068332+00	2016-07-28 14:47:38.371969+00	724	completed				+17243010151		63	2016-07-01 18:44:31.067368	2016-07-01 18:45:38.905591	CA744513a8019c968be80f4592eaced515	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.74064803123474121	{}	general interest		1	\N	\N	803
2016-07-01 18:55:30.60648+00	2016-07-28 14:47:38.371984+00	727	completed				+17243010151		141	2016-07-01 18:55:30.605456	2016-07-01 18:57:55.500503	CAb623e8e98214d483bd438ffc90b60502	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.47592306137084961	{}	general interest		1	\N	\N	803
2016-07-28 14:37:31.684564+00	2017-11-29 18:32:13.821605+00	990	completed	Rod	Holzapfel		+17243010151		77	2016-07-28 14:37:31.682756	2016-07-28 14:38:49.098228		\N	16			0	outbound	+18555983683	\N	\N	null	general interest		1	\N	\N	803
2016-07-01 16:30:28.88572+00	2017-11-29 18:32:13.82121+00	716	completed	Rod	Holzapfel		+17243010151		27	2016-07-01 16:30:28.884222	2016-07-01 16:30:55.730605	CA0a49a23c13f65e3dbcba98b7344c0cb7	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE55df8e8e4d8d7afa07fac48802b45e36	0	inbound	+18555983683	\N	13.9251821041107178	null	general interest		1	\N	\N	803
2016-07-01 17:45:14.070474+00	2017-11-29 18:32:13.821245+00	722	completed	Rod	Holzapfel		+17243010151		47	2016-07-01 17:45:14.069392	2016-07-01 17:46:00.981163	CA486817967a62e00f8259939441610571	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE9e1b8785c6a4f8fbb0ef94b39f206fb8	0	inbound	+18555983683	\N	13.6584179401397705	null	general interest		1	\N	\N	803
2016-07-28 14:18:50.780711+00	2017-11-29 18:32:13.821598+00	988	completed	Rod	Holzapfel		+17243010151		89	2016-07-28 14:18:50.779614	2016-07-28 14:20:20.0967	CAa241397ecfab233ca64fb8d5fdbd9b36	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE5e561dc2f1762c5d605ccb0e47ac4e0d	0	inbound	+18555983683	\N	29.8823778629302979	null	general interest		1	\N	\N	803
2016-11-27 23:46:33.582077+00	2016-11-27 23:47:03.576053+00	2990	completed				+16785920818		29	2016-11-27 23:46:33.579673	2016-11-27 23:47:03.064477	CAcf8037b4c0aa66a9be99fa7913b925b6	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REe0000712827324d49e0d544053167f26	0	inbound	+18557240606	49	2.8700559139251709	null	new lead		1	\N	\N	808
2016-05-31 04:58:37.994483+00	2016-05-31 12:49:20.180209+00	278	completed	Adrian	Clemandot 	adrianclemandot@yahoo.com	+16617542703		\N	2016-05-31 04:58:37.993143	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	new lead		1	\N	\N	812
2017-12-12 13:46:31.707234+00	2017-12-12 13:46:56.441828+00	7805	missed				+14044578704		25	2017-12-12 13:46:31.70542	2017-12-12 13:46:56.426931	CA1abe43ebc70c1eb67069f2c20ee77ef4	\N	\N			0	inbound	+17706597466	137	\N	\N	new lead		14	\N	\N	815
2017-04-17 16:10:07.601471+00	2017-11-29 18:38:53.214064+00	3992	completed				+12146046795		17	2017-04-17 16:10:07.5981	2017-04-17 16:10:24.788601	CAbb698152875d995a52846a32ff0c0977	\N	\N			0	inbound	+12146922088	\N	5.3836359977722168	\N	new lead	nguyen thanh	9	\N	\N	817
2017-04-15 16:38:41.22036+00	2017-11-29 18:38:49.805081+00	3959	completed				+19728392760		246	2017-04-15 16:38:41.218202	2017-04-15 16:42:47.588531	CA69200f352a0540c70fe81238bc29c227	\N	\N			0	inbound	+12147122250	\N	3.61464500427246094	\N	new lead	burwell jonatha	9	\N	\N	818
2017-12-11 23:13:52.040528+00	2017-12-11 23:17:45.456286+00	7798	completed	Tammie	Meadows Millsap	temeadows42@gmail.com	+16789898941		40	2017-12-11 23:13:52.03791	2017-12-11 23:14:45.362919	CA4fc3e6449473e6853ba3727c2317600e	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REfc9a65751d4ad229955774310e9a133e	1	outbound	+17704009016	\N	12.6197500228881836	{}	select status		13	\N	\N	819
2017-11-10 16:28:44.651382+00	2017-11-10 16:30:46.831468+00	7003	completed	Amanda	Seawright	Amandaseawright1@gmail.com	+17064984417		107	2017-11-10 16:28:44.649106	2017-11-10 16:30:46.799299	CA5a0649c85328e1e53ce26330b8c40702	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REd109c4178a4ecf2bcc405be285c43b30	1	outbound	+17704009016	\N	13.2621700763702393	{}	new lead		13	\N	\N	820
2016-07-04 00:09:46.406859+00	2016-07-05 13:20:03.787298+00	743	completed	Allen	Sanders	aesbowen@gmail.com	+16142309750		\N	2016-07-04 00:09:46.4058	\N		d33a481e-e0af-47ac-9f90-260f20b69de5	\N			0	outbound	+18552959002	\N	\N	{}	new lead		1	\N	\N	821
2016-11-10 21:28:33.79663+00	2016-11-10 21:31:45.48469+00	2852	completed				+12144772670		191	2016-11-10 21:28:33.795599	2016-11-10 21:31:44.554634	CA442b3f41f5d0c51af6fbf889afa03ba5	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REe7507571c524824b87ea8232ece77665	0	inbound	+18557240606	49	2.08622884750366211	null	new lead		1	\N	\N	822
2017-12-06 19:39:02.524293+00	2017-12-06 20:05:57.965487+00	7654	completed				+12392715967		1612	2017-12-06 19:39:02.52265	2017-12-06 20:05:54.74481	CA946973907136ea8192968a25e4545e08	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REab99be082accff0a66b9018551d614e5	0	inbound	+18558645656	136	2.41212105751037598	\N	new lead		15	\N	\N	823
2016-11-26 18:55:41.485056+00	2016-11-26 18:56:23.86435+00	2982	completed				+19728164244		42	2016-11-26 18:55:41.483218	2016-11-26 18:56:23.420735	CA83989336e6099dc2fa49b393f80c754b	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE0ad92acbcfd82eebbc0f88bc18b93aba	0	inbound	+18557240606	49	1.75388884544372559	null	new lead		1	\N	\N	825
2016-11-01 01:51:30.871149+00	2016-11-01 01:51:30.895968+00	2447	missed	Corianne	Remeliik	nuttycoconut919@aol.com	+19196080994		\N	2016-11-01 01:51:30.869416	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	827
2016-09-01 15:35:37.433866+00	2016-12-09 17:10:17.413354+00	1831	completed				+19087504217		207	2016-09-01 15:35:37.4316	2016-09-01 15:39:04.522158	CAa01a7d74edff3d17e5dd3c5a0471e7cc	\N	27			0	inbound	+18552716856	\N	4.9684300422668457	null	new lead		3	\N	\N	829
2017-06-01 16:54:42.511213+00	2017-11-29 18:38:49.81436+00	5549	completed				+19725606223		84	2017-06-01 16:54:42.509745	2017-06-01 16:56:06.062445	CAc0bac4d10c90a22d3d1221cf03906a9d	\N	127			0	inbound	+12147122250	\N	2.03385400772094727	\N	new lead	promontory	9	\N	\N	830
2017-10-10 04:57:32.343525+00	2017-10-10 04:57:32.391404+00	6641	missed	Richard 	Habgood 	southernrock1989@yahoo.com	+12395957807		\N	2017-10-10 04:57:32.342103	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	831
2017-07-29 18:44:40.5688+00	2017-07-29 18:46:32.576233+00	5884	completed				+16823522567		112	2017-07-29 18:44:40.566237	2017-07-29 18:46:32.562817	CA182f136597536c974b4b9a46f6363de6	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE1598c1c03720c46d1b054bd456ef8570	0	inbound	+18177569010	124	13.7795829772949219	\N	new lead	euless  tx	12	\N	\N	837
2017-07-29 18:48:01.441683+00	2017-07-29 18:48:44.831154+00	5885	completed				+16823522567		42	2017-07-29 18:48:01.440139	2017-07-29 18:48:43.719514	CA03ef77bdb1f6efa40648c2b6a8f2b2c7	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REc407185b60a13b7fa87cca0c73e9442d	0	inbound	+18177569010	124	13.1437289714813232	\N	new lead	euless  tx	12	\N	\N	837
2016-10-31 20:14:07.690832+00	2016-10-31 20:42:59.926516+00	2421	completed				+19197950912		1727	2016-10-31 20:14:07.689716	2016-10-31 20:42:54.988376	CA6be69503a6c7f2a5b3178298e9bf1fa4	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE20dafa4054b700bb261f2824f41d8e78	0	inbound	+18557240606	49	2.10506796836853027	null	new lead		1	\N	\N	840
2016-10-31 20:12:23.385162+00	2016-10-31 20:13:29.726394+00	2420	completed				+19197950912		65	2016-10-31 20:12:23.383782	2016-10-31 20:13:28.459123	CAdf00f99f98e17e1cadf18fc19759b6fd	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REa79770cbfdce8416711d002f3c20bcdf	0	inbound	+18557240606	49	2.07490015029907227	null	new lead		1	\N	\N	840
2017-04-03 22:23:01.647078+00	2017-11-29 18:47:25.067982+00	3677	completed				+13252011631		63	2017-04-03 22:23:01.644858	2017-04-03 22:24:04.988272	CAf898bfbe90fef607a5b771b602c39f07	\N	128		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE6ce3e5b70fc3fa802dc3571594a503ad	0	inbound	+19728330116	\N	24.8189091682434082	\N	new lead	cell phone   tx	8	\N	\N	756
2017-04-01 22:35:14.476861+00	2017-11-29 18:47:25.067961+00	3662	completed				+13252011631		318	2017-04-01 22:35:14.474321	2017-04-01 22:40:32.626386	CAc939ec1fd90f6f92988767c2fc7eb95e	\N	119		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE174b123df5b792a6fdba8490ffc4ebfc	0	inbound	+19728330116	\N	24.9001970291137695	\N	new lead	cell phone   tx	8	\N	\N	756
2017-09-27 12:58:00.00782+00	2017-09-27 12:58:00.086101+00	6492	missed	Matthew	Palla	Matthewpalla339@gmail.com	+17063800406		\N	2017-09-27 12:58:00.00611	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	844
2017-09-27 12:58:02.370523+00	2017-09-27 12:58:02.41895+00	6493	missed	Matthew	Palla	Matthewpalla339@gmail.com	+17063800406		\N	2017-09-27 12:58:02.369388	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	844
2016-06-27 12:22:28.551321+00	2017-11-29 18:31:41.490057+00	480	completed	Unknown			+16148373421		42	2016-06-27 12:22:28.549952	2016-06-27 12:23:10.405822	CA0b788302971db3d74980931717182cc9	\N	\N			0	inbound	+18552959002	\N	\N	null	new lead		1	\N	\N	845
2016-06-27 14:38:26.864812+00	2017-11-29 18:31:41.490079+00	496	completed	Unknown			+16148373421		28	2016-06-27 14:38:26.86387	2016-06-27 14:38:54.424687	CAafff6b84105c2b27391cc6a8a8de36a4	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REb5555b2cbab31c07afdb7c6b2c1e5e06	0	inbound	+18552959002	\N	14.7023541927337646	null	new lead		1	\N	\N	845
2016-06-27 20:40:40.9306+00	2017-11-29 18:31:41.490129+00	552	completed	Unknown			+16148373421		402	2016-06-27 20:40:40.929653	2016-06-27 20:47:22.546245	CA0e8c79645975ea911b19e7fb5e3be521	\N	18		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REfafc26f215127e94a4d619f20f31f08d	0	inbound	+18552959002	\N	12.0489280223846436	null	new lead		1	\N	\N	845
2016-06-27 15:10:55.590541+00	2016-06-27 15:11:20.933041+00	505	completed				+16148373421		20	2016-06-27 15:10:55.589594	2016-06-27 15:11:20.931856	CAfe2e044cdefbc12e493d80aac6166dda	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	1.3805840015411377	{}	new lead		1	\N	\N	845
2017-08-23 13:14:16.946942+00	2017-08-23 13:15:57.633999+00	6142	completed	Thomas	Adams	tommyadams81@yahoo.com	+17709122123		91	2017-08-23 13:14:16.945429	2017-08-23 13:15:57.60807	CA6573704c2691347a8b0270d4afdbde15	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REb2ccc8ada687297050a6bf5e90b66175	1	outbound	+17704009016	\N	7.80809593200683594	{}	new lead		13	\N	\N	850
2017-04-12 19:47:31.565732+00	2017-11-29 18:38:49.804628+00	3831	completed				+18666866972		86	2017-04-12 19:47:31.563359	2017-04-12 19:48:57.68136	CAdc82d72e3caf8dc56efca7b4490afacd	\N	\N			0	inbound	+12147122250	\N	7.12564611434936523	\N	new lead	800 service	9	\N	\N	851
2017-05-03 14:32:55.495097+00	2017-11-29 18:38:49.809065+00	4617	completed				+12017701404		76	2017-05-03 14:32:55.492921	2017-05-03 14:34:11.837916	CA229a571ec39cb5f8af860aee90ed4e00	\N	125			0	inbound	+12147122250	\N	1.0452420711517334	\N	new lead	new world group	9	\N	\N	852
2016-07-05 16:55:16.924649+00	2016-07-05 16:56:02.526769+00	754	completed				+16145615880		40	2016-07-05 16:55:16.923773	2016-07-05 16:56:02.524732	CAc5ba7aa3b92e9e87ac8c8f9538297abb	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	2.22882604598999023	{}	new lead		1	\N	\N	855
2016-06-03 15:51:11.252401+00	2017-11-29 18:31:10.260953+00	365	completed	Unknown			+15132358208		13	2016-06-03 15:51:11.251073	2016-06-03 15:51:24.171879	CA72532ebc6530a447bee375bdde0cb0ea	\N	\N			0	inbound	+18556311490	\N	0.822063922882080078	null	new lead		1	\N	\N	859
2016-06-03 16:40:36.17282+00	2016-06-03 16:43:25.55989+00	369	completed				+15132358208		166	2016-06-03 16:40:36.171753	2016-06-03 16:43:25.558969	CA5d33e85c5e097650d7525ed4561718d0	cd89e433-4bde-4f86-9b22-8f52c2413fcd	16			1	outbound	+18556311490	\N	1.22772789001464844	{}	new lead		1	\N	\N	859
2016-06-03 15:32:08.123009+00	2016-06-03 15:33:11.269921+00	364	completed				+15132358208		59	2016-06-03 15:32:08.119646	2016-06-03 15:33:11.268857	CA6b1c96e5c8390cacedecb6131bf2bfa4	cd89e433-4bde-4f86-9b22-8f52c2413fcd	16			1	outbound	+18556311490	\N	1.24984598159790039	{}	new lead		1	\N	\N	859
2016-06-03 15:52:04.220611+00	2017-11-29 18:31:10.260968+00	366	completed	Marbeth	Carmack		+15132358208		29	2016-06-03 15:52:04.219544	2016-06-03 15:52:32.845342	CA30661ae71967be862da0e9100a33fd1d	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE13a5f30a59332cadf51ef0cb1e87ebec	0	inbound	+18556311490	\N	0.45284581184387207	null	new lead		1	\N	\N	859
2016-07-08 11:03:22.475623+00	2016-12-10 01:05:11.336912+00	825	missed				+17184420905		7	2016-07-08 11:03:22.472427	2016-07-08 11:03:29.603249	CA4e82c6cd102cd4c8f2be34cc6aca13ca	\N	\N			0	inbound	+18555693686	\N	\N	null	new lead		3	\N	\N	860
2016-07-22 03:04:51.814393+00	2016-12-10 01:05:11.337037+00	916	missed				+17184420905		7	2016-07-22 03:04:51.811181	2016-07-22 03:04:58.92792	CA70f0718d0744e35da8ba8c125e41744b	\N	\N			0	inbound	+18555693686	\N	\N	null	new lead		3	\N	\N	860
2016-06-29 21:00:48.677404+00	2016-06-29 21:02:16.566566+00	665	completed				+13305022450		83	2016-06-29 21:00:48.675845	2016-06-29 21:02:16.565545	CA9ae0341bc7a98895a58044c0f66283aa	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	2.20142698287963867	{}	new lead		1	\N	\N	864
2016-06-29 21:00:37.324976+00	2016-06-29 21:02:29.59905+00	664	completed				+13305022450		0	2016-06-29 21:00:37.323846	2016-06-29 21:00:43.004258	CA5cf27060d941c5bec91b6ace0b1c9149	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	\N			1	outbound	+18555983683	\N	2.3118140697479248	{}	new lead		1	\N	\N	864
2016-06-29 20:48:14.199509+00	2017-11-29 18:32:13.821005+00	663	completed	Jerry	Clement		+13305022450		40	2016-06-29 20:48:14.198074	2016-06-29 20:48:53.845428	CAe3fe25eee2562c72dbde6a6eba44d08a	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE69d89b09c308b7f10b86318f4bd00999	0	inbound	+18555983683	\N	14.3192448616027832	null	new lead		1	\N	\N	864
2017-11-09 17:35:43.185078+00	2017-11-09 17:37:04.345495+00	6998	completed				+18179024349		80	2017-11-09 17:35:43.183151	2017-11-09 17:37:03.194739	CAd2f051ae220e5904374efdc4ea608f7d	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE8e74f5a7e7af9a9626772463abf99bc7	0	inbound	+18177569010	124	9.38989591598510742	\N	new lead	ellis nikki	12	\N	\N	865
2017-11-09 18:21:45.667381+00	2017-11-09 18:25:23.937481+00	6999	completed	Michelle	Cook	michellecook1012@gmail.com	+16784487103		200	2017-11-09 18:21:45.665822	2017-11-09 18:25:23.45247	CA9e5cc71e372a6d25ec61be3c6bc8eb08	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE74b79e5a968c1037dd71f91b0d62602e	1	outbound	+17704009016	\N	14.2536008358001709	{}	new lead		13	\N	\N	867
2017-12-04 14:28:05.694815+00	2017-12-04 14:33:23.69831+00	7527	completed	Mark	Dearborn	markdearborn25@gmail.com	+13864169096		314	2017-12-04 14:28:05.692896	2017-12-04 14:33:23.696243	CA10b97a1f8ebb062dffaf09ada7264839	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.71425104141235352	{}	new lead		15	\N	\N	869
2017-10-27 13:21:34.175708+00	2017-10-27 13:21:44.704676+00	6831	completed				+17064037733		11	2017-10-27 13:21:34.173743	2017-10-27 13:21:44.68439	CAd531036f1748aa38b07bdc16f144f4a6	\N	154			0	inbound	+17707665699	134	1.17519712448120117	\N	new lead		13	\N	\N	871
2017-09-14 16:20:54.112285+00	2017-09-14 16:22:44.380577+00	6351	completed				+17064037733		110	2017-09-14 16:20:54.110427	2017-09-14 16:22:44.366899	CAd50e00cc4f17b58aaee468526953ba32	\N	154			0	inbound	+17707665699	134	2.10675287246704102	\N	new lead		13	\N	\N	871
2017-09-14 16:27:40.998662+00	2017-09-14 16:31:35.84918+00	6352	completed				+17064037733		235	2017-09-14 16:27:40.996261	2017-09-14 16:31:35.833731	CA2849276fd6d9bdb39b7c8ccaa40a08d4	\N	154			0	inbound	+17707665699	134	1.30815577507019043	\N	new lead		13	\N	\N	871
2016-12-02 16:02:53.397413+00	2017-11-29 18:31:37.369318+00	3024	missed				+16108782800		8	2016-12-02 16:02:53.396335	2016-12-02 16:03:01.34751	CAfe48de2e19441b4aa6ba063e27a424d3	\N	\N			0	inbound	+18555472453	\N	\N	null	new lead		1	\N	\N	786
2017-09-28 21:36:15.558997+00	2017-09-28 21:46:40.910133+00	6515	completed				+17064037733		625	2017-09-28 21:36:15.556787	2017-09-28 21:46:40.896982	CA4b79b783227cac8bf85e07425808b60a	\N	154			0	inbound	+17707665699	134	1.44442391395568848	\N	new lead		13	\N	\N	871
2017-09-28 22:14:50.678038+00	2017-09-28 22:15:42.168498+00	6517	completed				+17064037733		51	2017-09-28 22:14:50.675831	2017-09-28 22:15:42.148045	CA8e8a8982e5bbf703edd0fcb52b194619	\N	154			0	inbound	+17707665699	134	1.39603400230407715	\N	new lead		13	\N	\N	871
2017-09-28 22:16:42.69907+00	2017-09-28 22:18:42.21267+00	6518	completed				+17064037733		120	2017-09-28 22:16:42.697089	2017-09-28 22:18:42.197789	CAdf3c83070231810b64cf6f0512cc1c57	\N	154			0	inbound	+17707665699	134	2.86030793190002441	\N	new lead		13	\N	\N	871
2017-10-27 13:03:32.603496+00	2017-10-27 13:10:56.817805+00	6830	completed				+17064037733		444	2017-10-27 13:03:32.601321	2017-10-27 13:10:56.806703	CA059a05a992226a3650869e8f5046254c	\N	154			0	inbound	+17707665699	134	1.38622283935546875	\N	new lead		13	\N	\N	871
2017-04-20 15:22:21.228913+00	2017-11-29 18:38:49.805903+00	4126	completed				+19528339448		122	2017-04-20 15:22:21.226836	2017-04-20 15:24:23.582431	CAf8e0b0024f9d4b3ce070ff92af269b90	\N	127			0	inbound	+12147122250	\N	1.90839409828186035	\N	new lead	minneapolis  mn	9	\N	\N	872
2017-04-28 15:35:11.924076+00	2017-11-29 18:38:49.807244+00	4419	completed				+19528339448		71	2017-04-28 15:35:11.922089	2017-04-28 15:36:22.62254	CAafef64fa65e0a4ef16c25ce3ff9f6e17	\N	127			0	inbound	+12147122250	\N	1.26575803756713867	\N	new lead	minneapolis  mn	9	\N	\N	872
2017-04-28 15:36:14.158293+00	2017-11-29 18:38:49.807251+00	4420	completed				+19528339448		114	2017-04-28 15:36:14.15653	2017-04-28 15:38:08.124128	CAd91e4d1670c53ada34fe6c15b1d23887	\N	124			0	inbound	+12147122250	\N	1.29628610610961914	\N	new lead	minneapolis  mn	9	\N	\N	872
2017-04-28 21:08:10.301399+00	2017-11-29 18:38:49.807364+00	4450	completed				+19528339448		76	2017-04-28 21:08:10.299686	2017-04-28 21:09:26.16909	CA73318b784d9dc8efa5c72a2e045a902e	\N	127			0	inbound	+12147122250	\N	1.94577693939208984	\N	new lead	minneapolis  mn	9	\N	\N	872
2017-12-06 16:23:35.975104+00	2017-12-06 16:32:02.331045+00	7637	completed				+16614181196		505	2017-12-06 16:23:35.970941	2017-12-06 16:32:01.089962	CAb712743700250703e8d3005cd4cf2c42	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE0b429ae7288a1473a32c46e4bf7f705c	0	inbound	+18558645656	136	2.43946409225463867	\N	new lead		15	\N	\N	876
2016-11-01 22:31:58.645467+00	2016-11-01 23:14:44.744689+00	2515	completed				+19032625352		2565	2016-11-01 22:31:58.644383	2016-11-01 23:14:43.515472	CAe4841f8e706ac10d6347425d02f93cc9	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE831eae80b371948762c3b7c79c942d7c	0	inbound	+18557240606	49	1.67345714569091797	null	new lead		1	\N	\N	883
2016-11-07 14:46:59.061481+00	2016-11-07 14:51:05.319488+00	2785	completed				+19032625352		245	2016-11-07 14:46:59.059689	2016-11-07 14:51:04.353937	CA43d70db2ab35041cecc621688f8a4200	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REd51bcd9d66720cbf0600e5be4b1cf344	0	inbound	+18557240606	49	2.09398293495178223	null	new lead		1	\N	\N	883
2016-11-07 20:06:24.377721+00	2016-11-07 20:14:42.567811+00	2795	completed				+19032625352		498	2016-11-07 20:06:24.375792	2016-11-07 20:14:41.93504	CA3bd50f5e9884c4015eebf6c9e99cf999	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE899f76b9afaf3df47653018756e9c4cf	0	inbound	+18557240606	49	1.80958294868469238	null	new lead		1	\N	\N	883
2017-05-02 16:16:54.23273+00	2017-11-29 18:38:49.808631+00	4573	completed				+19164101000		79	2017-05-02 16:16:54.230344	2017-05-02 16:18:13.196476	CA4c5c149a5dd4853bdf2904d22640fd77	\N	127			0	inbound	+12147122250	\N	2.20949602127075195	\N	new lead	rashed manuel  	9	\N	\N	887
2017-05-03 20:48:57.582219+00	2017-11-29 18:38:49.809472+00	4665	completed				+19164101000		96	2017-05-03 20:48:57.580095	2017-05-03 20:50:33.990425	CA4e970b901d72724400ae319d3d793fdb	\N	107			0	inbound	+12147122250	\N	6.66275596618652344	\N	new lead	rashed manuel  	9	\N	\N	887
2017-04-19 22:56:08.846173+00	2017-11-29 18:38:53.21429+00	4117	completed				+19405774540		19	2017-04-19 22:56:08.842947	2017-04-19 22:56:27.896074	CA2669ed5f8c0753208d89b89ed4759b1c	\N	\N			0	inbound	+12146922088	\N	5.20720314979553223	\N	new lead	hillary lindsay	9	\N	\N	889
2016-11-01 13:44:51.327149+00	2016-11-01 13:44:51.358913+00	2462	missed	Matthew	Borysewicz	matt.borysewicz@gmail.com	+19802533341		\N	2016-11-01 13:44:51.325733	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	891
2017-05-08 19:46:29.218463+00	2017-11-29 18:38:49.810411+00	4869	completed				+12146802994		86	2017-05-08 19:46:29.216064	2017-05-08 19:47:54.760505	CA52bf739da5ad9032067d3afaa78fc1ca	\N	124			0	inbound	+12147122250	\N	1.16766500473022461	\N	new lead	wright donald	9	\N	\N	892
2017-05-08 19:50:24.668967+00	2017-11-29 18:38:49.810418+00	4870	completed				+12146802994		220	2017-05-08 19:50:24.666908	2017-05-08 19:54:04.305648	CAe5f2b1ecaa27b7af9e9312f67edab61b	\N	\N			0	inbound	+12147122250	\N	2.08800792694091797	\N	new lead	wright donald	9	\N	\N	892
2016-08-04 00:53:17.060591+00	2017-11-29 18:31:37.368603+00	1197	missed	Ernesto	Sandoval		+18185541848		14	2016-08-04 00:53:17.058543	2016-08-04 00:53:31.223678	CA80c1f534279d78b032a123bea4720667	\N	\N			0	inbound	+18555472453	\N	\N	null	application submitted - credit union		1	\N	\N	895
2017-10-08 21:03:38.100988+00	2017-10-08 21:04:19.029169+00	6624	missed				+12144549274		41	2017-10-08 21:03:38.099085	2017-10-08 21:04:19.020032	CA500b1b8bf01aff82b32497497478d641	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE62ff5aeaefce42239f9d6cb8613d90ec	0	inbound	+18177569010	124	\N	\N	new lead	bates s	12	\N	\N	896
2017-10-09 14:24:46.789257+00	2017-10-09 14:33:43.083698+00	6631	completed				+12144549274		533	2017-10-09 14:24:46.78623	2017-10-09 14:33:39.767249	CA6c739984c5a7d09291bd726752c84c80	\N	155		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE2242999e147389e295a16f539cac7bea	0	inbound	+18177569010	124	13.6170530319213867	\N	new lead	bates s	12	\N	\N	896
2016-08-13 20:58:23.805553+00	2017-11-29 18:31:37.368918+00	1476	missed				+16618749105		20	2016-08-13 20:58:23.803907	2016-08-13 20:58:43.957116	CA0caf0d1853b7600c709de3234618a24b	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE58af001c11f464b6ceddb6602b7584f2	0	inbound	+18555472453	\N	\N	null	do not contact		1	\N	\N	897
2016-08-15 19:24:17.582416+00	2017-01-27 21:12:23.813257+00	1510	completed				+16618749105		90	2016-08-15 19:24:17.580982	2016-08-15 19:25:47.241173		\N	\N			0	outbound	+18555343978	48	\N	null	do not contact		1	\N	\N	897
2017-04-20 21:44:10.79276+00	2017-11-29 18:38:53.214354+00	4168	completed				+14074889300		104	2017-04-20 21:44:10.789717	2017-04-20 21:45:54.498318	CAa2afdac445decd056d67670d6c801819	\N	\N			0	inbound	+12146922088	\N	5.12140607833862305	\N	new lead	cell phone   fl	9	\N	\N	903
2017-07-10 19:42:46.029787+00	2017-07-10 19:43:11.473536+00	5749	completed				+17064998590		24	2017-07-10 19:42:46.027566	2017-07-10 19:43:10.159725	CA88c5edc24e664c0c4b73545df65cde11	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE4593bd81ff4dac60742edb0cec046000	0	inbound	+17704009016	132	7.8709108829498291	\N	new lead		13	\N	\N	904
2017-07-10 19:43:30.85684+00	2017-07-10 19:47:45.328797+00	5750	completed				+17064998590		254	2017-07-10 19:43:30.854158	2017-07-10 19:47:44.634183	CA926865cbc59cbb74322679bf3b56eee3	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE5e3e3819b050f572f638d3772960e1ee	0	inbound	+17704009016	132	21.6530590057373047	\N	new lead		13	\N	\N	904
2017-12-07 16:21:58.716772+00	2017-12-07 16:40:48.433571+00	7684	completed				+16206170718		1127	2017-12-07 16:21:58.715114	2017-12-07 16:40:45.259149	CAbc4da6459f79c3b0940df46473e7e6d2	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE717d867592283837693d0044c97c5e8c	0	inbound	+18558645656	136	2.94626188278198242	\N	new lead		15	\N	\N	910
2017-05-15 17:41:49.934051+00	2017-11-29 18:38:49.811565+00	5077	missed				+12146046112		50	2017-05-15 17:41:49.932123	2017-05-15 17:42:39.691747	CA058fb01b0777908e8c8313f91e17b969	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	walton cedrick 	9	\N	\N	911
2017-12-22 21:06:49.357989+00	2017-12-22 21:13:53.982608+00	8073	completed	Dwayne	Craft		+17062963476		424	2017-12-22 21:06:49.356215	2017-12-22 21:13:53.256702	CAe674b5e2b49b8eb3a0c70cad71089618	\N	154		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE48b2004571e84fe50bb595151b470431	0	inbound	+17707665699	134	1.2999269962310791	\N	new lead	craft jessica	13	\N	\N	916
2016-07-01 18:51:30.531931+00	2017-11-29 18:32:13.82126+00	726	completed	Rod	Holzapfel		+17243010151		42	2016-07-01 18:51:30.53093	2016-07-01 18:52:12.480941	CAfc3942c7967b9a28c6209deae5f8a8d9	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REd9ce85280578e6059bbaf1464dfa5a21	0	inbound	+18555983683	\N	14.1974341869354248	null	general interest		1	\N	\N	803
2017-09-28 17:28:53.865918+00	2017-09-28 17:37:50.426605+00	6507	completed				+17062963476		537	2017-09-28 17:28:53.863821	2017-09-28 17:37:50.41264	CAec8c17aff2bc19108003308ffd1f8b5e	\N	154			0	inbound	+17707665699	134	3.41325592994689941	\N	new lead		13	\N	\N	916
2017-10-04 22:59:42.757893+00	2017-10-04 23:00:09.253121+00	6586	retry-pending	Dwayne	Craft	Djcraft420@gmail.com	+17062963476		0	2017-10-04 22:59:42.756295	2017-10-04 23:00:08.924709	CA45d32c2f098d31f820ca0c8abb6ed6af	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			1	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	916
2017-11-04 15:36:10.15791+00	2017-11-04 15:39:00.360923+00	6931	completed	Dwayne	Craft		+17062963476		170	2017-11-04 15:36:10.155627	2017-11-04 15:39:00.34222	CA3a4d02140580ff1fd0b875c453413d54	\N	154			0	inbound	+17707665699	134	1.74887394905090332	\N	new lead		13	\N	\N	916
2016-08-27 14:47:16.130758+00	2016-12-10 01:05:18.400868+00	1795	completed				+12157890528		331	2016-08-27 14:47:16.12916	2016-08-27 14:52:47.145108	CAb8fcae7a2ea6ce96a56d9296be037840	\N	24			0	inbound	+18557088731	\N	2.15792584419250488	null	new lead		3	\N	\N	918
2016-10-10 16:58:22.718284+00	2016-12-10 01:05:18.401137+00	2248	completed				+16102403800		376	2016-10-10 16:58:22.717099	2016-10-10 17:04:38.310816	CA061b43866bc211d8bed940d66ec81cb1	\N	24			0	inbound	+18557088731	\N	1.24049687385559082	null	new lead		3	\N	\N	919
2017-04-21 13:20:56.585244+00	2017-11-29 18:38:49.806117+00	4173	completed				+19177687106		95	2017-04-21 13:20:56.581752	2017-04-21 13:22:31.24841	CAc81c8b0c42e992ac1d8cac95abe8517b	\N	124			0	inbound	+12147122250	\N	1.19448304176330566	\N	new lead	freedom funding	9	\N	\N	921
2016-12-22 22:05:54.591353+00	2016-12-22 22:05:54.616915+00	3091	missed	MARIKO	MIBAYASHI	MARICHIN33@GMAIL.COM	+12068541575		\N	2016-12-22 22:05:54.5903	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	922
2017-10-04 16:07:36.954769+00	2017-10-04 16:12:45.735796+00	6576	completed				+17069494805		309	2017-10-04 16:07:36.952907	2017-10-04 16:12:45.724784	CA00c5c00195639f12b32fb56ad2787027	\N	153			0	inbound	+17707665732	133	27.6898398399353027	\N	new lead		13	\N	\N	925
2017-03-13 20:35:43.142464+00	2017-11-29 18:47:25.067736+00	3406	completed				+19729225515		71	2017-03-13 20:35:43.139996	2017-03-13 20:36:53.778559	CA06621c4f1e9f1ad58aea2035defd7a6e	\N	83		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE8231501f2a6a26d34f593f1dc8aa3146	0	inbound	+19728330116	\N	12.9089798927307129	\N	new lead	mcmenamy jonath	8	\N	\N	926
2017-05-03 15:59:00.292236+00	2017-08-17 14:35:21.045097+00	4630	completed				+18176171659		162	2017-05-03 15:59:00.288983	2017-05-03 16:01:42.212288	CA94ec4d36fee05666b092d8c70364d8ab	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REd1662ea810dc4f1ef8ffd98064b483ef	0	inbound	+18177569010	124	11.8743660449981689	\N	new lead	rodriguez g	12	\N	\N	927
2017-05-19 22:05:25.412026+00	2017-08-17 14:35:21.045262+00	5244	completed				+18176171659		14	2017-05-19 22:05:25.409924	2017-05-19 22:05:39.282845	CA3dd9cd7992b2bc9df687f32f7eed926c	\N	\N			0	inbound	+18177569010	124	5.29997491836547852	\N	new lead	rodriguez g	12	\N	\N	927
2016-10-27 16:14:14.661649+00	2016-10-27 16:15:43.558228+00	2355	completed				+13035026615		88	2016-10-27 16:14:14.658716	2016-10-27 16:15:43.05195	CA758bca57a73146bbd42a7555e78ec913	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REfed2c72fd7275339fe167afa2a70089c	0	inbound	+18557240606	49	1.6823880672454834	null	new lead		1	\N	\N	928
2017-03-18 20:08:44.053689+00	2017-11-29 18:47:25.067827+00	3492	completed				+12544001914		100	2017-03-18 20:08:44.051289	2017-03-18 20:10:23.690702	CA7890ac46d9993e3defc2328c793a1bd6	\N	84		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE10cd3d2be717cb695a6be59bd68e5e2f	0	inbound	+19728330116	\N	6.17340397834777832	\N	new lead	wireless caller	8	\N	\N	929
2017-05-01 18:22:56.334276+00	2017-11-29 18:38:53.214866+00	4526	completed				+18173433714		178	2017-05-01 18:22:56.33082	2017-05-01 18:25:53.939133	CA026931bd94d1fbc99556807b36899a0c	\N	133			0	inbound	+12146922088	\N	7.55600619316101074	\N	new lead	curtis carlton 	9	\N	\N	930
2017-03-13 20:36:16.928996+00	2017-11-29 18:47:25.067743+00	3407	missed				+14695307898		7	2017-03-13 20:36:16.927111	2017-03-13 20:36:23.9093	CAad4f0097501d0472a2a38a4303e197ac	\N	\N			0	inbound	+19728330116	\N	326.447807788848877	\N	new lead	gregory powell	8	\N	\N	932
2017-04-13 23:07:38.152728+00	2017-11-29 18:47:25.068031+00	3904	completed				+14695307898		84	2017-04-13 23:07:38.150384	2017-04-13 23:09:02.22237	CAf54c10f3470f008ba7fa28d383b13d8c	\N	118		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REd69ca3c6a08d3102968c6fa7360aaa56	0	inbound	+19728330116	\N	13.2537400722503662	\N	new lead	gregory powell	8	\N	\N	932
2017-05-25 18:58:56.577192+00	2017-11-29 18:47:25.068523+00	5411	in-progress				+14695307898		\N	2017-05-25 18:58:56.575293	\N	CA1fa49b4d81a127ad5992c7e866d5e7d1	\N	84			0	inbound	+19728330116	\N	6.74492192268371582	\N	new lead	gregory powell	8	\N	\N	932
2017-07-29 16:27:06.727029+00	2017-11-29 18:47:25.068558+00	5876	completed				+14695307898		362	2017-07-29 16:27:06.72406	2017-07-29 16:33:08.623662	CAd562860d01f34245d3a2349e3f82d456	\N	83		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE43ca81a91326b95fc8c45dbfd8e7ce58	0	inbound	+19728330116	\N	315.885316133499146	\N	new lead	gregory powell	8	\N	\N	932
2017-07-29 16:52:26.509093+00	2017-11-29 18:47:25.068572+00	5879	completed				+14695307898		732	2017-07-29 16:52:26.507018	2017-07-29 17:04:38.699287	CAfa2fed9e64172c374b8fc9bbf2a8d197	\N	117		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REf5b33cb2f51cd45535ea7baaaa485829	0	inbound	+19728330116	\N	702.448676109313965	\N	new lead	gregory powell	8	\N	\N	932
2017-04-19 21:45:30.1053+00	2017-11-29 18:38:49.805845+00	4112	completed				+18179178291		97	2017-04-19 21:45:30.103144	2017-04-19 21:47:06.699209	CAf1038e31af8db10fa8ca592391013658	\N	127			0	inbound	+12147122250	\N	1.67759394645690918	\N	new lead	hoang tony     	9	\N	\N	938
2017-04-21 18:18:29.655731+00	2017-11-29 18:38:49.806202+00	4190	completed				+18179178291		53	2017-04-21 18:18:29.654118	2017-04-21 18:19:23.122143	CA3b868b2a33ec33497f9869b0b1f80265	\N	124			0	inbound	+12147122250	\N	2.16848516464233398	\N	new lead	hoang tony     	9	\N	\N	938
2017-04-21 18:19:33.352876+00	2017-11-29 18:38:49.806209+00	4191	completed				+18179178291		82	2017-04-21 18:19:33.351795	2017-04-21 18:20:55.402553	CAe310a1791048213d52db5453c22b7e36	\N	124			0	inbound	+12147122250	\N	0.617517948150634766	\N	new lead	hoang tony     	9	\N	\N	938
2017-04-21 18:21:18.650462+00	2017-11-29 18:38:49.806216+00	4192	completed				+18179178291		142	2017-04-21 18:21:18.648196	2017-04-21 18:23:41.023689	CA2c706055a7a86c987b2b93124ba8e33b	\N	127			0	inbound	+12147122250	\N	1.17704391479492188	\N	new lead	hoang tony     	9	\N	\N	938
2016-09-09 20:32:17.807457+00	2016-12-10 01:01:51.440912+00	1982	completed				+17608030377		138	2016-09-09 20:32:17.8063	2016-09-09 20:34:35.935083	CAe24dbda293a7c37cea66ebb2189c5eea	\N	50			0	inbound	+18559693782	\N	2.07300686836242676	null	new lead		3	\N	\N	940
2016-11-23 20:11:27.745937+00	2016-12-10 01:01:51.44117+00	2971	completed				+17608030377		964	2016-11-23 20:11:27.744064	2016-11-23 20:27:31.973969	CA10d2418e0b0bd2356685d548f254103b	\N	50			0	inbound	+18559693782	\N	3.10253500938415527	null	new lead		3	\N	\N	940
2016-11-23 23:48:25.729058+00	2016-12-10 01:01:51.441177+00	2973	completed				+17608030377		360	2016-11-23 23:48:25.727351	2016-11-23 23:54:25.648132	CAbead8f196186970e41e58b096564db56	\N	50			0	inbound	+18559693782	\N	3.37309813499450684	null	new lead		3	\N	\N	940
2017-05-03 14:00:29.049386+00	2017-11-29 18:38:49.80899+00	4613	completed				+12058790143		131	2017-05-03 14:00:29.046924	2017-05-03 14:02:40.022101	CAe23c54582df8647901dfedd220f4aa0e	\N	127			0	inbound	+12147122250	\N	1.17058587074279785	\N	new lead	empl screening	9	\N	\N	941
2017-05-04 13:24:14.551853+00	2017-11-29 18:38:49.809578+00	4699	completed				+12058790143		141	2017-05-04 13:24:14.549192	2017-05-04 13:26:35.483203	CA8c88704f26703a004a4b611cbcdbfad9	\N	125			0	inbound	+12147122250	\N	1.15162992477416992	\N	new lead	employment scre	9	\N	\N	941
2017-05-18 16:54:07.792888+00	2017-11-29 18:38:49.812174+00	5207	completed				+18179123000		38	2017-05-18 16:54:07.791458	2017-05-18 16:54:45.747509	CA663c86841bd79629baadf0360e0d8e86	\N	126			0	inbound	+12147122250	\N	1.16379284858703613	\N	new lead	sewell saab gra	9	\N	\N	943
2017-08-09 16:39:47.934998+00	2017-11-22 16:25:24.94968+00	5975	completed				+17702978700		29	2017-08-09 16:39:47.932941	2017-08-09 16:40:16.558587	CA37261901ff6b23057727cbc69fc82536	\N	153			0	inbound	+17707665732	133	12.1541769504547119	\N	select status		13	\N	\N	656
2017-11-27 19:51:27.833472+00	2017-11-27 20:02:15.425444+00	7350	completed	Kizzy	Dukes	Kflem3311@gmail.com	+16787916228		111	2017-11-27 19:51:27.831293	2017-11-27 19:59:11.663347	CA054b18ac0f4c7c63c82f6e31e20b5c45	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REcbafbc3e7ea56ef952a2823dce061147	3	outbound	+17704009016	\N	348.38834285736084	{}	select status		13	\N	\N	3215
2017-05-03 19:07:37.322649+00	2017-11-29 18:38:53.214972+00	4648	completed				+16786426184		303	2017-05-03 19:07:37.319407	2017-05-03 19:12:40.784653	CA83c86045b5655c0ddd173b9b1f67762d	\N	107			0	inbound	+12146922088	\N	4.29027700424194336	\N	new lead	mosley jabari	9	\N	\N	846
2017-05-18 23:03:08.002005+00	2017-11-29 18:38:49.812231+00	5222	missed				+16267771000		35	2017-05-18 23:03:07.999905	2017-05-18 23:03:42.595447	CAd5db783ead47e875792a0608ba587908	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	h j auto group 	9	\N	\N	847
2017-05-18 16:54:35.293466+00	2017-11-29 18:38:49.812181+00	5208	completed				+18179123000		80	2017-05-18 16:54:35.290895	2017-05-18 16:55:55.463289	CAeac5f98240e92d1a9e491d11ddc88139	\N	99			0	inbound	+12147122250	\N	4.69986200332641602	\N	new lead	sewell cadillac	9	\N	\N	943
2017-05-02 21:42:59.625948+00	2017-05-17 15:41:07.2244+00	4605	completed				+17316767065		89	2017-05-02 21:42:59.623968	2017-05-02 21:44:29.004313	CAc14394ee9ad8ecf0954bf34fc8e3734a	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE00e72104f4af8a28395a64686d4be10d	0	inbound	+18177569010	124	9.39254999160766602	\N	new lead	wireless caller	12	\N	\N	946
2017-05-10 17:43:42.68617+00	2017-11-29 18:38:49.810811+00	4959	completed				+12149166008		51	2017-05-10 17:43:42.684217	2017-05-10 17:44:33.965857	CA50c23aca8e8e255ea175feb10e86ef4e	\N	105			0	inbound	+12147122250	\N	8.15496611595153809	\N	new lead	alvarez m	9	\N	\N	949
2017-06-26 14:06:25.247079+00	2017-06-26 14:10:06.496172+00	5656	completed	Jessica	Pilgrim	jessicapilgrim911@yahoo.com	+17063723776		201	2017-06-26 14:06:25.245688	2017-06-26 14:10:06.464161	CAb715cce76883917c100361f4843d285b	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE6d9e1d9aed2aa44262d05f1b50b8f992	1	outbound	+17704009016	\N	11.2355198860168457	{}	new lead		13	\N	\N	955
2017-04-27 22:17:08.160554+00	2017-11-29 18:38:53.214717+00	4412	completed				+19174706121		487	2017-04-27 22:17:08.158969	2017-04-27 22:25:14.668458	CA93ca05c61fb3b2802745d4b41547035d	\N	99			0	inbound	+12146922088	\N	6.07184410095214844	\N	new lead	diabene juliet	9	\N	\N	957
2017-05-03 21:37:43.397694+00	2017-11-29 18:38:53.214987+00	4668	completed				+14326184553		475	2017-05-03 21:37:43.392035	2017-05-03 21:45:38.268527	CA67a161ec876e843f96953dbe9ad0694c	\N	133			0	inbound	+12146922088	\N	9.88903093338012695	\N	new lead	reagor dykes au	9	\N	\N	959
2017-10-30 22:38:11.267144+00	2017-10-30 22:42:16.169858+00	6876	completed				+18174495102		244	2017-10-30 22:38:11.265238	2017-10-30 22:42:15.063135	CA3614178f1a94a663e808ee1ca1c59cd6	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REf17836fc0282e101ba448d0c89f5a8f1	0	inbound	+18177569010	124	11.5494179725646973	\N	new lead	dallas  tx	12	\N	\N	965
2016-11-04 14:58:03.958658+00	2016-11-04 15:24:49.148619+00	2688	completed				+16237605297		1602	2016-11-04 14:58:03.956538	2016-11-04 15:24:46.216784	CA125a5f2a7feb502be4637b159f2b593f	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE3e404cfe4e45e9ca6e1a2e0d694cff59	0	inbound	+18557240606	49	2.37136697769165039	null	new lead		1	\N	\N	969
2017-04-10 20:34:35.923535+00	2017-11-29 18:38:53.213667+00	3768	completed				+16307794488		688	2017-04-10 20:34:35.922247	2017-04-10 20:46:04.09548	CAe90611b9cafb1850bb36d50592b07f2e	\N	\N			0	inbound	+12146922088	\N	7.66722202301025391	\N	new lead	fielding gina  	9	\N	\N	974
2017-04-10 22:20:07.283146+00	2017-11-29 18:38:53.213702+00	3776	completed				+16307794488		170	2017-04-10 22:20:07.280015	2017-04-10 22:22:57.232843	CAac219da54b18f766b3eb908ce1e45d1e	\N	\N			0	inbound	+12146922088	\N	3.58070683479309082	\N	new lead	fielding gina	9	\N	\N	974
2016-11-04 15:57:47.473765+00	2016-11-04 15:57:47.506115+00	2703	missed	Laura	Quiroz	laurajquiroz@yahoo.com	+17138001754		\N	2016-11-04 15:57:47.472434	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	978
2017-07-12 14:49:23.224992+00	2017-07-12 14:51:19.404547+00	5763	completed				+16787070691		115	2017-07-12 14:49:23.223144	2017-07-12 14:51:18.207693	CA7d47f91bd96c7f6000ca68af26d31e2e	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REba1e8df86347ea697b0b176bafa85ed2	0	inbound	+17704009016	132	15.9975519180297852	\N	new lead		13	\N	\N	981
2016-08-24 18:12:10.631945+00	2016-12-09 17:10:17.413125+00	1720	completed				+16103344871		33	2016-08-24 18:12:10.630502	2016-08-24 18:12:44.0292	CAadd1af27c56887775fc7b554c336f36a	\N	27			0	inbound	+18552716856	\N	9.77292084693908691	null	new lead		3	\N	\N	982
2016-08-24 18:12:18.194599+00	2016-12-09 17:10:17.413132+00	1721	completed				+16103344871		33	2016-08-24 18:12:18.193225	2016-08-24 18:12:51.396955	CA49a494e54add853dcaffbd8c73b0e4ed	\N	27			0	inbound	+18552716856	\N	9.22445988655090332	null	new lead		3	\N	\N	982
2016-08-24 18:12:26.204155+00	2016-12-09 17:10:17.413139+00	1722	missed				+16103344871		0	2016-08-24 18:12:26.203215	2016-08-24 18:12:26.407122	CA86a7ae364ac110e643fdc5919f63f21f	\N	\N			0	inbound	+18552716856	\N	\N	null	new lead		3	\N	\N	982
2017-04-13 14:19:58.201196+00	2017-11-29 18:38:49.804714+00	3853	completed				+13392936122		121	2017-04-13 14:19:58.197911	2017-04-13 14:21:58.745701	CAd582f25f9750345f3968e38a48d93fd7	\N	127			0	inbound	+12147122250	\N	1.24039411544799805	\N	new lead		9	\N	\N	988
2016-08-01 15:23:38.944353+00	2016-12-10 00:55:45.164954+00	1070	completed				+16103273221		254	2016-08-01 15:23:38.943149	2016-08-01 15:27:52.700322	CA4250659a16affb8d6b544dfc1e5231b1	\N	24			0	inbound	+18557129406	\N	2.48633003234863281	null	new lead		3	\N	\N	989
2016-08-16 15:45:31.99283+00	2016-12-10 01:05:18.400785+00	1541	completed				+16103273221		17	2016-08-16 15:45:31.99196	2016-08-16 15:45:48.823888	CA8aa51dcd9aaa63e35d670ad221cc2240	\N	24			0	inbound	+18557088731	\N	2.88266992568969727	null	new lead		3	\N	\N	989
2016-08-16 15:46:15.251972+00	2016-12-10 01:05:18.400792+00	1542	completed				+16103273221		16	2016-08-16 15:46:15.250961	2016-08-16 15:46:30.800185	CA5d40385a60f10cf61febcb944a9bef5b	\N	24			0	inbound	+18557088731	\N	1.93523716926574707	null	new lead		3	\N	\N	989
2016-08-16 15:44:40.524425+00	2016-12-10 01:05:18.400778+00	1540	completed				+16103273221		14	2016-08-16 15:44:40.523304	2016-08-16 15:44:54.722846	CA59948e09ae2b69944b088822f568ee5e	\N	24			0	inbound	+18557088731	\N	0.996816158294677734	null	new lead		3	\N	\N	989
2017-03-09 20:24:33.883712+00	2017-11-29 18:38:53.211982+00	3364	completed				+18327203711		687	2017-03-09 20:24:33.880652	2017-03-09 20:36:00.400242	CA935a179606266f3c01efe1ac2077521b	\N	99			0	inbound	+12146922088	\N	10.5896821022033691	\N	new lead	m victor	9	\N	\N	990
2017-12-16 17:55:35.012056+00	2017-12-16 17:56:33.012031+00	7926	completed				+12145970788		58	2017-12-16 17:55:35.009443	2017-12-16 17:56:33.008658	CAb0b9a8c92bc311fe3b74648456596826	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE98b293a64a58429a27c971a3056302da	0	inbound	+18177569010	124	16.8376400470733643	\N	new lead	dallas  tx	12	\N	\N	992
2017-12-16 17:56:45.59901+00	2017-12-16 18:01:35.846857+00	7927	completed				+12145970788		289	2017-12-16 17:56:45.596984	2017-12-16 18:01:34.790601	CA7024cb4094dbb7bf5830c10f2c12e82f	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE83f2fcf16cd6ee13aca4b105f1ff5747	0	inbound	+18177569010	124	8.6305692195892334	\N	new lead	dallas  tx	12	\N	\N	992
2017-10-26 22:10:52.780477+00	2017-10-26 22:14:07.19502+00	6827	completed				+17064037733		194	2017-10-26 22:10:52.778031	2017-10-26 22:14:07.18028	CA64945aae2f190b0b8f803bb0a905fcb2	\N	154			0	inbound	+17707665699	134	3.16390013694763184	\N	new lead		13	\N	\N	871
2017-10-26 22:57:39.326804+00	2017-10-26 23:01:08.997845+00	6828	completed				+17064037733		210	2017-10-26 22:57:39.324803	2017-10-26 23:01:08.985588	CA874ebf9829899d0f563cf35017cd628c	\N	154			0	inbound	+17707665699	134	0.762029170989990234	\N	new lead		13	\N	\N	871
2017-07-11 17:05:07.459523+00	2017-07-11 17:06:27.955865+00	5760	completed				+12142988524		80	2017-07-11 17:05:07.457447	2017-07-11 17:06:27.429989	CAc1bf44f3927c31d65e2c6ea7ebc140c7	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE7e47a827f121972d6c1bb8de76177af0	0	inbound	+18177569010	124	34.2108340263366699	\N	new lead	tabitha mutua	12	\N	\N	993
2017-07-17 18:47:30.915184+00	2017-07-17 18:55:41.721993+00	5790	completed				+17703694181		491	2017-07-17 18:47:30.912248	2017-07-17 18:55:41.494223	CA14cbc568a1bd96cdbe15f66aec5665b1	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE6e87f4f252b99dde74e6e51b43ba4650	0	inbound	+17704009016	132	348.303773164749146	\N	new lead		13	\N	\N	994
2016-07-06 18:36:41.884012+00	2017-11-29 18:32:13.821367+00	778	completed	Chris	Howard		+13138085981		28	2016-07-06 18:36:41.88259	2016-07-06 18:37:09.662783	CA85152060e82369422e1c25ef96904608	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REe04bb2368121107cfff3c1b9d9856444	0	inbound	+18555983683	\N	14.6673610210418701	null	new lead		1	\N	\N	996
2016-07-06 18:37:22.529021+00	2017-11-29 18:32:13.821383+00	779	completed	Chris	Howard		+13138085981		47	2016-07-06 18:37:22.527817	2016-07-06 18:38:09.032431	CAed51dc7eb756153b9450b22a990aaf2f	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE9c3fe0a9854631b5e5cf16be288cdfed	0	inbound	+18555983683	\N	14.2144339084625244	null	new lead		1	\N	\N	996
2016-07-21 13:15:12.009901+00	2017-11-29 18:32:13.821515+00	911	completed	Chris	Howard		+13138085981		48	2016-07-21 13:15:12.008029	2016-07-21 13:15:59.85866	CAd8aae4052137acfce3e00debb12c6e38	\N	17		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE5f10f395e4ad03f682d31c2012d77ee8	0	inbound	+18555983683	\N	8.81184506416320801	null	new lead		1	\N	\N	996
2016-06-24 20:33:36.943181+00	2017-11-29 18:32:13.820426+00	456	completed	Chris	Howard		+13138085981		28	2016-06-24 20:33:36.940022	2016-06-24 20:34:05.06762	CA63ec300c03299934c238fa30e40c73b0	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REab0a3736d7b3efeef4c4b1c5b57a47e4	0	inbound	+18555983683	\N	14.5278251171112061	null	new lead		1	\N	\N	996
2016-06-27 13:57:50.355627+00	2017-11-29 18:32:13.820547+00	488	completed	Chris			+13138085981		44	2016-06-27 13:57:50.354259	2016-06-27 13:58:34.689499	CAdfc74c280055ab4d7a21cffebf0fddd7	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE2c585879702a93c95985c046eec84c5e	0	inbound	+18555983683	\N	14.3431649208068848	null	new lead		1	\N	\N	996
2016-06-24 21:21:34.48965+00	2016-06-24 21:31:41.377054+00	458	completed				+13138085981		603	2016-06-24 21:21:34.487541	2016-06-24 21:31:41.375752	CAbc7cf6ee62405968d76a235b8f2a7fe3	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.26046586036682129	{}	new lead		1	\N	\N	996
2016-06-27 15:16:27.766753+00	2016-06-27 15:18:42.789313+00	509	completed				+13138085981		130	2016-06-27 15:16:27.76584	2016-06-27 15:18:42.78815	CA4cbe1621a429ab3828df1cfa4fd05cc6	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.31088089942932129	{}	new lead		1	\N	\N	996
2016-06-27 20:57:19.503286+00	2016-06-27 20:59:13.959559+00	555	completed	Christopher	Howard	hpgame313@gmail.com	+13138085981		103	2016-06-27 20:57:19.501949	2016-06-27 20:59:13.958377	CAcf9f640bb43c01387f196923adf5c433	ee869226-e246-4ab4-aaaa-e9403e2ddd39	18		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE699a7e743535c1614d28f01bf7c614ff	1	outbound	+18555983683	\N	8.57792997360229492	{}	new lead		1	\N	\N	996
2016-06-27 20:45:31.39432+00	2016-06-27 20:57:43.68488+00	554	completed				+13138085981		728	2016-06-27 20:45:31.393421	2016-06-27 20:57:43.683801	CA7e61a162abfff2c6178c058299b86bfd	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.48624610900878906	{}	new lead		1	\N	\N	996
2016-07-01 14:01:42.151051+00	2016-07-01 14:04:24.57292+00	707	completed				+13138085981		158	2016-07-01 14:01:42.150062	2016-07-01 14:04:24.571899	CA47d014a18031df97a9ba218d089cbe3c	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	2.24896502494812012	{}	new lead		1	\N	\N	996
2016-06-24 20:39:16.009668+00	2017-11-29 18:32:13.820433+00	457	completed	Chris	Howard		+13138085981		29	2016-06-24 20:39:16.007117	2016-06-24 20:39:44.746289	CA8d79618c501fd7ea705dc2796d634b97	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE266ffea8fb666b7cd14180b94eb0474d	0	inbound	+18555983683	\N	14.875403881072998	null	new lead		1	\N	\N	996
2016-06-29 15:25:16.878184+00	2017-11-29 18:32:13.820921+00	647	completed	Unknown			+13138085981		45	2016-06-29 15:25:16.87658	2016-06-29 15:26:01.579667	CAf69180208161625bb3baf08eacfcefce	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE202965af8d094d0e03240e5d04e52cd3	0	inbound	+18555983683	\N	3.78758096694946289	null	new lead		1	\N	\N	996
2016-07-01 13:30:11.728532+00	2017-11-29 18:32:13.821166+00	701	completed	Chris	Howard		+13138085981		42	2016-07-01 13:30:11.727037	2016-07-01 13:30:53.485829	CA5e00eaee84858e7953422b01952edf4e	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE639799b0099d5a5a0028f2544e359169	0	inbound	+18555983683	\N	13.585813045501709	null	new lead		1	\N	\N	996
2016-07-06 13:03:21.970237+00	2017-11-29 18:32:13.821353+00	766	completed	Chris	Howard		+13138085981		77	2016-07-06 13:03:21.968718	2016-07-06 13:04:39.044429	CAfb997ffb3252de9ffa7a00501bd13149	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REf0abb1a6b5b372d90317b881e7a2e2ac	0	inbound	+18555983683	\N	14.5573799610137939	null	new lead		1	\N	\N	996
2016-08-23 23:20:11.969703+00	2016-12-10 01:01:51.440715+00	1689	completed				+16193468822		184	2016-08-23 23:20:11.96732	2016-08-23 23:23:15.549525	CAc3d14d58ec9b5efcfcef0785da40b313	\N	50			0	inbound	+18559693782	\N	1.96427392959594727	null	new lead		3	\N	\N	1003
2017-10-07 14:39:47.32945+00	2017-10-07 14:42:41.081272+00	6615	completed				+16823333795		173	2017-10-07 14:39:47.327197	2017-10-07 14:42:40.368088	CAae11fe01643614376a8cf3ef2cec0482	\N	155		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE40193f67744826b207df142a6ce90e98	0	inbound	+18177569010	124	8.69852399826049805	\N	new lead	baylor t	12	\N	\N	1007
2017-10-07 15:51:16.713824+00	2017-10-07 15:53:01.091588+00	6618	completed				+16823333795		104	2017-10-07 15:51:16.710777	2017-10-07 15:53:00.269809	CAe98dd65014827078900c9b63188115d4	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE7f7a534984835c9c29b8c16682d7c8d5	0	inbound	+18177569010	124	11.229680061340332	\N	new lead	baylor t	12	\N	\N	1007
2017-11-14 14:18:50.758977+00	2017-11-14 14:20:30.776807+00	7046	completed	Billy	Lewis	Billylewis1218@gmail.com	+14708088245		81	2017-11-14 14:18:50.75639	2017-11-14 14:20:30.434618	CA6b59ec65bd970074d2fca9917ee46780	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE4f11817ca61a0741b2102807d86ec360	1	outbound	+17704009016	\N	17.7800168991088867	{}	new lead		13	\N	\N	1008
2017-04-12 20:47:58.216619+00	2017-04-12 20:50:38.442768+00	3837	completed				+12142886452		160	2017-04-12 20:47:58.21303	2017-04-12 20:50:37.718734	CA15df22ed5dffc1a0675ae41936ed5879	\N	129		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE845fe09c202ac1e0fb5019e9a34fc99d	0	inbound	+18172104002	126	5.96427488327026367	\N	new lead	euless  tx	12	\N	\N	1009
2017-12-01 14:07:42.746876+00	2017-12-01 14:18:51.75889+00	7423	completed				+13046283087		666	2017-12-01 14:07:42.745137	2017-12-01 14:18:48.303566	CA4c40cdf3dbde044d9792798b9c37465c	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REfe3d6e71e9dafb47a832ba88f1120581	0	inbound	+18558645656	136	2.37041187286376953	\N	new lead		15	\N	\N	1011
2017-09-15 01:32:05.352337+00	2017-09-15 01:32:05.400974+00	6359	missed	John	Massey	Gumlog22@gmail.com	+17064365599		\N	2017-09-15 01:32:05.350846	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	2505
2017-12-12 17:11:45.78741+00	2017-12-12 17:30:27.274699+00	7816	completed				+19567841393		1118	2017-12-12 17:11:45.785216	2017-12-12 17:30:24.002752	CAe62a5436f3ea4d18e195b2071a3ac3f5	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE56a29d2216fbd4903b45b6a116df6c90	0	inbound	+18558645656	136	2.49773287773132324	\N	new lead		15	\N	\N	1015
2016-07-08 19:16:14.134283+00	2016-07-08 19:17:32.608608+00	834	completed	Kimberly A.	Thomas		+16145632262		73	2016-07-08 19:16:14.133173	2016-07-08 19:17:32.607356	CA3b3becb54724b9d2297be4f8d5ad2a50	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	1.78835797309875488	{}	new lead		1	\N	\N	1017
2016-07-08 19:06:50.269058+00	2017-11-29 18:31:41.490375+00	832	completed	Kimberly A.	Thomas		+16145632262		67	2016-07-08 19:06:50.266702	2016-07-08 19:07:57.326014	CA8ecda0f4909aca4b0748334d0de563af	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE7b0189acd2f8f2ea1a0206b5f0a66e44	0	inbound	+18552959002	\N	14.1969778537750244	null	new lead		1	\N	\N	1017
2016-06-30 18:41:53.365691+00	2016-06-30 18:43:04.031898+00	684	completed				+16145632262		65	2016-06-30 18:41:53.364484	2016-06-30 18:43:04.030675	CA5fc83d15505d860738d5ad9024b07930	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	1.83681106567382812	{}	new lead		1	\N	\N	1017
2016-06-30 16:44:55.081254+00	2017-11-29 18:31:41.490255+00	678	completed	Unknown			+16145632262		26	2016-06-30 16:44:55.078972	2016-06-30 16:45:20.969575	CA903ac4332e89dc8825acd6f794e9eae4	\N	\N			0	inbound	+18552959002	\N	14.3081839084625244	null	new lead		1	\N	\N	1017
2017-04-18 14:27:13.362678+00	2017-11-29 18:47:25.068108+00	4032	missed				+19034402969		17	2017-04-18 14:27:13.360913	2017-04-18 14:27:30.12392	CA85bb1eeec63077a4df606aff0acf3c66	\N	\N			0	inbound	+19728330116	\N	325.042530059814453	\N	new lead	cell phone   tx	8	\N	\N	1018
2017-09-21 17:54:52.552063+00	2017-09-21 17:59:09.870039+00	6418	completed				+14046707692		257	2017-09-21 17:54:52.550205	2017-09-21 17:59:09.850533	CA67638401bbd905b3f2373e7f7fab46d0	\N	150			0	inbound	+17707665732	133	8.70183706283569336	\N	new lead		13	\N	\N	1024
2016-09-19 12:14:47.628875+00	2016-12-09 17:07:45.331654+00	2038	completed				+14846789800		740	2016-09-19 12:14:47.627127	2016-09-19 12:27:07.306074	CAa7069e43b32a126b2cac233c44b5e685	\N	55			0	inbound	+18552467810	\N	2.67322492599487305	null	new lead		3	\N	\N	1025
2016-09-19 15:44:59.257658+00	2016-12-09 17:07:45.331662+00	2043	completed				+14846789800		319	2016-09-19 15:44:59.255926	2016-09-19 15:50:17.802102	CAfb7defb6d1b4f2bbae507e60115c3329	\N	55			0	inbound	+18552467810	\N	2.64313411712646484	null	new lead		3	\N	\N	1025
2017-03-13 20:42:47.58773+00	2017-11-29 18:38:53.212147+00	3408	completed				+12697438077		180	2017-03-13 20:42:47.586041	2017-03-13 20:45:47.123448	CA0f4e9594d74f9d989c64ade0b5359b33	\N	\N			0	inbound	+12146922088	\N	9.46285581588745117	\N	new lead	sweat jimmy d  	9	\N	\N	1032
2017-03-13 23:41:14.716474+00	2017-11-29 18:38:53.212161+00	3410	completed				+12697438077		30	2017-03-13 23:41:14.714266	2017-03-13 23:41:45.149776	CAa1254e47c82634b7f4b8a348094aa273	\N	105			0	inbound	+12146922088	\N	5.44956207275390625	\N	new lead	sweat jimmy d  	9	\N	\N	1032
2017-08-22 00:05:10.638117+00	2017-08-22 00:05:10.699317+00	6129	missed	Marissa	Collins	marissacollins7911@gmail.com	+17062862113		\N	2017-08-22 00:05:10.636396	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	1036
2017-03-12 18:10:41.155793+00	2017-11-29 18:47:25.0677+00	3387	missed				+12146322449		23	2017-03-12 18:10:41.153365	2017-03-12 18:11:04.466135	CA15d8b49a266f3cfa2484ecc4bc4daf68	\N	\N			0	inbound	+19728330116	\N	\N	\N	new lead	jackson alice	8	\N	\N	1038
2017-12-19 16:03:17.755598+00	2017-12-19 16:04:09.855213+00	7997	completed				+18172016124		51	2017-12-19 16:03:17.753402	2017-12-19 16:04:08.707958	CAce8197bbbf4772e4cde7fd81a0b0b556	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE4c9870ca1d30938c0f679fe8aefc1475	0	inbound	+18177569010	124	6.80168890953063965	\N	new lead	thompson bobby	12	\N	\N	1039
2017-12-19 16:21:46.692506+00	2017-12-19 16:23:21.198528+00	7998	completed				+18172016124		94	2017-12-19 16:21:46.690821	2017-12-19 16:23:20.373388	CA307e6182bba965e5938ca43ff608b854	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REe8c82a4fdc81874f6f782b5cc9af3967	0	inbound	+18177569010	124	7.36090302467346191	\N	new lead	thompson bobby	12	\N	\N	1039
2017-05-30 17:34:42.071579+00	2017-11-29 18:38:49.81404+00	5499	completed				+16822382900		72	2017-05-30 17:34:42.069072	2017-05-30 17:35:53.75202	CA5bd4ea23968b77cfea9e3b10ee162997	\N	125			0	inbound	+12147122250	\N	2.15252590179443359	\N	new lead	hng melinda    	9	\N	\N	1042
2017-05-30 17:36:30.615383+00	2017-11-29 18:38:49.814047+00	5500	completed				+16822382900		48	2017-05-30 17:36:30.614027	2017-05-30 17:37:18.422802	CA410e28716b431d2b93a0030b514b5dd1	\N	125			0	inbound	+12147122250	\N	1.31438398361206055	\N	new lead	hng melinda    	9	\N	\N	1042
2017-12-06 00:32:08.766765+00	2017-12-06 00:35:03.976644+00	7621	completed	Ismael	Velasquez	Letty6791@gmail.com	+12142065146		171	2017-12-06 00:32:08.765227	2017-12-06 00:35:03.975522	CAd3f481d4e9238b5894c2d248c2247552	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.99268198013305664	{}	new lead		15	\N	\N	1045
2017-12-23 18:05:09.015421+00	2017-12-23 18:15:55.966833+00	8088	completed				+13253723764		644	2017-12-23 18:05:09.013485	2017-12-23 18:15:52.572178	CAdf13b17b061b1fd88cd743448d47b26b	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REe542e9af6f58a622b2093e436d3837b1	0	inbound	+18558645656	136	2.8127138614654541	\N	new lead		15	\N	\N	1046
2016-10-31 19:51:04.219698+00	2016-10-31 20:22:37.39167+00	2396	completed				+19725240809		1889	2016-10-31 19:51:04.217867	2016-10-31 20:22:32.988479	CAa29045a9d16a63f072ee14083d87b9e0	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE5144c2bef861b342a8d85d1a14224152	0	inbound	+18557240606	49	1.88034796714782715	null	new lead		1	\N	\N	1047
2017-05-05 12:34:48.553463+00	2017-11-29 18:38:49.809729+00	4734	completed				+12515896361		62	2017-05-05 12:34:48.551197	2017-05-05 12:35:50.863467	CA8d138fbdaa6fb8b1be5426b12e42a703	\N	\N			0	inbound	+12147122250	\N	2.84945297241210938	\N	new lead	mobile  al	9	\N	\N	1048
2017-05-05 15:20:52.14828+00	2017-11-29 18:38:49.809804+00	4743	completed				+12515896361		343	2017-05-05 15:20:52.146126	2017-05-05 15:26:35.439999	CA5664b705c55ad4d96b5c75732c5317d7	\N	\N			0	inbound	+12147122250	\N	0.983890056610107422	\N	new lead	mobile  al	9	\N	\N	1048
2017-05-05 16:57:03.668472+00	2017-11-29 18:38:49.809974+00	4768	completed				+12515896361		874	2017-05-05 16:57:03.666645	2017-05-05 17:11:37.357801	CA79cae97387c70e37642736679d75391e	\N	\N			0	inbound	+12147122250	\N	1.2432711124420166	\N	new lead	mobile  al	9	\N	\N	1048
2017-05-05 21:37:32.432844+00	2017-11-29 18:38:49.810137+00	4793	completed				+12515896361		68	2017-05-05 21:37:32.431222	2017-05-05 21:38:40.218748	CA409f126d7d3860e14c5cce41dceadd1c	\N	127			0	inbound	+12147122250	\N	1.9602360725402832	\N	new lead	mobile  al	9	\N	\N	1048
2017-12-01 20:16:07.161151+00	2017-12-01 20:30:25.204147+00	7447	completed	Carlos	Juarez	cjuarezvcm@gmail.com	+17738183464		854	2017-12-01 20:16:07.159372	2017-12-01 20:30:25.202867	CAb7b0619d51b6d01f8067f0608f5b346f	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.83888411521911621	{}	new lead		15	\N	\N	1049
2017-09-21 19:30:14.512977+00	2017-09-21 19:52:29.446454+00	6420	missed				+16825529421		47	2017-09-21 19:30:14.511104	2017-09-21 19:31:01.398525	CA2151b5633eeab1c4cd714ec38c5e3467	\N	\N			0	inbound	+18177569010	124	1313.26203417778015	\N	new lead	dallas  tx	12	\N	\N	1057
2017-08-16 01:19:04.320125+00	2017-08-16 01:19:04.38206+00	6042	missed	Brandon	Leidecker	brandonleidecker111@gmail.com	+14049819076		\N	2017-08-16 01:19:04.318432	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	1060
2017-08-16 01:23:04.299923+00	2017-08-16 01:23:04.354831+00	6043	missed	Brandon	Leidecker	brandonleidecker111@gmail.com	+14049819076		\N	2017-08-16 01:23:04.298457	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	1060
2017-08-16 01:27:03.547731+00	2017-08-16 01:27:03.547798+00	6044	missed	Brandon	Leidecker	brandonleidecker111@gmail.com	+14049819076	Please call before 10 am or leave a message in reference to financing and I will return call after work. 404-981-9076\nThank you, \nBrandon	\N	2017-08-16 01:27:03.54505	\N		e611622e-d408-4b1f-85fa-8cba4306b7ab	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	1060
2017-12-25 17:38:36.147961+00	2017-12-25 17:39:57.529375+00	8093	completed	Jayne	Morgan	jayne.z_morgan@yahoo.com	+12103232700		78	2017-12-25 17:38:36.146424	2017-12-25 17:39:57.526656	CAfe533c61a69b2824463e05bff9e937f4	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.5275421142578125	{}	new lead		15	\N	\N	1063
2017-12-25 17:42:04.394151+00	2017-12-25 17:43:26.643404+00	8094	completed	Jayne	Morgan		+12103232700		81	2017-12-25 17:42:04.39157	2017-12-25 17:43:25.373857	CAfa31dfc6953f8ca438eae852ce8227d3	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REb0368be099c9d78317388c842b3d8b1e	0	inbound	+18558645656	136	2.19063305854797363	\N	new lead		15	\N	\N	1063
2017-10-09 18:00:51.198508+00	2017-10-09 18:01:35.64476+00	6632	completed	Michael 	Doran 	mike@shintone-usa.com	+16787276402		28	2017-10-09 18:00:51.195083	2017-10-09 18:01:35.299801	CAe5f584a862c42dbd6a45dbedbc8f221e	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE64284a1685f853452c5996b49bb3d3fd	1	outbound	+17704009016	\N	11.2310550212860107	{}	new lead		13	\N	\N	1064
2016-08-01 20:21:21.922365+00	2016-12-09 17:06:53.905751+00	1095	completed				+12676702400		121	2016-08-01 20:21:21.920822	2016-08-01 20:23:22.445496	CA3a2a77a62a4212807e69802cd890b8be	\N	21			0	inbound	+18558021330	\N	2.69514298439025879	null	new lead		3	\N	\N	1065
2017-10-30 19:47:11.62817+00	2017-10-30 19:49:46.657802+00	6873	completed				+14076940801		154	2017-10-30 19:47:11.626173	2017-10-30 19:49:45.287397	CAa9f27ae9ac1b13a41b6eeb5661445e41	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE759fbce0913110a758e1c0e14ac63580	0	inbound	+17704009016	132	14.2883951663970947	\N	new lead		13	\N	\N	1067
2017-06-16 15:29:42.069648+00	2017-06-16 15:30:17.622872+00	5588	missed				+17706522689		36	2017-06-16 15:29:42.067333	2017-06-16 15:30:17.606955	CAaec17dc3eebb49e6dc0e8a8bb374553e	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE706c429f6c2435b79dd70e201889a62d	0	inbound	+17704009016	132	\N	\N	new lead		13	\N	\N	1070
2017-06-16 15:44:27.772223+00	2017-06-16 15:44:53.828638+00	5589	missed	Lee	Cavender	NCL4@aol.com	+17706522689		\N	2017-06-16 15:44:27.770444	\N	CA881fdf7d03a8a32fc88d1cae5626b494	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	1070
2017-06-16 15:45:15.570366+00	2017-06-16 15:45:23.878189+00	5590	missed	Lee	Cavender		+17706522689		8	2017-06-16 15:45:15.568149	2017-06-16 15:45:23.857781	CAb859ed2e7926be5c2bda191272b7fa07	\N	\N			0	inbound	+17704009016	132	\N	\N	new lead		13	\N	\N	1070
2017-12-26 17:54:35.175474+00	2017-12-26 17:56:02.472813+00	8105	completed	Lee	Cavender	NCL4@aol.com	+17706522689		62	2017-12-26 17:54:35.174086	2017-12-26 17:56:02.364532	CA131aceebd9a2416c140eff34ae081a09	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE0e20ec88cb040baa6a0e7dea67df2886	1	outbound	+17704009016	\N	21.1011559963226318	{}	new lead		13	\N	\N	1070
2017-07-24 16:14:24.771933+00	2017-07-24 16:14:30.586101+00	5839	completed	Lee	Cavender		+17706522689		6	2017-07-24 16:14:24.770147	2017-07-24 16:14:30.574543	CA7750f74250abb043b4118156da55c929	\N	154			0	inbound	+17707665699	134	1.35718798637390137	\N	new lead		13	\N	\N	1070
2017-07-24 16:11:21.619577+00	2017-07-24 16:11:56.541854+00	5837	completed	Lee	Cavender		+17706522689		35	2017-07-24 16:11:21.617871	2017-07-24 16:11:56.530394	CA0413f017bad1ba702b461c6893ae4a4a	\N	153			0	inbound	+17707665732	133	11.5720438957214355	\N	new lead		13	\N	\N	1070
2017-07-24 16:12:18.725118+00	2017-07-24 16:12:24.433508+00	5838	completed	Lee	Cavender		+17706522689		6	2017-07-24 16:12:18.722861	2017-07-24 16:12:24.418621	CAb17eea983c8af5a79439ab7eedae7725	\N	154			0	inbound	+17707665699	134	1.29297995567321777	\N	new lead		13	\N	\N	1070
2017-11-14 20:53:40.608598+00	2017-11-14 20:53:57.998108+00	7053	completed	Lee	Cavender		+17706522689		17	2017-11-14 20:53:40.606192	2017-11-14 20:53:57.986946	CA1250aa5ebc5c59b6aa607b2bfb60e790	\N	154			0	inbound	+17707665699	134	1.60152792930603027	\N	new lead		13	\N	\N	1070
2017-08-02 18:19:34.552441+00	2017-08-02 18:23:10.987365+00	5916	completed				+19402553316		215	2017-08-02 18:19:34.550515	2017-08-02 18:23:09.892775	CAd181ea9e527d57394e3d9b2f239a288f	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REb58842ff5d66832603cbb7669ea8289b	0	inbound	+18177569010	124	40.8954501152038574	\N	new lead	cell phone   tx	12	\N	\N	1071
2017-08-14 23:36:31.957189+00	2017-08-14 23:36:31.957252+00	6028	missed	Andrea	Young	deeneenlrobinson@gmail.com	+17063257505	Do you still have Jeep Patriot	\N	2017-08-14 23:36:31.954497	\N		e611622e-d408-4b1f-85fa-8cba4306b7ab	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	1072
2017-09-12 14:44:46.376988+00	2017-09-12 15:02:00.207326+00	6324	completed				+18172889883		1034	2017-09-12 14:44:46.374481	2017-09-12 15:02:00.204338	CAe1fa254448597073e24700510b7d6e5c	\N	132			0	inbound	+18172104002	126	373.200933933258057	\N	new lead	moncrief inst	12	\N	\N	1073
2016-10-05 17:42:23.524427+00	2016-12-10 01:01:00.200256+00	2188	completed				+18312274313		318	2016-10-05 17:42:23.523004	2016-10-05 17:47:41.770307	CA0481417fd34c2caba483a6147f511d96	\N	57			0	inbound	+18557860909	\N	5.660552978515625	null	new lead		3	\N	\N	1078
2017-09-18 21:08:29.696198+00	2017-09-18 21:10:10.983856+00	6394	completed				+12144376279		101	2017-09-18 21:08:29.694755	2017-09-18 21:10:10.329781	CA6a2712da29a0dc06b80d4481175743c6	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REa2012b6329fd6a5733cc5ba76a502902	0	inbound	+18177569010	124	9.79577422142028809	\N	new lead	cell phone   tx	12	\N	\N	1079
2017-09-18 21:06:59.420319+00	2017-09-18 21:18:49.97503+00	6393	completed				+12144376279		711	2017-09-18 21:06:59.418574	2017-09-18 21:18:49.972297	CAa6b7719cac38af211afaa8e212906c05	\N	146			0	inbound	+18177569010	124	386.48025107383728	\N	new lead	cell phone   tx	12	\N	\N	1079
2016-11-02 22:16:02.371805+00	2016-11-02 22:33:36.687247+00	2597	completed				+19724950369		1052	2016-11-02 22:16:02.369659	2016-11-02 22:33:34.558174	CA03563a9077ad3edf92c72750f95b7c42	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE089733b5cc88a8e3936e14405957f3e7	0	inbound	+18557240606	49	1.58462095260620117	null	new lead		1	\N	\N	1082
2017-05-24 19:10:24.028905+00	2017-08-17 14:35:21.045334+00	5373	completed				+12147795399		673	2017-05-24 19:10:24.026878	2017-05-24 19:21:37.391205	CAe1e9fa08f3d7a97538eebf5a2921d050	\N	\N			0	inbound	+18177569010	124	430.703765153884888	\N	new lead	jimenez arianna	12	\N	\N	1085
2017-10-27 00:10:31.562329+00	2017-10-27 00:10:39.632739+00	6829	missed				+16789436858		8	2017-10-27 00:10:31.560644	2017-10-27 00:10:39.623885	CAc19b1e698afe84c23a4131374afa08e4	\N	\N			0	inbound	+17704009016	132	\N	\N	new lead		13	\N	\N	1088
2017-10-12 15:39:50.050047+00	2017-10-12 15:40:53.163365+00	6676	completed	ShanTerrius	McGuire	mcguireshanterrius@yahoo.com	+17063725696		53	2017-10-12 15:39:50.048496	2017-10-12 15:40:52.987382	CA5000edc32fede183bb426382050b42b9	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REc1a182d256d36b729c7ea7830130231e	1	outbound	+17704009016	\N	8.25631308555603027	{}	new lead		13	\N	\N	1089
2017-10-13 17:36:26.288358+00	2017-10-13 17:42:52.280514+00	6695	missed	ShanTerrius	McGuire		+17063725696		49	2017-10-13 17:36:26.286324	2017-10-13 17:37:15.740929	CA806b3d618c17a49b1b66405c3f9fcd75	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE62eafadd78f9af09fdd7827e2c4711ff	0	inbound	+17707665732	133	363.724225044250488	\N	new lead		13	\N	\N	1089
2017-10-13 19:13:19.218616+00	2017-10-13 19:19:42.094365+00	6699	completed	ShanTerrius	McGuire		+17063725696		383	2017-10-13 19:13:19.216667	2017-10-13 19:19:42.09208	CAb5133457410eb458bdd4caae4f6699a6	\N	150			0	inbound	+17707665732	133	342.82431697845459	\N	new lead		13	\N	\N	1089
2017-10-13 20:28:33.535528+00	2017-10-13 20:34:53.042596+00	6703	missed	ShanTerrius	McGuire		+17063725696		44	2017-10-13 20:28:33.532731	2017-10-13 20:29:17.604808	CAd466574f4d0905d256a2597680223474	\N	\N			0	inbound	+17707665732	133	357.920571088790894	\N	new lead		13	\N	\N	1089
2017-07-25 19:20:28.72143+00	2017-07-25 19:22:10.910781+00	5851	completed				+16789926729		101	2017-07-25 19:20:28.719554	2017-07-25 19:22:09.707562	CAa38f1a9d4f87f7cf2dd60aed70dc063f	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE0784921f369689df635e42939bc837dd	0	inbound	+17704009016	132	17.7962968349456787	\N	new lead		13	\N	\N	1096
2017-07-25 19:20:33.632352+00	2017-07-25 19:26:21.572388+00	5852	completed				+16789926729		347	2017-07-25 19:20:33.631314	2017-07-25 19:26:20.343018	CA55749a9874bc2b6651fd3e0f44b8dce6	\N	150			0	inbound	+17704009016	132	\N	\N	new lead		13	\N	\N	1096
2016-06-27 20:28:14.119015+00	2017-11-29 18:32:13.820653+00	549	completed	Christopher	Howard		+13138085981		46	2016-06-27 20:28:14.117594	2016-06-27 20:28:59.657208	CA65fbd54fd1ad13c70a100f0fbe9c6d96	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REb9ac25c3921311a82f5ad096313bc995	0	inbound	+18555983683	\N	13.6334900856018066	null	new lead		1	\N	\N	996
2017-08-31 23:50:43.524353+00	2017-08-31 23:50:54.834028+00	6228	missed				+17707669294		11	2017-08-31 23:50:43.522679	2017-08-31 23:50:54.823494	CA6301874573f34c9f2cbdff285b715e14	\N	\N			0	inbound	+17707665732	133	\N	\N	new lead		13	\N	\N	1001
2017-12-12 22:40:29.998809+00	2017-12-12 22:45:04.438647+00	7831	completed				+18015564278		273	2017-12-12 22:40:29.997031	2017-12-12 22:45:03.3068	CA17c1ff00795faa80bc0fa4a1400f5b5b	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE842030a318af2f03a7971914ea5d62fc	0	inbound	+18558645656	136	2.90416979789733887	\N	new lead		15	\N	\N	1097
2017-12-13 17:34:35.918445+00	2017-12-13 21:17:15.412922+00	7848	completed	Wayne	Lee	Wayne.lee2029@gmail.com	+16782660927		253	2017-12-13 17:34:35.916579	2017-12-13 17:44:34.449682	CAe876b4eee9dc76773c0cc858b3badd4f	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE98e204eae4348a1edf21e17740e96640	3	outbound	+17704009016	\N	344.837433099746704	{}	select status		13	\N	\N	1101
2016-11-01 19:17:19.828693+00	2016-11-01 19:40:25.111922+00	2492	completed				+17045884230		1382	2016-11-01 19:17:19.82648	2016-11-01 19:40:21.954501	CA0b212ee4d62dfcc934a1b5f04cd031ce	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE002c1c1e128187c56dfdfcded7258e5b	0	inbound	+18557240606	49	1.54766201972961426	null	new lead		1	\N	\N	1102
2017-12-05 23:32:43.654413+00	2017-12-05 23:54:59.950525+00	7620	completed	Michael	Hughes	corona0278@gmail.com	+13184553864		1333	2017-12-05 23:32:43.652861	2017-12-05 23:54:59.948899	CA20540ec3d0a5777bfb542e70dc935bea	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.40528607368469238	{}	new lead		15	\N	\N	1103
2016-09-29 17:07:36.247858+00	2016-12-10 01:03:35.620566+00	2105	completed				+12013640842		16	2016-09-29 17:07:36.245668	2016-09-29 17:07:52.011851	CAa353ed514d11beee2b013eac265d5d80	\N	66			0	inbound	+18557376565	\N	0.323716878890991211	null	new lead		3	\N	\N	1107
2016-07-27 16:25:06.822561+00	2016-12-10 01:05:18.400715+00	965	completed				+16102020009		93	2016-07-27 16:25:06.82012	2016-07-27 16:26:39.823363	CA53f5542cc490aa93f57fa69721aae8c7	\N	24			0	inbound	+18557088731	\N	4.27103614807128906	null	new lead		3	\N	\N	1108
2016-11-03 22:22:23.156044+00	2016-11-03 22:58:32.730067+00	2670	completed				+18163481460		2163	2016-11-03 22:22:23.155127	2016-11-03 22:58:25.840325	CAeec2fe96007d92e4b8c553f161783550	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE7e500d1e851967555922b76d52af30cd	0	inbound	+18557240606	49	2.26105213165283203	null	new lead		1	\N	\N	1113
2016-07-25 20:36:02.940926+00	2016-07-25 20:38:03.793906+00	941	completed	Scott	Shaw	sshaw4444@gmail.com	+15138249012		91	2016-07-25 20:36:02.939497	2016-07-25 20:38:03.792175	CA14e00a919364123ef9036c93856943c9	25d0200e-983d-4413-94ae-eb664b99711c	17		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REb7bd838a4cfb864e438cc99b09ab813f	1	outbound	+18556311490	\N	23.0242657661437988	{}	new lead		1	\N	\N	1114
2016-09-07 14:26:48.356748+00	2016-12-09 17:07:45.33163+00	1901	completed				+16108644539		221	2016-09-07 14:26:48.35501	2016-09-07 14:30:29.419335	CA18bedb5b6644f62d3d05d74e7af17770	\N	55			0	inbound	+18552467810	\N	1.81580090522766113	null	new lead		3	\N	\N	1115
2017-10-19 15:24:05.306568+00	2017-10-19 15:30:05.46845+00	6749	missed	Amanda	Cowart	materhaig@gmail.com	+17065997696		20	2017-10-19 15:24:05.30406	2017-10-19 15:30:05.464619	CA2f29d58fdc018b3dcf4378b32264d218	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			3	outbound	+17704009016	\N	339.58334493637085	{}	new lead		13	\N	\N	1118
2016-08-10 19:35:08.736786+00	2016-08-16 19:32:35.842617+00	1395	missed	Bermadette 	Segura	indianstar138@yahoo.com	+16615403899		\N	2016-08-10 19:35:08.73578	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - autopay		1	\N	\N	1119
2016-08-17 17:30:41.361117+00	2017-11-29 18:31:37.368968+00	1560	completed	Bermadette 	Segura		+16615403899		127	2016-08-17 17:30:41.359796	2016-08-17 17:32:48.791789	CA8a64b5c62acaa7fb9e8170eac6adcd74	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE042477c64cfaa94cf7bdd5b297b2a65c	0	inbound	+18555472453	\N	4.17731285095214844	null	application submitted - autopay		1	\N	\N	1119
2016-08-03 00:43:49.149698+00	2017-11-29 18:31:37.368526+00	1163	missed				+16615403899		26	2016-08-03 00:43:49.148102	2016-08-03 00:44:14.726745	CAe75830240601c96a87d9f3914e8e2d44	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE6d7315f48ffa028c211d86b2cf7b40ca	0	inbound	+18555472453	\N	\N	null	application submitted - autopay		1	\N	\N	1119
2016-08-03 16:50:29.575015+00	2017-11-29 18:31:37.368561+00	1176	completed				+16615403899		41	2016-08-03 16:50:29.574062	2016-08-03 16:51:10.558331		\N	\N			0	outbound	+18555472453	\N	\N	null	application submitted - autopay		1	\N	\N	1119
2017-04-17 19:52:36.635764+00	2017-11-29 18:38:49.805261+00	4002	completed				+19167989868		82	2017-04-17 19:52:36.632275	2017-04-17 19:53:58.225546	CA632b28dd84a24014acd1e49174ad7bf6	\N	127			0	inbound	+12147122250	\N	1.04366612434387207	\N	new lead	connect us     	9	\N	\N	1120
2017-04-17 19:53:58.879287+00	2017-11-29 18:38:49.805268+00	4003	completed				+19167989868		79	2017-04-17 19:53:58.876997	2017-04-17 19:55:17.93054	CA70b532ef7bc4d58470e3a52232f64819	\N	\N			0	inbound	+12147122250	\N	4.28104805946350098	\N	new lead	connect us     	9	\N	\N	1120
2017-04-18 23:36:22.921591+00	2017-11-29 18:38:53.214241+00	4077	completed				+15056929611		65	2017-04-18 23:36:22.918556	2017-04-18 23:37:28.237773	CA822c6b5d038dcfb4cdd12d590691a95e	\N	107			0	inbound	+12146922088	\N	7.4903872013092041	\N	new lead	ryals joe      	9	\N	\N	1121
2017-04-18 22:25:10.252777+00	2017-11-29 18:38:53.214226+00	4071	completed				+15056929611		289	2017-04-18 22:25:10.249772	2017-04-18 22:29:59.069759	CA8078dd38203867b6225e65ca236537c3	\N	\N			0	inbound	+12146922088	\N	3.80843901634216309	\N	new lead	ryals joe      	9	\N	\N	1121
2017-04-18 23:24:00.012389+00	2017-11-29 18:38:53.214233+00	4076	completed				+15056929611		55	2017-04-18 23:24:00.01015	2017-04-18 23:24:54.581768	CA9db2068ebe98da2b1bd9c105492c166b	\N	\N			0	inbound	+12146922088	\N	3.56162095069885254	\N	new lead	ryals joe	9	\N	\N	1121
2017-04-19 16:28:47.026267+00	2017-11-29 18:38:49.805717+00	4089	completed				+15056929611		126	2017-04-19 16:28:47.023996	2017-04-19 16:30:53.431761	CAfef3173995010d2d5e7f2b02dc4c381d	\N	\N			0	inbound	+12147122250	\N	3.94829487800598145	\N	new lead	ryals joe      	9	\N	\N	1121
2017-04-25 23:20:03.593472+00	2017-11-29 18:38:49.80671+00	4313	completed				+15056929611		98	2017-04-25 23:20:03.589623	2017-04-25 23:21:41.839361	CA990982ce71e4af1e93b0ad895e2f166c	\N	127			0	inbound	+12147122250	\N	1.10103702545166016	\N	new lead	ryals joe      	9	\N	\N	1121
2017-04-26 21:43:28.511254+00	2017-11-29 18:38:49.806816+00	4341	completed				+15056929611		90	2017-04-26 21:43:28.509352	2017-04-26 21:44:58.598673	CA88679710c1c0f836c58dbb97cd7bd3b6	\N	127			0	inbound	+12147122250	\N	1.05673122406005859	\N	new lead	ryals joe      	9	\N	\N	1121
2017-04-26 21:46:04.785219+00	2017-11-29 18:38:49.806822+00	4342	completed				+15056929611		113	2017-04-26 21:46:04.782152	2017-04-26 21:47:58.112012	CAa06e8b6e9ef6440bb7d335ef198d8fb4	\N	105			0	inbound	+12147122250	\N	3.37697792053222656	\N	new lead	ryals joe      	9	\N	\N	1121
2017-04-26 21:48:14.573564+00	2017-11-29 18:38:49.80683+00	4343	completed				+15056929611		97	2017-04-26 21:48:14.571227	2017-04-26 21:49:51.817605	CAfd48058dfc9fd300a03b00f10160ac71	\N	127			0	inbound	+12147122250	\N	0.415640115737915039	\N	new lead	ryals joe      	9	\N	\N	1121
2017-05-11 19:15:43.824919+00	2017-11-29 18:38:49.811146+00	5016	completed				+15056929611		61	2017-05-11 19:15:43.822824	2017-05-11 19:16:45.102144	CAa99be54ca7b3110fee5be08cb6c7b21a	\N	103			0	inbound	+12147122250	\N	5.80907893180847168	\N	new lead	ryals joe	9	\N	\N	1121
2017-05-11 19:16:43.078023+00	2017-11-29 18:38:49.811154+00	5017	completed				+15056929611		94	2017-05-11 19:16:43.075883	2017-05-11 19:18:17.512923	CA386886bbde3cd042324efd925712556a	\N	126			0	inbound	+12147122250	\N	1.53006315231323242	\N	new lead	ryals joe      	9	\N	\N	1121
2017-09-23 14:12:14.357573+00	2017-09-23 14:15:13.067536+00	6461	completed				+17069737574		179	2017-09-23 14:12:14.355732	2017-09-23 14:15:13.053992	CA350788d547fe8671d48b810cce4afa23	\N	152			0	inbound	+17707665732	133	11.619758129119873	\N	new lead		13	\N	\N	1122
2016-11-02 14:46:35.822491+00	2016-11-02 14:46:58.176398+00	2545	completed				+15617220347		22	2016-11-02 14:46:35.820895	2016-11-02 14:46:57.705392	CAd2ab128ff6e7b9c5b12ca046eca21fff	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE8abb76e6ae96e840a2f916c537d727ea	0	inbound	+18557240606	49	2.12530398368835449	null	new lead		1	\N	\N	1123
2016-11-02 16:43:53.469221+00	2016-11-02 16:46:58.263157+00	2568	completed				+15617220347		184	2016-11-02 16:43:53.467746	2016-11-02 16:46:57.069015	CA6f7ac2d1016f6647e7cd439182e30c65	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE3805e6a001fde0f869ba1587e6c34a3c	0	inbound	+18557240606	49	2.42881488800048828	null	new lead		1	\N	\N	1123
2016-11-02 16:56:08.746908+00	2016-11-02 16:56:08.784441+00	2569	missed	ryan	hemings	rhemings@rangeline.com	+15617220347		\N	2016-11-02 16:56:08.744976	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	1123
2017-04-17 17:48:30.10022+00	2017-11-29 18:38:53.214078+00	3996	completed				+18174496725		458	2017-04-17 17:48:30.096343	2017-04-17 17:56:08.314979	CA7e4ec28cdcc11a937a9d36f864363713	\N	\N			0	inbound	+12146922088	\N	6.89768600463867188	\N	new lead	castillo perez	9	\N	\N	1124
2017-04-11 16:28:54.19999+00	2017-05-17 15:41:07.224327+00	3787	completed				+19723414247		105	2017-04-11 16:28:54.198	2017-04-11 16:30:39.320077	CA5ae6d2909d6f9ed1b6fe3ca9cbf9124e	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE02c319c85ee361a0a19a2ff2976d9207	0	inbound	+18177569010	124	9.89302802085876465	\N	new lead	la h	12	\N	\N	1126
2017-12-13 14:38:33.27508+00	2017-12-13 14:38:57.376997+00	7838	missed				+17067661058		24	2017-12-13 14:38:33.273149	2017-12-13 14:38:57.362781	CAb663fceb44dafdf1cc6814737ee8dae1	\N	\N			0	inbound	+17706597466	137	\N	\N	new lead		14	\N	\N	1129
2017-12-13 14:39:12.459529+00	2017-12-13 14:39:36.237495+00	7839	missed				+17067661058		24	2017-12-13 14:39:12.456403	2017-12-13 14:39:36.228506	CAded1a0989f911ba8e422ff10f70a17c0	\N	\N			0	inbound	+17706597466	137	\N	\N	new lead		14	\N	\N	1129
2016-09-01 16:19:47.241713+00	2016-12-09 17:10:17.413369+00	1836	completed				+16102160263		208	2016-09-01 16:19:47.239938	2016-09-01 16:23:15.129976	CA1b09d89634b44ebd7f7e686efbf6cd25	\N	27			0	inbound	+18552716856	\N	4.80560088157653809	null	new lead		3	\N	\N	1136
2016-10-31 17:38:50.233678+00	2016-12-09 17:10:17.413642+00	2382	completed				+16102160263		92	2016-10-31 17:38:50.231982	2016-10-31 17:40:22.251047	CA6224e03550ae336e3cd498705f0f5d25	\N	27			0	inbound	+18552716856	\N	6.20071220397949219	null	new lead		3	\N	\N	1136
2016-10-31 17:40:56.820743+00	2016-12-09 17:10:17.413649+00	2384	completed				+16102160263		26	2016-10-31 17:40:56.819567	2016-10-31 17:41:22.405985	CA6c0853591ca3660677e63c5f2485e14e	\N	27			0	inbound	+18552716856	\N	6.4494318962097168	null	new lead		3	\N	\N	1136
2017-12-15 15:39:14.869488+00	2017-12-15 15:39:18.08739+00	7889	completed				+12674859836		3	2017-12-15 15:39:14.867769	2017-12-15 15:39:18.076325	CA17e906c748f75e3cfbfa821e32311565	\N	120			0	inbound	+18036184106	123	1.7902219295501709	\N	new lead		10	\N	\N	1140
2016-05-27 18:28:19.02801+00	2017-11-29 18:31:10.26055+00	264	completed	Unknown			+15133799701		26	2016-05-27 18:28:19.026717	2016-05-27 18:28:45.461759	CAafdf5db7a527f7cd1b058adef5cf1543	\N	\N			0	inbound	+18556311490	\N	14.7582800388336182	null	new lead		1	\N	\N	1143
2016-11-25 12:37:24.300926+00	2016-12-09 17:10:17.413685+00	2974	completed				+19087300430		51	2016-11-25 12:37:24.29893	2016-11-25 12:38:15.592452	CAe2e77925ccddb1b3ec403238fcff2fd7	\N	27			0	inbound	+18552716856	\N	6.38867688179016113	null	new lead		3	\N	\N	1144
2016-10-19 01:10:31.624807+00	2016-12-10 01:05:18.401189+00	2315	completed				+16106350598		25	2016-10-19 01:10:31.622866	2016-10-19 01:10:56.928144	CA5bd863f9ae98df23cc36eb0ba7e0ec07	\N	24			0	inbound	+18557088731	\N	2.5540769100189209	null	new lead		3	\N	\N	1145
2016-09-07 17:03:58.150306+00	2016-12-10 01:01:51.4408+00	1909	completed				+16198898378		22	2016-09-07 17:03:58.149194	2016-09-07 17:04:20.456263	CA4ca372e637f3265591da734c25f4870b	\N	50			0	inbound	+18559693782	\N	2.09952402114868164	null	new lead		3	\N	\N	1146
2016-09-07 17:07:16.121672+00	2016-12-10 01:01:51.440807+00	1910	completed				+16198898378		345	2016-09-07 17:07:16.120638	2016-09-07 17:13:01.053319	CAb22611071d70e4e6c467df4a124de849	\N	50			0	inbound	+18559693782	\N	2.05746603012084961	null	new lead		3	\N	\N	1146
2017-11-05 21:49:09.626113+00	2017-11-05 21:55:41.540273+00	6939	missed				+16626713554		68	2017-11-05 21:49:09.624858	2017-11-05 21:50:17.976285	CA86049bd53e8c96e64c81fc96f3c9ccba	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REfba40cdf23ac1ace57679426863aac62	0	inbound	+17707665732	133	387.910001993179321	\N	new lead		13	\N	\N	1148
2016-11-08 02:03:39.975708+00	2016-11-08 02:03:39.997873+00	2801	missed	Michael	Moller	sales@transworldexport.com	+17046496535		\N	2016-11-08 02:03:39.974554	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	new lead		1	\N	\N	1149
2016-11-12 00:10:05.837846+00	2016-11-12 00:11:45.186269+00	2873	completed				+12812352052		99	2016-11-12 00:10:05.835947	2016-11-12 00:11:44.97517	CA7305c4b7d1c0d6fdc98bd4cd1a05c242	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE77c470c1b4d449f6321a80470ebf4dc4	0	inbound	+18557240606	49	2.16486787796020508	null	new lead		1	\N	\N	1152
2017-05-02 16:21:34.347729+00	2017-11-29 18:38:49.808654+00	4576	completed				+14694585223		81	2017-05-02 16:21:34.346314	2017-05-02 16:22:54.862328	CA43f1c9e81dcb3b5dd4712bad1994deec	\N	127			0	inbound	+12147122250	\N	1.84887003898620605	\N	new lead	unavailable    	9	\N	\N	1154
2017-05-02 16:23:44.475467+00	2017-11-29 18:38:49.808665+00	4577	completed				+14694585223		49	2017-05-02 16:23:44.473197	2017-05-02 16:24:32.990214	CA5ce6cbf01590bacd802e1f4388a85c00	\N	105			0	inbound	+12147122250	\N	9.4535679817199707	\N	new lead	unavailable    	9	\N	\N	1154
2017-05-02 16:24:51.271307+00	2017-11-29 18:38:49.808677+00	4578	completed				+14694585223		71	2017-05-02 16:24:51.270102	2017-05-02 16:26:02.222697	CAb2bb41c829a88a039e86b897c10ddf2e	\N	124			0	inbound	+12147122250	\N	1.43630409240722656	\N	new lead	unavailable    	9	\N	\N	1154
2016-07-14 19:33:42.379345+00	2016-07-14 20:35:44.681478+00	872	completed	Jeremy	Bish	4bishs@gmail.com	+13302836989		0	2016-07-14 19:33:42.378033	2016-07-14 19:34:08.536051	CA667fed466dcf043581cb3bacbdabe775	ee869226-e246-4ab4-aaaa-e9403e2ddd39	\N			1	outbound	+18555983683	\N	16.9505388736724854	{}	new lead		1	\N	\N	1155
2017-09-15 02:06:09.312277+00	2017-09-15 02:06:17.25131+00	6360	missed				+17069748120		8	2017-09-15 02:06:09.309889	2017-09-15 02:06:17.237977	CA8462d686166075a452f5a75f9d5b585a	\N	\N			0	inbound	+17707665732	133	\N	\N	new lead		13	\N	\N	1156
2017-09-15 13:28:43.116599+00	2017-09-15 13:30:38.327957+00	6364	completed				+17069748120		115	2017-09-15 13:28:43.115085	2017-09-15 13:30:38.31104	CA9f5f2354958709d594aeba85fd9b8a71	\N	154			0	inbound	+17707665699	134	0.967041015625	\N	new lead		13	\N	\N	1156
2017-09-15 13:31:32.440169+00	2017-09-15 13:34:58.565099+00	6365	completed				+17069748120		206	2017-09-15 13:31:32.437469	2017-09-15 13:34:58.555591	CA8d687bb5f9886dcf18fcdb5d830bfbc3	\N	154			0	inbound	+17707665699	134	1.96549391746520996	\N	new lead		13	\N	\N	1156
2017-09-05 21:35:28.90786+00	2017-09-05 21:42:07.915521+00	6266	missed				+17069748120		67	2017-09-05 21:35:28.90456	2017-09-05 21:36:36.063564	CAd4f8255a559aaaa09b3dcbbee3bd9354	\N	\N			0	inbound	+17707665732	133	\N	\N	new lead		13	\N	\N	1156
2017-09-06 13:53:53.663153+00	2017-09-06 13:56:01.832136+00	6271	completed				+17069748120		128	2017-09-06 13:53:53.660568	2017-09-06 13:56:01.820556	CA1d30611fc732c833315ce88a0eb492e5	\N	152			0	inbound	+17707665732	133	11.9625420570373535	\N	new lead		13	\N	\N	1156
2017-09-22 02:55:38.910284+00	2017-09-22 02:55:39.509554+00	6427	missed				+17069748120		1	2017-09-22 02:55:38.908501	2017-09-22 02:55:39.50024	CA6289b0a67253af82f03ddc7f47a1b496	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	1156
2017-09-22 02:56:35.509986+00	2017-09-22 02:56:36.210945+00	6428	missed				+17069748120		1	2017-09-22 02:56:35.507808	2017-09-22 02:56:36.203033	CA9f12abda55affe86f46a996b9a6f6239	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	1156
2017-09-27 12:38:42.376138+00	2017-09-27 12:38:42.876555+00	6491	missed				+17069748120		0	2017-09-27 12:38:42.374472	2017-09-27 12:38:42.865822	CAd887e09d9665c54903ddfa0d74326f8e	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	1156
2017-10-23 13:52:52.658488+00	2017-10-23 13:53:07.210687+00	6782	completed				+17069748120		15	2017-10-23 13:52:52.656383	2017-10-23 13:53:07.200928	CA8149992ec46718bb567717681838ebf4	\N	154			0	inbound	+17707665699	134	2.76991891860961914	\N	new lead		13	\N	\N	1156
2017-10-04 20:41:11.46802+00	2017-10-04 20:41:28.701455+00	6581	completed				+17069748120		17	2017-10-04 20:41:11.466144	2017-10-04 20:41:28.685436	CA473419fce04751d596a63877936677d8	\N	154			0	inbound	+17707665699	134	1.51270699501037598	\N	new lead		13	\N	\N	1156
2017-10-04 20:42:11.259206+00	2017-10-04 20:47:36.869284+00	6583	missed				+17069748120		2	2017-10-04 20:42:11.257931	2017-10-04 20:42:13.302869	CA9510ea8220f734c7da86bd9325aa6901	\N	\N			0	inbound	+17707665732	133	308.338567972183228	\N	new lead		13	\N	\N	1156
2017-10-04 20:41:43.205755+00	2017-10-04 20:47:40.408663+00	6582	missed				+17069748120		24	2017-10-04 20:41:43.204158	2017-10-04 20:42:07.365803	CAd28721a645290d431e9da2de6b62345c	\N	\N			0	inbound	+17707665732	133	\N	\N	new lead		13	\N	\N	1156
2017-10-12 03:24:00.578443+00	2017-10-12 03:24:15.13895+00	6673	missed				+17069748120		15	2017-10-12 03:24:00.576474	2017-10-12 03:24:15.128733	CA6091dfef7760843ab108b4a6871cd937	\N	\N			0	inbound	+17707665732	133	\N	\N	new lead		13	\N	\N	1156
2017-10-12 03:30:06.597912+00	2017-10-12 03:30:14.578562+00	6674	missed				+17069748120		8	2017-10-12 03:30:06.595742	2017-10-12 03:30:14.568002	CAbecb3892e9638816682679d893bfcaf1	\N	\N			0	inbound	+17707665732	133	\N	\N	new lead		13	\N	\N	1156
2017-11-06 17:04:48.206857+00	2017-11-06 17:05:46.918428+00	6944	completed				+17069748120		59	2017-11-06 17:04:48.204573	2017-11-06 17:05:46.908623	CA3a47d6a3e0c3f91a24449556613635a4	\N	153			0	inbound	+17707665732	133	14.5469069480895996	\N	new lead		13	\N	\N	1156
2017-05-15 16:30:58.867033+00	2017-11-29 18:38:49.81153+00	5072	completed				+12149145047		111	2017-05-15 16:30:58.864857	2017-05-15 16:32:49.951779	CA49d370534269f0826e229e6a4f115c88	\N	126			0	inbound	+12147122250	\N	1.05141305923461914	\N	new lead	cooper ryan    	9	\N	\N	1157
2016-05-21 14:53:21.006214+00	2017-11-29 18:31:29.180608+00	156	completed	Unknown			+13309299967		14	2016-05-21 14:53:21.005157	2016-05-21 14:53:35.330033	CA14b7fb2ada73d0a3406e88911843b40b	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE50923528523c72489eadd87b79675a36	0	inbound	+18556311528	\N	\N	null	new lead		1	\N	\N	1158
2016-05-25 19:11:39.302794+00	2017-11-29 18:31:29.180633+00	230	completed	Unknown			+13309299967		148	2016-05-25 19:11:39.301283	2016-05-25 19:14:07.005812	CA19f1544855e1370ed72532f971ed18a6	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE0ee2ced6c4502d5281aab10580ab8e24	0	inbound	+18556311528	\N	3.65011405944824219	null	new lead		1	\N	\N	1158
2016-05-25 16:46:10.694999+00	2016-05-25 16:47:23.753915+00	211	completed				+13309299967		68	2016-05-25 16:46:10.69387	2016-05-25 16:47:23.752045	CA6715ce731aa01eb085cb43c2de403775	d74ffd1c-7b90-4327-b9bc-e1ebf9391484	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE994b0e1619b3e094a21281096c982ee7	1	outbound	+18556311528	\N	1.55556797981262207	{}	new lead		1	\N	\N	1158
2017-04-21 15:55:42.441313+00	2017-11-29 18:38:53.214369+00	4176	completed				+18178347480		45	2017-04-21 15:55:42.439416	2017-04-21 15:56:27.642653	CA64cf614591e53d21975aaeef6aa92df9	\N	\N			0	inbound	+12146922088	\N	4.01449203491210938	\N	new lead	fort worth  tx	9	\N	\N	1159
2016-09-09 16:17:43.674045+00	2016-12-10 01:01:51.440905+00	1976	completed				+18583358692		300	2016-09-09 16:17:43.671643	2016-09-09 16:22:43.913423	CA6ec39ff8eae146b3f854c2441f4c3a39	\N	50			0	inbound	+18559693782	\N	2.12945199012756348	null	new lead		3	\N	\N	1160
2017-09-22 00:04:00.958815+00	2017-09-22 00:04:01.030015+00	6423	missed	Chanlar	Baity	chanlarb@yahoo.com	+16784148409		\N	2017-09-22 00:04:00.956856	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	1161
2016-09-12 15:53:44.671417+00	2016-12-10 01:05:18.400958+00	1999	completed				+16107755321		131	2016-09-12 15:53:44.669144	2016-09-12 15:55:55.500334	CA1e4d38128aeb8a583eb8050d07c6b7c7	\N	24			0	inbound	+18557088731	\N	2.1428680419921875	null	new lead		3	\N	\N	1164
2017-12-18 23:23:28.666635+00	2017-12-18 23:29:22.439151+00	7980	missed	candy	fisk	candyafisk@gmail.com	+16789067340		0	2017-12-18 23:23:28.665197	2017-12-18 23:29:22.437796	CAffdc4a990f401719086bbaaaf29d1721	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			3	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	1165
2016-11-03 21:53:03.245848+00	2016-11-03 21:55:16.313556+00	2664	completed				+16627220733		133	2016-11-03 21:53:03.244775	2016-11-03 21:55:15.772632	CA2d015d8361fc7cbf1965fb1f741fa90a	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REcc8a6089b80e3122b3d1c5072f5a501c	0	inbound	+18557240606	49	1.67371511459350586	null	new lead		1	\N	\N	1166
2016-11-03 21:55:23.822059+00	2016-11-03 21:58:12.42721+00	2665	completed				+16627220733		168	2016-11-03 21:55:23.820261	2016-11-03 21:58:11.867163	CA4012693057e388e028b699daf0f18fdb	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE4dc7349ddb267b550697af3e5a562313	0	inbound	+18557240606	49	1.87698602676391602	null	new lead		1	\N	\N	1166
2017-11-30 23:53:30.854345+00	2017-11-30 23:54:59.332074+00	7421	completed	Danyell	Woodson	deejackson7626@gmail.com	+14702273761		76	2017-11-30 23:53:30.852254	2017-11-30 23:54:58.920427	CAe49f177fffecfd09fab0ac8a7bf57498	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE3aac985911e136773d6ab5b9c94314dc	1	outbound	+17704009016	\N	11.6393191814422607	{}	select status		13	\N	\N	1168
2017-08-31 02:22:35.667323+00	2017-08-31 02:22:35.714017+00	6212	missed	ERICA	ROBERSON	ericacarter31794@gmail.com	+16782585341		\N	2017-08-31 02:22:35.665963	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	1170
2016-11-04 17:58:28.17995+00	2016-11-04 18:45:25.7498+00	2714	completed				+13617590237		2813	2016-11-04 17:58:28.178449	2016-11-04 18:45:21.06031	CA5276c6c29c88e6ecdbea67d1d37f963f	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE07188fa5d66bda347af5204410be5a89	0	inbound	+18557240606	49	1.84758996963500977	null	new lead		1	\N	\N	1172
2017-03-08 18:52:02.005374+00	2017-11-29 18:38:53.211874+00	3345	completed				+13143228611		132	2017-03-08 18:52:02.003582	2017-03-08 18:54:13.806597	CA4bb386896c3c6e6acf159c633cde2be3	\N	\N			0	inbound	+12146922088	\N	10.4303491115570068	\N	new lead	contractors s	9	\N	\N	1176
2017-03-08 18:50:10.851455+00	2017-11-29 18:38:53.211867+00	3344	completed				+13143228611		81	2017-03-08 18:50:10.849108	2017-03-08 18:51:32.118691	CA27108cebfbae4f00e5f17d1c1e769b1d	\N	\N			0	inbound	+12146922088	\N	9.54798793792724609	\N	new lead	contractors s	9	\N	\N	1176
2017-05-25 18:36:05.376894+00	2017-08-17 14:35:21.045341+00	5408	completed				+18173683209		265	2017-05-25 18:36:05.374606	2017-05-25 18:40:30.763086	CA6dd3391e9e66749fbd7ea11d82ee2ca1	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REedaea5da822fec567d5381875dc0a840	0	inbound	+18177569010	124	8.9512171745300293	\N	new lead	wireless caller	12	\N	\N	1177
2016-11-05 20:43:08.985242+00	2016-11-05 20:43:09.010707+00	2759	missed	Yoann	Brugiere	yoann.brugiere@gmail.com	+13053014007		\N	2016-11-05 20:43:08.984264	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	1179
2016-11-05 20:28:07.784979+00	2016-11-05 20:31:31.48394+00	2757	completed				+13053014007		203	2016-11-05 20:28:07.78352	2016-11-05 20:31:30.962106	CA7cc84878bc969152d51b54b33ef79e77	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE691946fe970758465544d04fdc3d5948	0	inbound	+18557240606	49	1.910552978515625	null	new lead		1	\N	\N	1179
2016-11-05 20:31:42.136011+00	2016-11-05 20:36:19.15105+00	2758	completed				+13053014007		276	2016-11-05 20:31:42.135095	2016-11-05 20:36:18.341743	CA2f3060318a27e34eae7e2dc828640517	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REf5a95c3a6122ec375493395b465cdc82	0	inbound	+18557240606	49	2.45084714889526367	null	new lead		1	\N	\N	1179
2016-11-05 20:51:04.244892+00	2016-11-05 20:52:43.791478+00	2760	completed	Yoann	Brugiere		+13053014007		96	2016-11-05 20:51:04.243403	2016-11-05 20:52:40.503649	CA079be2db66d2b5b4f7b675dcbc667e33	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REf79058e9653651c3b0675664a6b6c906	0	inbound	+18557240606	49	1.93854093551635742	null	new lead		1	\N	\N	1179
2017-09-08 22:31:04.49579+00	2017-09-08 22:34:53.81476+00	6296	completed				+16787605962		229	2017-09-08 22:31:04.49316	2017-09-08 22:34:53.794403	CAd1f2d352e14ee30893213cdd89f11d2a	\N	154			0	inbound	+17707665699	134	1.21315813064575195	\N	new lead		13	\N	\N	1180
2017-10-06 16:02:37.233429+00	2017-10-06 16:06:14.591076+00	6598	completed				+16787605962		217	2017-10-06 16:02:37.231722	2017-10-06 16:06:14.576557	CAfed6035bcf02c90c3e3bf3193ea3920d	\N	154			0	inbound	+17707665699	134	1.04244399070739746	\N	new lead		13	\N	\N	1180
2017-10-06 19:29:55.654251+00	2017-10-06 19:32:10.68813+00	6605	completed				+16787605962		135	2017-10-06 19:29:55.651884	2017-10-06 19:32:10.674486	CA89083c62a979d95d39c128409d8bf98f	\N	154			0	inbound	+17707665699	134	1.83500885963439941	\N	new lead		13	\N	\N	1180
2017-11-02 13:37:59.94857+00	2017-11-02 13:41:01.607858+00	6899	completed				+16787605962		182	2017-11-02 13:37:59.946306	2017-11-02 13:41:01.58399	CA52427a168517072c1f3340bde0270d5a	\N	154			0	inbound	+17707665699	134	1.1470339298248291	\N	new lead		13	\N	\N	1180
2017-11-02 13:42:26.461832+00	2017-11-02 13:44:53.262059+00	6900	completed				+16787605962		147	2017-11-02 13:42:26.459774	2017-11-02 13:44:53.247722	CA451863b622f2414ad9ce002b6fb9ad7d	\N	154			0	inbound	+17707665699	134	1.1869509220123291	\N	new lead		13	\N	\N	1180
2016-11-03 03:05:53.54443+00	2016-11-03 03:05:53.58614+00	2613	missed	ROBERT	HARPER	HRJHARPER@AOL.COM	+12812425420		\N	2016-11-03 03:05:53.543029	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	1182
2017-12-13 18:10:19.059372+00	2017-12-13 18:36:13.288538+00	7849	completed				+14352104153		1551	2017-12-13 18:10:19.057377	2017-12-13 18:36:10.037607	CAfbe13b8a18216e9f81f81af55407c8c5	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE5bc99471f1b305f6f5f2b6fdfb75654b	0	inbound	+18558645656	136	2.89771604537963867	\N	new lead		15	\N	\N	1185
2017-12-20 18:04:25.13767+00	2017-12-20 18:05:15.361858+00	8031	completed				+13039313734		50	2017-12-20 18:04:25.136387	2017-12-20 18:05:14.647853	CAd2951f9328fe0c7e71b230e54118a046	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REd4a660e3d1bd39bd86fc2d4b0124c9f5	0	inbound	+18558645656	136	2.86847090721130371	\N	new lead		15	\N	\N	1186
2016-11-02 18:20:16.229715+00	2016-11-02 18:24:36.463002+00	2582	missed	Otto	Diaz	otto_diaz@yahoo.com	+18615754023		\N	2016-11-02 18:20:16.228202	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	application submitted - credit union		1	\N	\N	1189
2017-11-29 18:35:04.957355+00	2017-11-29 19:01:54.897954+00	7396	completed				+16824122921		1610	2017-11-29 18:35:04.956069	2017-11-29 19:01:54.894379	CA40c9abb43b47a2e066c7c781032ccb74	\N	146			0	inbound	+18177569010	124	1304.21100997924805	\N	new lead	griffin fred	12	\N	\N	1190
2017-11-29 19:02:44.025793+00	2017-11-29 19:05:01.867444+00	7397	completed				+16824122921		137	2017-11-29 19:02:44.023396	2017-11-29 19:05:00.784045	CA495415167fa6e728838969d436f48391	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REd65d680de1a4355855b8706777e602d3	0	inbound	+18177569010	124	10.1243240833282471	\N	new lead	griffin fred	12	\N	\N	1190
2017-11-29 23:54:35.693106+00	2017-11-29 23:56:30.090782+00	7405	completed				+16824122921		113	2017-11-29 23:54:35.689972	2017-11-29 23:56:29.129837	CA621fc5fa7d6217a153f551f8aedc504b	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE1af74e5eb59dec0e67ee7b2044bb8865	0	inbound	+18177569010	124	38.2470231056213379	\N	new lead	griffin fred	12	\N	\N	1190
2017-03-24 21:43:34.753542+00	2017-03-25 21:52:13.440911+00	3574	missed				+15047233943		125	2017-03-24 21:43:34.750908	2017-03-24 21:45:39.369703	CAa328458274852cf98423cfef75f43707	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE6f8c5705b83e94c3a5c4e76ef0ddcd90	0	inbound	+18177569010	124	86896.8909678459167	\N	new lead	hammond  la	12	\N	\N	1191
2017-03-24 21:46:12.802454+00	2017-03-25 21:52:43.37487+00	3575	missed				+15047233943		10	2017-03-24 21:46:12.801161	2017-03-24 21:46:23.103067	CAddc8b84ad4b3564407a8f7c6fac5d51c	\N	\N			0	inbound	+18177569010	124	86772.8255550861359	\N	new lead	hammond  la	12	\N	\N	1191
2016-11-05 21:31:39.389454+00	2016-11-05 21:32:07.99974+00	2761	completed				+14698266757		28	2016-11-05 21:31:39.38783	2016-11-05 21:32:07.417675	CAb827c117e00a8ff46ebf3c5b6336faf2	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REaaff0b9eb27a0bec27f3896c0895ece9	0	inbound	+18557240606	49	1.74324703216552734	null	new lead		1	\N	\N	1193
2017-11-09 04:05:52.634604+00	2017-11-09 04:08:34.23673+00	6987	missed				+16786304080		162	2017-11-09 04:05:52.63145	2017-11-09 04:08:34.225323	CA172e3203f08240a1e68d2217fb80bb08	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REc55c68faa61b1858118eee476844308e	0	inbound	+17707665732	133	\N	\N	new lead		13	\N	\N	1195
2017-11-09 04:09:35.390733+00	2017-11-09 04:09:56.875261+00	6989	missed				+16786304080		21	2017-11-09 04:09:35.388616	2017-11-09 04:09:56.864072	CA00a33e416c03e7abf7cbe35b997c881a	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REca0508c9867f87af13f252321f06d9fb	0	inbound	+17707665732	133	\N	\N	new lead		13	\N	\N	1195
2017-08-04 23:24:35.285893+00	2017-08-04 23:26:27.268476+00	5936	completed				+18177578664		111	2017-08-04 23:24:35.28356	2017-08-04 23:26:26.178762	CAd570245122f896224d246e59754884c7	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REe751daa6fd11839d6d959bf85c458238	0	inbound	+18177569010	124	17.6378648281097412	\N	new lead	burton jamar	12	\N	\N	1197
2017-03-23 16:25:39.389518+00	2017-11-29 18:38:53.212819+00	3555	completed				+12148768011		105	2017-03-23 16:25:39.38677	2017-03-23 16:27:24.249342	CAa02867da4eb7db2509e3aa843747701a	\N	\N			0	inbound	+12146922088	\N	4.99165105819702148	\N	new lead	rnel	9	\N	\N	1198
2017-05-10 21:57:57.721001+00	2017-11-29 18:38:49.811034+00	4989	completed				+12148865388		122	2017-05-10 21:57:57.719144	2017-05-10 21:59:59.266729	CA7965cf1381f17962c0d2c20e40e69995	\N	124			0	inbound	+12147122250	\N	1.34328389167785645	\N	new lead	vaughn katie   	9	\N	\N	1200
2016-11-11 02:26:30.420849+00	2016-11-11 02:26:30.449118+00	2856	missed	Pavlo	Polyakov	zeemaan@gmail.com	+19175627599		\N	2016-11-11 02:26:30.419582	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	1202
2017-02-23 14:49:32.199994+00	2017-11-29 18:32:10.40655+00	3213	missed				+14694787560		5	2017-02-23 14:49:32.197947	2017-02-23 14:49:37.579703	CA94ab939e035de73aaf4f81c48e30b8fd	\N	\N			0	inbound	+18552791533	\N	\N	\N	new lead		1	\N	\N	1205
2017-12-19 20:01:39.758463+00	2017-12-19 20:23:24.669318+00	8011	missed				+18177563609		1305	2017-12-19 20:01:39.756258	2017-12-19 20:23:24.663305	CA0abae5195876dc1d922d252df3ca372f	\N	\N			0	inbound	+18177569010	124	1277.21417689323425	\N	new lead	dallas  tx	12	\N	\N	1206
2017-07-29 19:01:46.963979+00	2017-07-29 19:02:45.513279+00	5886	completed				+12294055697		58	2017-07-29 19:01:46.962057	2017-07-29 19:02:44.756201	CA58fc7d24fc39b5f6a254f590f3b44d17	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE5cb966224e2a7ba17d132d6d01efdb67	0	inbound	+17704009016	132	10.9633388519287109	\N	new lead		13	\N	\N	1209
2016-10-05 19:46:10.933975+00	2016-12-09 17:10:17.413556+00	2198	completed				+19083879731		284	2016-10-05 19:46:10.932912	2016-10-05 19:50:55.07139	CA548415a44ed00fa28395e8356033573d	\N	27			0	inbound	+18552716856	\N	7.09226799011230469	null	new lead		3	\N	\N	1211
2017-03-23 17:45:09.219435+00	2017-11-29 18:38:53.212826+00	3556	completed				+14693360317		256	2017-03-23 17:45:09.217293	2017-03-23 17:49:24.752153	CA49c399c6dfa096fc02dfb36a12e04cc2	\N	\N			0	inbound	+12146922088	\N	5.56095480918884277	\N	new lead	morris cynthia	9	\N	\N	1212
2016-08-13 01:42:36.0017+00	2016-08-15 12:16:04.408341+00	1470	missed	David	Villegas	daviddan@att.net	+16613739408		\N	2016-08-13 01:42:36.000406	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - autopay		1	\N	\N	1213
2016-09-01 17:23:12.46662+00	2016-12-10 01:00:18.568336+00	1838	completed				+16194239453		165	2016-09-01 17:23:12.465231	2016-09-01 17:25:57.020884	CAa374541a695ecf7617bbf757f7afe43c	\N	56			0	inbound	+18556775511	\N	4.06203794479370117	null	new lead		3	\N	\N	1214
2016-10-14 23:21:40.215795+00	2016-12-10 01:00:18.568511+00	2299	completed				+16194239453		295	2016-10-14 23:21:40.21329	2016-10-14 23:26:35.551814	CAb0eea380ffad9b33ac48789a53bb801f	\N	56			0	inbound	+18556775511	\N	4.37127494812011719	null	new lead		3	\N	\N	1214
2016-10-05 15:58:11.429936+00	2017-02-11 20:02:07.779597+00	2180	completed				+19086657873		114	2016-10-05 15:58:11.42832	2016-10-05 16:00:05.915225	CA4f00b180c3726756692d5ff089d6490c	\N	\N			0	inbound	+18559763286	\N	1.68415403366088867	null	new lead		3	\N	\N	1218
2016-09-07 18:23:15.851307+00	2016-12-09 17:07:45.331647+00	1934	completed				+16103581471		309	2016-09-07 18:23:15.850048	2016-09-07 18:28:24.877967	CAbdba27ec3a2dda775c29a02488a34c2f	\N	55			0	inbound	+18552467810	\N	3.00545716285705566	null	new lead		3	\N	\N	1222
2016-11-16 01:43:09.464438+00	2016-11-16 01:43:09.495287+00	2915	missed	Paul	Delury	pauldelury57@gmail.com	+18168203950		\N	2016-11-16 01:43:09.463203	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	1228
2017-07-06 13:03:44.520097+00	2017-07-06 13:11:43.262137+00	5720	missed	Eugene 	Scott 	scott36@gmail.com	+16799089238		59	2017-07-06 13:03:44.518614	2017-07-06 13:11:43.260472	CAa58a65d3171ecc8c8ad1c25554a5a8cd	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			3	outbound	+17704009016	\N	416.512879133224487	{}	select status		13	\N	\N	1230
2016-11-01 23:32:30.391839+00	2016-11-01 23:32:30.418557+00	2522	missed	Jean-Christophe	Priser	priserjc@yahoo.fr	+18323314450		\N	2016-11-01 23:32:30.390633	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	1231
2017-04-22 23:31:05.922788+00	2017-11-29 18:38:53.214468+00	4238	completed				+18178885304		35	2017-04-22 23:31:05.918829	2017-04-22 23:31:40.603319	CA456215803e57fef0661832a818f60fe8	\N	99			0	inbound	+12146922088	\N	8.30817508697509766	\N	new lead	robbins nancy  	9	\N	\N	1237
2016-08-15 19:43:10.794557+00	2016-12-10 01:05:18.400771+00	1512	completed				+12158556790		14	2016-08-15 19:43:10.793029	2016-08-15 19:43:25.164243	CA47250cffba947044e181afe51a7d602b	\N	24			0	inbound	+18557088731	\N	1.1272580623626709	null	new lead		3	\N	\N	1238
2017-11-05 21:48:48.50598+00	2017-11-05 21:48:48.970158+00	6938	missed				+16626713554		0	2017-11-05 21:48:48.504081	2017-11-05 21:48:48.960004	CA26130ccd50e2da9247d3549ab2e3d442	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	1148
2016-10-07 18:02:00.943799+00	2016-12-10 01:05:18.401089+00	2230	completed				+16103480885		316	2016-10-07 18:02:00.942241	2016-10-07 18:07:16.872559	CAf15f9298853123bbce239ca884e1f6a4	\N	24			0	inbound	+18557088731	\N	1.40082001686096191	null	new lead		3	\N	\N	1239
2016-10-07 18:09:40.06398+00	2016-12-10 01:05:18.401103+00	2232	completed				+16103480885		140	2016-10-07 18:09:40.062783	2016-10-07 18:12:00.426238	CA5ccd027abb7162e8487d6565f6ac882c	\N	24			0	inbound	+18557088731	\N	1.2397761344909668	null	new lead		3	\N	\N	1239
2016-09-20 13:58:23.922369+00	2016-12-09 17:06:53.905949+00	2059	completed				+12157853227		213	2016-09-20 13:58:23.921328	2016-09-20 14:01:56.721896	CAb7e467d7d940a07e62979fffa225db2c	\N	21			0	inbound	+18558021330	\N	3.09703993797302246	null	new lead		3	\N	\N	1240
2016-12-01 16:57:52.515857+00	2016-12-10 01:01:00.200621+00	3014	completed				+16318979500		122	2016-12-01 16:57:52.514045	2016-12-01 16:59:54.240615	CA31352aa65f19342f35e2244c76e4a7cd	\N	57			0	inbound	+18557860909	\N	5.2465980052947998	null	new lead		3	\N	\N	1241
2017-05-22 17:20:49.83147+00	2017-08-17 14:35:21.045298+00	5285	completed				+16822521831		316	2017-05-22 17:20:49.828893	2017-05-22 17:26:06.263345	CA06f83c28d404da2c244abf88edced981	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE5814fd741e4eb12fdc36500a399f46ca	0	inbound	+18177569010	124	121.883754014968872	\N	new lead	euless  tx	12	\N	\N	1243
2016-09-19 18:26:35.363617+00	2017-11-29 18:31:37.36914+00	2050	missed				+16618780810		58	2016-09-19 18:26:35.360973	2016-09-19 18:27:32.994133	CA8d04d3d867b64776a9cc2f820625aa72	\N	\N			0	inbound	+18555472453	\N	32.7136039733886719	null	new lead		1	\N	\N	1247
2016-08-29 00:00:29.635979+00	2017-11-29 18:31:56.600168+00	1806	missed				+15702870635		64	2016-08-29 00:00:29.634297	2016-08-29 00:01:33.275173	CA951d968e70b0cdfd8369a32fc9c61d88	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE2753d60a207714887e9cdc18cd775eee	0	inbound	+18556311397	\N	\N	null	general interest		1	\N	\N	1252
2016-08-29 18:16:00.145681+00	2017-01-27 21:12:23.813806+00	1813	completed				+15702870635		70	2016-08-29 18:16:00.143827	2016-08-29 18:17:09.808425		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	1252
2017-04-13 22:11:36.013261+00	2017-11-29 18:47:25.068024+00	3897	completed				+14694759232		1127	2017-04-13 22:11:36.010712	2017-04-13 22:30:22.921587	CA1b90301af4463e04031d071e010e0bf3	\N	118		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REe4eb014db3fb745b3da75f4291676388	0	inbound	+19728330116	\N	13.0641169548034668	\N	new lead	cell phone   tx	8	\N	\N	1254
2016-11-14 20:36:14.340545+00	2016-11-14 20:56:24.804071+00	2895	completed				+13143583711		1208	2016-11-14 20:36:14.338502	2016-11-14 20:56:22.697837	CA3062566ddd67c683c79cdb1968f9c786	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE89b78754a8416da4145a3189ec14cd03	0	inbound	+18557240606	49	2.84393405914306641	null	new lead		1	\N	\N	1260
2016-11-22 21:55:02.792968+00	2016-11-22 21:59:49.647721+00	2968	completed				+13143583711		286	2016-11-22 21:55:02.790001	2016-11-22 21:59:49.218299	CA9d6b662166ecfba953afa433a37b9183	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE74a9095d0b8701dfabfe39bf920da391	0	inbound	+18557240606	49	2.51913905143737793	null	new lead		1	\N	\N	1260
2017-10-07 15:31:47.688965+00	2017-10-07 15:33:39.957248+00	6617	completed				+14703508179		111	2017-10-07 15:31:47.687182	2017-10-07 15:33:38.822554	CAb21a62b81b3a936aed104c8ec2e72be3	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE5bf2dc180f13cb4818074960a2d26a9a	0	inbound	+17704009016	132	18.6930649280548096	\N	new lead		13	\N	\N	1261
2016-06-24 16:38:28.220576+00	2017-11-29 18:32:13.820419+00	452	completed	Unknown	 		+13136876715		27	2016-06-24 16:38:28.218524	2016-06-24 16:38:55.503518	CA89b4051e434ec622c9f357503d9f03b2	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REf9462ab0344065e6fffefab82c5f1cd8	0	inbound	+18555983683	\N	14.2376940250396729	null	new lead		1	\N	\N	1265
2016-07-01 16:21:29.49263+00	2017-11-29 18:32:13.821202+00	715	completed	Marlin	Henderson		+13136876715		25	2016-07-01 16:21:29.491115	2016-07-01 16:21:54.067708	CAff585463e056f284fe00be4be680fe54	\N	\N			0	inbound	+18555983683	\N	14.0077548027038574	null	new lead		1	\N	\N	1265
2016-06-24 17:47:26.119323+00	2016-06-24 17:48:45.735835+00	455	completed				+13136876715		75	2016-06-24 17:47:26.118291	2016-06-24 17:48:45.734423	CAf8309fae2ab9b977046c89fc8b9a19c8	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.26294302940368652	{}	new lead		1	\N	\N	1265
2016-06-27 20:39:12.284056+00	2016-06-27 20:59:32.165566+00	550	completed	Marlin	Henderson	mhenderson0105@gmail.com	+13136876715		0	2016-06-27 20:39:12.282906	2016-06-27 20:39:41.26186	CA92c524616d6dc47919e643b7a2b1a346	ee869226-e246-4ab4-aaaa-e9403e2ddd39	\N			1	outbound	+18555983683	\N	14.155426025390625	{}	new lead		1	\N	\N	1265
2016-06-27 20:25:16.971782+00	2017-11-29 18:32:13.820646+00	548	completed	Unknown			+13136876715		863	2016-06-27 20:25:16.970127	2016-06-27 20:39:40.376445	CA77190ca2f5f6fb20ff674ba3237e9347	\N	18		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE662e7e0ca7e8f182ab2e51347a383665	0	inbound	+18555983683	\N	10.9589760303497314	null	new lead		1	\N	\N	1265
2016-07-01 13:46:10.962015+00	2017-11-29 18:32:13.821174+00	702	completed	Marlin	Henderson		+13136876715		44	2016-07-01 13:46:10.96052	2016-07-01 13:46:55.195333	CA0ac53ebebf08113fda5ac901a1704ca5	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE1193c18c1af2ceca58cca0e26fc4fcc9	0	inbound	+18555983683	\N	13.800692081451416	null	new lead		1	\N	\N	1265
2016-07-01 13:47:24.610976+00	2017-11-29 18:32:13.821181+00	703	completed	Marlin	Henderson		+13136876715		24	2016-07-01 13:47:24.609447	2016-07-01 13:47:48.839237	CA795ca13da5d2dd8b502a61f35ff25464	\N	\N			0	inbound	+18555983683	\N	13.6896598339080811	null	new lead		1	\N	\N	1265
2017-03-24 21:33:53.30989+00	2017-11-29 18:38:53.212909+00	3573	completed				+14095504479		58	2017-03-24 21:33:53.307718	2017-03-24 21:34:51.694992	CA35fd9ee4674a7df1738f275656d815f5	\N	105			0	inbound	+12146922088	\N	2.86185503005981445	\N	new lead	abarca pedro   	9	\N	\N	1266
2017-03-23 19:58:12.042358+00	2017-08-17 14:35:21.044901+00	3563	completed				+18174202563		154	2017-03-23 19:58:12.040826	2017-03-23 20:00:45.760401	CA3a4a527c67434dd6edda50da3b88593b	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REfb8921802b224d465480af7c0b24dd2b	0	inbound	+18177569010	124	13.7024929523468018	\N	new lead	lara esmeralda	12	\N	\N	1267
2016-08-08 21:41:26.687132+00	2016-08-08 22:03:52.029652+00	1343	missed	christine 	cora	nat_blanford@yahoo.com	+19377890213		\N	2016-08-08 21:41:26.686071	\N		25d0200e-983d-4413-94ae-eb664b99711c	\N			0	outbound	+18556311490	\N	\N	{}	application submitted - autopay		1	\N	\N	1271
2016-08-08 21:47:46.739171+00	2016-08-08 22:04:13.130176+00	1344	missed	nathaniel	blanford	nat_blanford@yahoo.com	+19377890213		\N	2016-08-08 21:47:46.738066	\N		25d0200e-983d-4413-94ae-eb664b99711c	\N			0	outbound	+18556311490	\N	\N	{}	application submitted - autopay		1	\N	\N	1271
2017-10-27 17:54:32.36881+00	2017-10-27 17:58:11.441962+00	6840	completed				+12818299732		218	2017-10-27 17:54:32.367012	2017-10-27 17:58:10.239578	CA9c0d37593bf7f8111e86f1ebc59eeff3	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE5bdd2920c5a18512c9b2de89fb020f91	0	inbound	+18557240606	49	3.53147006034851074	\N	new lead		1	\N	\N	1273
2016-08-01 18:27:57.342939+00	2017-11-29 18:31:18.808825+00	1088	completed				+19709855726		118	2016-08-01 18:27:57.34163	2016-08-01 18:29:55.257518	CA07c72bc76d06ceafc5177a72966f43ec	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REbd1ddef277f7e9aa424d2e9f5b5eb889	0	inbound	+18556311439	\N	10.613361120223999	null	new lead		1	\N	\N	1275
2016-08-10 19:47:39.941004+00	2017-01-27 21:12:23.813083+00	1396	completed				+19709855726		95	2016-08-10 19:47:39.93977	2016-08-10 19:49:15.339185		\N	\N			0	outbound	+18555343978	48	\N	null	new lead		1	\N	\N	1275
2016-07-26 13:58:35.369027+00	2017-11-29 18:31:10.261514+00	945	missed				+15133094141		56	2016-07-26 13:58:35.367414	2016-07-26 13:59:30.984112	CA312123189a86545eefcec5cf87b0da06	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE85fe7d1f3c77645310992e7f96da69f7	0	inbound	+18556311490	\N	24.0784368515014648	null	general interest		1	\N	\N	1277
2017-03-20 18:56:11.372772+00	2017-11-29 18:38:53.212664+00	3511	completed				+17082388843		31	2017-03-20 18:56:11.368837	2017-03-20 18:56:42.355136	CA9528e098daf397d187c01f5564513b95	\N	99			0	inbound	+12146922088	\N	7.5968329906463623	\N	new lead		9	\N	\N	133
2016-07-26 17:16:21.815767+00	2017-11-29 18:31:10.261605+00	950	completed	Fred	Blankenship		+15133094141		218	2016-07-26 17:16:21.812865	2016-07-26 17:19:59.788459	CA3d3eea7a026e12196216d91d3a418780	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REf3d800a6a46a398a3cd64c8768975663	0	inbound	+18556311490	\N	25.5602579116821289	null	general interest		1	\N	\N	1277
2017-10-11 20:48:58.163011+00	2017-10-11 20:50:35.030609+00	6667	completed				+14698108753		96	2017-10-11 20:48:58.160824	2017-10-11 20:50:33.929525	CA91a07f94563cbb504142749a964ead03	\N	155		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REab585a72aa9cc34586917587c44a7c20	0	inbound	+18177569010	124	17.6449229717254639	\N	new lead	templeton marsh	12	\N	\N	1278
2016-08-01 20:06:21.732689+00	2017-11-29 18:31:37.368283+00	1093	completed				+16619174979		323	2016-08-01 20:06:21.731691	2016-08-01 20:11:45.06627	CA04e7945905d1b833471d8166d726ecd5	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE944c8f244afb181dce9bbd91859b154b	0	inbound	+18555472453	\N	7.61397218704223633	null	general interest		1	\N	\N	1279
2016-08-12 21:45:48.884917+00	2017-01-27 21:12:23.813229+00	1467	completed				+16619174979		106	2016-08-12 21:45:48.883833	2016-08-12 21:47:34.796919		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	1279
2016-11-04 17:08:09.203982+00	2016-11-04 17:08:09.230699+00	2709	missed	Sabrina	Vega	sabrinav529@yahoo.com	+15512219963		\N	2016-11-04 17:08:09.202927	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	1280
2016-08-12 20:50:42.063696+00	2017-01-27 21:12:23.8132+00	1463	completed				+17863662681		300	2016-08-12 20:50:42.06193	2016-08-12 20:55:41.849393		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	1285
2016-08-12 20:50:54.750897+00	2017-01-27 21:12:23.813207+00	1464	completed				+17863662681		76	2016-08-12 20:50:54.749726	2016-08-12 20:52:10.927878		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	1285
2016-08-17 22:01:03.30086+00	2017-01-27 21:12:23.813435+00	1568	completed				+17863662681		66	2016-08-17 22:01:03.299323	2016-08-17 22:02:09.556626		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	1285
2016-08-17 22:01:12.837103+00	2017-01-27 21:12:23.813442+00	1569	completed				+17863662681		57	2016-08-17 22:01:12.836213	2016-08-17 22:02:09.516267		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	1285
2016-08-17 22:10:13.172472+00	2017-01-27 21:12:23.813449+00	1570	completed				+17863662681		64	2016-08-17 22:10:13.170951	2016-08-17 22:11:17.646551		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	1285
2016-07-26 18:26:59.553456+00	2017-11-29 18:32:13.821583+00	954	completed				+17863662681		145	2016-07-26 18:26:59.551637	2016-07-26 18:29:24.901843	CAdaa3ee8fbe012a70083d71437fe0ab54	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REf75d4699cddd0741b0522882a7ed7bcf	0	inbound	+18555983683	\N	25.2232019901275635	null	general interest		1	\N	\N	1285
2016-11-18 14:21:08.029616+00	2016-11-18 14:21:08.058004+00	2942	missed	ROBYNE	PATTERSON	rpatt85@gmail.com	+12814330585		\N	2016-11-18 14:21:08.02846	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	1286
2017-02-07 21:41:30.376206+00	2017-02-07 22:01:45.734399+00	3149	completed				+17136285127		1213	2017-02-07 21:41:30.374227	2017-02-07 22:01:43.472314	CAecce7202db21549bc7f5299cf15b1416	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE4a9761c0b7426e26ce1b30dd2ec87ee0	0	inbound	+18557240606	49	2.60510587692260742	null	new lead		1	\N	\N	1288
2017-10-22 07:27:45.959235+00	2017-10-22 07:27:46.022716+00	6779	missed	Melinda	fountain	rabundew5674@gmail.com	+17069697372		\N	2017-10-22 07:27:45.957825	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	1291
2017-10-24 14:17:58.1324+00	2017-10-24 14:18:52.278022+00	6792	completed	Melinda	Fountain	rabundew5674@gmail.com	+17069697372		45	2017-10-24 14:17:58.130813	2017-10-24 14:18:52.212984	CA7d8220ae36a617c8f15759c8ab988b8d	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE2c49669fbdd5bf8714987fbd8618a98b	1	outbound	+17704009016	\N	14.7416658401489258	{}	new lead		13	\N	\N	1291
2017-10-26 08:05:49.772811+00	2017-10-26 08:05:49.825981+00	6807	missed	nettie	canup	nettiecanup@yahoo.com	+14043042195		\N	2017-10-26 08:05:49.771206	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	1292
2017-07-09 17:26:45.657666+00	2017-07-09 17:26:45.712646+00	5740	missed	Swangla 	Butler 	babydream1949@gmail.com	+16789143289		\N	2017-07-09 17:26:45.656076	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	1294
2017-05-30 18:10:23.397943+00	2017-11-29 18:38:49.814089+00	5506	completed				+17329264186		95	2017-05-30 18:10:23.395931	2017-05-30 18:11:58.790401	CA78026c6f3bf4b747ef5f4613e246db66	\N	99			0	inbound	+12147122250	\N	4.63991498947143555	\N	new lead	unbound 35261	9	\N	\N	1295
2017-05-30 20:43:58.063234+00	2017-11-29 18:38:49.814125+00	5512	completed				+17329264186		60	2017-05-30 20:43:58.061466	2017-05-30 20:44:57.567997	CA0e5aeaceee47e9d9b25f1cd48cf2d346	\N	126			0	inbound	+12147122250	\N	1.43967986106872559	\N	new lead	unbound 35261	9	\N	\N	1295
2017-08-25 15:54:09.151271+00	2017-08-25 15:57:15.981067+00	6160	completed				+14045731853		187	2017-08-25 15:54:09.149515	2017-08-25 15:57:15.965444	CA265274f0a9849f90dd9b4f394491d7fa	\N	153			0	inbound	+17707665732	133	9.14802908897399902	\N	new lead		13	\N	\N	1300
2016-10-06 17:39:04.738733+00	2016-12-10 01:01:00.200367+00	2217	completed				+16194091596		162	2016-10-06 17:39:04.737144	2016-10-06 17:41:46.860955	CAe23d725981ace764ab195298edc65330	\N	57			0	inbound	+18557860909	\N	10.3978450298309326	null	new lead		3	\N	\N	1304
2017-07-06 17:29:01.310875+00	2017-07-06 17:32:56.007345+00	5725	completed				+16783717934		234	2017-07-06 17:29:01.309575	2017-07-06 17:32:54.851338	CA5c054bd7b8d58f3f3fc70d0242ad1ed9	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE235b48b607a423c5f0ed85f1349936d2	0	inbound	+17704009016	132	7.85173606872558594	\N	new lead		13	\N	\N	1308
2017-07-06 17:28:12.322241+00	2017-07-06 17:34:31.873397+00	5724	completed				+16783717934		380	2017-07-06 17:28:12.320229	2017-07-06 17:34:31.870961	CA8a7719d67fbcf72d5a98dd7706b80b35	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE3f9be212e891dec0b831595f619a4ef7	0	inbound	+17704009016	132	351.708289861679077	\N	new lead		13	\N	\N	1308
2016-11-03 16:50:50.01489+00	2016-11-03 16:58:29.419112+00	2639	completed				+16095774225		459	2016-11-03 16:50:50.013687	2016-11-03 16:58:29.016453	CA0e56bc993ac08b3664b223d62fbf5266	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REb93cf2d3530f0ff0f6be1834ab83d47c	0	inbound	+18557240606	49	1.94016695022583008	null	new lead		1	\N	\N	1309
2017-07-30 17:16:41.850386+00	2017-07-30 17:16:42.493231+00	5894	missed				+18176069803		1	2017-07-30 17:16:41.848624	2017-07-30 17:16:42.480691	CA60c7a899e95e1a95dcb7d51698b1b180	\N	\N			0	inbound	+18177569010	124	\N	\N	new lead	sanders dashane	12	\N	\N	1310
2017-07-29 18:09:03.358563+00	2017-07-29 18:15:29.361435+00	5881	completed				+18176069803		386	2017-07-29 18:09:03.357072	2017-07-29 18:15:29.359022	CAd328ee10f2a5f874122c297cbeab7b2c	\N	146			0	inbound	+18177569010	124	361.268893957138062	\N	new lead	sanders dashane	12	\N	\N	1310
2017-07-29 18:07:36.819715+00	2017-07-29 18:30:52.470762+00	5880	completed				+18176069803		1396	2017-07-29 18:07:36.817716	2017-07-29 18:30:52.468647	CA115e19e6db0b7d378163ff8133e79c3e	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REfa022e9e48be59300f6e27d6e8a86700	0	inbound	+18177569010	124	1354.08981585502625	\N	new lead	sanders dashane	12	\N	\N	1310
2017-09-15 02:25:28.658808+00	2017-09-15 02:25:28.71807+00	6361	missed	Searea	Peppers	searea26@gmail.com	+15017777040		\N	2017-09-15 02:25:28.65715	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	1311
2017-11-21 00:40:59.680591+00	2017-11-21 01:02:27.854162+00	7149	missed				+18179953332		17	2017-11-21 00:40:59.678596	2017-11-21 00:41:16.586204	CAef64eee05cdf5f6d01ba4b1a2998dcdd	\N	\N			0	inbound	+18177569010	124	1266.41635012626648	\N	new lead	euless  tx	12	\N	\N	1312
2017-04-27 16:32:42.589374+00	2017-11-29 18:38:49.806952+00	4366	completed				+12107635496		129	2017-04-27 16:32:42.586793	2017-04-27 16:34:51.2013	CAe11fd316ee00757ff0ec96486c5fad39	\N	\N			0	inbound	+12147122250	\N	5.9184257984161377	\N	new lead	rendon david	9	\N	\N	1315
2017-08-18 20:57:31.944154+00	2017-08-18 20:57:54.092417+00	6098	completed				+14049147800		21	2017-08-18 20:57:31.941919	2017-08-18 20:57:52.879513	CA975ab4ef4cf7b5c783f70def7f9d0123	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE48e1411d2fcb8d32d4673bb2db181b67	0	inbound	+17704009016	132	10.9048418998718262	\N	new lead		13	\N	\N	2885
2017-11-09 04:09:07.84945+00	2017-11-09 04:09:08.455473+00	6988	missed				+16786304080		1	2017-11-09 04:09:07.847745	2017-11-09 04:09:08.443073	CA27a047433a6d45438cdafdc99fe3129a	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	1195
2017-08-07 15:41:04.538958+00	2017-08-17 14:35:21.045752+00	5949	completed				+18177578664		1311	2017-08-07 15:41:04.537487	2017-08-07 16:02:55.202997	CAb82b0f65a8a1ab4c6fb092c4a7e22c38	\N	\N			0	inbound	+18177569010	124	1287.61524295806885	\N	new lead	burton jamar	12	\N	\N	1197
2017-04-15 15:26:36.451213+00	2017-11-29 18:38:49.805059+00	3955	missed				+12145348249		42	2017-04-15 15:26:36.449328	2017-04-15 15:27:18.552374	CA30b4c2d2fc0131bc256d01a09c5c7c32	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	konersmann todd	9	\N	\N	1317
2017-04-21 16:23:09.502397+00	2017-11-29 18:47:25.0682+00	4177	completed				+14697031379		16	2017-04-21 16:23:09.499804	2017-04-21 16:23:25.52813	CA187317f06bd1b976e3de7f66c42946de	\N	84			0	inbound	+19728330116	\N	4.73420906066894531	\N	new lead	haynes natasha	8	\N	\N	1319
2017-12-01 15:47:42.562455+00	2017-12-01 15:53:39.948283+00	7427	completed	Justin	Howard	Howardjustin2015@gmail.com	+17806629397		38	2017-12-01 15:47:42.56055	2017-12-01 15:48:36.330163	CA2551dfc11bc8d8cd61c5ba63918fd699	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE9718be27b81a2da549864b2a3dd8c40c	1	outbound	+17704009016	\N	22.8779709339141846	{}	select status		13	\N	\N	1320
2017-11-27 17:03:56.818358+00	2017-11-27 17:05:00.661314+00	7339	completed				+16203396852		64	2017-11-27 17:03:56.816135	2017-11-27 17:05:00.65802	CA71bc9b9ebf13ae5d76d6b0934d6475f1	\N	146			0	inbound	+18177569010	124	20.0918669700622559	\N	new lead	wichita  ks	12	\N	\N	1324
2017-11-27 17:05:32.486948+00	2017-11-27 17:16:22.753953+00	7340	completed				+16203396852		650	2017-11-27 17:05:32.485586	2017-11-27 17:16:22.751121	CAf5d92d16284438532540b11dd3844b21	\N	146			0	inbound	+18177569010	124	344.123142004013062	\N	new lead	wichita  ks	12	\N	\N	1324
2017-05-12 22:16:14.768797+00	2017-05-12 22:24:34.109744+00	5048	completed				+18179057192		496	2017-05-12 22:16:14.766074	2017-05-12 22:24:30.846708	CAb51ad4e5b33787e1554692cce4c59989	\N	129		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE6d6ee67803f674f2a5fe8b7254815a86	0	inbound	+18172104002	126	8.80712008476257324	\N	new lead	cell phone   tx	12	\N	\N	1326
2017-12-01 20:35:25.633283+00	2017-12-01 21:11:47.285921+00	7448	completed				+13522234888		2178	2017-12-01 20:35:25.63106	2017-12-01 21:11:44.046934	CA8cc03c8633796a83ecd09076c0799b4c	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REafa236652277c5c8ed3a90d1f462bcc8	0	inbound	+18558645656	136	2.39840602874755859	\N	new lead		15	\N	\N	1328
2017-06-17 17:09:04.629593+00	2017-06-17 17:09:56.35939+00	5597	completed	Brittany	Robertson	Brittnko30@gmail.com	+14044370923		38	2017-06-17 17:09:04.62787	2017-06-17 17:09:56.326257	CAf937f477be60fa037cd3aa695e2c9f3b	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE00d50266c837422ca87cdcba312f27b1	1	outbound	+17704009016	\N	12.3083899021148682	{}	new lead		13	\N	\N	1329
2017-06-17 19:40:02.495133+00	2017-06-24 13:45:04.893949+00	5599	completed	Brittany	Robertson		+14044370923		27	2017-06-17 19:40:02.493328	2017-06-17 19:40:29.141717	CA7a17e8363bff583c719a30db24114b24	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE59337c3a13e4a2f9eb44233f0c23d57b	0	inbound	+17704009016	132	12.8302438259124756	\N	new lead		13	\N	\N	1329
2016-10-20 16:35:39.857552+00	2016-12-10 01:05:18.401203+00	2326	completed				+16105390646		198	2016-10-20 16:35:39.855106	2016-10-20 16:38:57.453875	CA3c48e92c843398eb47ff86103af2080e	\N	24			0	inbound	+18557088731	\N	2.46697306632995605	null	new lead		3	\N	\N	1330
2017-07-11 16:43:46.331601+00	2017-07-11 16:44:38.058823+00	5758	completed				+17067169545		51	2017-07-11 16:43:46.329472	2017-07-11 16:44:36.855426	CA1fa0efcbd88ee0e268724916bee52816	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REa7bf904bb263ba224089917e7517cbaa	0	inbound	+17704009016	132	15.6503281593322754	\N	new lead		13	\N	\N	1332
2017-09-14 15:49:48.194558+00	2017-09-14 15:51:22.585709+00	6349	completed				+17703835744		94	2017-09-14 15:49:48.191717	2017-09-14 15:51:22.571219	CAa3f2ffa4b53f0619d7f6760eeb64a482	\N	150			0	inbound	+17707665732	133	11.124547004699707	\N	new lead		13	\N	\N	1333
2017-09-08 15:22:14.893423+00	2017-09-08 15:26:47.457922+00	6291	completed				+17703835744		273	2017-09-08 15:22:14.891078	2017-09-08 15:26:47.445944	CA1c712eafee420faa472a1b9bf8d89bcf	\N	150			0	inbound	+17707665732	133	13.8576149940490723	\N	new lead		13	\N	\N	1333
2017-09-13 15:12:11.378583+00	2017-09-13 15:16:14.902969+00	6331	completed				+17703835744		244	2017-09-13 15:12:11.37576	2017-09-13 15:16:14.891454	CAabf1735742442b76e1775dda542f6da1	\N	150			0	inbound	+17707665732	133	9.32408308982849121	\N	new lead		13	\N	\N	1333
2017-05-16 21:13:23.323871+00	2017-11-29 18:38:49.811869+00	5127	completed				+18064435190		87	2017-05-16 21:13:23.321911	2017-05-16 21:14:50.575852	CA384862aafd69e10ee1561957eb71fdb3	\N	127			0	inbound	+12147122250	\N	1.29862403869628906	\N	new lead	garcia flavio  	9	\N	\N	1335
2017-06-22 23:49:48.111389+00	2017-11-29 18:31:18.808976+00	5636	missed	Wrong	Number		+14232835000		6	2017-06-22 23:49:48.108371	2017-06-22 23:49:54.034441	CA1e3ec952c7f02159f27222544cba2b3e	\N	\N			0	inbound	+18556311439	\N	\N	\N	do not contact		1	\N	\N	1337
2017-06-15 22:24:55.424098+00	2017-11-29 18:31:18.808962+00	5586	missed				+14232835000		19	2017-06-15 22:24:55.422056	2017-06-15 22:25:14.167336	CAfee9011c8571057c8faef9510bb1eadd	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE2836334578afa41e3144e7f2c2007691	0	inbound	+18556311439	\N	\N	\N	do not contact		1	\N	\N	1337
2017-06-16 16:19:52.299803+00	2017-11-29 18:31:18.808969+00	5591	completed	Wrong	Number		+14232835000		20	2017-06-16 16:19:52.296729	2017-06-16 16:20:12.741976		\N	16			0	outbound	+18556311439	\N	\N	\N	do not contact		1	\N	\N	1337
2017-12-14 15:32:22.824971+00	2017-12-14 15:33:49.74096+00	7865	completed	Anibal	Morales	Amoe7@aol.com	+18632713819		85	2017-12-14 15:32:22.82373	2017-12-14 15:33:49.739256	CA7e6d06b02f181aa72cb5b4471ae26067	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.23973298072814941	{}	new lead		15	\N	\N	1338
2017-12-19 17:51:04.144289+00	2017-12-19 17:51:26.854299+00	8005	completed	Anibal	Morales		+18632713819		22	2017-12-19 17:51:04.142718	2017-12-19 17:51:26.084561	CAb1c89f3f603615546dbc699e804fde89	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REa86473556ae6fe87acd1fef91b203997	0	inbound	+18558645656	136	2.89245414733886719	\N	new lead		15	\N	\N	1338
2017-12-19 17:51:51.122242+00	2017-12-19 18:06:28.445797+00	8006	completed	Anibal	Morales		+18632713819		874	2017-12-19 17:51:51.120376	2017-12-19 18:06:25.222283	CAe29d4aff2ab4654b508951baa5199cdd	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE6cffed6752c5aaa5e66d3fe90c96a5a9	0	inbound	+18558645656	136	3.92351698875427246	\N	new lead		15	\N	\N	1338
2017-09-16 15:31:30.963415+00	2017-09-16 15:33:57.083073+00	6378	completed				+16822224702		145	2017-09-16 15:31:30.961682	2017-09-16 15:33:56.352914	CA6f0ceb0e5f5466464f2d3418d3157c92	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REc578f3c6741b580d0f705e6888ccde75	0	inbound	+18177569010	124	20.1979739665985107	\N	new lead	serna margie	12	\N	\N	1339
2016-07-22 15:01:42.55152+00	2017-11-29 18:31:10.2614+00	919	completed				+19372412560		19	2016-07-22 15:01:42.549486	2016-07-22 15:02:01.630113	CA4b20e4655cfb8bb229a7883cfd91b0d5	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REef485d5143a26785c1592d23741641cb	0	inbound	+18556311490	\N	2.52683711051940918	null	new lead		1	\N	\N	1342
2017-09-26 18:25:54.789459+00	2017-09-26 18:34:32.183673+00	6489	completed				+15852816635		517	2017-09-26 18:25:54.787459	2017-09-26 18:34:32.170196	CA4d9937bf77e5981aab3d859400bbb46a	\N	152			0	inbound	+17707665732	133	10.5507421493530273	\N	new lead		13	\N	\N	1257
2016-11-01 19:49:45.235014+00	2016-11-01 20:52:26.310375+00	2499	completed				+19292409327		3753	2016-11-01 19:49:45.233486	2016-11-01 20:52:18.468436	CA37704ef59368c82e5f6eccf66f2e3b6e	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE30aafbd201cae7a1eafc1bc51b51b1ef	0	inbound	+18557240606	49	1.99834418296813965	null	new lead		1	\N	\N	1344
2016-11-04 15:54:18.477283+00	2017-01-27 21:12:23.814023+00	2702	completed				+19292409327		133	2016-11-04 15:54:18.47631	2016-11-04 15:56:31.472291		\N	\N			0	outbound	+18555343978	48	\N	null	new lead		1	\N	\N	1344
2017-05-11 14:44:24.73521+00	2017-11-29 18:47:25.068453+00	5000	completed				+15739530932		398	2017-05-11 14:44:24.733247	2017-05-11 14:51:02.504419	CA589a023d271e08ad7b38047bde710b0d	\N	84		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE949f2a0f45b181b91ca1473a5117d95b	0	inbound	+19728330116	\N	8.49141216278076172	\N	new lead	wireless caller	8	\N	\N	1345
2017-05-11 17:01:52.123488+00	2017-11-29 18:47:25.068467+00	5007	completed				+15739530932		979	2017-05-11 17:01:52.121162	2017-05-11 17:18:10.790784	CA1a08037db956ec69df90d3883ea45e9d	\N	81		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE4f38697408a227fb551e0aed116b2153	0	inbound	+19728330116	\N	386.254812955856323	\N	new lead	wireless caller	8	\N	\N	1345
2017-05-11 17:59:47.142745+00	2017-11-29 18:47:25.068488+00	5011	completed				+15739530932		97	2017-05-11 17:59:47.140985	2017-05-11 18:01:23.966856	CAad33bd46daf78c1773b5f9b07373a545	\N	82		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE7841246bfa2de5f4698e98591471c155	0	inbound	+19728330116	\N	16.8405370712280273	\N	new lead	wireless caller	8	\N	\N	1345
2017-05-11 19:44:17.82061+00	2017-11-29 18:47:25.068502+00	5019	completed				+15739530932		17	2017-05-11 19:44:17.818496	2017-05-11 19:44:34.667261	CAb1066d71c87786ceabd0fc1aa342c4da	\N	82			0	inbound	+19728330116	\N	6.40315604209899902	\N	new lead	wireless caller	8	\N	\N	1345
2017-05-11 17:38:29.272571+00	2017-11-29 18:47:25.068474+00	5008	completed				+15739530932		37	2017-05-11 17:38:29.270589	2017-05-11 17:39:05.934777	CA6308f24db2d20efbef2dbf6cb5060fda	\N	84		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE788135a08774fd9dd2ee0c57aa00dc6f	0	inbound	+19728330116	\N	11.4848868846893311	\N	new lead	wireless caller	8	\N	\N	1345
2017-05-11 17:39:25.588518+00	2017-11-29 18:47:25.068481+00	5009	completed				+15739530932		70	2017-05-11 17:39:25.587301	2017-05-11 17:40:35.116068	CAc4a69d0e5ec8d1639600f07646c14ee3	\N	82		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE2ebfb254f62000742da52771dcf31590	0	inbound	+19728330116	\N	7.04999399185180664	\N	new lead	wireless caller	8	\N	\N	1345
2017-11-27 20:47:01.088588+00	2017-11-27 20:52:14.900429+00	7352	completed				+16822222716		313	2017-11-27 20:47:01.085888	2017-11-27 20:52:13.798013	CA10ff40a6d222a6ec2a7f6dfa1cdc7c35	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REf701d471b175c32b678b1119fe22ba6d	0	inbound	+18177569010	124	9.3020179271697998	\N	new lead	hicks dequan	12	\N	\N	1347
2017-12-04 23:50:30.345651+00	2017-12-05 00:04:23.716975+00	7568	completed	Nathaniel	Berkland	Nate.berkland@gmail.com	+14023806621		830	2017-12-04 23:50:30.344049	2017-12-05 00:04:23.714885	CAd805656ba017ff6892c32521b28a6e0a	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.38003087043762207	{}	new lead		15	\N	\N	1348
2016-12-05 16:26:40.132789+00	2016-12-05 16:26:40.156069+00	3041	missed	TIMOTHY	PIETRO	tjpietro@gmail.com	+16507935810		\N	2016-12-05 16:26:40.131258	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	1349
2017-08-19 19:53:10.343122+00	2017-08-19 19:54:05.231738+00	6106	completed	Lakeshia	Freeman	Davisgirl012016@gmail.com	+17065108338		37	2017-08-19 19:53:10.341215	2017-08-19 19:54:04.97816	CA5394376990483bf16b3a065f156d3935	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE7609aa38cfbf12e0a4cf6a27c96ae4b1	1	outbound	+17704009016	\N	14.5670709609985352	{}	new lead		13	\N	\N	1352
2017-11-03 18:53:48.632477+00	2017-11-03 18:54:58.708833+00	6921	completed				+14047990348		70	2017-11-03 18:53:48.629995	2017-11-03 18:54:58.698517	CA8323458621a338322249004a499434ef	\N	150			0	inbound	+17707665732	133	10.8798608779907227	\N	new lead		13	\N	\N	1353
2016-08-30 21:05:13.384275+00	2017-01-27 21:12:23.81382+00	1820	completed				+15702885115		112	2016-08-30 21:05:13.38331	2016-08-30 21:07:05.060699		\N	\N			0	outbound	+18555343978	48	\N	null	do not contact		1	\N	\N	1356
2016-08-30 20:59:15.21373+00	2017-11-29 18:31:56.600175+00	1819	missed				+15702885115		49	2016-08-30 20:59:15.211969	2016-08-30 21:00:04.378805	CA83ea77b9d57ed844db7ed50f770f5575	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REd23b765c1fbd645c857561ef48a256fc	0	inbound	+18556311397	\N	1.80512499809265137	null	do not contact		1	\N	\N	1356
2017-07-05 15:53:50.993439+00	2017-11-29 18:31:56.600436+00	5714	missed				+15702885115		37	2017-07-05 15:53:50.989935	2017-07-05 15:54:27.627548	CA0dbd287b8f3216bc42310e68bc0aa654	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE70a8f02e82e9d80b74ab105b35df531d	0	inbound	+18556311397	\N	\N	\N	do not contact		1	\N	\N	1356
2017-07-05 16:12:08.283578+00	2017-11-29 18:31:56.600443+00	5715	completed				+15702885115		38	2017-07-05 16:12:08.280649	2017-07-05 16:12:46.287541		\N	16			0	outbound	+18556311397	\N	\N	\N	do not contact		1	\N	\N	1356
2017-12-01 18:09:25.113457+00	2017-12-01 18:09:37.063152+00	7437	completed				+18035462731		11	2017-12-01 18:09:25.11134	2017-12-01 18:09:35.807158	CAd120eb51a09be19819c6ddd2c5e376cf	\N	157		https://api.twilio.com/2010-04-01/Accounts/ACbd7756819f4882feb347788ad7959655/Recordings/RE17769c80cf48ef5690bdc9355b882ea0	0	inbound	+17706597466	137	7.30665898323059082	\N	new lead		14	\N	\N	1357
2017-09-11 21:38:54.632324+00	2017-09-11 21:40:06.145974+00	6318	completed				+18173339190		70	2017-09-11 21:38:54.629465	2017-09-11 21:40:05.040882	CA3deb11268abfeca4cacb55dba04cfd6d	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE8839c6983d63d1575d9e3a7d894538c2	0	inbound	+18177569010	124	6.52837395668029785	\N	new lead	mills tommy	12	\N	\N	1358
2017-09-11 21:43:12.771521+00	2017-09-11 21:44:31.220543+00	6319	completed				+18173339190		77	2017-09-11 21:43:12.767682	2017-09-11 21:44:30.123582	CAb5caa05033663ed48ae7d28bc461f735	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE263a7c9991e534a3cfda8e35e4bbfec7	0	inbound	+18177569010	124	6.84594416618347168	\N	new lead	mills tommy	12	\N	\N	1358
2017-09-14 19:24:15.355402+00	2017-09-14 19:25:53.017043+00	6354	completed				+18173339190		97	2017-09-14 19:24:15.353589	2017-09-14 19:25:52.148419	CA90c551923a63079fc52a051fcf46bb95	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REea3bdc36dc3fdef524f4f40cf3015661	0	inbound	+18177569010	124	7.95766615867614746	\N	new lead	mills tommy	12	\N	\N	1358
2017-08-10 21:46:51.627012+00	2017-08-10 22:08:35.499829+00	5985	missed				+18173339190		1	2017-08-10 21:46:51.625148	2017-08-10 21:46:52.942641	CA4e225f1b5d83a0b257e78e1cfb5d414d	\N	\N			0	inbound	+18177569010	124	1272.5133969783783	\N	new lead	mills tommy	12	\N	\N	1358
2017-08-11 14:14:35.130731+00	2017-08-11 14:16:12.109168+00	5988	completed				+18173339190		94	2017-08-11 14:14:35.127149	2017-08-11 14:16:08.825402	CA0242b93a2fcdb3b2826e4598f5e7a14b	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE81b9edfe148de8bd2c565cc0b756d4df	0	inbound	+18177569010	124	10.3056490421295166	\N	new lead	mills tommy	12	\N	\N	1358
2017-09-29 14:21:59.783862+00	2017-09-29 14:22:37.620702+00	6525	completed				+18173339190		37	2017-09-29 14:21:59.781751	2017-09-29 14:22:37.03903	CA29014acb4d04cf7ecaeb6befc09d8009	\N	155		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE40c389872141b03741afba09fbe4d4cc	0	inbound	+18177569010	124	18.0715131759643555	\N	new lead	mills tommy	12	\N	\N	1358
2017-09-29 15:09:39.666163+00	2017-09-29 15:32:45.273698+00	6527	missed				+18173339190		55	2017-09-29 15:09:39.664105	2017-09-29 15:10:34.220075	CA585a7035181ecad0bb2c93dceae9ad65	\N	\N			0	inbound	+18177569010	124	1368.99254202842712	\N	new lead	mills tommy	12	\N	\N	1358
2017-09-20 17:23:00.149+00	2017-11-22 16:25:24.949697+00	6404	completed				+17702978700		74	2017-09-20 17:23:00.147192	2017-09-20 17:24:14.504116	CA04bb50f3a3ad15d547468ebc88d6737c	\N	154			0	inbound	+17707665699	134	1.31900715827941895	\N	select status		13	\N	\N	656
2017-09-19 14:44:00.738014+00	2017-12-09 22:21:54.183582+00	6399	completed				+17707497720		388	2017-09-19 14:44:00.734589	2017-09-19 14:50:28.543285	CA08f333ca62876ce658a49f8cafad8346	\N	150			0	inbound	+17707665732	133	325.401963949203491	\N	select status		13	\N	\N	1044
2017-11-21 17:49:00.829492+00	2017-11-27 20:02:15.439405+00	7161	completed	Kizzy	Dukes	Kflem3311@gmail.com	+16787916228		40	2017-11-21 17:49:00.82762	2017-11-21 17:55:20.87497	CAeef83441635f4baa2ebadf2c521fccb5	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE97bdef02b1753eccfabc4713be12fd04	3	outbound	+17704009016	\N	336.525530815124512	{}	select status		13	\N	\N	3215
2017-09-11 21:44:36.514027+00	2017-09-11 21:51:27.470191+00	6320	completed				+18173339190		411	2017-09-11 21:44:36.512358	2017-09-11 21:51:27.466151	CAd91be5ba4c296a5ae3ccfbca86e894bb	\N	146			0	inbound	+18177569010	124	327.785706996917725	\N	new lead	mills tommy	12	\N	\N	1358
2016-11-07 12:02:42.173801+00	2016-12-10 00:55:45.165491+00	2783	completed				+16103822700		137	2016-11-07 12:02:42.172831	2016-11-07 12:04:59.329213	CAdead41f6161432f5e26407ee2e7529a4	\N	24			0	inbound	+18557129406	\N	1.94194889068603516	null	new lead		3	\N	\N	1360
2016-11-07 12:05:21.128788+00	2016-12-10 00:55:45.165498+00	2784	completed				+16103822700		547	2016-11-07 12:05:21.127697	2016-11-07 12:14:27.630297	CA59fe22591f5e8983a4dc3779f1920508	\N	24			0	inbound	+18557129406	\N	1.73991203308105469	null	new lead		3	\N	\N	1360
2016-11-07 11:59:44.021806+00	2016-12-10 00:55:45.165484+00	2782	completed				+16103822700		36	2016-11-07 11:59:44.019655	2016-11-07 12:00:20.197688	CAa9093d2eccb9a9f971e89e4e216d3b63	\N	24			0	inbound	+18557129406	\N	1.57012701034545898	null	new lead		3	\N	\N	1360
2016-06-03 17:07:00.507614+00	2016-06-03 17:08:31.24414+00	370	completed				+15126860800		87	2016-06-03 17:07:00.506583	2016-06-03 17:08:31.242666	CA2e4287d53d53cfada1d1fdff5c203253	cd89e433-4bde-4f86-9b22-8f52c2413fcd	16			1	outbound	+18556311490	\N	1.38244795799255371	{}	new lead		1	\N	\N	1364
2016-12-06 00:20:13.551778+00	2016-12-06 00:20:32.890507+00	3047	completed				+15126860800		19	2016-12-06 00:20:13.550193	2016-12-06 00:20:32.422837	CAb0983ed2f64af57f075e9b8e1adf649d	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REd4df7792c1e1458bfd02b702d2b443cd	0	inbound	+18557240606	49	1.90423798561096191	null	new lead		1	\N	\N	1364
2016-10-23 20:04:22.032959+00	2016-12-10 01:02:30.610649+00	2340	completed				+12039993233		15	2016-10-23 20:04:22.031623	2016-10-23 20:04:36.579043	CA573ec54516548e65150d5e5ea69e3872	\N	75			0	inbound	+18555208916	\N	4.40205979347229004	null	new lead		3	\N	\N	1365
2017-12-29 17:40:45.358657+00	2017-12-29 17:45:13.346714+00	8153	completed	Chris	Holtzclaw	Cooperholtz669@gmail.com	+17706161426		75	2017-12-29 17:40:45.356986	2017-12-29 17:42:14.612254	CAeedb96db70ea11dc7f066d05a2e367cc	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REf314c47b8252c39054561b1953e58fd0	1	outbound	+17704009016	\N	10.7592430114746094	{}	select status		13	\N	\N	1367
2017-04-17 19:00:26.595139+00	2017-11-29 18:38:49.805246+00	3998	completed				+19728243658		71	2017-04-17 19:00:26.591781	2017-04-17 19:01:37.67376	CAf96e833645caff73b68f20101beae181	\N	127			0	inbound	+12147122250	\N	1.28789520263671875	\N	new lead	picco matthew  	9	\N	\N	1369
2017-04-17 19:01:34.449065+00	2017-11-29 18:38:49.805254+00	3999	completed				+19728243658		78	2017-04-17 19:01:34.446992	2017-04-17 19:02:52.717243	CA96419a8251c7d0827520ecfccd763d53	\N	\N			0	inbound	+12147122250	\N	8.83015990257263184	\N	new lead	picco matthew  	9	\N	\N	1369
2017-08-17 18:18:29.445456+00	2017-08-17 18:25:25.721849+00	6072	completed				+14047817218		416	2017-08-17 18:18:29.442538	2017-08-17 18:25:25.700407	CA8310f76efd7e565381cb3db0444dda7b	\N	154			0	inbound	+17707665699	134	0.735169172286987305	\N	new lead		13	\N	\N	1373
2016-08-24 14:30:24.140603+00	2016-12-09 17:07:45.331524+00	1699	completed				+18035462731		17	2016-08-24 14:30:24.139302	2016-08-24 14:30:40.98364	CA1655384b69eaa0084e4b80b22e4e1c1c	\N	55			0	inbound	+18552467810	\N	4.41059207916259766	null	new lead		3	\N	\N	1376
2016-07-27 13:18:55.18285+00	2016-12-20 22:16:06.426436+00	962	completed				+18035462731		38	2016-07-27 13:18:55.181308	2016-07-27 13:19:33.405771	CAcc744dfbf853a3ff76aa1d756e9b1b22	\N	12			0	inbound	+18557343030	\N	23.3539800643920898	null	new lead		3	\N	\N	1376
2016-08-11 16:43:27.898511+00	2016-12-20 22:16:06.426487+00	1417	missed				+18035462731		54	2016-08-11 16:43:27.897096	2016-08-11 16:44:21.748696	CA62189f7070c8bb18e6cd6b2693dce31e	\N	\N		https://api.twilio.com/2010-04-01/Accounts/AC0c010b259762ed5fecf508ef97abf3c6/Recordings/REfaa09cbafa4a19431124742eadb40ba8	0	inbound	+18557343030	\N	\N	null	new lead		3	\N	\N	1376
2016-08-11 20:38:16.138824+00	2016-12-20 22:16:06.426502+00	1427	completed				+18035462731		44	2016-08-11 20:38:16.137167	2016-08-11 20:39:00.458989	CAbc60fd879f4aebad8f77682493f79cc4	\N	12		https://api.twilio.com/2010-04-01/Accounts/AC0c010b259762ed5fecf508ef97abf3c6/Recordings/REefd5e2a2719158352255f49a95834c46	0	inbound	+18557343030	\N	11.3558681011199951	null	new lead		3	\N	\N	1376
2017-04-28 21:09:10.501393+00	2017-11-29 18:38:49.807371+00	4451	completed				+17146715700		107	2017-04-28 21:09:10.49973	2017-04-28 21:10:57.585414	CA5c0bd9a8c060271cd4c95dc409781ebf	\N	126			0	inbound	+12147122250	\N	1.34779000282287598	\N	new lead	evangelical christian cu	9	\N	\N	1377
2017-04-28 21:17:04.843001+00	2017-11-29 18:38:49.807378+00	4452	completed				+17146715700		71	2017-04-28 21:17:04.840995	2017-04-28 21:18:16.094297	CA061311dd4150bc233d2cf96d1612f7ec	\N	124			0	inbound	+12147122250	\N	1.12182283401489258	\N	new lead	eccu           	9	\N	\N	1377
2016-11-02 00:19:23.772335+00	2016-11-02 00:19:23.797933+00	2531	missed	Madel	Gamboa	Jerry3153@outlook.com	+15203090275		\N	2016-11-02 00:19:23.771301	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	1378
2016-05-29 01:23:16.178106+00	2017-11-29 18:31:05.368852+00	275	completed	Unknown			+16159189673		315	2016-05-29 01:23:16.175516	2016-05-29 01:28:30.816608	CA495e689b9e2149e2c7f7490f49e9128c	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE830c9be8dc304e8e81533eac16bc1962	0	inbound	+18557824539	\N	\N	null	new lead		1	\N	\N	1379
2017-11-07 17:41:08.895143+00	2017-11-07 17:45:07.354859+00	6961	completed	Elaine	Alford	ethanmama615@gmail.com	+19125067949		221	2017-11-07 17:41:08.893519	2017-11-07 17:45:06.890527	CA27db9347b2bbef288f81b5380935874c	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REdbce0c3679f053bd746f5ffe1ffcc558	1	outbound	+17704009016	\N	15.5544061660766602	{}	new lead		13	\N	\N	1382
2017-11-07 18:19:02.888917+00	2017-11-07 18:20:10.394098+00	6962	completed	Elaine	Alford		+19125067949		66	2017-11-07 18:19:02.886508	2017-11-07 18:20:09.139917	CA209715941cff772398a24a95b8883761	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REc8472b5415c0b3c1aadb06d9b005e2a4	0	inbound	+17704009016	132	13.4076330661773682	\N	new lead		13	\N	\N	1382
2017-11-08 17:32:39.976968+00	2017-11-08 17:33:59.628193+00	6973	completed	Elaine	Alford	ethanmama615@gmail.com	+19125067949		80	2017-11-08 17:32:39.97493	2017-11-08 17:33:59.624858		\N	152			0	outbound	+17704009016	132	\N	\N	new lead		13	\N	\N	1382
2016-11-29 16:36:50.820076+00	2016-12-09 17:11:00.853716+00	2997	completed				+19086381178		261	2016-11-29 16:36:50.818181	2016-11-29 16:41:12.125518	CAe810e8af3a6f87201d9903b719488719	\N	72			0	inbound	+18555727686	\N	1.42119002342224121	null	new lead		3	\N	\N	1383
2016-05-25 19:51:01.134972+00	2016-05-25 19:52:39.718817+00	232	completed				+16619426185		93	2016-05-25 19:51:01.133391	2016-05-25 19:52:39.71766	CA78310aa2a402564812b701ac9e2264fa	8f30d55b-8601-40b9-9d7f-11bfe29c5449	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REe43e881e28838e73ee3084f79ebb352b	1	outbound	+18555472453	\N	1.93624186515808105	{}	new lead		1	\N	\N	1384
2017-04-21 16:23:52.532969+00	2017-11-29 18:47:25.068207+00	4178	completed				+14697031379		350	2017-04-21 16:23:52.531676	2017-04-21 16:29:42.102333	CA59e7c74f093817add9f4823f5f0ce2b2	\N	84			0	inbound	+19728330116	\N	324.39123010635376	\N	new lead	haynes natasha	8	\N	\N	1319
2016-05-25 19:21:41.685925+00	2016-05-25 19:53:38.440064+00	231	completed	john	metcalfe	sandrametcalfe@yahoo.com	+16619426185		0	2016-05-25 19:21:41.684493	2016-05-25 19:22:12.107749	CAa015e78931cc7b4d7334c108330531fb	99186475-9344-4e80-b3b1-0ed2e7856585	\N			1	outbound	+18555472453	\N	14.8660609722137451	{}	new lead		1	\N	\N	1384
2017-08-06 01:17:58.639446+00	2017-08-06 01:40:38.122352+00	5945	missed				+14696717072		59	2017-08-06 01:17:58.636395	2017-08-06 01:18:57.36235	CA937a49940d2a2275cd040510497da04f	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE16da3a449dd7e73c280eaec892b68798	0	inbound	+18177569010	124	1338.17367601394653	\N	new lead	zamora victoria	12	\N	\N	1388
2017-12-09 19:59:59.458925+00	2017-12-09 20:19:05.67758+00	7751	completed				+12104270471		1143	2017-12-09 19:59:59.457086	2017-12-09 20:19:02.312031	CA566e4909ffbe038f1de5a04ef1a3309a	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REdbcbfbaa2af70354d11613fa5068ac3c	0	inbound	+18558645656	136	2.1317908763885498	\N	new lead		15	\N	\N	1390
2017-12-09 21:54:55.672454+00	2017-12-09 21:55:50.195918+00	7754	completed				+12104270471		53	2017-12-09 21:54:55.670862	2017-12-09 21:55:49.0071	CAe1e50d9e88b80d1b7e215fbe7bfd1bc3	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REc7aace1eeb41f842da0da2fee087da94	0	inbound	+18558645656	136	2.10292696952819824	\N	new lead		15	\N	\N	1390
2016-06-28 15:53:37.857458+00	2017-11-29 18:32:13.820724+00	588	completed	Unknown			+13307935571		23	2016-06-28 15:53:37.855545	2016-06-28 15:54:01.156641	CA2ff4ce058b5fad275d0b0d8d9dc66532	\N	\N			0	inbound	+18555983683	\N	14.6940560340881348	null	new lead		1	\N	\N	1391
2016-06-28 17:11:41.783887+00	2016-06-28 17:12:08.854191+00	596	completed				+13307935571		22	2016-06-28 17:11:41.78133	2016-06-28 17:12:08.853048	CA59b84222184ed49294277ee2863d44d6	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.66151690483093262	{}	new lead		1	\N	\N	1391
2016-06-28 17:11:51.740512+00	2016-06-28 17:12:15.05295+00	597	completed				+13307935571		18	2016-06-28 17:11:51.739178	2016-06-28 17:12:15.052	CA59e19163dd0ee1f4dc06eae5b7e2503d	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.82308101654052734	{}	new lead		1	\N	\N	1391
2016-06-28 16:10:45.94915+00	2017-11-29 18:32:13.820751+00	590	completed	Unknown			+13307935571		22	2016-06-28 16:10:45.948052	2016-06-28 16:11:08.192312	CA64d72db5ffbe74fb99bb8df87c89445b	\N	\N			0	inbound	+18555983683	\N	14.6039459705352783	null	new lead		1	\N	\N	1391
2016-07-07 23:28:16.435971+00	2016-12-10 01:05:18.400644+00	823	completed				+16103271227		38	2016-07-07 23:28:16.43401	2016-07-07 23:28:54.279917	CAa93ba35f46f7c4e780fca24c043ce542	\N	24			0	inbound	+18557088731	\N	2.00610709190368652	null	new lead		3	\N	\N	1395
2016-09-07 21:39:56.61743+00	2016-12-10 00:57:48.461725+00	1952	completed				+18054985313		517	2016-09-07 21:39:56.615967	2016-09-07 21:48:33.573091	CA35b6751b6a2e5fc8650da50b487f5809	\N	30			0	inbound	+18559652184	\N	1.51864004135131836	null	new lead		3	\N	\N	1397
2016-07-24 16:48:56.475109+00	2016-07-25 12:16:10.958055+00	927	completed	William	Johnson	dawgpound01@gmail.com	+15134037919		\N	2016-07-24 16:48:56.47384	\N		25d0200e-983d-4413-94ae-eb664b99711c	\N			0	outbound	+18556311490	\N	\N	{}	new lead		1	\N	\N	1399
2016-11-01 16:58:54.60424+00	2016-11-01 17:01:56.624275+00	2478	completed				+16784730276		181	2016-11-01 16:58:54.602359	2016-11-01 17:01:55.824006	CA74d71341f347ceee2ace35b9d7528e52	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE98945597330d141b98b1832c97f33aa2	0	inbound	+18557240606	49	2.00210309028625488	null	new lead		1	\N	\N	1400
2017-11-02 19:06:20.409808+00	2017-11-02 19:07:54.486405+00	6907	completed				+17069883663		94	2017-11-02 19:06:20.406734	2017-11-02 19:07:54.474417	CA2527d4351819f4a995b5cd5c5b1ea08b	\N	154			0	inbound	+17707665699	134	1.73944997787475586	\N	new lead		13	\N	\N	1401
2017-05-22 16:07:19.611828+00	2017-11-29 18:38:49.812557+00	5276	completed				+12148192000		78	2017-05-22 16:07:19.608955	2017-05-22 16:08:37.732123	CA43a261809a51aaec6d67321ff6504d78	\N	127			0	inbound	+12147122250	\N	1.09086489677429199	\N	new lead	dallas county h	9	\N	\N	1402
2017-05-22 16:08:50.197352+00	2017-11-29 18:38:49.812564+00	5277	completed				+12148192000		62	2017-05-22 16:08:50.194817	2017-05-22 16:09:52.340651	CA2decdb025a2ab82bf1d0240826ca5ab4	\N	125			0	inbound	+12147122250	\N	1.27010083198547363	\N	new lead	dallas cty of  	9	\N	\N	1402
2017-05-22 19:43:11.028069+00	2017-11-29 18:38:49.812693+00	5298	completed				+12148192000		305	2017-05-22 19:43:11.026208	2017-05-22 19:48:15.582738	CA382f65ed46ff9480741385a3a5de5b10	\N	125			0	inbound	+12147122250	\N	2.12225198745727539	\N	new lead	dallas county h	9	\N	\N	1402
2017-07-05 18:06:42.863462+00	2017-07-05 18:13:27.973958+00	5717	completed				+16784724198		404	2017-07-05 18:06:42.8611	2017-07-05 18:13:26.725174	CAe296a6eaa819052aed0a088a1b143b93	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE4f26762a1da46d615bb2117a3c570224	0	inbound	+17704009016	132	13.7930738925933838	\N	new lead		13	\N	\N	1403
2017-05-17 19:10:27.591887+00	2017-11-29 18:38:49.81204+00	5165	completed				+15598853178		156	2017-05-17 19:10:27.589783	2017-05-17 19:13:03.578436	CA80f78411ca854a96dd8ae57c3bdef3f8	\N	107			0	inbound	+12147122250	\N	7.05555987358093262	\N	new lead	cell phone   ca	9	\N	\N	1407
2016-01-29 01:29:39.630983+00	2016-01-29 01:30:06.295741+00	5	completed	Sally			+17735436541		\N	2016-01-29 01:29:39.629508	\N	CA3c2fb3bd967bdae846a5eb13c7df2d44	\N	1			0	inbound		\N	\N	\N	new lead		1	\N	\N	1412
2016-01-29 01:28:54.369855+00	2016-02-24 17:30:27.771325+00	4	completed	Sally			+17735436541		13	2016-01-29 01:29:07	2016-01-29 01:29:20	CA9b754a23fbbe6d3a2d1df5cadd0fdacb	\N	1			0	inbound		\N	\N	\N	new lead		1	\N	\N	1412
2016-05-20 16:21:19.864145+00	2016-05-20 16:21:56.100044+00	137	missed				+17735436541		14	2016-05-20 16:21:19.861917	2016-05-20 16:21:56.098025	CAbd1afd111ce703204018cf66f78e20e9	807e3714-eeb9-4344-9afa-bf9d7b0cd482	\N			1	outbound	+17735469660	\N	20.6360189914703369	{}	new lead		1	\N	\N	1412
2016-05-20 19:00:08.208301+00	2016-05-20 19:00:43.361739+00	140	completed				+17735436541		25	2016-05-20 19:00:08.207122	2016-05-20 19:00:43.360564	CAaa3e0b7a78405c55038371d9aa0d8777	807e3714-eeb9-4344-9afa-bf9d7b0cd482	1			1	outbound	+17735469660	\N	9.20490097999572754	{}	new lead		1	\N	\N	1412
2016-05-20 22:55:56.621354+00	2016-05-20 22:56:42.666765+00	147	completed	Cody			+17735436541		35	2016-05-20 22:55:56.618468	2016-05-20 22:56:42.66513	CAa06b698c57edae284f34fa92526ae296	53da9e33-88fb-4b04-baca-339193fd55f7	1			1	outbound	+17735469660	\N	10.7201278209686279	{}	new lead		1	\N	\N	1412
2016-01-29 01:12:42.936407+00	2016-01-29 01:12:43.283293+00	1		Gavin			+17735436541		\N	2016-01-29 01:12:42.932789	\N	CA27657c32ebda1f2995b60e7f39869f9e	\N	\N			0	inbound		\N	\N	\N	new lead		1	\N	\N	1412
2016-01-29 01:26:51.500611+00	2016-01-29 01:26:51.500659+00	2		Mary			+17735436541		\N	2016-01-29 01:26:51.498149	\N		\N	\N			0	inbound		\N	\N	\N	new lead		1	\N	\N	1412
2016-05-20 22:58:43.546131+00	2016-05-20 22:59:09.765031+00	148	completed	CHICAGO	 IL		+17735436541		26	2016-05-20 22:58:43.544101	2016-05-20 22:59:09.763408	CA1b683bfa9280ea7b5e0997d9a2177617	\N	1			0	inbound	+17735469660	16	12.02382493019104	null	new lead		1	\N	\N	1412
2016-05-20 22:59:38.485213+00	2016-05-20 23:00:24.94239+00	149	missed	CHICAGO	 IL		+17735436541		46	2016-05-20 22:59:38.484248	2016-05-20 23:00:24.94088	CA421eecbea011b0041a51971c6e18132d	\N	\N			0	inbound	+17735469660	16	\N	null	new lead		1	\N	\N	1412
2016-01-29 16:49:57.446239+00	2016-01-29 16:49:57.81108+00	9		Valerie			+17735436541		\N	2016-01-29 16:49:57.444853	\N	CA91aa44b84855529b9eaf9ab6d0a61bde	\N	\N			0	inbound		\N	\N	\N	new lead		1	\N	\N	1412
2016-01-29 16:37:53.361635+00	2016-01-29 16:37:53.704723+00	7		Jason			+17735436541		\N	2016-01-29 16:37:53.36046	\N	CA62687ea407c3a5c6ede3a036db1bacf4	\N	\N			0	inbound		\N	\N	\N	new lead		1	\N	\N	1412
2016-01-29 16:40:51.134987+00	2016-01-29 16:42:11.667533+00	8	completed	Mary			+17735436541		\N	2016-01-29 16:40:51.133231	\N	CA2e22fda7edd952c8c4d835ada412571a	\N	2			0	inbound		\N	\N	\N	new lead		1	\N	\N	1412
2016-07-29 05:12:06.146164+00	2016-07-29 05:12:30.355994+00	1020	completed	CHICAGO	 IL		+17735436541		24	2016-07-29 05:12:06.145339	2016-07-29 05:12:30.354626	CA34b4caa134489c9f50d57f14b5a5c7ad	\N	1			0	inbound	+17735469660	16	8.46777582168579102	null	new lead		1	\N	\N	1412
2016-01-29 16:54:03.434236+00	2016-01-29 16:54:04.104952+00	10		Werner			+17735436541		\N	2016-01-29 16:54:03.433215	\N	CA7d06fde47763ccd60a8f441e777ba3c4	\N	\N			0	inbound		\N	\N	\N	new lead		1	\N	\N	1412
2016-01-29 17:27:12.486012+00	2016-01-29 17:27:14.356936+00	11		Jamie			+17735436541		\N	2016-01-29 17:27:12.484181	\N	CAbadaf2e8923f966149b2ae80126bf577	\N	\N			0	inbound		\N	\N	\N	new lead		1	\N	\N	1412
2017-08-28 22:21:29.189299+00	2017-08-28 22:29:12.571941+00	6190	completed	Sarah	Reneau		+17707437977		463	2017-08-28 22:21:29.187182	2017-08-28 22:29:12.569455	CA658de7427cae46c3d57fd0641b029743	\N	152			0	inbound	+17707665732	133	380.223873138427734	\N	new lead		13	\N	\N	836
2017-05-11 19:49:02.1177+00	2017-11-29 18:47:25.068509+00	5020	completed				+15739530932		388	2017-05-11 19:49:02.115417	2017-05-11 19:55:29.876126	CAc21a81a53e495bb31dd093a66d12e8a7	\N	84			0	inbound	+19728330116	\N	318.381824016571045	\N	new lead	wireless caller	8	\N	\N	1345
2017-02-20 02:34:42.039914+00	2017-02-20 02:35:00.982901+00	3208	completed	CHICAGO	 IL		+17735436541		19	2017-02-20 02:34:42.037146	2017-02-20 02:35:00.979692	CAa72aef5ef2ada12752f411dd25a50a6c	\N	1			0	inbound	+17732950301	104	7.11101007461547852	\N	new lead		1	\N	\N	1412
2017-02-20 02:35:44.340477+00	2017-02-20 02:36:07.724535+00	3209	completed	CHICAGO	 IL		+17735436541		23	2017-02-20 02:35:44.338924	2017-02-20 02:36:07.723312	CA31f3a0063b8a4c111c6a9ea8b316f76b	\N	1			0	inbound	+17735469660	16	7.25577497482299805	\N	new lead		1	\N	\N	1412
2017-02-20 14:53:37.479035+00	2017-02-20 14:53:54.335021+00	3210	completed	CHICAGO	 IL		+17735436541		17	2017-02-20 14:53:37.477205	2017-02-20 14:53:54.333111	CA655e36164206bf99fd37b7a71b61b34f	\N	1			0	inbound	+17732950301	104	6.64572906494140625	\N	new lead		1	\N	\N	1412
2017-02-22 15:28:11.143842+00	2017-02-22 15:28:35.828424+00	3211	completed	CHICAGO	 IL		+17735436541		25	2017-02-22 15:28:11.140297	2017-02-22 15:28:35.825293		\N	1			0	outbound	+17732950301	104	\N	\N	new lead		1	\N	\N	1412
2017-02-22 15:36:21.209002+00	2017-02-22 15:42:16.171943+00	3212	completed	CHICAGO	 IL		+17735436541		355	2017-02-22 15:36:21.206859	2017-02-22 15:42:16.169084	CA98d8d5bb4ed4eac5b7c5bf7e745894db	\N	1			0	inbound	+17732950301	104	330.893088102340698	\N	new lead		1	\N	\N	1412
2017-02-27 04:59:21.121645+00	2017-02-27 04:59:43.065354+00	3259	completed	CHICAGO	 IL		+17735436541		22	2017-02-27 04:59:21.117631	2017-02-27 04:59:43.055187	CAb6972eea202089b7f4b7fc94c5aecf75	\N	1			0	inbound	+17732950301	104	13.5417470932006836	\N	new lead		1	\N	\N	1412
2017-02-27 23:49:46.128139+00	2017-02-27 23:56:02.184355+00	3260	missed	CHICAGO	 IL		+17735436541		24	2017-02-27 23:49:46.125164	2017-02-27 23:50:09.969316	CAc3f15abd32b522fd87664af01e5d6453	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACafc5b14e320f72bf4ed973f9ab19c98d/Recordings/REd6567482fb673f36c122756161076667	0	inbound	+17732950301	104	357.03030800819397	\N	new lead		1	\N	\N	1412
2016-11-01 01:12:15.559039+00	2016-11-01 01:12:35.280966+00	2446	completed	CHICAGO	 IL		+17735436541		20	2016-11-01 01:12:15.557468	2016-11-01 01:12:35.278983	CAb86f586c4e4529896fb2e4decef15df1	\N	1			0	inbound	+17732950301	104	4.84916782379150391	null	new lead		1	\N	\N	1412
2017-03-22 03:38:46.391618+00	2017-03-22 03:39:07.600457+00	3525	completed	CHICAGO	 IL		+17735436541		21	2017-03-22 03:38:46.390032	2017-03-22 03:39:07.590932	CA81a5a5b72e820a8568ff3a4dcf9bfa29	\N	1			0	inbound	+17732950301	104	11.6905169486999512	\N	new lead		1	\N	\N	1412
2016-01-29 01:28:00.768401+00	2016-01-29 01:28:00.768429+00	3		Jerry			+17735436541		\N	2016-01-29 01:28:00.767527	\N		\N	\N			0	inbound		\N	\N	\N	new lead		1	\N	\N	1412
2017-10-24 11:49:20.416372+00	2017-10-24 11:49:20.480431+00	6790	missed	Rakela	Wilkins	Raseanwilkins@ymail.com	+17068801574		\N	2017-10-24 11:49:20.414459	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	1413
2017-05-24 19:45:37.633967+00	2017-11-29 18:38:49.813232+00	5374	completed				+19724218770		75	2017-05-24 19:45:37.631705	2017-05-24 19:46:52.44111	CA59db9a20b2f05a7f346664f5d1264fa8	\N	126			0	inbound	+12147122250	\N	1.23382997512817383	\N	new lead	dallas  tx	9	\N	\N	1415
2017-05-24 19:46:54.589622+00	2017-11-29 18:38:49.813249+00	5375	completed				+19724218770		85	2017-05-24 19:46:54.5882	2017-05-24 19:48:20.040904	CA839f310dfc47292b0603ae33374b0e6e	\N	124			0	inbound	+12147122250	\N	1.18299293518066406	\N	new lead	dallas  tx	9	\N	\N	1415
2017-05-24 19:48:14.864607+00	2017-11-29 18:38:49.813266+00	5376	completed				+19724218770		68	2017-05-24 19:48:14.862742	2017-05-24 19:49:23.111125	CA06ba9ad6f011083ae93096e67c54d09a	\N	133			0	inbound	+12147122250	\N	3.50896811485290527	\N	new lead	dallas  tx	9	\N	\N	1415
2017-05-24 19:52:27.530159+00	2017-11-29 18:38:49.813308+00	5380	completed				+19724218770		65	2017-05-24 19:52:27.528885	2017-05-24 19:53:32.849347	CA216b07f5e3581be1af969ac9d61401f8	\N	127			0	inbound	+12147122250	\N	1.89861202239990234	\N	new lead	dallas  tx	9	\N	\N	1415
2016-08-02 21:19:19.943656+00	2016-08-02 21:23:21.079121+00	1154	missed	Dorothy	Beasley	NA@noemail.com	+15137937998		\N	2016-08-02 21:19:19.942672	\N		25d0200e-983d-4413-94ae-eb664b99711c	\N			0	outbound	+18556311490	\N	\N	{}	application submitted - autopay		1	\N	\N	1416
2016-08-02 20:36:11.860196+00	2017-11-29 18:31:10.261991+00	1147	completed	Dorthy	Beasley		+15137937998		171	2016-08-02 20:36:11.859163	2016-08-02 20:39:02.510543	CA1f1d8a2ce40bb2fe7737b736c417f89b	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE4f8dd747085ae28a3063edbb4c52d46f	0	inbound	+18556311490	\N	7.67669105529785156	null	application submitted - autopay		1	\N	\N	1416
2016-08-02 20:43:18.048539+00	2017-11-29 18:31:10.262027+00	1150	missed	Dorthy	Beasley		+15137937998		65	2016-08-02 20:43:18.047567	2016-08-02 20:44:22.734532		\N	\N			0	outbound	+18556311490	\N	\N	null	application submitted - autopay		1	\N	\N	1416
2016-08-02 21:10:12.864103+00	2017-11-29 18:31:10.262062+00	1153	completed	Dorthy	Beasley		+15137937998		636	2016-08-02 21:10:12.862495	2016-08-02 21:20:49.24641		\N	16			0	outbound	+18556311490	\N	\N	null	application submitted - autopay		1	\N	\N	1416
2016-08-02 00:59:23.706219+00	2016-08-02 13:36:37.022373+00	1107	missed	Robert	Engberg	adinab77@gmail.com	+16616755657		\N	2016-08-02 00:59:23.70516	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - autopay		1	\N	\N	1418
2017-08-12 00:02:33.460583+00	2017-08-12 00:02:53.742351+00	5996	completed				+17069200150		20	2017-08-12 00:02:33.458652	2017-08-12 00:02:53.73226	CA2dd21453259ccd3c42f9012f4013e527	\N	154			0	inbound	+17707665699	134	1.08900809288024902	\N	new lead		13	\N	\N	1422
2017-08-18 14:39:37.542788+00	2017-08-18 14:56:22.775326+00	6090	completed				+17069200150		1005	2017-08-18 14:39:37.540694	2017-08-18 14:56:22.754267	CA6c13606fc33606a2f5035c109310c957	\N	154			0	inbound	+17707665699	134	1.3743748664855957	\N	new lead		13	\N	\N	1422
2017-03-29 20:54:48.670287+00	2017-11-29 18:31:56.600316+00	3624	missed				+16173312498		55	2017-03-29 20:54:48.668206	2017-03-29 20:55:43.633174	CAf625e14fa18de9f1161800e517a19225	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE782042fb1253dd6fd575634eeeadd542	0	inbound	+18556311397	\N	\N	\N	general interest		1	\N	\N	1423
2017-04-04 21:48:06.924336+00	2017-11-29 18:31:56.600338+00	3688	completed				+16173312498		58	2017-04-04 21:48:06.921676	2017-04-04 21:49:05.40877		\N	16			0	outbound	+18556311397	\N	\N	\N	general interest		1	\N	\N	1423
2017-04-03 19:03:50.589778+00	2017-08-17 14:35:21.044937+00	3671	completed				+12146426144		92	2017-04-03 19:03:50.588147	2017-04-03 19:05:22.71878	CA3d4e476877513223cc679b6cbb39762e	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REd00131506636a76181ce5e0443873f8c	0	inbound	+18177569010	124	10.6904799938201904	\N	new lead	fort worth  tx	12	\N	\N	1424
2017-04-03 21:46:15.673588+00	2017-08-17 14:35:21.044945+00	3676	completed				+12146426144		34	2017-04-03 21:46:15.671238	2017-04-03 21:46:50.011128	CA9f4ad129f10423d5ab3687254363db89	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REd58340182a7b3ffcb2391babab324322	0	inbound	+18177569010	124	8.08464908599853516	\N	new lead	fort worth  tx	12	\N	\N	1424
2017-09-25 15:18:17.774805+00	2017-09-25 15:19:55.274403+00	6477	completed				+12144036664		97	2017-09-25 15:18:17.772539	2017-09-25 15:19:54.575812	CA48183e6e9271f7e2d1ff2ef419aacb84	\N	155		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE5f7b9cf0503b6b2a3e05455a176c5409	0	inbound	+18177569010	124	17.592566967010498	\N	new lead	mamablast	12	\N	\N	1425
2016-09-06 13:35:47.520496+00	2016-12-10 01:05:18.400903+00	1889	completed				+12157758047		241	2016-09-06 13:35:47.518311	2016-09-06 13:39:48.243849	CAd12772a7747066148be1f9791ee7b778	\N	24			0	inbound	+18557088731	\N	2.33492684364318848	null	new lead		3	\N	\N	1426
2016-09-06 15:20:18.618036+00	2016-12-10 01:05:18.400923+00	1892	completed				+12157758047		158	2016-09-06 15:20:18.616743	2016-09-06 15:22:57.059684	CA8120462f3c06871442aaf21818c4d6e4	\N	24			0	inbound	+18557088731	\N	3.55646300315856934	null	new lead		3	\N	\N	1426
2017-08-31 17:37:22.432407+00	2017-08-31 17:43:00.42178+00	6220	missed	Jkiesha 	Elder		+16786986220		8	2017-08-31 17:37:22.428886	2017-08-31 17:37:30.221799	CAa7131a42f2f4a2c843f6686c483200d7	\N	\N			0	inbound	+17704009016	132	\N	\N	new lead		13	\N	\N	3833
2016-06-03 16:15:42.447775+00	2017-11-29 18:31:10.261003+00	368	completed	Unknown			+15126860800		0	2016-06-03 16:15:42.446233	2016-06-03 16:15:42.58979	CAc63b45457342178a5e61dccd3563cd78	\N	\N			0	inbound	+18556311490	\N	\N	null	new lead		1	\N	\N	1364
2017-11-08 17:32:55.741279+00	2017-11-08 17:33:24.93315+00	6974	missed	Elaine	Alford	ethanmama615@gmail.com	+19125067949		\N	2017-11-08 17:32:55.738925	\N		\N	152			0	outbound	+17704009016	132	\N	\N	new lead		13	\N	\N	1382
2016-11-01 18:23:37.745365+00	2016-11-01 18:25:26.272056+00	2485	completed				+17708347826		108	2016-11-01 18:23:37.744127	2016-11-01 18:25:25.455818	CA82e3eab78053bc6facf82d59ee7f2692	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REc173f8750594c6f0f2059f3a90eebdaf	0	inbound	+18557240606	49	2.26314878463745117	null	new lead		1	\N	\N	1427
2017-12-01 21:56:24.623634+00	2017-12-01 22:08:58.495453+00	7452	completed	Lee	Canestrari	leecanestrari2@yahoo.com	+19704242292		750	2017-12-01 21:56:24.622371	2017-12-01 22:08:58.494116	CA7c71c74bf0c5f690b52fff6f206abdc7	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.25910592079162598	{}	new lead		15	\N	\N	1429
2016-07-28 21:00:14.888111+00	2016-12-10 01:05:11.337045+00	1016	missed				+17182943504		24	2016-07-28 21:00:14.886496	2016-07-28 21:00:38.894761	CA4ac73df55ef7f0d6ab780ad9cccf9e85	\N	\N			0	inbound	+18555693686	\N	3.1313929557800293	null	new lead		3	\N	\N	1431
2016-10-27 13:14:52.30454+00	2016-12-10 01:05:11.33716+00	2353	completed				+17182943504		83	2016-10-27 13:14:52.302938	2016-10-27 13:16:15.147857	CA49a6fd693fac3d559a402a5a04de9d24	\N	25			0	inbound	+18555693686	\N	2.20366001129150391	null	new lead		3	\N	\N	1431
2017-05-19 19:28:37.53385+00	2017-05-19 19:30:20.932436+00	5230	completed				+18178963287		103	2017-05-19 19:28:37.531454	2017-05-19 19:30:20.920873	CAd8ab5a11fa0733b66808d43a0d4ef2aa	\N	132		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE08c7fa3875b43f5ce67d7c9e993e3827	0	inbound	+18172104002	126	6.54621791839599609	\N	new lead	chapel linda	12	\N	\N	1434
2017-08-19 22:00:43.952197+00	2017-08-19 22:00:44.005074+00	6109	missed	Ebony	Lumpkin	Ebonynikkay@gmail.com	+17622435642		\N	2017-08-19 22:00:43.95069	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	1435
2017-03-20 18:14:18.181513+00	2017-11-29 18:38:53.212643+00	3508	completed				+19723101325		122	2017-03-20 18:14:18.178861	2017-03-20 18:16:20.375056	CAec651efdd20cec5035c4a5a8b046e13d	\N	99			0	inbound	+12146922088	\N	8.00545191764831543	\N	new lead		9	\N	\N	1441
2016-10-04 17:27:52.967249+00	2016-12-10 01:05:18.401048+00	2139	completed				+16109964274		833	2016-10-04 17:27:52.964635	2016-10-04 17:41:46.41846	CA757b45cb0508dc80996107c30a190d85	\N	24			0	inbound	+18557088731	\N	1.45823884010314941	null	new lead		3	\N	\N	1442
2016-10-04 17:46:35.640227+00	2016-12-10 01:05:18.401055+00	2140	completed				+16109964274		370	2016-10-04 17:46:35.639	2016-10-04 17:52:45.451685	CA459327c40aca54d5af8f9f2966680947	\N	24			0	inbound	+18557088731	\N	2.36450910568237305	null	new lead		3	\N	\N	1442
2017-03-27 21:58:54.323166+00	2017-03-27 22:21:52.094416+00	3603	missed				+14699692603		75	2017-03-27 21:58:54.320204	2017-03-27 22:00:09.317891	CA53ce4b70ae2a5fb4dadc62eac220361a	\N	\N			0	inbound	+18177569010	124	1355.41476607322693	\N	new lead	swd systems	12	\N	\N	1445
2017-03-27 21:55:30.059942+00	2017-03-27 22:18:43.955215+00	3602	missed				+14699692603		83	2017-03-27 21:55:30.057494	2017-03-27 21:56:53.117892	CA92cbe05d2ab142fb6064063476e62760	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REd65329dd449b69ea78c0940e759fe583	0	inbound	+18177569010	124	1373.78812694549561	\N	new lead	swd systems	12	\N	\N	1445
2017-12-02 00:48:47.180456+00	2017-12-02 01:19:20.981149+00	7463	completed	Kelsey	Dowty	kelseydowty@gmail.com	+15868991797		1829	2017-12-02 00:48:47.179093	2017-12-02 01:19:20.979519	CAd2490928c587342fe33c5de44dd659eb	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.58246207237243652	{}	new lead		15	\N	\N	1451
2016-07-07 14:04:05.631171+00	2016-07-07 14:27:03.06027+00	800	completed	Gary	Griffin		+16144028536		\N	2016-07-07 14:04:05.630325	\N		0886dca9-9e47-4273-a1a9-5ee0047f3a6e	\N			0	outbound	+18552959002	\N	\N	{}	new lead		1	\N	\N	1453
2016-07-07 14:02:44.0761+00	2016-07-07 14:27:15.135762+00	799	completed	Gary	Griffin		+16144028536		\N	2016-07-07 14:02:44.075185	\N		0886dca9-9e47-4273-a1a9-5ee0047f3a6e	\N			0	outbound	+18552959002	\N	\N	{}	new lead		1	\N	\N	1453
2016-07-07 14:07:27.001937+00	2016-07-07 14:26:51.964267+00	801	completed	Gary	Griffin		+16144028536		\N	2016-07-07 14:07:27.000527	\N		0886dca9-9e47-4273-a1a9-5ee0047f3a6e	\N			0	outbound	+18552959002	\N	\N	{}	new lead		1	\N	\N	1453
2016-07-07 14:55:58.926874+00	2016-07-07 14:57:32.848465+00	809	completed	Gary	Griffin		+16144028536		89	2016-07-07 14:55:58.92562	2016-07-07 14:57:32.847328	CA39ede7cac0eee4ae525f78303b16a06a	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	1.79035186767578125	{}	new lead		1	\N	\N	1453
2016-07-07 18:46:06.844891+00	2016-07-07 18:51:07.826798+00	819	completed	Gary	Griffin		+16144028536		297	2016-07-07 18:46:06.844036	2016-07-07 18:51:07.825685	CA6ffd7a9b27bf79956a2a2c594330f383	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	1.76780200004577637	{}	new lead		1	\N	\N	1453
2016-06-28 12:48:51.740346+00	2016-06-28 12:51:08.617845+00	569	completed				+16144028536		132	2016-06-28 12:48:51.738903	2016-06-28 12:51:08.61679	CA1a12158d9b488114b42e22c6d490e291	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	1.86608004570007324	{}	new lead		1	\N	\N	1453
2016-07-01 14:00:03.814716+00	2016-07-01 14:01:05.39536+00	706	completed				+16144028536		57	2016-07-01 14:00:03.813376	2016-07-01 14:01:05.394378	CA20b14b075d3f1ec43e69d2fd8cbaaf8d	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	1.63478779792785645	{}	new lead		1	\N	\N	1453
2016-06-27 23:17:04.61092+00	2017-11-29 18:31:41.49015+00	562	completed	Gary	Griffin		+16144028536		37	2016-06-27 23:17:04.607826	2016-06-27 23:17:41.838826	CA85cccfb11b53ad1d53878a9a8b759254	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REd7b7c03f4dfc293fb584117c0e5e0b2d	0	inbound	+18552959002	\N	\N	null	new lead		1	\N	\N	1453
2016-07-01 12:38:09.621606+00	2017-11-29 18:31:41.490276+00	699	completed	Unknown			+16144028536		65	2016-07-01 12:38:09.619673	2016-07-01 12:39:14.995274	CAcee149a9bb95e21dd1efefafd93419fa	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE85669dd738305d8fd241a070c69b66d1	0	inbound	+18552959002	\N	\N	null	new lead		1	\N	\N	1453
2016-07-01 12:38:13.030052+00	2017-11-29 18:31:41.490283+00	700	completed	Gary	Griffin		+16144028536		63	2016-07-01 12:38:13.029183	2016-07-01 12:39:15.876616	CAd16f8128172a56729049f33991555f8a	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE726af81375b4589d3111a6d6db74e675	0	inbound	+18552959002	\N	\N	null	new lead		1	\N	\N	1453
2016-12-04 01:22:54.562874+00	2016-12-04 01:23:28.472723+00	3037	completed				+17134279514		34	2016-12-04 01:22:54.561135	2016-12-04 01:23:28.188148	CA7276ea86857d3409065e0d9154b645a8	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REede50b883c03caf2ffc455586b4485d5	0	inbound	+18557240606	49	1.57091116905212402	null	new lead		1	\N	\N	1454
2016-10-14 16:06:01.976137+00	2016-11-09 15:47:40.535536+00	2294	completed				+17372040263		23	2016-10-14 16:06:01.973169	2016-10-14 16:06:25.149412	CA5a2040406ee2898dd6e43bfb026ddafa	\N	60			0	inbound	+18559370101	\N	17.5649840831756592	null	new lead		3	\N	\N	1455
2017-10-18 16:36:27.617064+00	2017-10-18 16:37:12.686367+00	6737	completed	Sheena	Hayman	sheenahay2015@gmail.com	+17063517123		26	2017-10-18 16:36:27.615221	2017-10-18 16:37:12.684425	CAa3aff45f1b55474d9af9966f5f00eca4	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE9ea15c1f48b5f397baeac676040dcbd7	1	outbound	+17704009016	\N	16.0157101154327393	{}	new lead		13	\N	\N	1456
2016-12-23 19:23:01.713465+00	2016-12-23 19:30:22.430493+00	3093	completed				+18327266787		415	2016-12-23 19:23:01.710303	2016-12-23 19:29:56.660806	CAdc488fff3251ffa61ae00d14e7d977a8	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REbad75d51ac6885c91dbfa94cdccfca15	0	inbound	+18557240606	49	2.48699092864990234	null	new lead		1	\N	\N	1457
2017-12-05 16:35:27.942267+00	2017-12-05 16:44:11.321617+00	7589	completed				+14322471056		520	2017-12-05 16:35:27.938855	2017-12-05 16:44:08.193133	CA2fdd49f0b72452fa14e1e690e45c7af9	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE023963d7495f8e7e815046f37c29296d	0	inbound	+18558645656	136	2.76015901565551758	\N	new lead		15	\N	\N	1459
2017-10-20 16:40:42.412354+00	2017-10-20 16:41:59.298831+00	6767	completed				+18172551000		76	2017-10-20 16:40:42.410322	2017-10-20 16:41:58.582727	CA056b2f6c9f6d58e7875e99ab116fcd77	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REf05d2f3590bf57b69ab04b3292a7fef0	0	inbound	+18177569010	124	11.4536311626434326	\N	new lead	north hills hospital	12	\N	\N	1461
2017-10-18 19:56:53.964809+00	2017-10-18 19:58:23.406927+00	6743	completed				+18172551000		89	2017-10-18 19:56:53.962322	2017-10-18 19:58:22.793873	CAf518f9ceecd8305a7978d5a24a1b6c77	\N	155		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE44c60d1facbe8194c4618f7ea53254e3	0	inbound	+18177569010	124	14.3735849857330322	\N	new lead	north hills hospital	12	\N	\N	1461
2016-08-03 19:48:03.44667+00	2017-11-29 18:32:13.821664+00	1184	completed				+13303039487		38	2016-08-03 19:48:03.444817	2016-08-03 19:48:41.403915	CA190fb5b387a70e78372706fb06013d01	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE4c5aad4c3c4e0999d309f45a242c4860	0	inbound	+18555983683	\N	18.863976001739502	null	application submitted - credit union		1	\N	\N	1463
2016-08-03 19:50:21.217694+00	2017-01-27 21:12:23.812589+00	1185	completed				+13303039487		1111	2016-08-03 19:50:21.216768	2016-08-03 20:08:52.643057		\N	\N			0	outbound	+18555343978	48	\N	null	application submitted - credit union		1	\N	\N	1463
2016-08-03 20:08:36.191218+00	2017-01-27 21:12:23.812596+00	1186	completed	Keith	McCoy	1@1.com	+13303039487		12	2016-08-03 20:08:36.1902	2016-08-03 20:09:04.025985	CA454b5b49838dc32183a9c9796f4e110e	ee869226-e246-4ab4-aaaa-e9403e2ddd39	\N			1	outbound	+18555983683	\N	10.0185739994049072	{}	application submitted - credit union		1	\N	\N	1463
2017-09-15 21:08:38.137195+00	2017-09-15 21:13:12.154558+00	6372	completed				+18176372325		273	2017-09-15 21:08:38.135447	2017-09-15 21:13:11.047492	CA3239bb63731fc2cff473bcf9eaa2aa72	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE4ac6a8a1900f16517b955cf41b84f985	0	inbound	+18177569010	124	10.8501911163330078	\N	new lead	hailey egan	12	\N	\N	1464
2017-03-01 23:49:48.206383+00	2017-11-29 18:38:53.211695+00	3284	missed				+12144971217		15	2017-03-01 23:49:48.20305	2017-03-01 23:50:03.396001	CAc6f1e22fe136bb178d4838ee6e6bbaae	\N	\N		https://api.twilio.com/2010-04-01/Accounts/AC5422b9b221417a7a84556a92f6edc492/Recordings/REb6068bbca53bea137c41ac85fc793c7d	0	inbound	+12146922088	\N	\N	\N	new lead	WILLIAMS MATHEW	9	\N	\N	1465
2017-03-01 23:50:08.83183+00	2017-11-29 18:38:53.211703+00	3285	missed				+12144971217		13	2017-03-01 23:50:08.829815	2017-03-01 23:50:21.86044	CA15b196832cb9aa8955246c3b56c9558a	\N	\N			0	inbound	+12146922088	\N	\N	\N	new lead	WILLIAMS MATHEW	9	\N	\N	1465
2017-03-14 20:28:20.72411+00	2017-11-29 18:38:53.212254+00	3424	completed				+12144971217		54	2017-03-14 20:28:20.722118	2017-03-14 20:29:14.311965	CA47dd1e909f3d0154bbabfdc6da62cc45	\N	107			0	inbound	+12146922088	\N	6.01364612579345703	\N	new lead	williams mathew	9	\N	\N	1465
2017-04-26 16:46:29.790196+00	2017-08-17 14:35:21.045048+00	4321	completed				+17134921620		397	2017-04-26 16:46:29.787865	2017-04-26 16:53:07.084748	CAc3f9274bbca680d48bebc902d110118e	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE4e3e6c1775fbf00e60bbe0ef0139b800	0	inbound	+18177569010	124	9.36522722244262695	\N	new lead	campbell dallas	12	\N	\N	1467
2016-08-04 20:25:25.767367+00	2016-08-04 20:39:02.40364+00	1216	missed	Juan F.	Palma	isabili@yahoo.com	+13236678304		\N	2016-08-04 20:25:25.766243	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - credit union		1	\N	\N	1470
2016-08-31 20:49:35.270555+00	2016-08-31 21:49:26.2593+00	1829	missed	crystal	palma	cpalma607@gmail.com	+13236678304		\N	2016-08-31 20:49:35.269618	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - credit union		1	\N	\N	1470
2017-10-16 18:17:59.691701+00	2017-10-16 18:19:49.559379+00	6723	completed				+15124707771		109	2017-10-16 18:17:59.689075	2017-10-16 18:19:48.765119	CAa741eee9fd90759302910b39e1f25f74	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REccfea28c213c15ec887f477e37dd90cd	0	inbound	+18177569010	124	21.9948239326477051	\N	new lead	austin  tx	12	\N	\N	1471
2017-12-08 17:33:54.785322+00	2017-12-08 17:37:52.244424+00	7717	completed				+17063518804		237	2017-12-08 17:33:54.783617	2017-12-08 17:37:52.231763	CA440e91deb920b7d1bc71a10d9c50ecd5	\N	150			0	inbound	+17707665732	133	12.8138198852539062	\N	new lead	freeman xavier	13	\N	\N	1472
2017-12-22 15:03:37.560287+00	2017-12-22 15:11:16.298905+00	8065	missed	LAVENTE	HODGE	lhodge1923@gmail.com	+16785078896		20	2017-12-22 15:03:37.557903	2017-12-22 15:11:16.296548	CA655e2d13501ef5a11e2b8d94ec23ed6e	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			3	outbound	+17704009016	\N	435.330988883972168	{}	select status		13	\N	\N	1473
2016-08-18 17:31:36.745062+00	2016-08-18 17:32:17.26298+00	1588	completed				+16144020233		35	2016-08-18 17:31:36.743647	2016-08-18 17:32:17.260569	CA945d67430249ecba0c64fa0e20e7ba0a	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	4.78600597381591797	{}	new lead		1	\N	\N	1474
2017-05-04 13:02:55.667922+00	2017-11-29 18:31:56.600387+00	4696	missed				+15709029674		8	2017-05-04 13:02:55.665484	2017-05-04 13:03:04.063528	CAe57b7ed39063c313d4ffc624121dba3d	\N	\N			0	inbound	+18556311397	\N	\N	\N	select status		1	\N	\N	1476
2017-05-04 13:08:28.200202+00	2017-11-29 18:31:56.600394+00	4697	completed				+15709029674		154	2017-05-04 13:08:28.196267	2017-05-04 13:11:01.937962		\N	16			0	outbound	+18556311397	\N	\N	\N	select status		1	\N	\N	1476
2017-05-04 13:15:04.808702+00	2017-11-29 18:31:56.600401+00	4698	completed				+15709029674		37	2017-05-04 13:15:04.804987	2017-05-04 13:15:41.984291		\N	16			0	outbound	+18556311397	\N	\N	\N	select status		1	\N	\N	1476
2017-12-06 14:26:07.807834+00	2017-12-06 14:35:32.462827+00	7628	completed				+19546080103		563	2017-12-06 14:26:07.805973	2017-12-06 14:35:31.251167	CAe2623ce7ff9029ff19c3c8d306b825c8	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE0120cb420a95bdce2ca9e753df76fc53	0	inbound	+18558645656	136	2.64102292060852051	\N	new lead		15	\N	\N	1477
2016-11-07 16:27:55.573775+00	2016-11-07 16:27:55.600752+00	2788	missed	kathy	wood	kathyscorner99@gmail.com	+18175173657		\N	2016-11-07 16:27:55.572563	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	new lead		1	\N	\N	1481
2017-05-15 21:45:23.213606+00	2017-11-29 18:38:49.811607+00	5086	completed				+18322609059		79	2017-05-15 21:45:23.211621	2017-05-15 21:46:42.12544	CA1f2388818526d1d65d46c6d3f80cf097	\N	127			0	inbound	+12147122250	\N	2.06129598617553711	\N	new lead	gonzalez adrian	9	\N	\N	1483
2017-05-15 21:46:32.969032+00	2017-11-29 18:38:49.811614+00	5087	completed				+18322609059		60	2017-05-15 21:46:32.967769	2017-05-15 21:47:33.186074	CA0ce58cfd089b25c5ef842262d361cd0f	\N	\N			0	inbound	+12147122250	\N	2.93943214416503906	\N	new lead	gonzalez adrian	9	\N	\N	1483
2017-05-15 21:47:28.314739+00	2017-11-29 18:38:49.811621+00	5088	completed				+18322609059		224	2017-05-15 21:47:28.313414	2017-05-15 21:51:12.033263	CA59b3b3b82aa1eaf74d674a1072257093	\N	99			0	inbound	+12147122250	\N	3.54077005386352539	\N	new lead	gonzalez adrian	9	\N	\N	1483
2017-06-01 17:47:25.978873+00	2017-11-29 18:38:49.814396+00	5555	completed				+18322609059		132	2017-06-01 17:47:25.977348	2017-06-01 17:49:37.687658	CA68100c03b9d0d853282b2c6b996b381e	\N	124			0	inbound	+12147122250	\N	1.83413791656494141	\N	new lead	gonzalez adrian	9	\N	\N	1483
2017-04-07 17:59:24.489302+00	2017-11-29 18:38:53.213418+00	3720	completed				+18322609059		44	2017-04-07 17:59:24.487586	2017-04-07 18:00:08.572506	CA4c442c446c4fc90f6fc1b409214523e1	\N	105			0	inbound	+12146922088	\N	3.08720088005065918	\N	new lead	gonzalez adrian	9	\N	\N	1483
2017-04-07 22:18:54.445367+00	2017-11-29 18:47:25.067996+00	3733	missed				+12146820881		20	2017-04-07 22:18:54.443641	2017-04-07 22:19:14.381384	CAa5b9e95160f73a52d0fac1d1e7ff6390	\N	\N			0	inbound	+19728330116	\N	349.041570901870728	\N	new lead	jackson ronald	8	\N	\N	1484
2017-07-29 16:14:28.48822+00	2017-11-29 18:47:25.068551+00	5875	missed				+12146820881		12	2017-07-29 16:14:28.486673	2017-07-29 16:14:40.063556	CAeae27d728a5e85f442dd5da2dd5a9f51	\N	\N			0	inbound	+19728330116	\N	345.089913129806519	\N	new lead	jackson ronald	8	\N	\N	1484
2017-12-12 18:32:37.189967+00	2017-12-12 18:34:40.527112+00	7817	completed				+18176593738		122	2017-12-12 18:32:37.187591	2017-12-12 18:34:39.281977	CA2e62e854b10e0912fc8f1ecf245ff04f	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE32032934341d92a3da9f6e861a5e4d8b	0	inbound	+18177569010	124	8.10482501983642578	\N	new lead	cell phone   tx	12	\N	\N	1485
2016-11-04 15:50:28.303955+00	2017-01-27 21:12:23.814016+00	2701	completed				+17046053047		162	2016-11-04 15:50:28.302845	2016-11-04 15:53:10.592495		\N	\N			0	outbound	+18555343978	48	\N	null	new lead		1	\N	\N	1486
2017-09-21 21:02:54.065153+00	2017-11-22 16:25:24.94972+00	6422	completed				+17702978700		35	2017-09-21 21:02:54.062756	2017-09-21 21:03:29.377381	CA6d0793d4ebe9e5804888902ecc7bf64b	\N	154			0	inbound	+17707665699	134	0.924634933471679688	\N	select status		13	\N	\N	656
2016-08-02 20:42:36.311712+00	2017-11-29 18:31:10.262009+00	1149	completed	Dorthy	Beasley		+15137937998		40	2016-08-02 20:42:36.310621	2016-08-02 20:43:16.41738		\N	\N			0	outbound	+18556311490	\N	\N	null	application submitted - autopay		1	\N	\N	1416
2016-10-31 17:39:32.444609+00	2016-10-31 17:40:39.518764+00	2383	completed				+17046053047		66	2016-10-31 17:39:32.443699	2016-10-31 17:40:38.798801	CA7356116827e9b081d64018d1b5947e50	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE880d166de9a23570e48fd4e5fb311137	0	inbound	+18557240606	49	2.1240379810333252	null	new lead		1	\N	\N	1486
2016-11-04 17:31:15.30872+00	2016-11-04 17:31:58.229902+00	2711	missed				+17046053047		43	2016-11-04 17:31:15.307774	2016-11-04 17:31:58.227799	CA3ba275c52604e8b462700932cb16c8cb	\N	\N			0	inbound	+18555343978	48	32.2185540199279785	null	new lead		1	\N	\N	1486
2017-12-06 18:27:54.854867+00	2017-12-06 18:40:50.537209+00	7646	completed				+19562079578		772	2017-12-06 18:27:54.852994	2017-12-06 18:40:47.300708	CA1e86c5574e0c9ca9e40d552dfaf14d01	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE0819a822198b86370842c235752ed8cb	0	inbound	+18558645656	136	2.69088411331176758	\N	new lead		15	\N	\N	1487
2017-12-29 13:30:18.300718+00	2017-12-29 13:30:36.15864+00	8145	missed				+17069730872		18	2017-12-29 13:30:18.298128	2017-12-29 13:30:36.148929	CA4a4687166cdab53977896f8053a92161	\N	\N			0	inbound	+17707665732	133	\N	\N	new lead	victoria carter	13	\N	\N	1488
2016-07-01 14:02:20.408401+00	2017-11-29 18:31:41.49029+00	708	completed	Cary	Beach		+16144805573		55	2016-07-01 14:02:20.407265	2016-07-01 14:03:15.364849	CAc860db910dd4bf8db9f5a6794677707a	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE7e8c5a36d3935ce01a73e2b19a15cbda	0	inbound	+18552959002	\N	14.4345450401306152	null	new lead		1	\N	\N	1489
2016-07-01 14:16:38.395754+00	2016-07-01 14:17:42.019172+00	709	completed				+16144805573		7	2016-07-01 14:16:38.394803	2016-07-01 14:16:50.313409	CA8fbe79362de4ac6bbf142e27ea195fb7	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	\N			1	outbound	+18552959002	\N	1.35924005508422852	{}	new lead		1	\N	\N	1489
2016-07-01 14:17:15.831298+00	2016-07-01 14:19:52.188672+00	710	completed				+16144805573		152	2016-07-01 14:17:15.830347	2016-07-01 14:19:52.187301	CAa5adedac6421402b0230322acb44971c	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	1.78263998031616211	{}	new lead		1	\N	\N	1489
2016-10-19 19:10:20.707368+00	2017-02-11 20:02:07.779648+00	2319	completed				+19738853643		242	2016-10-19 19:10:20.704173	2016-10-19 19:14:23.022742	CAe12e2fac3ced90446d70158cc557dcbc	\N	\N			0	inbound	+18559763286	\N	1.93265414237976074	null	new lead		3	\N	\N	1491
2017-09-21 13:07:39.570089+00	2017-09-21 13:07:46.96159+00	6413	completed				+17702688168		7	2017-09-21 13:07:39.566442	2017-09-21 13:07:46.942281	CA7f0f0e602125b15b67eec0c7d9b57ebf	\N	154			0	inbound	+17707665699	134	1.40353512763977051	\N	new lead		13	\N	\N	1494
2017-09-21 13:11:28.563404+00	2017-09-21 13:25:28.59528+00	6414	completed				+17702688168		840	2017-09-21 13:11:28.561367	2017-09-21 13:25:28.58174	CA731f459d42cde4a6573f7e29d39b5c71	\N	154			0	inbound	+17707665699	134	1.17728996276855469	\N	new lead		13	\N	\N	1494
2017-10-20 13:20:33.846348+00	2017-10-20 13:25:40.683338+00	6761	completed	starr	cannon	sgeezybabii@gmail.com	+17063913490		290	2017-10-20 13:20:33.843923	2017-10-20 13:25:39.367417	CAa17754e246831cf0be0cb7ab6a34250f	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE55a24d720bb04453573817b1cd5b342c	1	outbound	+17704009016	\N	14.0360889434814453	{}	new lead		13	\N	\N	1495
2017-04-25 15:23:21.753264+00	2017-11-29 18:38:53.214532+00	4286	completed				+18177147216		361	2017-04-25 15:23:21.75134	2017-04-25 15:29:23.212111	CA44e6af28d1ec9ec0f4f79f5a83b46e6e	\N	\N			0	inbound	+12146922088	\N	7.20021605491638184	\N	new lead	dfw tire wholes	9	\N	\N	1500
2017-12-02 15:36:52.016034+00	2017-12-02 15:38:09.136317+00	7479	completed				+19185347062		76	2017-12-02 15:36:52.014226	2017-12-02 15:38:07.815861	CA08f30ff1d9922db71ade6ca16f790103	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REa3621c661c8e09e8cddc5a4293dc8d23	0	inbound	+18558645656	136	2.30398297309875488	\N	new lead		15	\N	\N	1502
2016-10-04 11:52:22.446149+00	2016-12-09 17:10:17.41352+00	2136	completed				+19087630029		800	2016-10-04 11:52:22.444481	2016-10-04 12:05:42.029213	CAda1d145cfc63647bd8618cc158735015	\N	27			0	inbound	+18552716856	\N	6.89103388786315918	null	new lead		3	\N	\N	1503
2016-08-12 18:29:32.290582+00	2017-01-27 21:12:23.813144+00	1449	completed	Terry	Riebe		+14065468024		750	2016-08-12 18:29:32.289255	2016-08-12 18:42:01.953919	CAfbe5b199802e723bdb0fee6f3f5392da	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE2a6514790ecee1655ae3da92c0295a4c	0	inbound	+18555343978	48	8.53739094734191895	null	application submitted - credit union		1	\N	\N	1504
2016-08-12 18:53:35.005775+00	2016-08-12 19:08:45.409165+00	1452	missed	Terry	Riebe	terr1299@yahoo.com	+14065468024		\N	2016-08-12 18:53:35.004795	\N		07cfd785-7aef-47fb-8d17-7f38ec833934	\N			0	outbound	+18556311439	\N	\N	{}	application submitted - credit union		1	\N	\N	1504
2016-08-12 15:39:59.951267+00	2017-11-29 18:31:18.808847+00	1436	missed				+14065468024		97	2016-08-12 15:39:59.949525	2016-08-12 15:41:36.945816	CA52b9407ad37f5c1c59cd205be81ffc97	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE2984ce419d7fc7e6b98e6284ca61d151	0	inbound	+18556311439	\N	31.6504268646240234	null	application submitted - credit union		1	\N	\N	1504
2016-08-12 18:16:25.353041+00	2017-01-27 21:12:23.813136+00	1448	completed	Terry	Riebe		+14065468024		283	2016-08-12 18:16:25.35178	2016-08-12 18:21:08.449578		\N	\N			0	outbound	+18555343978	48	\N	null	application submitted - credit union		1	\N	\N	1504
2016-08-12 18:48:42.081015+00	2017-01-27 21:12:23.813151+00	1450	completed	Terry	Riebe		+14065468024		304	2016-08-12 18:48:42.079832	2016-08-12 18:53:45.798671		\N	\N			0	outbound	+18555343978	48	\N	null	application submitted - credit union		1	\N	\N	1504
2016-08-17 18:32:43.423148+00	2017-01-27 21:12:23.813414+00	1562	completed	Terry	Riebe		+14065468024		238	2016-08-17 18:32:43.421919	2016-08-17 18:36:41.139127	CA17635d769ee16551fa70c09eaef3fd3b	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REef85c67c0e25be62135e8b4f5a53dced	0	inbound	+18555343978	48	5.76526498794555664	null	application submitted - credit union		1	\N	\N	1504
2016-05-23 17:45:36.206243+00	2017-11-29 18:31:10.260314+00	175	completed	Unknown			+15135449841		112	2016-05-23 17:45:36.205135	2016-05-23 17:47:27.98843	CA9dede543ab59a933e6f2237dbb690737	\N	18		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE20a6c03eea74d8538c3e0bb99e0256db	0	inbound	+18556311490	\N	10.0889430046081543	null	new lead		1	\N	\N	1508
2016-05-23 17:50:23.828344+00	2017-11-29 18:31:10.260331+00	176	completed	Unknown			+15135449841		19	2016-05-23 17:50:23.827477	2016-05-23 17:50:43.320161	CA6b659eb39c1035fb23c1a61ba14228bb	\N	16			0	inbound	+18556311490	\N	8.67302608489990234	null	new lead		1	\N	\N	1508
2018-02-08 23:14:20.533384+00	2018-02-08 23:14:36.310848+00	8210	completed				+17739699892		12	2018-02-08 23:14:20.532193	2018-02-08 23:14:32.61511	CAe0d5c9a818c388bd20f4e1fa9bf2f93b	\N	178		https://buyercall-test-recordings.s3.amazonaws.com/Password_27/8210_recording_01a355efa5924148a3753ccc96cae3e3	0	inbound	+13367394103	145	6.79787206649780273	\N	new lead	chicago  il	27	\N	\N	1512
2017-02-08 23:31:39.781426+00	2017-02-08 23:54:10.454822+00	3155	completed				+18322589525		1347	2017-02-08 23:31:39.779213	2017-02-08 23:54:07.101378	CA9424a69079ff4a8b2b7a3bae0f3881a0	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE020c8dbce505107b56db7768769abf5d	0	inbound	+18557240606	49	3.27472305297851562	null	new lead		1	\N	\N	1513
2017-08-07 14:20:55.069246+00	2017-08-07 14:26:51.279708+00	5947	missed	Latoya	Poole	nicolepoole30@yahoo.com	+16785411215		0	2017-08-07 14:20:55.067429	2017-08-07 14:26:51.275257	CA887609ce0e048e23f9f39f97cdd07447	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			3	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	1516
2017-12-13 13:46:07.900772+00	2017-12-13 13:46:07.961283+00	7837	missed	Brandon	Gowan	Brandongowan1@gmail.com	+17067285698		\N	2017-12-13 13:46:07.899315	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	1517
2016-06-28 23:24:37.374846+00	2016-06-29 15:08:21.944605+00	623	completed	gary	griffin	garygriffin70.gg@gmail.com	+16144028536		\N	2016-06-28 23:24:37.373717	\N		d33a481e-e0af-47ac-9f90-260f20b69de5	\N			0	outbound	+18552959002	\N	\N	{}	new lead		1	\N	\N	1453
2017-03-16 16:37:33.890404+00	2017-11-29 18:38:53.212439+00	3463	completed				+12143547430		36	2017-03-16 16:37:33.88918	2017-03-16 16:38:09.509353	CA0b4a4b78945f72968aed59fff14a6f1c	\N	\N			0	inbound	+12146922088	\N	6.04288887977600098	\N	new lead		9	\N	\N	1518
2017-03-13 16:40:33.345157+00	2017-11-29 18:38:53.212097+00	3394	completed				+12143547430		26	2017-03-13 16:40:33.343173	2017-03-13 16:40:58.881996	CA62be7ac41c580496092d04a6b011fbe1	\N	\N			0	inbound	+12146922088	\N	4.58815407752990723	\N	new lead	estes charles	9	\N	\N	1518
2016-06-29 18:41:12.352197+00	2016-06-29 18:44:20.066526+00	660	completed				+13303602062		182	2016-06-29 18:41:12.351183	2016-06-29 18:44:20.064868	CA746aa1eb548f20675e77c6d245200012	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	2.59762191772460938	{}	new lead		1	\N	\N	1522
2016-06-30 16:17:26.803943+00	2016-06-30 16:18:43.457759+00	677	completed				+13303602062		72	2016-06-30 16:17:26.802193	2016-06-30 16:18:43.456627	CAcdca3372dd010fa2f6b1bdd75eae742f	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.96219301223754883	{}	new lead		1	\N	\N	1522
2017-03-08 15:06:25.945287+00	2017-11-29 18:47:25.067644+00	3340	completed				+12487193095		87	2017-03-08 15:06:25.942314	2017-03-08 15:07:52.800814	CA766fbaecea6bc6d0e4fff1c8f15d4901	\N	83		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REa1bb8d9157a960181bfa6a708599f7bf	0	inbound	+19728330116	\N	7.12000393867492676	\N	new lead	kenneth mathis	8	\N	\N	1523
2017-10-21 12:20:43.231407+00	2017-10-21 12:20:43.332628+00	6771	missed	Shirley	Bennett	Jasperboyd630@gmail.com	+17067162343		\N	2017-10-21 12:20:43.228287	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	1528
2017-09-02 20:26:01.824251+00	2017-09-02 20:32:56.024507+00	6243	completed	Thomara	Russell-Lee	tmacfeb@yahoo.com	+15049198215		400	2017-09-02 20:26:01.822695	2017-09-02 20:32:54.643076	CA0f9114fb8c33a5861d4e095b91cf2fee	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REd32361f09cdda53b4fedfa13e1ddacc2	1	outbound	+17704009016	\N	17.2173328399658203	{}	new lead		13	\N	\N	1530
2016-06-01 16:36:15.131164+00	2017-11-29 18:31:56.600097+00	309	completed	Unknown			+16178772250		24	2016-06-01 16:36:15.130212	2016-06-01 16:36:39.353877	CAd31a7874b77008d4fb78fdd6ba946e09	\N	\N			0	inbound	+18556311397	\N	14.3455719947814941	null	new lead		1	\N	\N	1531
2016-06-01 16:34:30.633104+00	2016-06-01 16:58:10.936246+00	308	completed	James	Hickey	james@kalmiadesign.com	+16178772250		21	2016-06-01 16:34:30.631702	2016-06-01 16:35:10.981717	CA3dedb1a809cc4e939364a7d815b730b7	f3e4cfe5-2811-4ab1-9d96-3f14b202cd33	\N			1	outbound	+18556311397	\N	14.035869836807251	{}	new lead		1	\N	\N	1531
2016-06-17 16:59:13.585947+00	2016-12-09 17:06:53.905701+00	436	completed	Unknown			+16092843885		22	2016-06-17 16:59:13.584078	2016-06-17 16:59:35.730636	CA0a28ee2274635d63e9aa234f6bfd65cf	\N	21			0	inbound	+18558021330	\N	1.97741603851318359	null	new lead		3	\N	\N	1533
2016-10-26 15:42:02.279474+00	2016-11-09 15:43:50.981637+00	2347	completed				+15712812106		38	2016-10-26 15:42:02.276582	2016-10-26 15:42:40.28092	CAc5a42b1a21d485090ee45a974bb6e7b1	\N	33			0	inbound	+18554186369	\N	2.32681608200073242	null	new lead		3	\N	\N	1534
2017-09-23 14:38:34.777238+00	2017-09-23 14:41:13.006997+00	6462	completed	Andrea	White	Andrea021518@gmail.com	+17069942412		149	2017-09-23 14:38:34.775466	2017-09-23 14:41:12.975608	CAee742793536dbeb2e1d845fd8ccf091f	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE0b53309b975280833cb391f1e7192456	1	outbound	+17704009016	\N	8.14767789840698242	{}	new lead		13	\N	\N	1536
2017-07-07 18:27:14.05237+00	2017-07-07 18:29:08.585279+00	5732	completed				+16825512276		113	2017-07-07 18:27:14.049809	2017-07-07 18:29:07.513652	CAefaae75fea5799515be25ca4acca256f	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE1572a57751495023d8959e2f25269a8d	0	inbound	+18177569010	124	11.4074637889862061	\N	new lead	mercado veronic	12	\N	\N	1537
2017-07-29 18:37:31.367745+00	2017-08-17 14:35:21.045695+00	5883	completed				+16823137058		179	2017-07-29 18:37:31.36612	2017-07-29 18:40:30.202042	CAa6ec90259944794544d1fb81e0167cf8	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REcfb7777419538bc4db9ed26f69680189	0	inbound	+18177569010	124	6.13758611679077148	\N	new lead	albarran jose	12	\N	\N	1539
2017-12-14 15:04:21.659607+00	2017-12-14 15:07:24.132156+00	7863	completed	Yemmonte 	Oliver	oliverdiamond95@yahoo.com	+17062550421		87	2017-12-14 15:04:21.658202	2017-12-14 15:05:59.050685	CA9d7b60098792307002f86eec85db8fdd	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REe53a20d954edf3653590237fffd37f9c	1	outbound	+17704009016	\N	10.1949889659881592	{}	select status		13	\N	\N	1542
2016-06-27 14:54:37.563696+00	2016-06-27 14:56:53.902434+00	500	completed				+13307701618		131	2016-06-27 14:54:37.562398	2016-06-27 14:56:53.901377	CA65b499c22c24eaad75006404429e1056	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.60103988647460938	{}	new lead		1	\N	\N	1545
2016-06-25 16:35:53.85869+00	2017-11-29 18:32:13.820448+00	460	completed	Shane	Ferguson		+13307701618		23	2016-06-25 16:35:53.857105	2016-06-25 16:36:16.487985	CAc2f1616535bb8f93f7fa3fb6913980a0	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE92d10fcafb6ee141fc637e948f5bc357	0	inbound	+18555983683	\N	\N	null	new lead		1	\N	\N	1545
2017-04-05 22:30:04.450654+00	2017-11-29 18:38:53.213353+00	3696	missed				+14692360563		11	2017-04-05 22:30:04.44846	2017-04-05 22:30:15.303021	CA2bf0d8a8eadb9558d977e8836b85fbea	\N	\N			0	inbound	+12146922088	\N	6.03809690475463867	\N	new lead	morales luis   	9	\N	\N	1546
2017-04-06 19:57:05.827703+00	2017-11-29 18:38:53.213374+00	3710	completed				+14692360563		19	2017-04-06 19:57:05.826341	2017-04-06 19:57:24.526716	CAf1d1767136f0aefd471e2882737df2da	\N	\N			0	inbound	+12146922088	\N	3.09807610511779785	\N	new lead	morales luis   	9	\N	\N	1546
2017-04-18 06:59:19.957927+00	2017-11-29 18:38:53.214114+00	4022	completed				+14692360563		13	2017-04-18 06:59:19.956437	2017-04-18 06:59:33.152259	CA9ec5625bd9820cbe14cc0e84c4bb1ebe	\N	105			0	inbound	+12146922088	\N	8.90120291709899902	\N	new lead	morales luis   	9	\N	\N	1546
2017-04-12 00:29:55.885617+00	2017-11-29 18:38:49.80452+00	3805	missed				+14692360563		6	2017-04-12 00:29:55.884347	2017-04-12 00:30:02.179847	CA03860b759e1f442347079bf9d2ac0013	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead		9	\N	\N	1546
2017-03-02 01:15:13.544475+00	2017-11-29 18:38:53.21171+00	3286	missed				+14692360563		33	2017-03-02 01:15:13.542051	2017-03-02 01:15:46.630562	CA3218be2892e78f046abb170ca76c4ccf	\N	\N		https://api.twilio.com/2010-04-01/Accounts/AC5422b9b221417a7a84556a92f6edc492/Recordings/REa9497c91a3c92b236602c606aac06062	0	inbound	+12146922088	\N	\N	\N	new lead	MORALES LUIS   	9	\N	\N	1546
2017-09-30 18:37:44.653339+00	2017-09-30 18:39:31.419449+00	6551	completed				+16823004455		106	2017-09-30 18:37:44.651331	2017-09-30 18:39:30.505945	CA4368c8f65b4604e149a57af5383baf7b	\N	155		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE02ba8d4158a9b2b4644affde162d8ea9	0	inbound	+18177569010	124	11.4781410694122314	\N	new lead	johnson etta	12	\N	\N	1547
2017-10-19 22:56:23.1708+00	2017-10-19 23:18:01.034913+00	6759	completed				+16823004455		1298	2017-10-19 22:56:23.166571	2017-10-19 23:18:01.03223	CA9ff9a253d30ad6eb2ca8a536d1947f04	\N	155			0	inbound	+18177569010	124	383.968480110168457	\N	new lead	johnson etta	12	\N	\N	1547
2016-11-04 21:04:52.930455+00	2016-12-10 01:05:18.401225+00	2730	completed				+14849488554		209	2016-11-04 21:04:52.928616	2016-11-04 21:08:21.521457	CAb02119f2e64bb02e7b439ace3229dfef	\N	24			0	inbound	+18557088731	\N	1.89086699485778809	null	new lead		3	\N	\N	1548
2016-08-31 18:58:47.774997+00	2016-12-10 00:55:45.165455+00	1828	completed				+16104279075		283	2016-08-31 18:58:47.773406	2016-08-31 19:03:30.654724	CAbfd20571d3fd41a24afecde984d1ecf0	\N	24			0	inbound	+18557129406	\N	2.49742507934570312	null	new lead		3	\N	\N	1552
2017-07-28 20:08:53.446446+00	2017-07-28 20:11:50.42806+00	5870	completed				+12148092395		177	2017-07-28 20:08:53.444596	2017-07-28 20:11:49.969627	CA7d86a14c9473d3a248e53642a006adce	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE86569c3e61dd2597e5db3ba7c1107e60	0	inbound	+18177569010	124	9.86967611312866211	\N	new lead	dallas  tx	12	\N	\N	1553
2017-10-22 16:22:32.652123+00	2017-10-23 13:44:24.79462+00	6781	missed	Stephanie	Wilkerson	Connerstephanie04@gmail.com	+16782528210		21	2017-10-22 16:22:32.650506	2017-10-22 16:28:38.77992	CAbe833fbfcf3bbd77f2a9ec7f71b67bbb	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			3	outbound	+17704009016	\N	345.337784051895142	{}	select status		13	\N	\N	1019
2017-10-13 21:13:59.708452+00	2017-10-13 21:15:54.669309+00	6707	completed				+15124707771		115	2017-10-13 21:13:59.706742	2017-10-13 21:15:54.666673	CA3f16704f2f5867a9fdf17bd6fec81746	\N	155		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REe0afca580260a2c6aaf99035f66e2e09	0	inbound	+18177569010	124	85.2405989170074463	\N	new lead	austin  tx	12	\N	\N	1471
2017-10-13 22:01:34.84369+00	2017-10-13 22:10:08.081508+00	6709	completed				+15124707771		513	2017-10-13 22:01:34.841241	2017-10-13 22:10:07.717549	CA5ddc0b046c68550b07cd2cbb7a9664d8	\N	155		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE5d734cf0b03ae22f6e95903d7f44ec3e	0	inbound	+18177569010	124	411.62384295463562	\N	new lead	austin  tx	12	\N	\N	1471
2017-07-28 23:36:01.340177+00	2017-07-28 23:37:28.696573+00	5873	completed				+12148092395		86	2017-07-28 23:36:01.338402	2017-07-28 23:37:27.639135	CA3d638c21e8d01f12e5dcf40f023d412f	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE6a8a91c4bdc4e737247347e7c40a8141	0	inbound	+18177569010	124	35.5949399471282959	\N	new lead	dallas  tx	12	\N	\N	1553
2017-07-28 19:16:40.378232+00	2017-08-17 14:35:21.045688+00	5869	completed				+12148092395		127	2017-07-28 19:16:40.376136	2017-07-28 19:18:46.943184	CA49e83cb99f6d7234f73c4fd6d5b54b19	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REdcc8b310864bea2bc5cb3fbf4ccd740d	0	inbound	+18177569010	124	7.82523012161254883	\N	new lead	dallas  tx	12	\N	\N	1553
2017-06-23 20:03:12.759713+00	2017-06-24 13:45:04.894076+00	5644	completed	Stephanie	Palmer	mizzpal62@gmail.com	+13143224487		76	2017-06-23 20:03:12.757248	2017-06-23 20:04:42.198049	CAa3638521fc968da1ed4fe071bcecdb86	0427608a-ae09-4db0-a1e8-374423ee28c3	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE9b7f54f3c33c2173ed4cedc7d303d2a6	1	outbound	+17704009016	\N	14.6082150936126709	{}	new lead		13	\N	\N	1555
2017-11-22 20:11:08.397614+00	2017-11-22 20:13:33.971625+00	7179	completed	Jessica	Henson	hensonj1986@gmail.com	+17063518374		116	2017-11-22 20:11:08.396085	2017-11-22 20:13:33.452452	CAac82b7640d62956c87b61e2f546ff7c4	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REff77ed61be89320d579b64ac14ccaf05	1	outbound	+17704009016	\N	25.1017680168151855	{}	new lead		13	\N	\N	1557
2016-11-04 17:38:22.962567+00	2016-11-04 17:41:26.975657+00	2713	completed				+18174669429		183	2016-11-04 17:38:22.961226	2016-11-04 17:41:26.19052	CA5e5a18f006c55aaaf0d3c70aa4484f1f	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE4bcf729d9c2f95eddbead235776fbc86	0	inbound	+18557240606	49	1.82263803482055664	null	new lead		1	\N	\N	1561
2017-05-12 23:25:18.921131+00	2017-11-29 18:38:49.811437+00	5053	completed				+19176041956		99	2017-05-12 23:25:18.9199	2017-05-12 23:26:58.094861	CA8b618ba6a255ea3014dc9685e2bade8f	\N	127			0	inbound	+12147122250	\N	1.27899694442749023	\N	new lead	foody zachary  	9	\N	\N	1562
2016-10-12 19:15:55.939355+00	2016-12-10 00:57:48.461831+00	2284	completed				+18052166222		649	2016-10-12 19:15:55.937875	2016-10-12 19:26:44.714098	CAf921034c4a4c25cd4861899825eb76bb	\N	30			0	inbound	+18559652184	\N	1.54549503326416016	null	new lead		3	\N	\N	1566
2016-11-05 17:09:12.56187+00	2016-11-05 17:15:11.710478+00	2749	completed				+18328121923		358	2016-11-05 17:09:12.560336	2016-11-05 17:15:10.979132	CA7be360bcfc6380337c0d53cd0edfff02	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE7874abcd94a7793279106f02468b007f	0	inbound	+18557240606	49	2.0705878734588623	null	new lead		1	\N	\N	1568
2016-11-07 20:54:11.020725+00	2016-11-07 21:25:22.821223+00	2796	completed				+18328121923		1868	2016-11-07 20:54:11.01771	2016-11-07 21:25:19.172772	CAa2d905fdea226fdf0bee69cbdf49c345	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE7115137ffb75c445c142c50bf81fca96	0	inbound	+18557240606	49	2.18774318695068359	null	new lead		1	\N	\N	1568
2017-12-26 17:58:22.968353+00	2017-12-27 20:29:14.918304+00	8106	completed	Amber	Reed	amberleigh2383@yahoo.com	+16787944703		236	2017-12-26 17:58:22.966823	2017-12-26 18:02:27.315945	CA47793ef29e967825ae11a147ea349680	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE1c10c429b1a1118db9d3e5bc1ff79600	1	outbound	+17704009016	\N	7.55472898483276367	{}	select status		13	\N	\N	1573
2017-12-20 14:35:32.322941+00	2017-12-20 14:37:12.794697+00	8024	completed	Kimberly	Hunt	kimhunt041774@gmail.com	+19043925431		98	2017-12-20 14:35:32.321495	2017-12-20 14:37:12.792796	CAa9a50482643b36dd56913b5b71c81e61	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.91438508033752441	{}	new lead		15	\N	\N	1575
2017-04-14 19:17:22.6837+00	2017-11-29 18:38:49.804995+00	3936	completed				+19724312596		82	2017-04-14 19:17:22.679791	2017-04-14 19:18:44.875758	CA17578f7b1114674334e9facdeb1bee54	\N	124			0	inbound	+12147122250	\N	1.44819498062133789	\N	new lead	j c penney co i	9	\N	\N	1576
2017-04-14 19:18:52.253775+00	2017-11-29 18:38:49.805002+00	3937	completed				+19724312596		88	2017-04-14 19:18:52.252389	2017-04-14 19:20:20.511674	CA2d7b2d87fa8fe859633b0bdcd86fcf57	\N	127			0	inbound	+12147122250	\N	4.92462801933288574	\N	new lead	j c penney co i	9	\N	\N	1576
2017-12-02 18:40:05.587131+00	2017-12-02 19:05:03.701002+00	7494	completed				+12392295855		1495	2017-12-02 18:40:05.584709	2017-12-02 19:05:00.534538	CA6b866e4789121252a95da7d19af48ba9	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE22edfc0ece350ec40438f8ff72df931b	0	inbound	+18558645656	136	2.63685798645019531	\N	new lead		15	\N	\N	1577
2017-07-17 14:55:04.542612+00	2017-07-17 14:55:54.738747+00	5788	completed				+16789003257		49	2017-07-17 14:55:04.539765	2017-07-17 14:55:53.488494	CA83ea452664bcbc864f97f8d6788ac279	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE294d15897a4dcddeb37771397c20012c	0	inbound	+17704009016	132	11.0611109733581543	\N	new lead		13	\N	\N	1578
2017-11-08 20:00:09.154624+00	2017-11-08 20:00:57.242153+00	6980	completed	Sarah Katie	Work	Katiework1025@gmail.com	+17068898534		38	2017-11-08 20:00:09.152503	2017-11-08 20:00:56.933008	CAce5f27a90df49526c66daf5d4a0b6e11	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE26c9f51422b08437ffcdd3be010a7f9f	1	outbound	+17704009016	\N	7.99970698356628418	{}	new lead		13	\N	\N	1579
2016-06-25 18:37:17.938071+00	2016-06-27 12:24:50.730711+00	461	completed	ron 	rabich	jlabich@aol.com	+13305833432		\N	2016-06-25 18:37:17.936932	\N		ee869226-e246-4ab4-aaaa-e9403e2ddd39	\N			0	outbound	+18555983683	\N	\N	{}	new lead		1	\N	\N	1584
2016-11-05 13:29:45.583948+00	2016-11-05 13:29:45.61089+00	2744	missed	Ricky	Garner	Hvacricky@hotmail.com	+18322564183		\N	2016-11-05 13:29:45.582783	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	1588
2017-11-02 21:39:39.964346+00	2017-11-02 21:41:39.728587+00	6909	completed				+18475328561		116	2017-11-02 21:39:39.961697	2017-11-02 21:41:36.154807	CAf623613b7847dda934f0892dd2626535	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REc4a4d8763e2b71e7d36f193151dbbc36	0	inbound	+18177569010	124	11.3711671829223633	\N	new lead	carrasco brenda	12	\N	\N	1591
2017-09-30 17:44:37.723071+00	2017-12-02 18:42:07.804359+00	6550	completed				+16782837236		158	2017-09-30 17:44:37.721162	2017-09-30 17:47:16.090697	CA4f98536107c0a9e31c79251b846dfc36	\N	154			0	inbound	+17707665699	134	0.752894878387451172	\N	select status		13	\N	\N	55
2017-09-28 14:27:37.536398+00	2017-09-28 14:28:57.767159+00	6504	completed	Casity	Whitley	casitywhitley@gmail.com	+17063001392		69	2017-09-28 14:27:37.534542	2017-09-28 14:28:56.514643	CAc1863ca381c0c58bc934d0ee9670f36a	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REd3903517a1d91204a8de31ddefdec6bd	1	outbound	+17704009016	\N	11.7247669696807861	{}	new lead		13	\N	\N	1226
2017-09-29 02:45:16.875811+00	2017-10-11 15:25:29.273989+00	6522	missed	Albert	Reddick	Alby.123@gmail.com	+14045035121		\N	2017-09-29 02:45:16.874286	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	3152
2017-11-18 18:19:26.152306+00	2017-11-18 18:20:25.46018+00	7126	completed				+12149988423		59	2017-11-18 18:19:26.150406	2017-11-18 18:20:24.734529	CAf35005ffb06b4c4b7137ecf6831d1569	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE9e455651e9c6301a4a938f2a05d92790	0	inbound	+18177569010	124	10.4167718887329102	\N	new lead	cervantes marcy	12	\N	\N	1490
2017-05-18 16:53:18.025424+00	2017-11-29 18:38:49.812167+00	5206	completed				+12146729100		96	2017-05-18 16:53:18.023293	2017-05-18 16:54:54.487587	CA822920d1d075886e454a15c251be5996	\N	125			0	inbound	+12147122250	\N	1.23929500579833984	\N	new lead	ocbf church    	9	\N	\N	1592
2016-11-01 16:41:23.606689+00	2016-11-01 16:46:15.227584+00	2475	completed				+16316014313		267	2016-11-01 16:41:23.605059	2016-11-01 16:45:51.104119	CA08f193c6fb1454e03ae78e3c30941305	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REb96cd7983d744486ed2215f06ce87b15	0	inbound	+18557240606	49	2.01554703712463379	null	new lead		1	\N	\N	1595
2016-11-01 16:37:07.623514+00	2016-11-01 16:40:50.653753+00	2474	completed				+16316014313		222	2016-11-01 16:37:07.622413	2016-11-01 16:40:49.631361	CA16bbf02904deabcef19eb4a1c32e5ba4	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REe5b4c8898a97c20ccc0a4f359bd83498	0	inbound	+18557240606	49	2.24784111976623535	null	new lead		1	\N	\N	1595
2016-05-23 15:03:06.428561+00	2017-11-29 18:31:56.600051+00	167	completed	Unknown			+17815968858		26	2016-05-23 15:03:06.425952	2016-05-23 15:03:32.521829	CA2a52d2eae6d08ccbc9636c2b4ee5fab4	\N	\N			0	inbound	+18556311397	\N	13.7078111171722412	null	new lead		1	\N	\N	1596
2016-05-25 17:11:55.560096+00	2016-05-25 17:12:23.812104+00	216	completed				+17815968858		23	2016-05-25 17:11:55.559003	2016-05-25 17:12:23.811156	CAb3fe69810f546957681f54ecab68cc7a	c6c46e91-97c9-404c-92ba-454008d80db7	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE04f3b1a28e103d3104effa4a640e53e3	1	outbound	+18556311397	\N	1.40533685684204102	{}	new lead		1	\N	\N	1596
2016-11-15 02:09:58.165333+00	2016-11-15 02:09:58.193994+00	2903	missed	DAVID	BOONE	boone816@gmail.com	+18167266011		\N	2016-11-15 02:09:58.163335	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	1598
2016-11-03 01:41:57.230867+00	2016-11-03 01:42:16.089943+00	2610	completed				+19282423225		18	2016-11-03 01:41:57.228996	2016-11-03 01:42:15.350858	CA7e44b0cf70ccff31a60e37667f56fd3a	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE822b8317a669a654b52c673b2f7d1d4e	0	inbound	+18557240606	49	1.7389671802520752	null	new lead		1	\N	\N	1599
2016-05-29 22:01:31.105558+00	2016-05-31 12:48:57.159654+00	277	completed	David	VanNess	davidvcri@gmail.com	+15083203041		\N	2016-05-29 22:01:31.104231	\N		25d0200e-983d-4413-94ae-eb664b99711c	\N			0	outbound	+18556311490	\N	\N	{}	new lead		1	\N	\N	1600
2016-06-06 19:09:54.350489+00	2016-06-06 19:10:38.530487+00	388	completed				+15083203041		39	2016-06-06 19:09:54.349431	2016-06-06 19:10:38.529512	CA361ea6f16176ed39f825531276b2a334	cd89e433-4bde-4f86-9b22-8f52c2413fcd	16			1	outbound	+18556311490	\N	1.41144490242004395	{}	new lead		1	\N	\N	1600
2017-12-04 22:15:16.948238+00	2017-12-04 22:15:58.038087+00	7563	completed	Shannon 	Hill	Shannonhill2001@yahoo.com	+12816509730		38	2017-12-04 22:15:16.946673	2017-12-04 22:15:58.036758	CA6c6ba7db0a3c6a773b1c5be3907b0ade	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.76922321319580078	{}	new lead		15	\N	\N	1601
2016-08-02 01:34:04.239456+00	2016-08-05 12:50:01.529413+00	1110	missed	Steven	Feister	Jdm91si@gmail.com	+16613508726		\N	2016-08-02 01:34:04.238493	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - autopay		1	\N	\N	1602
2016-11-11 19:21:51.502554+00	2016-11-11 19:22:45.015093+00	2867	completed				+19285309438		53	2016-11-11 19:21:51.501169	2016-11-11 19:22:44.777784	CAd96ae5f39054ed092270cb7927dc2d95	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REc7dfcccc768b032d302549e53ef1ab0c	0	inbound	+18557240606	49	1.85720205307006836	null	new lead		1	\N	\N	1604
2016-11-11 19:17:54.825595+00	2016-11-11 19:18:43.130302+00	2866	completed				+19285309438		48	2016-11-11 19:17:54.822669	2016-11-11 19:18:42.620355	CAa2e5d631db96d8e3d84a6979f7836453	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE54179c1475b8886cced9e974f0cb6b0f	0	inbound	+18557240606	49	2.37891507148742676	null	new lead		1	\N	\N	1604
2016-11-11 19:23:16.024345+00	2016-11-11 19:25:17.549166+00	2868	completed				+19285309438		89	2016-11-11 19:23:16.023215	2016-11-11 19:24:44.767758	CAd7d56df87baa0a163debc8aa3bb07c4d	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REa712208ce69c48db51d448e6d16625a0	0	inbound	+18557240606	49	1.79115819931030273	null	new lead		1	\N	\N	1604
2016-11-11 19:25:17.599727+00	2016-11-11 19:51:38.270587+00	2869	completed				+19285309438		1549	2016-11-11 19:25:17.597758	2016-11-11 19:51:06.433246	CA65fd6bfc63c0a9283414dab09ffb4599	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REa58aadfd1001f99a77322e60f96302b9	0	inbound	+18557240606	49	1.7945551872253418	null	new lead		1	\N	\N	1604
2017-05-25 19:45:30.892056+00	2017-11-29 18:38:49.813494+00	5415	completed				+12147787934		269	2017-05-25 19:45:30.890073	2017-05-25 19:49:59.391217	CAbaba366cef7b6fc099dc9207aa586183	\N	133			0	inbound	+12147122250	\N	9.84710383415222168	\N	new lead	gm trnsprtn	9	\N	\N	1605
2017-03-01 21:40:44.588201+00	2017-11-29 18:38:53.211579+00	3273	completed				+17739699892		384	2017-03-01 21:40:44.586457	2017-03-01 21:47:08.556317	CA8b8bb4842a2ef0c95eb9ca2de5fd2c79	\N	\N		https://api.twilio.com/2010-04-01/Accounts/AC5422b9b221417a7a84556a92f6edc492/Recordings/REbc317413b6517118aea68742d4bf37ab	0	inbound	+12146922088	\N	346.42463493347168	\N	new lead		9	\N	\N	1606
2017-04-05 14:24:11.220268+00	2017-11-29 18:38:49.804426+00	3691	missed				+17739699892		50	2017-04-05 14:24:11.218568	2017-04-05 14:25:01.554283	CAaba98a4003ccec66336e6d444d7cab67	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	chicago  il	9	\N	\N	1606
2017-04-05 15:37:32.680672+00	2017-11-29 18:38:49.804433+00	3692	completed				+17739699892		42	2017-04-05 15:37:32.67872	2017-04-05 15:38:14.901855	CA743021309c15cbb9a2d133e0918b4f10	\N	125			0	inbound	+12147122250	\N	3.02043604850769043	\N	new lead	chicago  il	9	\N	\N	1606
2017-04-05 15:58:06.728409+00	2017-11-29 18:38:49.804441+00	3693	completed				+17739699892		51	2017-04-05 15:58:06.727131	2017-04-05 15:58:57.890132	CAc285249d27c0b148cf4ac5e5ec14f6d7	\N	126			0	inbound	+12147122250	\N	3.20746088027954102	\N	new lead	chicago  il	9	\N	\N	1606
2017-09-30 14:44:16.126776+00	2017-10-11 15:22:40.274807+00	6547	missed	Ashley	Charles	mobleya08@gmail.com	+16786644776		20	2017-09-30 14:44:16.123276	2017-09-30 14:50:18.973203	CAe4e9898dcfe2fc0dd92530f8af734cb6	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			3	outbound	+17704009016	\N	342.064510107040405	{}	select status		13	\N	\N	1256
2017-10-03 00:55:27.900332+00	2017-10-11 14:29:25.374191+00	6560	missed	Ebony	Sims	Ebonysims0720@gmail.com	+16786930050		\N	2017-10-03 00:55:27.898848	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	1262
2016-06-29 18:40:27.563228+00	2016-06-29 19:16:06.265029+00	659	completed				+13303602062		0	2016-06-29 18:40:27.562195	2016-06-29 18:40:53.920621	CAda3c941a16a4898daab899cf3beb9c16	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	\N			1	outbound	+18555983683	\N	\N	{}	new lead		1	\N	\N	1522
2017-05-31 23:29:38.599868+00	2017-11-29 18:38:49.814309+00	5542	missed				+17739699892		6	2017-05-31 23:29:38.598013	2017-05-31 23:29:44.599054	CA681b2c252b0e7aeff4d4d779544f3331	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	chicago  il	9	\N	\N	1606
2017-03-02 21:36:54.136174+00	2017-11-29 18:38:53.21181+00	3310	completed				+17739699892		99	2017-03-02 21:36:54.133955	2017-03-02 21:38:33.041846	CAecd5d0dca7337df7fc3ca4b9f13615ca	\N	103			0	inbound	+12146922088	\N	34.3354711532592773	\N	new lead	chicago  il	9	\N	\N	1606
2017-05-31 23:31:25.694641+00	2017-11-29 18:38:53.215632+00	5543	completed				+17739699892		386	2017-05-31 23:31:25.692554	2017-05-31 23:37:51.268669	CA971e1b0fd93e1fa366598a120f79fc91	\N	133		https://api.twilio.com/2010-04-01/Accounts/AC5422b9b221417a7a84556a92f6edc492/Recordings/RE7b00b43e8ab68a684423915d5ece54f3	0	inbound	+12146922088	\N	305.622157096862793	\N	new lead	chicago  il	9	\N	\N	1606
2017-10-28 16:28:36.720966+00	2017-10-28 16:29:31.372001+00	6851	completed	Jesse	Mauldin	jmauldin2594@gmail.com	+14049514629		44	2017-10-28 16:28:36.719379	2017-10-28 16:29:31.342072	CAef66ac36dedf5f667e02739870a6d7e7	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE5d18bf98cbee2ff4b3f9641e98fc0d7e	1	outbound	+17704009016	\N	9.25966000556945801	{}	new lead		13	\N	\N	1608
2017-04-18 20:37:59.446223+00	2017-11-29 18:47:25.068122+00	4057	completed				+18179950208		158	2017-04-18 20:37:59.444349	2017-04-18 20:40:37.301825	CAc96827e93f82e0276f73fcb118d1aac6	\N	115		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE335bb4c922070b7950553f2a364541b5	0	inbound	+19728330116	\N	23.8998880386352539	\N	new lead	cell phone  tx	8	\N	\N	1609
2016-07-07 15:06:27.61649+00	2016-07-07 15:14:48.156156+00	811	completed				+14408583511		496	2016-07-07 15:06:27.615413	2016-07-07 15:14:48.155014	CA001a064e270022066f2f60801da73815	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.40182590484619141	{}	new lead		1	\N	\N	1610
2016-07-07 15:14:41.803847+00	2016-07-07 15:16:05.564798+00	812	completed	Harlan	Guesman	NA@noemail.com	+14408583511		0	2016-07-07 15:14:41.802517	2016-07-07 15:15:08.028296	CA053c4181fd987f6adeba9c717d47c463	ee869226-e246-4ab4-aaaa-e9403e2ddd39	\N			1	outbound	+18555983683	\N	14.3999729156494141	{}	new lead		1	\N	\N	1610
2016-07-07 17:34:44.763853+00	2016-07-07 17:35:43.074853+00	815	completed	Harlan	Guesman		+14408583511		53	2016-07-07 17:34:44.762211	2016-07-07 17:35:43.073815	CA573ab5d95b092f51fb7a548264cc4176	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.85280299186706543	{}	new lead		1	\N	\N	1610
2016-07-07 15:03:55.378764+00	2017-11-29 18:32:13.82141+00	810	completed	Harlan	Guesman		+14408583511		48	2016-07-07 15:03:55.376859	2016-07-07 15:04:43.637374	CAca096d985076a7b57a0b01beec133c8f	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE7e10746636cd3be066f6c113d1c8667f	0	inbound	+18555983683	\N	14.2832560539245605	null	new lead		1	\N	\N	1610
2017-12-07 17:11:21.729406+00	2017-12-07 17:50:38.491444+00	7686	completed				+13303511120		2356	2017-12-07 17:11:21.727417	2017-12-07 17:50:37.328661	CAc6f036b94a8809adc154178375962aa2	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE1cf0945910c5481c53a1efb0220a05d6	0	inbound	+18558645656	136	2.18876004219055176	\N	new lead		15	\N	\N	1612
2017-12-06 21:29:44.961496+00	2017-12-06 21:35:51.020363+00	7663	completed				+13615106575		365	2017-12-06 21:29:44.959743	2017-12-06 21:35:50.272072	CAd6200670fbe6d24d53e0b920f3e1532e	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REc17de9868f2e53b23aee24adebd5ff17	0	inbound	+18558645656	136	2.49778103828430176	\N	new lead		15	\N	\N	1614
2017-11-21 17:49:27.915027+00	2017-11-21 17:51:11.161959+00	7162	completed	maria	Navarro		+16787252042		103	2017-11-21 17:49:27.913837	2017-11-21 17:51:10.635993	CA5e40e5a2833b1d114a557ce5cf79d367	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE20c14ce294ef205713014dffcf2c8364	0	inbound	+17704009016	132	20.3912858963012695	\N	new lead		13	\N	\N	1616
2017-10-07 17:40:08.410535+00	2017-10-07 17:42:02.139741+00	6621	completed				+14044547041		114	2017-10-07 17:40:08.408623	2017-10-07 17:42:02.126405	CA4531a0bbf68edc2ff9b42749a10a63a5	\N	150			0	inbound	+17707665732	133	12.7501351833343506	\N	new lead		13	\N	\N	1617
2017-12-14 15:33:31.401836+00	2017-12-14 15:36:22.857084+00	7866	completed	Julie	Bailey	jb950319@yahoo.com	+16789636179		75	2017-12-14 15:33:31.399958	2017-12-14 15:34:59.447972	CAa3912e248fa65213de87446e9fb8ad9d	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE1e0fa96168524a4599f565b1e7ff1f7d	1	outbound	+17704009016	\N	9.48546314239501953	{}	select status		13	\N	\N	1618
2018-01-05 00:05:32.826234+00	2018-01-05 01:48:10.951188+00	8194	completed	Mike	Sally		+17732909650		26	2018-01-05 00:05:32.822756	2018-01-05 00:05:58.871063	CAbfaae1a4e754dbce7c6fafbdacb5f855	\N	15		https://buyercall-test-recordings.s3.amazonaws.com/FINSERV%20Group_4/8194_recording_623ebeb36fa747f0a2b1923fdfcad99d	0	inbound	+13367394103	139	12.1873888969421387	\N	sold customer	vermaak hermanu	1	\N	\N	1620
2018-01-02 16:52:03.408842+00	2018-01-05 01:48:10.951181+00	8178	completed	Mike	Sally		+17732909650		36	2018-01-02 16:52:03.407119	2018-01-02 16:52:39.013256	CA951faa60b2097586c127d7e896b80f63	\N	164			0	inbound	+13367394103	139	14.2752339839935303	\N	sold customer	vermaak hermanu	1	\N	\N	1620
2018-01-02 16:40:07.590025+00	2018-01-05 01:48:10.951174+00	8177	completed	Mike	Sally		+17732909650		47	2018-01-02 16:40:07.587891	2018-01-02 16:40:54.297314	CA95d14cd7d2cece5eb8f948179ef4dc84	\N	15			0	inbound	+13367394103	139	33.52571702003479	\N	sold customer	vermaak hermanu	1	\N	\N	1620
2018-01-02 16:07:51.798435+00	2018-01-05 01:48:10.951167+00	8176	completed	Mike	Sally		+17732909650		30	2018-01-02 16:07:51.796461	2018-01-02 16:08:30.031864	CAc2b367211bdd6dc0a71bb858a4c5fe01	4a6a5a0a-9a17-4834-976d-da5fd73899ff	15			1	outbound	+13367394103	\N	7.3518521785736084	{}	sold customer		1	adf	\N	1620
2018-01-02 16:03:43.917208+00	2018-01-05 01:48:10.95116+00	8175	completed	John	Doe		+17732909650		39	2018-01-02 16:03:43.915108	2018-01-02 16:04:32.005358	CA55ba2191c9fd58a1e3243e859debe0f0	4a6a5a0a-9a17-4834-976d-da5fd73899ff	15			1	outbound	+13367394103	\N	8.70356416702270508	{}	sold customer		1	adf	\N	1620
2018-01-05 00:29:53.866632+00	2018-01-05 01:48:10.936883+00	8195	completed	Mike	Sally		+17732909650		31	2018-01-05 00:29:53.864583	2018-01-05 00:30:25.310806		\N	15			0	outbound	+13367394103	139	\N	\N	sold customer		1	\N	0	1620
2016-07-28 14:35:00.857305+00	2018-01-05 01:48:10.951094+00	989	completed				+17732909650		65	2016-07-28 14:35:00.85597	2016-07-28 14:36:05.78081	CA46760935c19aa84eed63ead63b0731b3	\N	\N			0	inbound	+18559694001	70	40.8736429214477539	null	sold customer		1	\N	\N	1620
2016-07-28 14:38:48.979915+00	2018-01-05 01:48:10.951121+00	991	completed				+17732909650		52	2016-07-28 14:38:48.978958	2016-07-28 14:39:40.816423	CA04677b06133bcfe472936a80b3b35393	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE3ec713b394f48082794f20300f56addb	0	inbound	+18555343978	48	19.5449459552764893	null	sold customer		1	\N	\N	1620
2017-10-05 10:38:00.678815+00	2017-10-11 14:20:51.781141+00	6589	missed	Jewell 	Rostick 	Jewellrostick99@gmail.com	+14704889582		\N	2017-10-05 10:38:00.676594	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	548
2017-05-12 23:24:17.689426+00	2017-11-29 18:38:49.81143+00	5052	completed				+19176041956		50	2017-05-12 23:24:17.688018	2017-05-12 23:25:08.090475	CAc23ce0d65a0ccb95ef097ee93611c738	\N	105			0	inbound	+12147122250	\N	9.35915088653564453	\N	new lead	foody zachary  	9	\N	\N	1562
2016-07-28 14:45:24.082093+00	2018-01-05 01:48:10.951129+00	992	completed				+17732909650		142	2016-07-28 14:45:24.080839	2016-07-28 14:47:45.704469	CAda5401abe73d8c75aab2ba46aecf33e6	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE21f7b3569f2e96a2e463bd614a7d1a82	0	inbound	+18559694001	70	2.25727009773254395	null	sold customer		1	\N	\N	1620
2018-01-05 02:48:48.452882+00	2018-01-05 02:49:04.789848+00	8197	completed	Mike	Sally		+17732909650		16	2018-01-05 02:48:48.450544	2018-01-05 02:49:04.787054	CA1305d9fe4a1c45ef2ef5507f131aafd0	\N	15			0	inbound	+13367394103	139	8.42686605453491211	\N	sold customer	vermaak hermanu	1	\N	\N	1620
2018-01-05 02:48:05.761539+00	2018-01-05 02:48:26.988482+00	8196	completed	Mike	Sally		+17732909650		21	2018-01-05 02:48:05.758309	2018-01-05 02:48:26.985426		\N	15			0	outbound	+13367394103	139	\N	\N	sold customer		1	\N	\N	1620
2016-07-28 14:55:30.130709+00	2018-01-05 01:48:10.951137+00	993	completed				+17732909650		162	2016-07-28 14:55:30.128768	2016-07-28 14:58:12.453927	CA00344751e9403c04af510a15c1f41e61	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE6b696831a8a3b141605bb51ef79613ed	0	inbound	+18555343978	48	12.5796780586242676	null	sold customer		1	\N	\N	1620
2016-08-09 19:20:51.740482+00	2018-01-05 01:48:10.951152+00	1365	completed				+17732909650		78	2016-08-09 19:20:51.739473	2016-08-09 19:22:09.488657	CA72b15577782da4cc9659a1b3b8a3f81f	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REba4da65a4ca39f01fd3c3312001bdb8e	0	inbound	+18555343978	48	10.9134271144866943	null	sold customer		1	\N	\N	1620
2018-01-07 20:20:43.500191+00	2018-01-07 20:20:54.849702+00	8200	completed	Mike	Sally		+17732909650		11	2018-01-07 20:20:43.497244	2018-01-07 20:20:54.847538	CA6b233b2d87cb65799eaa8bf947bd6154	\N	15			0	inbound	+13367394103	139	7.39224100112915039	\N	sold customer	vermaak hermanu	1	\N	\N	1620
2018-01-07 20:13:38.922519+00	2018-01-07 20:14:16.149268+00	8199	completed	Mike	Sally		+17732909650		37	2018-01-07 20:13:38.919418	2018-01-07 20:14:16.146789		\N	15			0	outbound	+13367394103	139	\N	\N	sold customer		1	\N	\N	1620
2017-04-13 15:54:20.949856+00	2017-04-13 15:54:29.093352+00	3861	missed	Mike			+17732909650		8	2017-04-13 15:54:20.948295	2017-04-13 15:54:29.084675	CA74fe62fa7c28b36a9118f126407ba65e	\N	\N			0	inbound	+17732950301	104	\N	\N	new lead	vermaak hermanu	1	\N	\N	1620
2016-02-12 20:51:38.865069+00	2016-02-12 20:52:33.832303+00	47	completed	Gary			+17732909650		\N	2016-02-12 20:51:38.864208	\N	CAc00ab6b902b04f74cb0aff27721d19f2	53da9e33-88fb-4b04-baca-339193fd55f7	1			1	inbound		\N	\N	\N	new lead		1	\N	\N	1620
2016-08-11 00:09:16.471355+00	2016-08-11 00:09:16.471402+00	1410	missed	Harry	Vermaak	harry@buyercall.com	+17732909650	I need a website build asap	\N	2016-08-11 00:09:16.46991	\N		3c9c1a15-65b0-4fc0-a2c5-c9818206863f	\N			0	outbound	+17735469660	\N	\N	{}	new lead		1	\N	\N	1620
2016-08-11 00:14:53.64994+00	2016-08-11 00:14:53.674718+00	1411	missed	Barry		hv13@hotmail.com	+17732909650		\N	2016-08-11 00:14:53.648769	\N		030c4f8d-8f6a-470d-a473-e83e32d9e8c0	\N			0	outbound	+17735469660	\N	\N	{}	new lead		1	\N	\N	1620
2017-03-01 15:55:03.452156+00	2017-03-01 16:01:37.640223+00	3264	completed	Mike			+17732909650		394	2017-03-01 15:55:03.44863	2017-03-01 16:01:37.637256	CAadb426073dbb3f63552fdb8a2edd24b1	\N	91		https://api.twilio.com/2010-04-01/Accounts/ACafc5b14e320f72bf4ed973f9ab19c98d/Recordings/REecd66fa0893d0efe9e099df3f608837f	0	inbound	+17732950301	104	357.723981142044067	\N	new lead	VERMAAK HERMANU	1	\N	\N	1620
2017-03-02 14:41:03.767836+00	2017-03-02 14:41:26.834453+00	3288	completed	Mike			+17732909650		23	2017-03-02 14:41:03.763035	2017-03-02 14:41:26.822337	CA9f057ce32d006ce5d475f3e16f55e595	\N	91			0	inbound	+17732950301	104	11.8720600605010986	\N	new lead		1	\N	\N	1620
2017-03-02 15:14:21.940491+00	2017-03-02 15:14:48.047947+00	3289	completed	Mike			+17732909650		26	2017-03-02 15:14:21.936922	2017-03-02 15:14:48.035957	CAbbc79657df5268f27a70face5d670563	\N	91			0	inbound	+17732950301	104	12.3626420497894287	\N	new lead		1	\N	\N	1620
2017-03-02 20:46:53.674192+00	2017-03-02 20:47:19.142328+00	3306	completed	Mike			+17732909650		25	2017-03-02 20:46:53.672159	2017-03-02 20:47:19.131653	CA31895d1c051b6b44c1af304694a4f136	\N	91			0	inbound	+17732950301	104	12.9160151481628418	\N	new lead		1	\N	\N	1620
2017-03-02 21:46:38.919654+00	2017-03-02 21:52:22.612238+00	3311	missed	Mike			+17732909650		1	2017-03-02 21:46:38.917989	2017-03-02 21:46:40.220899	CA4ed7e4ceeace6a7dd845bfcac1bb4495	\N	\N			0	inbound	+17732950301	104	324.052023887634277	\N	new lead		1	\N	\N	1620
2017-03-08 03:33:36.793567+00	2017-03-08 03:34:05.753216+00	3339	completed	Mike			+17732909650		29	2017-03-08 03:33:36.789639	2017-03-08 03:34:05.742299	CA52db0966ba17647cf350b08cdda4ec0b	\N	91			0	inbound	+17732950301	104	13.961514949798584	\N	new lead		1	\N	\N	1620
2017-03-08 16:42:35.563677+00	2017-03-08 16:43:09.494508+00	3341	completed	Mike			+17732909650		34	2017-03-08 16:42:35.561482	2017-03-08 16:43:09.48456	CAa02bbabf6c61b44d1e33997c302c56df	\N	91			0	inbound	+17732950301	104	19.4418480396270752	\N	new lead		1	\N	\N	1620
2017-04-13 16:15:58.47173+00	2017-04-13 16:16:28.863816+00	3870	missed	Mike			+17732909650		30	2017-04-13 16:15:58.470271	2017-04-13 16:16:28.850974	CA26a3b636ce5bc2d8f7f17be86b5f02d2	\N	\N			0	inbound	+17732950301	104	\N	\N	new lead	vermaak hermanu	1	\N	\N	1620
2017-04-13 16:21:35.945868+00	2017-04-13 16:22:32.144655+00	3872	missed	Mike			+17732909650		56	2017-04-13 16:21:35.941858	2017-04-13 16:22:32.129681	CA1d9cc799914abca0628df75bde62ce8c	\N	\N			0	inbound	+17732950301	104	\N	\N	new lead	vermaak hermanu	1	\N	\N	1620
2017-03-10 03:33:08.297718+00	2017-03-10 03:39:39.123762+00	3370	completed	Mike			+17732909650		391	2017-03-10 03:33:08.293334	2017-03-10 03:39:39.120496	CAd3c91038737e6438b755463e5108b1b6	\N	91		https://api.twilio.com/2010-04-01/Accounts/ACafc5b14e320f72bf4ed973f9ab19c98d/Recordings/RE403be5c743e64d8443116ddbe7ecea9e	0	inbound	+17732950301	104	361.860098123550415	\N	new lead		1	\N	\N	1620
2017-03-10 03:40:16.788012+00	2017-03-10 03:46:39.136946+00	3371	completed	Mike			+17732909650		381	2017-03-10 03:40:16.786498	2017-03-10 03:46:37.97893	CAd9807fddb8209d5ff6a330330fad0713	\N	91		https://api.twilio.com/2010-04-01/Accounts/ACafc5b14e320f72bf4ed973f9ab19c98d/Recordings/RE331c0743bd35d7dcc40af18e838e09aa	0	inbound	+17732950301	104	365.572057008743286	\N	new lead		1	\N	\N	1620
2017-03-10 03:47:12.481484+00	2017-03-10 03:47:35.248631+00	3372	completed	Mike			+17732909650		23	2017-03-10 03:47:12.480095	2017-03-10 03:47:35.238237	CA2a87e5ad23a6949776086086bc8208e5	\N	91			0	inbound	+17732950301	104	9.32208013534545898	\N	new lead		1	\N	\N	1620
2017-03-10 03:49:32.765148+00	2017-03-10 03:50:20.204754+00	3373	completed	Mike			+17732909650		47	2017-03-10 03:49:32.763503	2017-03-10 03:50:20.195496	CA7fbf561e3fd51d009725a2ab3cbe7a06	\N	2			0	inbound	+17732950301	104	12.6162948608398438	\N	new lead		1	\N	\N	1620
2017-03-10 03:50:29.789175+00	2017-03-10 03:57:17.707821+00	3374	completed	Mike			+17732909650		408	2017-03-10 03:50:29.787573	2017-03-10 03:57:17.705266	CAa633b37329127987e6124f5296012a54	\N	91		https://api.twilio.com/2010-04-01/Accounts/ACafc5b14e320f72bf4ed973f9ab19c98d/Recordings/REc21c3dc1a41d8458b44f35982a0ba7e5	0	inbound	+17732950301	104	383.807281970977783	\N	new lead		1	\N	\N	1620
2017-03-13 02:12:50.117628+00	2017-03-13 02:13:40.48331+00	3389	completed	Mike			+17732909650		50	2017-03-13 02:12:50.114496	2017-03-13 02:13:40.473881	CA81f010fc122d16b02f589f94babbfce0	\N	2			0	inbound	+17732950301	104	10.7187418937683105	\N	new lead		1	\N	\N	1620
2017-03-13 02:14:39.175828+00	2017-03-13 02:16:06.075253+00	3390	completed	Mike			+17732909650		87	2017-03-13 02:14:39.173704	2017-03-13 02:16:06.072207	CA676a259821a006ec54f60963c7837400	\N	91		https://api.twilio.com/2010-04-01/Accounts/ACafc5b14e320f72bf4ed973f9ab19c98d/Recordings/RE98dc61ab57e5fe85887df5abddc3c5f1	0	inbound	+17732950301	104	56.0177199840545654	\N	new lead		1	\N	\N	1620
2017-03-16 02:32:56.434142+00	2017-03-16 02:33:23.795241+00	3457	completed	Mike			+17732909650		27	2017-03-16 02:32:56.430796	2017-03-16 02:33:23.778257	CAd9ae40dbee6f3db3350a7eb2a229defa	\N	2			0	inbound	+17732950301	104	11.7932369709014893	\N	new lead		1	\N	\N	1620
2017-10-07 11:12:06.926524+00	2017-10-11 14:18:09.679016+00	6611	missed	Stephanie	Norris	Sjforever.103105@gmail.com	+17063518478		\N	2017-10-07 11:12:06.924878	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	866
2017-03-22 03:35:04.253832+00	2017-03-22 03:35:38.094309+00	3523	completed	Mike			+17732909650		34	2017-03-22 03:35:04.247399	2017-03-22 03:35:38.080551	CA35bdbae884258b26783817ed3d3fb5f5	\N	91			0	inbound	+17732950301	104	16.6194009780883789	\N	new lead		1	\N	\N	1620
2017-03-22 03:37:10.798901+00	2017-03-22 03:37:35.509391+00	3524	completed	Mike			+17732909650		24	2017-03-22 03:37:10.796925	2017-03-22 03:37:34.723527	CA4cd09b52e3a28cc64926764919289b9b	\N	2		https://api.twilio.com/2010-04-01/Accounts/ACafc5b14e320f72bf4ed973f9ab19c98d/Recordings/REeb7003d3e871c4aa347972e30c91471a	0	inbound	+17732950301	104	11.1711800098419189	\N	new lead		1	\N	\N	1620
2017-03-22 03:40:56.673913+00	2017-03-22 03:42:21.112153+00	3527	completed	Mike			+17732909650		84	2017-03-22 03:40:56.67237	2017-03-22 03:42:21.108924	CAee8de5f4d2bfd101afae6e493e2dcfe0	\N	91		https://api.twilio.com/2010-04-01/Accounts/ACafc5b14e320f72bf4ed973f9ab19c98d/Recordings/RE436e4a3a0dd88df45d7835a7c405c725	0	inbound	+17732950301	104	63.3273332118988037	\N	new lead		1	\N	\N	1620
2017-03-22 03:43:07.736778+00	2017-03-22 03:45:04.962365+00	3528	missed	Mike			+17732909650		56	2017-03-22 03:43:07.735238	2017-03-22 03:44:04.132642	CAfafb74870f72dfdc0830e4c0f1fe8aad	\N	\N			0	inbound	+17732950301	104	79.5008049011230469	\N	new lead		1	\N	\N	1620
2017-03-22 03:45:48.911502+00	2017-03-22 03:47:48.712818+00	3529	completed	Mike			+17732909650		120	2017-03-22 03:45:48.910025	2017-03-22 03:47:48.709128	CA42697d2687a9671a86d86351a9cc3a9c	\N	91			0	inbound	+17732950301	104	95.7813229560852051	\N	new lead		1	\N	\N	1620
2017-03-22 03:48:02.867092+00	2017-03-22 03:49:56.472742+00	3530	missed	Mike			+17732909650		49	2017-03-22 03:48:02.865473	2017-03-22 03:48:52.14878	CA7301844dd0db10a1ba627cb76e7d6ec2	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACafc5b14e320f72bf4ed973f9ab19c98d/Recordings/RE4362d69ed08f56174684da67eb197cdc	0	inbound	+17732950301	104	\N	\N	new lead		1	\N	\N	1620
2017-03-22 03:50:36.934792+00	2017-03-22 03:51:57.71028+00	3531	completed	Mike			+17732909650		81	2017-03-22 03:50:36.933297	2017-03-22 03:51:57.707598	CA67c90c6362dccd757f584759cc0d643b	\N	91			0	inbound	+17732950301	104	61.7388448715209961	\N	new lead		1	\N	\N	1620
2017-03-22 03:52:26.180561+00	2017-03-22 03:54:23.248738+00	3532	missed	Mike			+17732909650		53	2017-03-22 03:52:26.178664	2017-03-22 03:53:19.611236	CAee259dc838c3b69a1ef5dd884b02688d	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACafc5b14e320f72bf4ed973f9ab19c98d/Recordings/RE7d6327683ab249e433b44f78e8c93ba8	0	inbound	+17732950301	104	96.4186289310455322	\N	new lead		1	\N	\N	1620
2017-03-22 03:55:12.794045+00	2017-03-22 04:01:51.207968+00	3533	missed	Mike			+17732909650		37	2017-03-22 03:55:12.79129	2017-03-22 03:55:49.538078	CAe0f0ada225aab011a09bc25df3258c37	\N	\N			0	inbound	+17732950301	104	369.81987190246582	\N	new lead		1	\N	\N	1620
2017-04-10 14:05:01.092239+00	2017-04-10 14:05:44.612619+00	3764	missed	Mike			+17732909650		14	2017-04-10 14:05:01.090375	2017-04-10 14:05:15.393863	CAf1a73a69263e82f0a5624461aaa6d5c6	\N	\N			0	inbound	+17732950301	104	\N	\N	new lead		1	\N	\N	1620
2017-04-10 01:45:05.671061+00	2017-04-10 01:45:34.473372+00	3759	completed	Mike			+17732909650		29	2017-04-10 01:45:05.665995	2017-04-10 01:45:34.459819	CA22dd6865991a1621777675fb330aa142	\N	91			0	inbound	+17732950301	104	14.218980073928833	\N	new lead		1	\N	\N	1620
2017-04-10 01:47:27.242961+00	2017-04-10 01:54:04.132095+00	3760	missed	Mike			+17732909650		30	2017-04-10 01:47:27.241693	2017-04-10 01:47:57.224205	CA2cd8d6658fb2f5820b76c8518778ff93	\N	\N			0	inbound	+17732950301	104	381.243159055709839	\N	new lead		1	\N	\N	1620
2017-04-10 02:32:13.835697+00	2017-04-10 02:32:35.310407+00	3762	completed	Mike			+17732909650		21	2017-04-10 02:32:13.829129	2017-04-10 02:32:34.487186	CAa169cc949382a100e451320a57684ab2	\N	2		https://api.twilio.com/2010-04-01/Accounts/ACafc5b14e320f72bf4ed973f9ab19c98d/Recordings/RE02e8f10b67ea4d8b84649a63565fed9b	0	inbound	+17732950301	104	9.83206701278686523	\N	new lead		1	\N	\N	1620
2017-06-15 02:33:59.324174+00	2017-06-15 02:34:27.936046+00	5583	completed	Mike			+17732909650		28	2017-06-15 02:33:59.320548	2017-06-15 02:34:26.83845	CA222510c4d3d18daa164fe08a73d5b3e3	\N	91		https://api.twilio.com/2010-04-01/Accounts/ACafc5b14e320f72bf4ed973f9ab19c98d/Recordings/REb98ee3aef77af54e2835e8c455ac42fb	0	inbound	+17732950301	104	15.588129997253418	\N	new lead	vermaak hermanu	1	\N	\N	1620
2017-06-15 02:36:23.06925+00	2017-06-15 02:36:48.828478+00	5584	missed	Bevan		b@example.co	+17732909650		0	2017-06-15 02:36:23.066532	2017-06-15 02:36:48.826523	CA7c792425015928190069203420ed91cb	030c4f8d-8f6a-470d-a473-e83e32d9e8c0	\N			1	outbound	+17735469660	\N	\N	{}	new lead		1	\N	\N	1620
2017-04-12 15:14:49.255395+00	2017-04-12 15:15:45.416288+00	3809	missed	Mike			+17732909650		27	2017-04-12 15:14:49.253516	2017-04-12 15:15:16.226001	CA2de2bf047ee11e53697e2d9cd30f001f	\N	\N			0	inbound	+17732950301	104	\N	\N	new lead		1	\N	\N	1620
2017-04-12 15:20:02.181804+00	2017-04-12 15:20:15.525916+00	3810	missed	Mike			+17732909650		13	2017-04-12 15:20:02.17801	2017-04-12 15:20:15.505396	CAac3e519e43139f6b533219729c3a5b25	\N	\N			0	inbound	+17732950301	104	\N	\N	new lead	vermaak hermanu	1	\N	\N	1620
2017-04-30 15:46:54.533938+00	2017-04-30 15:47:26.301113+00	4483	completed	Mike			+17732909650		30	2017-04-30 15:46:54.530868	2017-04-30 15:47:24.119926	CA6cb5b8ae83f87f5b0a4d43d11a5d6739	\N	91		https://api.twilio.com/2010-04-01/Accounts/ACafc5b14e320f72bf4ed973f9ab19c98d/Recordings/RE581a7f12bbb11264ed5e04174ca47263	0	inbound	+17732950301	104	6.98624610900878906	\N	new lead	vermaak hermanu	1	\N	\N	1620
2017-04-30 15:58:41.248902+00	2017-04-30 15:59:02.822403+00	4484	completed	Mike			+17732909650		21	2017-04-30 15:58:41.24596	2017-04-30 15:59:02.142749	CAe9f4080f3e081df6546e9f0afe5d3ea6	\N	91		https://api.twilio.com/2010-04-01/Accounts/ACafc5b14e320f72bf4ed973f9ab19c98d/Recordings/REabbd4c91ccdc99749a51338c7f363241	0	inbound	+17732950301	104	9.79456114768981934	\N	new lead	vermaak hermanu	1	\N	\N	1620
2017-05-07 23:47:04.532929+00	2017-05-07 23:47:28.891054+00	4821	completed	Mike			+17732909650		24	2017-05-07 23:47:04.529817	2017-05-07 23:47:28.146327	CA436c90a3296c3bdf8c631dac571e9634	\N	91		https://api.twilio.com/2010-04-01/Accounts/ACafc5b14e320f72bf4ed973f9ab19c98d/Recordings/RE9101540643a0d65863f71388872e53d9	0	inbound	+17732950301	104	12.7482569217681885	\N	new lead	vermaak hermanu	1	\N	\N	1620
2017-12-31 21:43:35.687026+00	2017-12-31 21:43:50.263498+00	8169	missed	Bevan			+17732909650		15	2017-12-31 21:43:35.685646	2017-12-31 21:43:50.24684	CAa6c32474774ef4305275fce086734e45	\N	\N			0	inbound	+17732950301	104	\N	\N	new lead	vermaak hermanu	1	\N	\N	1620
2016-07-04 22:52:31.659024+00	2016-07-04 22:52:41.106953+00	749	missed	RASOOL	MUHAMMAD		+17732909650		9	2016-07-04 22:52:31.65783	2016-07-04 22:52:41.104487	CAb77048433491812654e9cfc0a7831c5a	\N	\N			0	inbound	+17735469660	16	7.50710296630859375	null	new lead		1	\N	\N	1620
2016-02-01 20:29:56.831628+00	2016-02-01 20:30:59.785812+00	19	completed	Gary	Mcsaw	hv13@hotmail.com	+17732909650		\N	2016-02-01 20:29:56.829929	\N	CA9f847f3cfa2faa971ad8ee6e49278baf	\N	1			0	inbound		\N	\N	\N	new lead		1	\N	\N	1620
2016-03-28 14:43:39.681609+00	2016-03-28 14:43:40.629625+00	60	missed	Harry Townsen			+17732909650		\N	2016-03-28 14:43:39.665115	\N		53da9e33-88fb-4b04-baca-339193fd55f7	\N			0	outbound	+18555000163	\N	\N	\N	new lead		1	\N	\N	1620
2016-08-01 16:03:14.799496+00	2016-08-01 16:03:29.673158+00	1071	completed	VERMAAK	HERMANU		+17732909650		15	2016-08-01 16:03:14.797815	2016-08-01 16:03:29.670946	CAd8488b339d0d65d4fa1b77994db3dcfe	\N	1			0	inbound	+17735469660	16	7.98115205764770508	null	new lead		1	\N	\N	1620
2017-04-13 15:55:44.581303+00	2017-04-13 15:55:50.649685+00	3862	missed	Mike			+17732909650		6	2017-04-13 15:55:44.578723	2017-04-13 15:55:50.637208	CAe1fd8e9b360c6094a0c6ccdc6c96366e	\N	\N			0	inbound	+17732950301	104	\N	\N	new lead	vermaak hermanu	1	\N	\N	1620
2016-07-27 23:37:55.816616+00	2016-07-27 23:38:33.385386+00	986	completed	RASOOL	MUHAMMAD		+17732909650		38	2016-07-27 23:37:55.814996	2016-07-27 23:38:33.381609		\N	1			0	outbound	+17735469660	16	\N	null	new lead		1	\N	\N	1620
2016-02-12 21:01:20.233+00	2016-02-12 21:02:07.720826+00	48	completed	Cory			+17732909650		\N	2016-02-12 21:01:20.23192	\N	CA087386a505942f17836da442f8ebbfdb	53da9e33-88fb-4b04-baca-339193fd55f7	2			1	inbound		\N	\N	\N	new lead		1	\N	\N	1620
2016-02-12 21:07:50.221403+00	2016-02-12 21:08:52.50837+00	49	completed	Cory			+17732909650		\N	2016-02-12 21:07:50.220094	\N	CA8b923c2c13c5623c9c91128b0acc7285	53da9e33-88fb-4b04-baca-339193fd55f7	2			1	inbound		\N	\N	\N	new lead		1	\N	\N	1620
2016-02-12 21:16:20.118461+00	2016-02-12 21:17:13.063978+00	52	missed	John			+17732909650		\N	2016-02-12 21:16:20.117223	\N	CA7c66929eddc23d4fb2600a4661826647	53da9e33-88fb-4b04-baca-339193fd55f7	\N			2	inbound		\N	\N	\N	new lead		1	\N	\N	1620
2017-10-09 07:51:41.422575+00	2017-10-11 14:08:03.269498+00	6628	missed	Shelley 	Dean	Shelleytessadean525@gmail.com	+14702192605		\N	2017-10-09 07:51:41.421113	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	1680
2017-10-09 12:27:57.4959+00	2017-10-11 14:06:09.010205+00	6629	missed	Jessica	Hill	Jacemommy11@gmail.com	+17066146829		\N	2017-10-09 12:27:57.494491	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	2267
2017-10-09 22:04:11.210896+00	2017-10-11 13:51:26.916709+00	6638	missed	Evelyn	Witherow	coleio0409@gmail.com	+14702090965		0	2017-10-09 22:04:11.209483	2017-10-09 22:10:05.650829	CAad8d7f73bc8b7151a44a1b788bbed151	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			3	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	2924
2017-10-09 22:27:04.500855+00	2017-10-11 13:48:08.206397+00	6639	missed	Kassi	Williams	kassi.williams.10@gmail.com	+17064106327		0	2017-10-09 22:27:04.499117	2017-10-09 22:33:02.169353	CA9ce7132493f9d87cec9ac831f12188b4	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			3	outbound	+17704009016	\N	9.71086311340332031	{}	select status		13	\N	\N	1529
2017-12-05 15:29:05.714362+00	2017-12-05 15:30:14.187569+00	7583	completed	Diana	Deleon	Deleon0920@aol.com	+16306314833		65	2017-12-05 15:29:05.71226	2017-12-05 15:30:14.186207	CA4a2035d85e3cc3f5de11565ef619f803	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.56107091903686523	{}	new lead		15	\N	\N	1615
2017-12-05 15:29:03.433925+00	2017-12-05 15:30:21.452268+00	7582	completed	Diana	Deleon	Deleon0920@aol.com	+16306314833		73	2017-12-05 15:29:03.432057	2017-12-05 15:30:21.450449	CAf390409769c0383ce8e338acf13794a9	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	3.01249408721923828	{}	new lead		15	\N	\N	1615
2017-11-21 17:48:54.20711+00	2017-11-21 17:49:37.918638+00	7160	completed	maria	Navarro	mariamnavarro8@gmail.com	+16787252042		27	2017-11-21 17:48:54.204357	2017-11-21 17:49:37.895733	CA0d69f24ce1857ebb64a6830d1cec18c2	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE879375a6ab7e6885291667668cfba880	1	outbound	+17704009016	\N	13.5614879131317139	{}	new lead		13	\N	\N	1616
2016-02-12 21:10:31.272194+00	2016-02-22 19:10:08.811058+00	50	completed	Shaun			+17732909650		48	2016-02-12 21:10:41	2016-02-12 21:11:29	CA5dd3073f4dc52517097fee71a41ecd25	53da9e33-88fb-4b04-baca-339193fd55f7	2		https://api.twilio.com/2010-04-01/Accounts/AC9029a05ead529490894695223ef2d813/Recordings/REd32dc7f7b06d8b9ccaeef9f9d6433621	1	inbound		\N	\N	\N	new lead		1	\N	\N	1620
2016-04-08 16:38:13.626773+00	2016-04-08 16:38:13.626838+00	72	missed	Herman	Vermaak	hv13@hotmail.com	+17732909650	This is test request to test the submit thank you message	\N	\N	\N		53da9e33-88fb-4b04-baca-339193fd55f7	\N			1	outbound		\N	\N	\N	new lead		1	\N	\N	1620
2016-04-19 15:49:47.181155+00	2016-04-19 15:49:47.872799+00	73	missed	Herman			+17732909650		\N	2016-04-19 15:49:47.17883	\N		53da9e33-88fb-4b04-baca-339193fd55f7	\N			0	outbound	+18555000163	\N	\N	\N	new lead		1	\N	\N	1620
2017-04-13 15:56:46.075358+00	2017-04-13 15:56:51.770833+00	3864	missed	Mike			+17732909650		6	2017-04-13 15:56:46.074091	2017-04-13 15:56:51.755297	CAc8e1daa3812b47b893922ad887836fc7	\N	\N			0	inbound	+17732950301	104	\N	\N	new lead	vermaak hermanu	1	\N	\N	1620
2017-04-13 15:56:33.915671+00	2017-04-13 15:56:34.055387+00	3863	missed	Mike			+17732909650		0	2017-04-13 15:56:33.913735	2017-04-13 15:56:34.043312	CA798bf8709a412af67700ab04d0293ec9	\N	\N			0	inbound	+17732950301	104	\N	\N	new lead	vermaak hermanu	1	\N	\N	1620
2016-08-11 00:07:47.089802+00	2016-08-11 00:07:47.118531+00	1409	missed	Harry Vermaak		harry@buyercall.com	+17732909650		\N	2016-08-11 00:07:47.088565	\N		030c4f8d-8f6a-470d-a473-e83e32d9e8c0	\N			0	outbound	+17735469660	\N	\N	{}	new lead		1	\N	\N	1620
2016-11-27 20:07:22.61738+00	2016-11-27 20:07:50.120674+00	2986	missed	John		hv13@hotmail.com	+17732909650		14	2016-11-27 20:07:22.615707	2016-11-27 20:07:50.119023	CAd03e6bbc3d4bc64c11fed46896585525	030c4f8d-8f6a-470d-a473-e83e32d9e8c0	\N			1	outbound	+17735469660	\N	12.5187051296234131	{}	new lead		1	\N	\N	1620
2016-11-27 20:18:07.710865+00	2016-11-27 20:18:29.844303+00	2989	missed	Mike		hv13@hotmail.com	+17732909650		11	2016-11-27 20:18:07.709909	2016-11-27 20:18:29.842953	CAb2f116baa6b2926044c47bb7e52def0c	030c4f8d-8f6a-470d-a473-e83e32d9e8c0	\N			1	outbound	+17735469660	\N	10.7741968631744385	{}	new lead		1	\N	\N	1620
2017-03-02 03:31:37.824288+00	2017-03-02 03:31:59.470494+00	3287	completed	Mike			+17732909650		22	2017-03-02 03:31:37.820884	2017-03-02 03:31:59.460081	CA8e5c5342c8d36ed5c7746bc6217aa00f	\N	91			0	inbound	+17732950301	104	10.9538049697875977	\N	new lead		1	\N	\N	1620
2017-04-10 14:02:44.577511+00	2017-04-10 14:09:08.197446+00	3763	missed	Mike			+17732909650		21	2017-04-10 14:02:44.574837	2017-04-10 14:03:05.239326	CA632ef3aed4795d5dcbcc47417a17ad6f	\N	\N			0	inbound	+17732950301	104	\N	\N	new lead		1	\N	\N	1620
2016-11-03 00:44:45.617051+00	2016-12-10 01:05:11.337168+00	2608	completed				+16469323694		6	2016-11-03 00:44:45.614996	2016-11-03 00:44:51.63005	CA49a13d8d2124958a190b45094e747dcf	\N	25			0	inbound	+18555693686	\N	1.65146398544311523	null	new lead		3	\N	\N	1623
2016-08-28 18:09:15.133384+00	2016-08-29 12:09:36.28067+00	1804	missed	gerald	holmes	gjh3ps@gmail.com	+16618106174		\N	2016-08-28 18:09:15.131909	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - autopay		1	\N	\N	1624
2016-08-28 18:00:43.220122+00	2017-11-29 18:31:37.369097+00	1803	missed				+16618106174		16	2016-08-28 18:00:43.218275	2016-08-28 18:00:59.558557	CA9105a7d2dd4808995bd34311f3cba024	\N	\N			0	inbound	+18555472453	\N	\N	null	application submitted - autopay		1	\N	\N	1624
2017-12-02 21:37:17.188569+00	2017-12-02 21:41:15.002855+00	7502	completed				+12148156626		237	2017-12-02 21:37:17.186335	2017-12-02 21:41:14.528269	CA20b046123a3a2688ae2630f646474c76	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REd0b3de8a18f4d2d3bcea25a379715af0	0	inbound	+18177569010	124	106.254746913909912	\N	new lead	morgan robert	12	\N	\N	1625
2017-05-22 22:08:49.560064+00	2017-11-29 18:38:49.812735+00	5306	completed				+18173208917		66	2017-05-22 22:08:49.558107	2017-05-22 22:09:55.950526	CAace0653d1af7250ba80b7925d71c68d6	\N	125			0	inbound	+12147122250	\N	0.91842198371887207	\N	new lead	cell phone   tx	9	\N	\N	1626
2017-05-22 22:09:49.442131+00	2017-11-29 18:38:49.812742+00	5307	completed				+18173208917		84	2017-05-22 22:09:49.440506	2017-05-22 22:11:13.753938	CA7c31e82e15655e609a08fdbac2b8f6e6	\N	126			0	inbound	+12147122250	\N	1.19654202461242676	\N	new lead	cell phone   tx	9	\N	\N	1626
2017-10-05 14:04:25.601682+00	2017-10-05 14:07:37.541108+00	6591	completed				+18172109225		191	2017-10-05 14:04:25.598266	2017-10-05 14:07:36.427924	CAec9dbf104b6aeec37e15190f256c69e0	\N	155		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE442b4caa43a97dbefe5edc179fc80235	0	inbound	+18177569010	124	17.8201520442962646	\N	new lead	wilson ricky	12	\N	\N	1627
2016-08-01 16:20:28.592457+00	2018-01-05 01:48:10.951145+00	1075	completed				+17732909650		225	2016-08-01 16:20:28.590922	2016-08-01 16:24:13.514927	CA7c5dc6ee0f9a3a3d2c513df98a46f4c2	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE6702abc350e442fae63ee6c6909c6b31	0	inbound	+18555343978	48	24.6557040214538574	null	sold customer		1	\N	\N	1620
2016-11-16 17:54:48.24699+00	2016-11-16 17:54:48.283256+00	2922	missed	Jeremy	Dishongh	johnniedishongh@hotmail.com	+19367884320		\N	2016-11-16 17:54:48.24511	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	1628
2017-04-23 13:15:13.393809+00	2017-11-29 18:38:53.214475+00	4239	completed				+1112097321016		64	2017-04-23 13:15:13.391408	2017-04-23 13:16:17.4122	CA886243a119c6dadb3eb0198bc01d26fb	\N	\N			0	inbound	+12146922088	\N	23.6527590751647949	\N	new lead		9	\N	\N	1630
2016-07-26 22:01:53.079778+00	2016-07-27 12:26:01.63921+00	960	completed	Michael	Costa	buzz5m@hotmail.com	+15132265257		\N	2016-07-26 22:01:53.078676	\N		d33a481e-e0af-47ac-9f90-260f20b69de5	\N			0	outbound	+18552959002	\N	\N	{}	new lead		1	\N	\N	1631
2016-12-22 21:28:22.77923+00	2016-12-22 21:29:34.886461+00	3090	completed				+18327302127		72	2016-12-22 21:28:22.777556	2016-12-22 21:29:34.306845	CA9596e33385a80f7f17c49d3e137bcf31	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE62b02d59838776c2560f28d29d477e5b	0	inbound	+18557240606	49	1.86194896697998047	null	new lead		1	\N	\N	1633
2017-03-14 00:33:53.058589+00	2017-11-29 18:38:53.212183+00	3413	missed				+14693347023		0	2017-03-14 00:33:53.057238	2017-03-14 00:33:53.153809	CAf31ad951b72d1d4cd312738e36683a5d	\N	\N			0	inbound	+12146922088	\N	\N	\N	new lead	morales luis	9	\N	\N	1635
2017-03-16 15:29:24.104199+00	2017-11-29 18:38:53.212418+00	3460	in-progress				+14693347023		8	2017-03-16 15:29:24.100713	2017-03-16 15:29:32.317709	CAd12d864798c85996220a796e28161179	\N	105			0	inbound	+12146922088	\N	5.48140096664428711	\N	new lead		9	\N	\N	1635
2017-03-01 22:27:30.016196+00	2017-11-29 18:38:53.211636+00	3277	completed				+14693347023		22	2017-03-01 22:27:30.014495	2017-03-01 22:27:51.694779	CA0d0bb820b58a2f8dbd36baefa43fcf50	\N	\N			0	inbound	+12146922088	\N	8.93772697448730469	\N	new lead	MORALES LUIS	9	\N	\N	1635
2017-04-11 21:06:38.485777+00	2017-11-29 18:38:53.213787+00	3793	completed				+14693347023		10	2017-04-11 21:06:38.483274	2017-04-11 21:06:48.534143	CAd0083258bdd5086beba21b3125ba53d2	\N	105			0	inbound	+12146922088	\N	3.69717311859130859	\N	new lead	morales luis	9	\N	\N	1635
2017-04-22 15:27:11.176165+00	2017-11-29 18:38:49.806294+00	4209	missed				+14693347023		1	2017-04-22 15:27:11.174569	2017-04-22 15:27:11.689362	CA1d069aa207d7f37b9cc197f83a12b7ad	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	morales luis	9	\N	\N	1635
2017-04-28 20:56:31.598164+00	2017-11-29 18:38:49.807349+00	4448	missed				+14693347023		97	2017-04-28 20:56:31.596377	2017-04-28 20:58:08.433809	CA412364a69559e5ea3fc3d507e92fa58f	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	morales luis	9	\N	\N	1635
2017-05-02 23:27:31.75961+00	2017-11-29 18:38:49.808949+00	4609	missed				+14693347023		97	2017-05-02 23:27:31.758199	2017-05-02 23:29:08.566638	CAa6006a891a376ed462b93471f5449957	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	morales luis	9	\N	\N	1635
2017-03-01 22:26:19.769257+00	2017-11-29 18:38:53.211628+00	3276	completed				+14693347023		23	2017-03-01 22:26:19.767543	2017-03-01 22:26:43.243997	CAa251cd7c84cab954879b444a07765444	\N	99			0	inbound	+12146922088	\N	7.1768500804901123	\N	new lead	MORALES LUIS	9	\N	\N	1635
2017-03-01 22:28:13.388839+00	2017-11-29 18:38:53.211643+00	3278	completed				+14693347023		22	2017-03-01 22:28:13.387202	2017-03-01 22:28:35.535595	CAcfa7019beec78e6b8e98ced15936f36c	\N	103			0	inbound	+12146922088	\N	6.41933107376098633	\N	new lead	MORALES LUIS	9	\N	\N	1635
2017-03-13 16:35:06.40067+00	2017-11-29 18:38:53.212089+00	3393	completed				+14693347023		44	2017-03-13 16:35:06.396384	2017-03-13 16:35:50.236551	CA70753db54e6a6848ca081b1fc3105b7c	\N	\N			0	inbound	+12146922088	\N	8.00190114974975586	\N	new lead	morales luis	9	\N	\N	1635
2017-04-26 16:53:22.968623+00	2017-11-29 18:38:49.806738+00	4323	completed				+12142135869		81	2017-04-26 16:53:22.966951	2017-04-26 16:54:44.098659	CAe142c668bf396c95d16ad06cc23b1fb0	\N	124			0	inbound	+12147122250	\N	1.22703695297241211	\N	new lead	padilla wilmar 	9	\N	\N	1641
2017-04-26 18:30:18.266973+00	2017-11-29 18:38:49.806773+00	4331	completed				+12142135869		59	2017-04-26 18:30:18.26337	2017-04-26 18:31:17.669378	CA2afdd61755228bba44c36c4a8a7868e3	\N	125			0	inbound	+12147122250	\N	0.798673868179321289	\N	new lead	padilla w	9	\N	\N	1641
2017-04-26 18:31:17.376348+00	2017-11-29 18:38:49.80678+00	4332	completed				+12142135869		93	2017-04-26 18:31:17.374832	2017-04-26 18:32:50.589798	CAa2782ada91003f45b42342b5b309bf93	\N	103			0	inbound	+12147122250	\N	1.62223005294799805	\N	new lead	padilla w	9	\N	\N	1641
2016-07-20 16:09:25.669232+00	2016-12-09 17:06:57.83038+00	904	completed				+12674321769		357	2016-07-20 16:09:25.667777	2016-07-20 16:15:23.013668	CA834deaf5ba6c7c82717c4ff6edb2d16b	\N	20			0	inbound	+18552000227	\N	2.55724000930786133	null	new lead		3	\N	\N	1647
2017-07-17 21:58:54.555496+00	2017-07-17 22:21:46.898228+00	5795	missed				+16823093225		72	2017-07-17 21:58:54.553437	2017-07-17 22:00:06.856055	CAf4d79f8a4397820c2b83d917401eff2b	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REc2993e2cf75a6308457724595c911357	0	inbound	+18177569010	124	1350.80761003494263	\N	new lead	euless  tx	12	\N	\N	1649
2017-03-13 18:03:06.976858+00	2017-03-13 18:32:39.142271+00	3398	completed				+14699552307		1769	2017-03-13 18:03:06.973692	2017-03-13 18:32:35.807115	CA0831873c9c52fe0e205ebcab58e087ba	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REbb170e5846307ab05d7eb1277ae4d184	0	inbound	+18557240606	49	4.20798206329345703	\N	new lead		1	\N	\N	1650
2016-10-19 21:21:12.808892+00	2016-12-09 17:06:57.830409+00	2320	completed				+12673743193		121	2016-10-19 21:21:12.806788	2016-10-19 21:23:13.964283	CA091d09f743bf3fc79fc2936047a56553	\N	20			0	inbound	+18552000227	\N	2.61060714721679688	null	new lead		3	\N	\N	1651
2017-03-10 01:27:29.901567+00	2017-11-29 18:38:53.212018+00	3369	completed				+12148081074		742	2017-03-10 01:27:29.899188	2017-03-10 01:39:51.842946	CAb801636191f7ce4aceb7d5b957712271	\N	107			0	inbound	+12146922088	\N	13.7850608825683594	\N	new lead	hoskins helen  	9	\N	\N	1652
2017-10-09 00:53:46.595135+00	2017-10-11 14:15:20.182175+00	6626	missed	SHatoria	Clark 	Torriclark28@gmail.com	+16784997467		\N	2017-10-09 00:53:46.593539	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	1654
2016-06-06 11:50:16.691112+00	2017-11-29 18:31:01.155599+00	380	completed	Spam			+15804671930		317	2016-06-06 11:50:16.689907	2016-06-06 11:55:33.371842	CAc787d2d5d22cc0fcbc1f50e8b32ac544	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE1afbf952e15063ee91efe8dbf56d6b0e	0	inbound	+18556313454	\N	\N	null	new lead		1	\N	\N	1655
2017-05-02 18:22:25.524851+00	2017-11-29 18:38:49.808711+00	4583	missed				+18067019292		47	2017-05-02 18:22:25.522993	2017-05-02 18:23:12.719333	CA330690e2df1619ce3942ae9206d8fafc	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	jones tanecia	9	\N	\N	1656
2017-05-02 18:23:08.812628+00	2017-11-29 18:38:49.808722+00	4584	completed				+18067019292		98	2017-05-02 18:23:08.81135	2017-05-02 18:24:46.515136	CAd59a949ebb8400f40b29df063ab4a5af	\N	124			0	inbound	+12147122250	\N	2.04262685775756836	\N	new lead	jones tanecia	9	\N	\N	1656
2017-05-02 18:24:51.411426+00	2017-11-29 18:38:49.808733+00	4585	completed				+18067019292		105	2017-05-02 18:24:51.409867	2017-05-02 18:26:36.466229	CAdead5f08bbf391cb60a01a86980d036c	\N	125			0	inbound	+12147122250	\N	1.01857209205627441	\N	new lead	jones tanecia	9	\N	\N	1656
2017-05-02 18:26:42.302614+00	2017-11-29 18:38:49.808744+00	4586	completed				+18067019292		70	2017-05-02 18:26:42.301257	2017-05-02 18:27:52.325251	CA0b5560c1476a817fb0376ad6997662d1	\N	125			0	inbound	+12147122250	\N	1.22793006896972656	\N	new lead	jones tanecia	9	\N	\N	1656
2017-05-02 20:09:06.763786+00	2017-11-29 18:38:49.80879+00	4593	completed				+18067019292		103	2017-05-02 20:09:06.761826	2017-05-02 20:10:49.752063	CA7877aec6641470c125fe3b9e48f30e1c	\N	127			0	inbound	+12147122250	\N	1.21359896659851074	\N	new lead	jones tanecia	9	\N	\N	1656
2017-05-02 20:11:20.279155+00	2017-11-29 18:38:49.808813+00	4595	completed				+18067019292		89	2017-05-02 20:11:20.276696	2017-05-02 20:12:49.113794	CAbe90697448fe2421ca210f8aa0ed66e5	\N	\N			0	inbound	+12147122250	\N	5.89689302444458008	\N	new lead	jones tanecia	9	\N	\N	1656
2017-12-06 21:08:54.322204+00	2017-12-06 21:18:05.250457+00	7660	completed				+18177709852		550	2017-12-06 21:08:54.320338	2017-12-06 21:18:04.181653	CAfa92ce1dafe57eb82862404807b15096	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REb320a92672eb5c9d5a0314faa04ad950	0	inbound	+18177569010	124	371.988517999649048	\N	new lead	don mexico	12	\N	\N	1657
2017-10-13 09:25:15.037199+00	2017-10-13 09:25:15.089108+00	6683	missed	Angel	Dove	angelnicoledove@gmail.com	+17069611230		\N	2017-10-13 09:25:15.03566	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	180
2017-12-06 21:09:59.979993+00	2017-12-06 21:33:41.721482+00	7661	completed				+18177709852		1422	2017-12-06 21:09:59.977971	2017-12-06 21:33:41.717902	CA307988993414e913071e3f092360674c	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE288c6e9480dfcefa6dbdc35292f1ec97	0	inbound	+18177569010	124	1304.93417882919312	\N	new lead	don mexico	12	\N	\N	1657
2017-03-20 16:31:15.347186+00	2017-11-29 18:47:25.067877+00	3506	completed				+18178978555		95	2017-03-20 16:31:15.344058	2017-03-20 16:32:50.777168	CAa2a34ee04b6dba4158dd82f8ed7c4436	\N	117		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE33e8f5529590b604b5ba5809caae345b	0	inbound	+19728330116	\N	24.6071639060974121	\N	new lead	verdeja jay    	8	\N	\N	1658
2016-07-25 15:28:36.91845+00	2016-08-04 13:27:14.402816+00	933	completed	daniel	clepper	daniel.clepper@afit.edu	+15138363249		61	2016-07-25 15:28:36.917175	2016-07-25 15:29:42.765895	CAb6a1bd6d39fd6a7c41e0e0725d5c8ce6	25d0200e-983d-4413-94ae-eb664b99711c	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE70dfdff582be246c81083983d5970caf	1	outbound	+18556311490	\N	1.12239289283752441	{}	application submitted - autopay		1	\N	\N	1660
2017-08-30 22:50:28.388531+00	2017-08-30 22:54:35.572112+00	6210	completed	Tammy	Burgess	tammyburgess@yahoo.com	+17063512781		232	2017-08-30 22:50:28.387033	2017-08-30 22:54:35.137088	CA4cf2288e09c60da1b295be7ae842d00b	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REcca0d9b4daa937b5c61986941f5bf7b4	1	outbound	+17704009016	\N	14.1353027820587158	{}	new lead		13	\N	\N	1663
2017-09-04 15:29:09.071652+00	2017-09-04 15:35:12.278229+00	6247	missed	Tammy	Burgess	tammyburgess@yahoo.com	+17063512781		0	2017-09-04 15:29:09.070013	2017-09-04 15:35:12.276732	CAc695ab5d55257f6c74d853b58e81e9aa	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			3	outbound	+17704009016	\N	341.370727062225342	{}	new lead		13	\N	\N	1663
2017-12-02 17:19:03.140334+00	2017-12-02 17:19:07.566104+00	7488	completed				+14843811810		4	2017-12-02 17:19:03.137627	2017-12-02 17:19:07.555297	CAa2606bd921cff77ae65e46232fcbaa8c	\N	120			0	inbound	+18036184106	123	2.81673789024353027	\N	new lead		10	\N	\N	1665
2016-11-07 15:12:49.932843+00	2016-11-07 15:45:25.121856+00	2786	completed				+18165500771		1952	2016-11-07 15:12:49.930686	2016-11-07 15:45:21.749201	CAf65546647e0f1f3d4869f604e0c64200	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REf109696fb1b44536dc567facf3bdb4a2	0	inbound	+18557240606	49	1.59917497634887695	null	new lead		1	\N	\N	1666
2017-05-16 14:16:23.645732+00	2017-08-17 14:35:21.045205+00	5100	completed				+13187792656		121	2017-05-16 14:16:23.643783	2017-05-16 14:18:24.647196	CAaeb36e29de77e9cc115bad885e068c59	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE470dbb6b457b78b4e2467098f5769746	0	inbound	+18177569010	124	50.462270975112915	\N	new lead	shreveport  la	12	\N	\N	1667
2017-05-16 14:07:08.448986+00	2017-05-16 14:29:15.647838+00	5099	missed				+13187792656		37	2017-05-16 14:07:08.447124	2017-05-16 14:07:45.102186	CAd51f2c620ebce1f756610523f8cc49e9	\N	\N			0	inbound	+18177569010	124	1305.06204390525818	\N	new lead	shreveport  la	12	\N	\N	1667
2017-07-03 12:35:16.813998+00	2017-07-03 12:35:16.881264+00	5710	missed	Abel	Gbomina	gbomina88@gmail.com	+18166569867		\N	2017-07-03 12:35:16.811539	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	1670
2017-03-31 00:14:24.059548+00	2017-05-17 15:41:07.224247+00	3638	completed				+14696436154		204	2017-03-31 00:14:24.05771	2017-03-31 00:17:48.343718	CAd85d0ad1d2ac6712d7938074a8a6d3d7	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REcc5e0d8597cbb9850e2d393eae17d5d4	0	inbound	+18177569010	124	9.40787100791931152	\N	new lead	shakeia robinso	12	\N	\N	1675
2017-08-07 00:58:00.557182+00	2017-11-29 18:31:56.600458+00	5946	missed				+15707527460		6	2017-08-07 00:58:00.554421	2017-08-07 00:58:06.501138	CAe8fe76b4e8e1e3253422ea96f0c14664	\N	\N			0	inbound	+18556311397	\N	\N	\N	new lead		1	\N	\N	1676
2017-12-04 18:25:23.947921+00	2017-12-04 18:26:56.93171+00	7547	completed				+17705721135		92	2017-12-04 18:25:23.946134	2017-12-04 18:26:56.056777	CAfa5dc0da4fe8df2ac13ab00770579c9b	\N	157		https://api.twilio.com/2010-04-01/Accounts/ACbd7756819f4882feb347788ad7959655/Recordings/REee35ae2615a4de1c4ce7cd520e8e3e96	0	inbound	+17706597466	137	6.59768009185791016	\N	new lead		14	\N	\N	1677
2016-08-19 21:18:11.37526+00	2016-08-22 22:19:14.807143+00	1630	missed	Mina	Leletzopoulos	golelet@verizon.net	+16618395010		\N	2016-08-19 21:18:11.37409	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - autopay		1	\N	\N	1681
2016-08-19 20:53:09.877613+00	2017-11-29 18:31:37.368989+00	1628	missed				+16618395010		1	2016-08-19 20:53:09.875462	2016-08-19 20:53:10.748496	CAec3a5a200d4405db80699539a5d9ed39	\N	\N			0	inbound	+18555472453	\N	\N	null	application submitted - autopay		1	\N	\N	1681
2016-08-19 20:53:22.60178+00	2017-11-29 18:31:37.368996+00	1629	completed				+16618395010		1440	2016-08-19 20:53:22.600869	2016-08-19 21:17:22.797411	CA304b13dc42b8a814ca270fdbdd0723c7	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE42f685dcc97977045f0a9bc6ad54e73e	0	inbound	+18555472453	\N	6.60032105445861816	null	application submitted - autopay		1	\N	\N	1681
2017-04-23 18:14:32.735814+00	2017-11-29 18:38:53.214482+00	4241	completed				+17078436891		18	2017-04-23 18:14:32.732756	2017-04-23 18:14:50.875707	CA289dee4ae71394e7f993071402f5ea1d	\N	105			0	inbound	+12146922088	\N	4.27254891395568848	\N	new lead	agyekum christi	9	\N	\N	1682
2017-04-23 18:15:30.438343+00	2017-11-29 18:38:53.214489+00	4242	completed				+17078436891		120	2017-04-23 18:15:30.43643	2017-04-23 18:17:30.539537	CA96e59806e96629f15678aa0014d190e8	\N	105			0	inbound	+12146922088	\N	13.5437610149383545	\N	new lead	agyekum christi	9	\N	\N	1682
2017-04-25 22:49:19.629767+00	2017-11-29 18:38:53.214553+00	4310	completed				+17078436891		87	2017-04-25 22:49:19.626763	2017-04-25 22:50:46.790311	CAab3e1347fc687d48e113a8f4e449a5e0	\N	\N			0	inbound	+12146922088	\N	6.5718379020690918	\N	new lead	agyekum christi	9	\N	\N	1682
2017-05-03 22:08:37.589008+00	2017-11-29 18:38:49.809521+00	4674	completed				+12142745003		84	2017-05-03 22:08:37.58746	2017-05-03 22:10:01.754287	CA1fb6d09373320240574c241cbcc5156d	\N	127			0	inbound	+12147122250	\N	1.21215605735778809	\N	new lead	porras teresa	9	\N	\N	1686
2017-04-18 14:04:04.972297+00	2017-11-29 18:38:53.214135+00	4027	completed				+12144037320		86	2017-04-18 14:04:04.969354	2017-04-18 14:05:30.845688	CA845d5cfc724b52b5695a860d9d6cf326	\N	\N			0	inbound	+12146922088	\N	23.547504186630249	\N	new lead	oquinn diana   	9	\N	\N	1687
2017-04-18 14:36:59.90419+00	2017-11-29 18:38:53.214142+00	4033	completed				+12144037320		30	2017-04-18 14:36:59.901582	2017-04-18 14:37:29.74296	CA57b77cb827b2ec87d7ded5e1c72b05fa	\N	103			0	inbound	+12146922088	\N	3.63938403129577637	\N	new lead	oquinn diana   	9	\N	\N	1687
2017-04-18 16:11:11.13131+00	2017-11-29 18:38:53.214149+00	4038	completed				+12144037320		18	2017-04-18 16:11:11.12942	2017-04-18 16:11:29.329074	CA2b540330ae7dd27e5a116915b10125e6	\N	105			0	inbound	+12146922088	\N	4.30136799812316895	\N	new lead	oquinn diana   	9	\N	\N	1687
2017-04-18 16:15:05.349005+00	2017-11-29 18:38:49.805442+00	4039	completed				+12144037320		140	2017-04-18 16:15:05.345637	2017-04-18 16:17:25.122336	CA254d8e0f70afc97c80762c0eb6e9ea8c	\N	\N			0	inbound	+12147122250	\N	4.01260995864868164	\N	new lead	oquinn diana   	9	\N	\N	1687
2017-05-24 17:26:52.111733+00	2017-11-29 18:38:49.813096+00	5360	completed				+12144037320		80	2017-05-24 17:26:52.109059	2017-05-24 17:28:12.32106	CA274bd3bcde9a62fea205c6a76fbc6a84	\N	127			0	inbound	+12147122250	\N	1.01397490501403809	\N	new lead	oquinn diana   	9	\N	\N	1687
2017-04-24 21:27:01.741913+00	2017-04-24 21:27:13.480199+00	4265	completed				+18175507740		12	2017-04-24 21:27:01.739934	2017-04-24 21:27:13.465551	CA207b514ec9c7c0bb8e749431aba9ff69	\N	129			0	inbound	+18172104002	126	2.89862608909606934	\N	new lead	head merodee   	12	\N	\N	1688
2017-04-24 21:28:09.417861+00	2017-04-24 21:28:21.844816+00	4266	completed				+18175507740		12	2017-04-24 21:28:09.415817	2017-04-24 21:28:21.836032	CA22a3b60d80d6dd0dab5434d4fd511da1	\N	129			0	inbound	+18172104002	126	3.97180700302124023	\N	new lead	head merodee   	12	\N	\N	1688
2017-04-24 21:26:37.893121+00	2017-04-24 21:26:49.833646+00	4264	completed				+18175507740		12	2017-04-24 21:26:37.890654	2017-04-24 21:26:49.825624	CA94aa70f497e4d64e08ad237b1fba99f0	\N	129			0	inbound	+18172104002	126	4.9197080135345459	\N	new lead	head merodee   	12	\N	\N	1688
2017-11-24 14:11:45.483811+00	2017-11-24 14:15:32.201763+00	7186	completed				+17066317796		227	2017-11-24 14:11:45.48074	2017-11-24 14:15:32.188231	CAceb80238d7353c95b407048a4255427d	\N	154			0	inbound	+17707665699	134	1.67336702346801758	\N	new lead		13	\N	\N	1690
2017-12-05 21:12:10.506742+00	2017-12-05 21:28:26.710523+00	7609	completed				+15852977466		973	2017-12-05 21:12:10.504913	2017-12-05 21:28:23.552956	CA0f25f15ebbeb10c12df5dacdd85fbe5a	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE6e958d4ea2e0bb40219a24b08179e2e5	0	inbound	+18558645656	136	2.34032893180847168	\N	new lead		15	\N	\N	1691
2017-04-09 17:10:39.879761+00	2017-11-29 18:38:53.213631+00	3755	completed				+14699177528		57	2017-04-09 17:10:39.87813	2017-04-09 17:11:36.474179	CAbde32f98910d47b45c3ce1d26e5ca416	\N	\N			0	inbound	+12146922088	\N	5.27481889724731445	\N	new lead	fritz keysha r 	9	\N	\N	1692
2016-09-07 14:54:30.104114+00	2016-12-09 17:06:53.905879+00	1903	completed				+12678848696		136	2016-09-07 14:54:30.102866	2016-09-07 14:56:45.929445	CA86acbeec7b9ee1770ecbcb844c96bd1c	\N	21			0	inbound	+18558021330	\N	1.90992379188537598	null	new lead		3	\N	\N	1697
2016-09-07 14:57:08.300611+00	2016-12-09 17:06:53.905886+00	1904	completed				+12678848696		239	2016-09-07 14:57:08.299734	2016-09-07 15:01:07.679396	CA95fd2720e239d7757ce09d0fe9ba8b75	\N	21			0	inbound	+18558021330	\N	2.75129890441894531	null	new lead		3	\N	\N	1697
2017-12-08 16:01:13.164733+00	2017-12-08 16:04:30.766746+00	7714	completed	Joel 	Rogers	Joelrogers127@yahoo.com	+14049044293		180	2017-12-08 16:01:13.163393	2017-12-08 16:04:29.870712	CAca0e2dc35a92f24bd619892a7e08803f	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REad0928bd25fc6ac80f17b7de2e4c819b	1	outbound	+17704009016	\N	14.865602970123291	{}	new lead		13	\N	\N	1698
2017-12-11 17:38:57.136734+00	2017-12-11 17:42:43.764877+00	7785	completed	Raphael	Arocho	Gameboyblanb@gmail.com	+14044370063		218	2017-12-11 17:38:57.135103	2017-12-11 17:42:43.76319	CA45ca4090f81d9fb9f22ee9eaa13fdb8f	cd009b81-ec25-40d7-a806-e428c0f41965	157			1	outbound	+17706597466	\N	6.6775360107421875	{}	new lead		14	\N	\N	1700
2016-06-17 15:51:06.935975+00	2016-12-09 17:06:53.905687+00	434	completed	Unknown			+12156628001		144	2016-06-17 15:51:06.933258	2016-06-17 15:53:30.452927	CAcdab448f22f01f83f358e296d10a9484	\N	21			0	inbound	+18558021330	\N	2.80534005165100098	null	new lead		3	\N	\N	1701
2017-12-03 20:33:29.868363+00	2017-12-03 20:33:48.894637+00	7517	missed				+14699891508		19	2017-12-03 20:33:29.867068	2017-12-03 20:33:48.880922	CA1f2b846029067bfd8134e0184eafbf03	\N	\N			0	inbound	+18177569010	124	\N	\N	new lead	murray alvin	12	\N	\N	1702
2017-12-04 19:10:57.892621+00	2017-12-04 19:18:13.731618+00	7550	completed				+14699891508		436	2017-12-04 19:10:57.89073	2017-12-04 19:18:13.498291	CA5459003cf8752c0ba157af2c483f21d2	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE553bafd65183a71edecb39791fb83ca2	0	inbound	+18177569010	124	378.486968994140625	\N	new lead	murray alvin	12	\N	\N	1702
2017-12-04 19:24:09.740861+00	2017-12-04 19:46:10.761543+00	7551	completed				+14699891508		1320	2017-12-04 19:24:09.738952	2017-12-04 19:46:09.575142	CA6a59dae80d33732d799c9353938cd236	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE25d752353e38eae33b39aadbb6b295bc	0	inbound	+18177569010	124	1258.1472339630127	\N	new lead	murray alvin	12	\N	\N	1702
2017-10-06 16:58:26.324893+00	2017-10-06 16:59:41.017967+00	6599	completed	Teresa	Borders	teresaborders22.tb@gmail.com	+17703788434		63	2017-10-06 16:58:26.323214	2017-10-06 16:59:40.70066	CA58f3d74a024f1690a2353f36c1043e72	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE30faa306d1a66748c490a8b7808ba265	1	outbound	+17704009016	\N	13.4427521228790283	{}	new lead		13	\N	\N	1711
2017-10-03 14:06:48.067807+00	2017-10-03 14:13:04.202397+00	6561	missed				+17707666581		376	2017-10-03 14:06:48.065865	2017-10-03 14:13:03.93604	CA08c2f2092cf17dc7498a5403c243bb2e	\N	\N			0	inbound	+17707665732	133	324.801820039749146	\N	new lead		13	\N	\N	1717
2017-12-01 21:56:23.360828+00	2017-12-01 21:58:13.172871+00	7451	completed	William	Bettcher	approvedpainting@msn.com	+15208259596		28	2017-12-01 21:56:23.359219	2017-12-01 21:57:20.807117	CAacd165cd98f942689f5d15fd61499bba	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			3	outbound	+18558645656	\N	28.8613917827606201	{}	new lead		15	\N	\N	1718
2017-04-25 16:26:28.587129+00	2017-11-29 18:38:49.806604+00	4289	completed				+19084562900		111	2017-04-25 16:26:28.585372	2017-04-25 16:28:20.047174	CA11e09befefc6b4919f0f4f6a835c683a	\N	126			0	inbound	+12147122250	\N	1.08850598335266113	\N	new lead	cell phone   nj	9	\N	\N	1727
2017-04-25 16:29:44.577393+00	2017-11-29 18:38:49.806611+00	4290	completed				+19084562900		62	2017-04-25 16:29:44.574672	2017-04-25 16:30:46.267504	CA90aa531dc862c4f73806c43c12b6cece	\N	107			0	inbound	+12147122250	\N	6.75998687744140625	\N	new lead	cell phone   nj	9	\N	\N	1727
2016-09-13 03:13:14.330108+00	2016-09-15 20:04:40.751971+00	2003	missed	Zackary	Brannon	zjpbrannon@comcast.net	+12197431613		\N	2016-09-13 03:13:14.32789	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - credit union		1	\N	\N	1728
2018-01-02 15:57:40.148557+00	2018-01-02 15:58:38.027695+00	8174	completed	John	Doe		+17739699892		48	2018-01-02 15:57:40.146247	2018-01-02 15:58:38.025094	CA89d8e7aa2e5349554270aec48189f733	ce2136cc-f207-42c8-8d76-a00748b6b0e1	15			1	outbound	+13367394103	\N	9.36646199226379395	{}	service call		1	adf	\N	1739
2017-05-05 18:46:58.306937+00	2017-11-29 18:38:49.810044+00	4775	completed				+15125853644		142	2017-05-05 18:46:58.305765	2017-05-05 18:49:19.913383	CA41c4aba1642e808379d73cf55adafce1	\N	\N			0	inbound	+12147122250	\N	1.40546512603759766	\N	new lead	ernest page	9	\N	\N	1653
2017-10-20 04:46:17.669285+00	2017-10-20 04:46:17.735593+00	6760	missed	Justin	Anderson	Deadmanwonderland1900@gmail.com	+19043250879		\N	2017-10-20 04:46:17.667677	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	2369
2017-10-25 05:28:47.903364+00	2017-10-25 15:00:29.547008+00	6798	missed	Tony	Hill	tonyhill2901@gmail.com	+16784676657		\N	2017-10-25 05:28:47.901831	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	593
2017-09-18 22:45:07.551513+00	2017-09-18 22:51:06.412043+00	6395	missed				+16783947856		27	2017-09-18 22:45:07.54994	2017-09-18 22:45:34.417799	CA7a2448fd8448763e13dba1aab34cca7c	\N	\N			0	inbound	+17707665732	133	342.462791919708252	\N	new lead		13	\N	\N	1684
2017-10-27 20:41:43.968957+00	2017-10-27 20:43:42.162462+00	6846	completed	Susan	Brock	Sbrock30@gmail.com	+17066120314		62	2017-10-27 20:41:43.967498	2017-10-27 20:42:55.152969	CA38bfe456cddd7b22a07e5b354e21cd25	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE273512c256359ebfdd3731f95458b916	1	outbound	+17704009016	\N	8.74838495254516602	{}	select status		13	\N	\N	617
2017-10-26 19:08:41.594644+00	2017-10-26 19:16:17.521301+00	6822	completed				+18177566757		456	2017-10-26 19:08:41.591916	2017-10-26 19:16:17.517438	CAcce8c88500d8588e0b1cd48fa7777010	\N	146			0	inbound	+18177569010	124	355.561740875244141	\N	new lead	dallas  tx	12	\N	\N	977
2017-10-26 18:10:45.451339+00	2017-10-26 18:12:02.345126+00	6819	completed				+17733104139		76	2017-10-26 18:10:45.448964	2017-10-26 18:12:01.174667	CA0267e5ebb19f23d13368b11c967fd1a9	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE7a1081ffd45b4f97707d5a080260db0e	0	inbound	+18177569010	124	11.4387869834899902	\N	new lead	logan sharon	12	\N	\N	2244
2016-09-15 19:40:45.012916+00	2017-11-29 18:31:37.369118+00	2026	missed	Zackary	Brannon		+12197431613		2	2016-09-15 19:40:45.01191	2016-09-15 19:40:46.544649	CAe88f83c2204a4fb14d26649ab2583166	\N	\N			0	inbound	+18555472453	\N	\N	null	application submitted - credit union		1	\N	\N	1728
2016-09-15 19:36:39.952165+00	2017-11-29 18:31:37.369104+00	2024	missed	Zackary	Brannon		+12197431613		79	2016-09-15 19:36:39.94932	2016-09-15 19:37:59.213626	CAcbbd712fd397662b83b9f10beb9de1e6	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE8ab2a6a686eb1b2767179ec344948bf0	0	inbound	+18555472453	\N	32.2670888900756836	null	application submitted - credit union		1	\N	\N	1728
2016-09-15 19:39:10.769036+00	2017-11-29 18:31:37.369111+00	2025	missed	Zackary	Brannon		+12197431613		56	2016-09-15 19:39:10.767778	2016-09-15 19:40:06.48279	CA6aa1ea1465c7f1cc15075d16bf37ff03	\N	\N			0	inbound	+18555472453	\N	32.1925859451293945	null	application submitted - credit union		1	\N	\N	1728
2016-09-15 20:05:45.361194+00	2017-11-29 18:31:37.369125+00	2027	missed	Zackary	Brannon		+12197431613		56	2016-09-15 20:05:45.360121	2016-09-15 20:06:41.165842	CAf99d59ecb71dcd69981286d4f759bbff	\N	\N			0	inbound	+18555472453	\N	32.4513928890228271	null	application submitted - credit union		1	\N	\N	1728
2016-09-15 20:39:56.472525+00	2017-11-29 18:31:37.369133+00	2029	missed	Zackary	Brannon		+12197431613		57	2016-09-15 20:39:56.471191	2016-09-15 20:40:53.791014	CA3ab489fa1b410d44cf6374b76cf6a7dc	\N	\N			0	inbound	+18555472453	\N	32.2304649353027344	null	application submitted - credit union		1	\N	\N	1728
2017-12-16 17:53:50.20439+00	2017-12-16 17:59:47.786126+00	7925	missed	Amy	Hester	Amydeltoro1531@yahoo.com	+17703124796		0	2017-12-16 17:53:50.203197	2017-12-16 17:59:47.784428	CAf4d4dd138677aa0d46ef7f611fc0aa9b	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			3	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	1730
2017-06-20 21:05:27.67819+00	2017-06-24 13:45:04.894018+00	5619	completed				+12292202417		401	2017-06-20 21:05:27.674947	2017-06-20 21:12:08.278539	CA1c59c8d614ee25672305a650f8e82539	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REeba6e4285fc5717bbdcf64328b0f5f90	0	inbound	+17704009016	132	320.325010061264038	\N	new lead		13	\N	\N	1734
2017-06-21 15:05:29.287587+00	2017-06-24 13:44:45.085707+00	5621	completed	Rickey	Byers	rickey.byers551961@gmail.com	+15733803566		35	2017-06-21 15:05:29.284981	2017-06-21 15:06:21.790486	CA47f2cfb4a0bc7f1e25b7ba6ab3f23fa6	0427608a-ae09-4db0-a1e8-374423ee28c3	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE3bfb9a884782cd881c50b4e40eb1ed3f	1	outbound	+17704009016	\N	15.9382479190826416	{}	new lead		13	\N	\N	1735
2017-06-02 20:29:33.719891+00	2017-06-02 20:33:41.680879+00	5569	completed				+18329250177		247	2017-06-02 20:29:33.718088	2017-06-02 20:33:40.313765	CAe6780299b2ebc615fb38f9ad7ec04f91	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE41a96cd5efec574bac9523a6b750f4b1	0	inbound	+18557240606	49	3.93823409080505371	\N	new lead		1	\N	\N	1736
2017-12-01 22:17:34.595338+00	2017-12-01 22:18:20.901704+00	7453	completed				+16789891928		46	2017-12-01 22:17:34.593245	2017-12-01 22:18:20.888373	CA3475ddac3698d2dba8e5070efa2542e3	\N	154			0	inbound	+17707665699	134	1.67412400245666504	\N	new lead	vicki cook	13	\N	\N	1738
2017-10-31 18:58:57.398331+00	2017-10-31 19:02:21.355046+00	6882	completed				+18172258204		203	2017-10-31 18:58:57.396063	2017-10-31 19:02:20.416708	CA3a0fb9fc0d709f5f7ce9cc522f57e9da	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REcbb464547cf4b55afa54e2c3784b3e4a	0	inbound	+18177569010	124	11.9714910984039307	\N	new lead	castleman david	12	\N	\N	2727
2017-10-31 20:37:20.762028+00	2017-10-31 20:37:35.168644+00	6884	completed				+14702145372		14	2017-10-31 20:37:20.760235	2017-10-31 20:37:35.160885	CAffae967e0e5cc825c25ccbb1ae8098d2	\N	153			0	inbound	+17707665732	133	7.43918180465698242	\N	new lead		13	\N	\N	1196
2017-11-03 12:34:11.845394+00	2017-11-03 13:33:05.868967+00	6915	missed	KeYana	Hunt	Khunt021414@gmail.com	+17063513948		\N	2017-11-03 12:34:11.843572	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	550
2017-11-28 16:22:35.879069+00	2017-11-28 16:23:51.56705+00	7359	missed	reginald	reed	asreed34@gmail.com	+17062063015		76	2017-11-28 16:22:35.877165	2017-11-28 16:23:51.561638		\N	152			0	outbound	+17704009016	132	\N	\N	select status		13	\N	\N	467
2017-11-28 16:18:57.572881+00	2017-11-28 16:26:00.782031+00	7358	unanswered	reginald	reed	asreed34@gmail.com	+17062063015		75	2017-11-28 16:18:57.571267	2017-11-28 16:26:00.77965	CA01b7303b791ad441def8237abe0f2315	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			3	outbound	+17704009016	\N	347.387463808059692	{}	select status		13	\N	\N	467
2016-08-21 02:34:09.217678+00	2017-11-29 18:31:18.808861+00	1634	missed				+14062189069		15	2016-08-21 02:34:09.215977	2016-08-21 02:34:23.968656	CA64776cc3bc8598251c0f13dcb81af682	\N	\N			0	inbound	+18556311439	\N	\N	null	do not contact		1	\N	\N	4026
2017-11-07 22:37:02.786923+00	2017-11-07 22:43:28.214079+00	6966	missed				+17069737123		55	2017-11-07 22:37:02.78487	2017-11-07 22:37:57.506487	CA5c89cf24b3ccff44eecf19751942c5af	\N	\N			0	inbound	+17707665732	133	\N	\N	new lead		13	\N	\N	582
2017-11-08 13:56:54.264141+00	2017-11-08 14:42:54.340491+00	6970	missed	Derrick	Allen	Dsgb0523@gmail.com	+17064108586		\N	2017-11-08 13:56:54.262496	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	1784
2017-07-11 13:51:17.861269+00	2017-11-08 14:42:54.353866+00	5753	completed				+17064108586		68	2017-07-11 13:51:17.859188	2017-07-11 13:52:25.673087	CAaa671e1b341df356bb8eb12a750e2c5d	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE9bebea193f82d0599553bf9c9201bd81	0	inbound	+17704009016	132	9.57793092727661133	\N	select status		13	\N	\N	1784
2017-11-29 03:19:20.80212+00	2017-12-01 19:00:32.722218+00	7383	missed	Trellis	Norman	trellisanorman@gmail.com	+16784386998		\N	2017-11-29 03:19:20.800174	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	134
2017-11-10 22:39:06.455211+00	2017-11-22 16:25:24.949735+00	7010	in-progress				+17702978700		2	2017-11-10 22:39:06.452247	2017-11-10 22:39:08.897754	CA6e3679b110d86df259bf11545cf01bd0	\N	154			0	inbound	+17707665699	134	1.50561404228210449	\N	select status		13	\N	\N	656
2017-11-12 02:12:37.673724+00	2017-11-14 21:17:21.408398+00	7030	missed	Shanario	Carter	legendcarter@icloud.com	+17063728205		\N	2017-11-12 02:12:37.671981	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	3899
2017-11-11 01:26:41.708189+00	2017-11-24 23:16:17.90585+00	7013	missed	Melissa	Ayers	zafraeia@gmail.com	+16786085817		\N	2017-11-11 01:26:41.706566	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	521
2017-03-13 14:59:34.107311+00	2017-11-29 18:38:53.212075+00	3391	completed				+16053800938		25	2017-03-13 14:59:34.104728	2017-03-13 14:59:59.05271	CA3593de5c8f4811b74e996ad800c34f6f	\N	\N			0	inbound	+12146922088	\N	11.5457608699798584	\N	new lead	wireless caller	9	\N	\N	1741
2017-03-13 15:00:40.833443+00	2017-11-29 18:38:53.212082+00	3392	completed				+16053800938		417	2017-03-13 15:00:40.831213	2017-03-13 15:07:38.031894	CA600e9876a8e6012102b5e5b3e0ac4b13	\N	\N			0	inbound	+12146922088	\N	9.83414697647094727	\N	new lead	wireless caller	9	\N	\N	1741
2016-11-02 19:04:52.266191+00	2017-02-11 20:03:29.469508+00	2585	completed				+19417461335		60	2016-11-02 19:04:52.264818	2016-11-02 19:05:52.233993	CA73f3f8b68a913c471647061016823eb6	\N	74			0	inbound	+18553381802	\N	24.1472129821777344	null	new lead		5	\N	\N	1742
2017-12-15 13:28:05.608851+00	2017-12-15 13:28:05.662334+00	7886	missed	Joseph	Ewing	joei.ewing@aol.com	+14702529203		\N	2017-12-15 13:28:05.607413	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	1747
2017-12-28 14:31:54.801353+00	2017-12-28 14:34:00.634616+00	8134	completed				+17077991676		125	2017-12-28 14:31:54.799027	2017-12-28 14:33:59.649122	CAdd4d4071fe00754a17b9c3704333229e	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE151cbaf79af44410956e7a99fb53c61d	0	inbound	+18177569010	124	43.7844741344451904	\N	new lead	green draylon	12	\N	\N	1750
2017-10-08 21:39:41.347268+00	2017-10-08 21:40:26.098897+00	6625	missed				+18173129563		45	2017-10-08 21:39:41.343175	2017-10-08 21:40:26.084684	CAf78ec715a805c463948ea66e76985ea6	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE09bcf54739f54a9f51e30da7ac8cf76e	0	inbound	+18177569010	124	\N	\N	new lead	hightower alice	12	\N	\N	1753
2017-08-24 00:40:31.136294+00	2017-08-24 00:40:52.8438+00	6149	missed				+17065219488		22	2017-08-24 00:40:31.134484	2017-08-24 00:40:52.835725	CAad61f2e349923d8c003c0632249adf91	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE7ed2c946318049392fa9504439ad5500	0	inbound	+17707665732	133	\N	\N	new lead		13	\N	\N	1755
2017-08-24 00:41:54.650482+00	2017-08-24 00:42:32.523926+00	6150	completed				+17065219488		38	2017-08-24 00:41:54.648543	2017-08-24 00:42:32.512591	CAd9f5898e367aec6e2b9025096d796672	\N	154			0	inbound	+17707665699	134	1.57536697387695312	\N	new lead		13	\N	\N	1755
2017-10-09 02:18:21.118103+00	2017-10-11 14:09:31.599282+00	6627	missed	Brittany 	Helton 	Brittanyhelton242@gmail.com	+17068798079		\N	2017-10-09 02:18:21.116551	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	1758
2017-05-02 15:58:15.46447+00	2017-11-29 18:38:49.80862+00	4572	completed				+12145291197		92	2017-05-02 15:58:15.462506	2017-05-02 15:59:47.60455	CA7f467365f94f045ef6ce2bad07a78010	\N	125			0	inbound	+12147122250	\N	1.25661110877990723	\N	new lead	pick your cost llc	9	\N	\N	1759
2017-04-27 18:30:43.746838+00	2017-11-29 18:38:49.806981+00	4372	completed				+12145291197		78	2017-04-27 18:30:43.744122	2017-04-27 18:32:01.864883	CA995124ad634b928a3611ca74f11bf9f2	\N	127			0	inbound	+12147122250	\N	1.42328190803527832	\N	new lead	pick your cost llc	9	\N	\N	1759
2017-04-27 18:31:56.117996+00	2017-11-29 18:38:49.806988+00	4373	completed				+12145291197		60	2017-04-27 18:31:56.116618	2017-04-27 18:32:55.834217	CAfe2e3324230dac2a5ecb0e49f17ae5a2	\N	127			0	inbound	+12147122250	\N	0.876122951507568359	\N	new lead	narosov shawn  	9	\N	\N	1759
2017-04-27 18:34:23.092739+00	2017-11-29 18:38:49.806995+00	4374	completed				+12145291197		69	2017-04-27 18:34:23.090618	2017-04-27 18:35:32.310258	CAe02217658d4f77156bd926ddcb898923	\N	125			0	inbound	+12147122250	\N	1.09593582153320312	\N	new lead	narosov shawn  	9	\N	\N	1759
2017-05-18 23:20:19.745226+00	2017-11-29 18:38:49.812238+00	5223	completed				+12145291197		162	2017-05-18 23:20:19.742522	2017-05-18 23:23:02.125708	CA344a98601eb50392b1f8713246d998c6	\N	107			0	inbound	+12147122250	\N	8.63176202774047852	\N	new lead	narosov shawn  	9	\N	\N	1759
2016-07-05 20:52:25.018105+00	2016-07-05 20:53:26.48476+00	762	completed				+13302072415		57	2016-07-05 20:52:25.016916	2016-07-05 20:53:26.483784	CA47ce62f5a60ed83fa5bffd721f11a3d6	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.23332095146179199	{}	new lead		1	\N	\N	1760
2016-07-05 19:37:49.202888+00	2017-11-29 18:32:13.821324+00	758	completed	Rick			+13302072415		24	2016-07-05 19:37:49.199854	2016-07-05 19:38:12.759566	CA61bef58880b86942395cb7fe95d74a27	\N	\N			0	inbound	+18555983683	\N	14.4055018424987793	null	new lead		1	\N	\N	1760
2016-10-31 15:18:42.714365+00	2016-10-31 15:39:09.601108+00	2381	completed				+12143985815		1224	2016-10-31 15:18:42.71305	2016-10-31 15:39:07.143225	CA8a6ecb3229a3e3f71676120778f5a185	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REc2e9e2d6d224b45ab86f66605b0a177a	0	inbound	+18557240606	49	2.14591383934020996	null	new lead		1	\N	\N	1761
2017-04-14 14:28:40.082584+00	2017-11-29 18:38:49.804902+00	3908	completed				+14122453333		116	2017-04-14 14:28:40.079655	2017-04-14 14:30:36.351781	CA3165c17aba59098f67e7c78492990a94	\N	125			0	inbound	+12147122250	\N	1.28950810432434082	\N	new lead	cochran automot	9	\N	\N	1782
2017-11-12 22:07:11.580874+00	2017-11-14 20:45:37.874723+00	7032	missed	Amber	carney	aleecarney@gmail.com	+17069830695		\N	2017-11-12 22:07:11.579139	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	1783
2017-11-14 20:40:50.384424+00	2017-11-14 20:45:37.88825+00	7052	completed	Amber	carney	aleecarney@gmail.com	+17069830695		168	2017-11-14 20:40:50.38231	2017-11-14 20:43:38.551401		\N	150			0	outbound	+17704009016	132	\N	\N	select status		13	\N	\N	1783
2017-11-13 17:55:56.648979+00	2017-11-14 17:38:36.091984+00	7033	completed	Test	Test		+14043981087		53	2017-11-13 17:55:56.646197	2017-11-13 17:56:49.796841	CA4cf9e34e14b0b4248d922f42a8f4e149	\N	153			0	inbound	+17707665732	133	9.03013706207275391	\N	select status		13	\N	\N	2917
2017-11-13 18:01:48.451504+00	2017-11-14 17:38:36.106431+00	7034	completed	Tiara	Jones	Dashunsmom@yahoo.com	+14043981087		39	2017-11-13 18:01:48.44964	2017-11-13 18:02:41.575396	CA85029e2985f415173b1bf42ace3d9cab	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE4a1fb8cf744b494bf23c6607a7d54932	1	outbound	+17704009016	\N	10.0460679531097412	{}	select status		13	\N	\N	2917
2017-11-12 19:58:38.371861+00	2017-11-14 21:01:34.027029+00	7031	missed	Kimberlin	Deeb	kimberlindeeb2017@gmail.com	+17702993592		\N	2017-11-12 19:58:38.36991	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	3821
2017-11-14 20:57:38.311858+00	2017-11-14 21:01:34.04057+00	7054	completed	Kimberlin	Deeb	kimberlindeeb2017@gmail.com	+17702993592		76	2017-11-14 20:57:38.308715	2017-11-14 20:58:54.256612		\N	150			0	outbound	+17704009016	132	\N	\N	select status		13	\N	\N	3821
2017-11-14 21:13:11.394615+00	2017-11-14 21:17:21.41992+00	7055	completed	Shanario	Carter	legendcarter@icloud.com	+17063728205		166	2017-11-14 21:13:11.392576	2017-11-14 21:15:56.954825		\N	150			0	outbound	+17704009016	132	\N	\N	select status		13	\N	\N	3899
2017-11-14 16:47:17.519805+00	2017-11-14 17:08:57.469322+00	7048	missed				+18176058003		11	2017-11-14 16:47:17.517553	2017-11-14 16:47:28.799845	CAfb180f2bbc4be05877ee58646690a213	\N	\N			0	inbound	+18177569010	124	\N	\N	new lead	watauga  tx	12	\N	\N	3936
2016-11-03 01:10:48.408669+00	2016-11-03 01:11:23.296548+00	2609	completed				+17036408383		34	2016-11-03 01:10:48.404973	2016-11-03 01:11:22.683778	CAaae2ad0aadebb9c28916cc04604d4561	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE7f8ad5710c07d56a09a8d9b03b1f6cf7	0	inbound	+18557240606	49	2.20201301574707031	null	new lead		1	\N	\N	1762
2016-11-10 20:32:51.33814+00	2017-01-27 21:12:23.814072+00	2845	completed				+17036408383		324	2016-11-10 20:32:51.337052	2016-11-10 20:38:15.236518		\N	\N			0	outbound	+18555343978	48	\N	null	new lead		1	\N	\N	1762
2017-11-21 12:15:27.35821+00	2017-11-29 18:31:56.600528+00	7152	missed				+15708428634		9	2017-11-21 12:15:27.356085	2017-11-21 12:15:36.100981	CA603237e57c2737249d5ce50927d87dc2	\N	\N			0	inbound	+18556311397	\N	\N	\N	new lead		1	\N	\N	1764
2017-03-17 18:39:38.546604+00	2017-11-29 18:38:53.212503+00	3473	completed				+12673048867		17	2017-03-17 18:39:38.543892	2017-03-17 18:39:55.516172	CA10ba46319c357de6422b3220b32fce2b	\N	105			0	inbound	+12146922088	\N	3.50893187522888184	\N	new lead		9	\N	\N	1765
2017-03-17 18:40:12.79346+00	2017-11-29 18:38:53.21251+00	3474	completed				+12673048867		19	2017-03-17 18:40:12.79129	2017-03-17 18:40:32.092057	CA99290f73d4e42d40672e3c205ba6767e	\N	105			0	inbound	+12146922088	\N	2.35416984558105469	\N	new lead		9	\N	\N	1765
2017-03-17 18:43:38.645875+00	2017-11-29 18:38:53.212517+00	3475	completed				+12673048867		140	2017-03-17 18:43:38.644024	2017-03-17 18:45:58.314266	CAdf7472d93d4d60862476309b1cd3056f	\N	\N			0	inbound	+12146922088	\N	4.05526304244995117	\N	new lead		9	\N	\N	1765
2017-03-17 19:03:08.111752+00	2017-11-29 18:38:53.212524+00	3476	completed				+12673048867		20	2017-03-17 19:03:08.109373	2017-03-17 19:03:28.133874	CA427941dbe75b5939782cb72695f605c4	\N	105			0	inbound	+12146922088	\N	5.07435512542724609	\N	new lead		9	\N	\N	1765
2017-03-23 00:09:15.91268+00	2017-11-29 18:38:53.212805+00	3551	completed				+12673048867		353	2017-03-23 00:09:15.9105	2017-03-23 00:15:08.981387	CA118861655b5fc55c529864b62a1f7eab	\N	\N			0	inbound	+12146922088	\N	4.45986700057983398	\N	new lead	gatson cortney	9	\N	\N	1765
2017-05-23 18:20:10.208455+00	2017-11-29 18:38:49.812848+00	5326	completed				+12149954906		80	2017-05-23 18:20:10.205942	2017-05-23 18:21:29.804045	CAdb7cdd70e4f21a375db144f0b154c5cd	\N	127			0	inbound	+12147122250	\N	1.13292503356933594	\N	new lead	se sh	9	\N	\N	1769
2017-05-23 18:21:24.25814+00	2017-11-29 18:38:49.812854+00	5327	completed				+12149954906		64	2017-05-23 18:21:24.256547	2017-05-23 18:22:27.97734	CAef3005610a03ac829f2b783c9879c1c7	\N	107			0	inbound	+12147122250	\N	9.79820990562438965	\N	new lead	se sh	9	\N	\N	1769
2017-05-23 18:23:54.511677+00	2017-11-29 18:38:49.812862+00	5328	completed				+12149954906		74	2017-05-23 18:23:54.509898	2017-05-23 18:25:08.303394	CAfa0c0f93a73352238c43c3a8443a4121	\N	127			0	inbound	+12147122250	\N	1.37041807174682617	\N	new lead	se sh	9	\N	\N	1769
2017-05-23 18:25:01.489966+00	2017-11-29 18:38:49.812868+00	5329	completed				+12149954906		78	2017-05-23 18:25:01.488074	2017-05-23 18:26:19.36628	CAbbe4f3f5a5592b62c4f63347573f665c	\N	107			0	inbound	+12147122250	\N	11.9786181449890137	\N	new lead	se sh	9	\N	\N	1769
2017-05-23 19:02:38.858791+00	2017-11-29 18:38:49.812883+00	5331	completed				+12149954906		77	2017-05-23 19:02:38.85634	2017-05-23 19:03:56.351811	CAb77ee1595b9c88183b60ca068a9c3bd3	\N	127			0	inbound	+12147122250	\N	1.25725793838500977	\N	new lead	se sh	9	\N	\N	1769
2016-08-02 01:16:29.539902+00	2016-08-02 13:47:49.595414+00	1108	missed	Kyna	McKimson	ksm6971@yahoo.com	+16143026203		\N	2016-08-02 01:16:29.538736	\N		d33a481e-e0af-47ac-9f90-260f20b69de5	\N			0	outbound	+18552959002	\N	\N	{}	application submitted - credit union		1	\N	\N	1770
2016-08-08 14:28:43.152415+00	2017-01-27 21:12:23.812804+00	1322	completed				+16612027257		146	2016-08-08 14:28:43.15073	2016-08-08 14:31:09.230728		\N	\N			0	outbound	+18555343978	48	\N	null	do not contact		1	\N	\N	1771
2016-08-02 23:45:11.200237+00	2017-11-29 18:31:37.368519+00	1162	missed				+16612027257		21	2016-08-02 23:45:11.199163	2016-08-02 23:45:32.226489	CA4488f45d82f6a3afe0eb755c8693cf7f	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE772cc2807a5d1497bd89eadc812baaa6	0	inbound	+18555472453	\N	\N	null	do not contact		1	\N	\N	1771
2017-11-15 22:57:02.528515+00	2017-11-15 23:00:09.371854+00	7073	completed	Stormie	Williams	stormiewilliams75@gmail.com	+16788378420		75	2017-11-15 22:57:02.525753	2017-11-15 22:58:17.77365		\N	153			0	outbound	+17704009016	132	\N	\N	select status		13	\N	\N	466
2017-11-15 22:31:31.898723+00	2017-11-15 23:00:09.351793+00	7072	missed	Stormie	Williams	stormiewilliams75@gmail.com	+16788378420		0	2017-11-15 22:31:31.896736	2017-11-15 22:37:25.515256	CA206b72e47d20842346887b661c83351b	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			3	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	466
2017-11-15 22:58:23.345066+00	2017-11-15 23:00:49.086064+00	7074	completed	Stormie	Williams		+16788378420		145	2017-11-15 22:58:23.34336	2017-11-15 23:00:48.461759	CA04391fbcde4bb3e7d2e0f10d4a2dd163	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REfa9dc2b16567a4182b3dd79a4116e39b	0	inbound	+17704009016	132	8.19406700134277344	\N	select status		13	\N	\N	466
2017-11-14 22:13:39.359383+00	2017-11-14 22:29:02.647668+00	7059	missed	Cachet	Goodley	Cachetgoodley@ymail.com	+16783688763		\N	2017-11-14 22:13:39.357718	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	1255
2017-11-14 22:26:46.530857+00	2017-11-14 22:29:02.659863+00	7060	completed	Cachet	Goodley	Cachetgoodley@ymail.com	+16783688763		86	2017-11-14 22:26:46.528784	2017-11-14 22:28:12.798867		\N	150			0	outbound	+17704009016	132	\N	\N	select status		13	\N	\N	1255
2017-11-15 05:02:29.704016+00	2017-11-15 14:20:41.321211+00	7063	missed	Jessica	Talley	j_talley123@yahoo.com	+17706549150		\N	2017-11-15 05:02:29.702392	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	1661
2017-11-15 14:17:26.478974+00	2017-11-15 14:20:41.336793+00	7064	completed	Jessica	Talley	j_talley123@yahoo.com	+17706549150		70	2017-11-15 14:17:26.475891	2017-11-15 14:18:36.862809		\N	153			0	outbound	+17704009016	132	\N	\N	select status		13	\N	\N	1661
2017-11-15 19:18:45.361658+00	2017-11-15 19:26:15.551295+00	7068	completed	James	Powell	ashley.snotrucking@yahoo.com	+17702947377		56	2017-11-15 19:18:45.360087	2017-11-15 19:25:25.80888	CA18545b8610209af09f7af810bb78f46a	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE4c9e839d693c1a00efa48f9c61b7fd3b	3	outbound	+17704009016	\N	341.73150897026062	{}	select status		13	\N	\N	3695
2017-04-10 20:53:49.112573+00	2017-04-10 20:55:24.241839+00	3769	completed				+12147449439		94	2017-04-10 20:53:49.109415	2017-04-10 20:55:23.135655	CA31978de69924f6dd35b49a3148e7a359	\N	132		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE109e0013f773e682aaeb155d1137be90	0	inbound	+18172104002	126	14.7426719665527344	\N	new lead	lara norma	12	\N	\N	1772
2017-12-16 17:53:24.57838+00	2017-12-16 17:56:20.55766+00	7924	completed				+17705347362		175	2017-12-16 17:53:24.576317	2017-12-16 17:56:19.316647	CA456861eb8aec4fd17fc9502fc991d34c	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REbfb12af2490d57ae2f11e294d1af5b21	0	inbound	+17707665732	133	13.1724951267242432	\N	new lead	mote georgianna	13	\N	\N	1773
2017-05-02 23:26:45.79985+00	2017-11-29 18:38:49.808937+00	4608	completed				+14045364747		583	2017-05-02 23:26:45.798111	2017-05-02 23:36:28.348073	CA3f1a7bbd293123f678d75f11a44adda0	\N	\N			0	inbound	+12147122250	\N	5.28662991523742676	\N	new lead	ju seokmann    	9	\N	\N	1775
2017-04-12 19:50:10.234503+00	2017-11-29 18:38:49.804635+00	3832	completed				+14698184363		85	2017-04-12 19:50:10.232074	2017-04-12 19:51:34.986366	CAf30bc133ccb998f8671bcdfb411af5cd	\N	\N			0	inbound	+12147122250	\N	6.49687695503234863	\N	new lead		9	\N	\N	1776
2017-04-12 19:51:32.767669+00	2017-11-29 18:38:49.804642+00	3833	completed				+14698184363		77	2017-04-12 19:51:32.766071	2017-04-12 19:52:49.45561	CA4a1dccf50383d859282f743cfcb58ff8	\N	125			0	inbound	+12147122250	\N	1.66339588165283203	\N	new lead		9	\N	\N	1776
2017-05-04 20:03:03.584802+00	2017-11-29 18:38:49.809678+00	4721	completed				+14698184363		216	2017-05-04 20:03:03.58304	2017-05-04 20:06:39.659846	CA74578844a3715c9da79dccbce9ad06b6	\N	\N			0	inbound	+12147122250	\N	1.45432591438293457	\N	new lead	smith jimmy    	9	\N	\N	1776
2017-05-05 20:20:29.320808+00	2017-11-29 18:38:49.810102+00	4786	completed				+14698184363		60	2017-05-05 20:20:29.318009	2017-05-05 20:21:29.277793	CA1fb611884c4647d62fbec8784b41d02b	\N	\N			0	inbound	+12147122250	\N	1.36290311813354492	\N	new lead	smith jimmy    	9	\N	\N	1776
2017-05-05 21:34:12.890432+00	2017-11-29 18:38:49.810123+00	4790	missed				+14698184363		37	2017-05-05 21:34:12.888847	2017-05-05 21:34:49.919378	CAbbd7c1a1bd447dc7f4b45b53a301ace2	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	smith jimmy    	9	\N	\N	1776
2017-10-27 19:03:56.008534+00	2017-11-17 18:01:31.136077+00	6843	completed	Donald 	Meadow	dotnga@aol.com	+17062488920		80	2017-10-27 19:03:56.006475	2017-10-27 19:05:23.282994	CA12035c969f4d0efd87d9fe40b3384b9c	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE1f8816b7f39abf1ea47c611c234c4b36	1	outbound	+17704009016	\N	6.13742303848266602	{}	select status		13	\N	\N	3518
2017-11-17 14:08:29.298023+00	2017-11-17 14:14:23.505214+00	7098	missed	Jasmine	Ware	Jasmineware12.jw@gmail.com	+14046239458		68	2017-11-17 14:08:29.295556	2017-11-17 14:09:37.76144		\N	150			0	outbound	+17704009016	132	\N	\N	select status		13	\N	\N	141
2017-11-17 01:23:52.154118+00	2017-11-17 14:14:23.516376+00	7086	missed	Jasmine	Ware	Jasmineware12.jw@gmail.com	+14046239458		\N	2017-11-17 01:23:52.152532	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	141
2017-11-17 13:43:08.820736+00	2017-11-17 13:59:39.107072+00	7094	missed	Anthony 	Penland 	Penlandterrell19@gmail.com	+17705403017		\N	2017-11-17 13:43:08.819205	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	240
2017-11-17 13:58:13.608645+00	2017-11-17 13:59:39.120193+00	7096	completed	Anthony 	Penland 	Penlandterrell19@gmail.com	+17705403017		67	2017-11-17 13:58:13.606353	2017-11-17 13:59:20.459074		\N	150			0	outbound	+17704009016	132	\N	\N	select status		13	\N	\N	240
2017-05-05 21:37:04.26085+00	2017-11-29 18:38:49.81013+00	4792	completed				+14698184363		140	2017-05-05 21:37:04.257978	2017-05-05 21:39:24.12141	CA896e3cc9726cf5d8b2b2a446099a42a2	\N	\N			0	inbound	+12147122250	\N	1.02861809730529785	\N	new lead	smith jimmy    	9	\N	\N	1776
2017-05-19 17:34:28.002938+00	2017-11-29 18:38:49.812267+00	5227	completed				+14698184363		74	2017-05-19 17:34:28.000847	2017-05-19 17:35:42.238278	CA0f519f0fcd9a01ade4bd0fada4f8facd	\N	133			0	inbound	+12147122250	\N	4.19294404983520508	\N	new lead	smith jimmy    	9	\N	\N	1776
2017-05-19 19:47:39.22325+00	2017-11-29 18:38:49.812302+00	5233	completed				+14698184363		57	2017-05-19 19:47:39.221194	2017-05-19 19:48:36.492463	CA8d056713414998b85fbbaab47d288f9a	\N	126			0	inbound	+12147122250	\N	1.63800692558288574	\N	new lead	smith jimmy    	9	\N	\N	1776
2017-05-25 15:40:46.983912+00	2017-11-29 18:38:49.813366+00	5389	completed				+14698184363		76	2017-05-25 15:40:46.980941	2017-05-25 15:42:03.363367	CAceda3a78caf05f9002ec1d8a6a9da600	\N	107			0	inbound	+12147122250	\N	5.45434093475341797	\N	new lead	smith jimmy    	9	\N	\N	1776
2017-05-25 18:12:16.492803+00	2017-11-29 18:38:49.813452+00	5402	completed				+14698184363		46	2017-05-25 18:12:16.490807	2017-05-25 18:13:02.284337	CA6d150a0ffd296c71b3a4a3ce163fdd7c	\N	107			0	inbound	+12147122250	\N	8.01801896095275879	\N	new lead	smith jimmy    	9	\N	\N	1776
2017-05-25 18:13:00.457449+00	2017-11-29 18:38:49.813459+00	5403	completed				+14698184363		87	2017-05-25 18:13:00.454844	2017-05-25 18:14:27.093766	CAadfc27d778eb73783fc562b1a38cd989	\N	126			0	inbound	+12147122250	\N	1.30439209938049316	\N	new lead	smith jimmy    	9	\N	\N	1776
2017-05-31 20:34:42.289523+00	2017-11-29 18:38:49.814295+00	5540	completed				+14698184363		82	2017-05-31 20:34:42.287953	2017-05-31 20:36:04.050189	CAa512ea5037de7951e2635b6a93be2b66	\N	99			0	inbound	+12147122250	\N	4.83357810974121094	\N	new lead	smith jimmy    	9	\N	\N	1776
2017-08-31 20:17:48.957327+00	2017-08-31 20:19:36.077522+00	6223	completed	Travis	Whidden	twhidden118@gmail.com	+17709122080		33	2017-08-31 20:17:48.955567	2017-08-31 20:18:31.4939	CA898ed588f55f741bebadf8632978dd64	0427608a-ae09-4db0-a1e8-374423ee28c3	153			1	outbound	+17704009016	\N	8.65030813217163086	{}	new lead		13	\N	\N	1777
2017-11-15 21:04:59.623192+00	2017-11-15 21:08:55.020591+00	7069	completed	Ziomara	Hammonds	ziomarahammonds@gmail.com	+14784202137		220	2017-11-15 21:04:59.621052	2017-11-15 21:08:54.242856	CAaee73256b2c0e560ad7868c30fb3e231	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE5b63e4d7e30b0ba321c954a3069f0946	1	outbound	+17704009016	\N	13.2968478202819824	{}	new lead		13	\N	\N	1778
2017-01-28 01:06:28.120049+00	2017-02-08 14:10:41.264859+00	3140	missed	Francisco	Granillo	asu59@cox.net	+14805403674		\N	2017-01-28 01:06:28.118802	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	application submitted - autopay		1	\N	\N	1779
2017-03-12 17:31:36.779673+00	2017-11-29 18:38:53.212061+00	3385	missed				+14694277110		42	2017-03-12 17:31:36.778678	2017-03-12 17:32:18.751759	CAe2d5c71c5d9d1bf723caf5b713dd7bbc	\N	\N			0	inbound	+12146922088	\N	25.4845609664916992	\N	new lead	nguyen thu	9	\N	\N	1780
2017-04-14 17:50:43.206751+00	2017-11-29 18:38:49.804974+00	3929	completed				+14122453333		106	2017-04-14 17:50:43.204507	2017-04-14 17:52:29.49319	CAa28088677e4d47d9b9ea0d0a91d1242a	\N	107			0	inbound	+12147122250	\N	4.1900179386138916	\N	new lead	cochran automot	9	\N	\N	1782
2017-04-26 18:41:33.442519+00	2017-11-29 18:38:49.806794+00	4334	completed				+14122453333		202	2017-04-26 18:41:33.440769	2017-04-26 18:44:55.249188	CAb2b432dcac88603e771074bee9a48226	\N	125			0	inbound	+12147122250	\N	2.1505730152130127	\N	new lead	cochran automot	9	\N	\N	1782
2017-11-18 02:54:39.503867+00	2017-11-18 14:15:35.549383+00	7121	missed				+17067687232		1	2017-11-18 02:54:39.501761	2017-11-18 02:54:40.063868	CA962c03a022fd288f8445a0437830e0a5	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	1583
2017-11-18 02:54:50.064568+00	2017-11-18 14:15:35.560117+00	7122	missed				+17067687232		0	2017-11-18 02:54:50.063048	2017-11-18 02:54:50.554899	CAda677ac108c0fda75476961c0bb323a9	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	1583
2017-11-17 20:38:47.02934+00	2017-11-17 20:40:32.188842+00	7116	completed				+16787580740		105	2017-11-17 20:38:47.026626	2017-11-17 20:40:32.176609	CAe778bf7b0f8769bf2365bc9b366dc618	\N	153			0	inbound	+17707665732	133	9.35762310028076172	\N	new lead		13	\N	\N	3504
2017-05-31 21:15:26.192786+00	2017-11-29 18:38:49.814302+00	5541	missed				+14122453333		24	2017-05-31 21:15:26.190722	2017-05-31 21:15:49.815436	CA1e13310c06aa66b5c50d5d831a848c14	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	cochran automot	9	\N	\N	1782
2017-05-26 14:28:44.782211+00	2017-11-29 18:38:49.813593+00	5429	completed				+14122453333		110	2017-05-26 14:28:44.780621	2017-05-26 14:30:34.307627	CA31000b523a490b4168adfb03bd04aca0	\N	125			0	inbound	+12147122250	\N	2.00462794303894043	\N	new lead	cochran automot	9	\N	\N	1782
2017-05-26 15:36:26.242413+00	2017-11-29 18:38:49.8136+00	5430	missed				+14122453333		19	2017-05-26 15:36:26.239721	2017-05-26 15:36:45.467114	CA7f2f9f47b2c5a30e8614e4cd0e5785be	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	cochran automot	9	\N	\N	1782
2017-05-26 20:33:35.80967+00	2017-11-29 18:38:49.813732+00	5448	completed				+14122453333		51	2017-05-26 20:33:35.807754	2017-05-26 20:34:26.866622	CA9775b8c50f271602ca35b9ca95f84baf	\N	125			0	inbound	+12147122250	\N	1.2034142017364502	\N	new lead	cochran automot	9	\N	\N	1782
2017-05-26 20:34:22.43904+00	2017-11-29 18:38:49.813739+00	5449	missed				+14122453333		42	2017-05-26 20:34:22.437845	2017-05-26 20:35:03.955723	CA2bc772dc43d5e8ccd61083bc8459581a	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	cochran automot	9	\N	\N	1782
2017-05-30 14:48:41.261165+00	2017-11-29 18:38:49.813975+00	5488	completed				+14122453333		46	2017-05-30 14:48:41.259163	2017-05-30 14:49:27.705486	CAbc94b5a2d51578eff5e16aa6925875d0	\N	125			0	inbound	+12147122250	\N	1.23296713829040527	\N	new lead	cochran automot	9	\N	\N	1782
2017-05-30 14:49:21.782492+00	2017-11-29 18:38:49.813983+00	5489	completed				+14122453333		383	2017-05-30 14:49:21.781276	2017-05-30 14:55:44.94768	CA9cc4fbbdd2b2f9c5a238e25978799b37	\N	133			0	inbound	+12147122250	\N	5.57185101509094238	\N	new lead	cochran automot	9	\N	\N	1782
2017-05-31 18:41:34.361265+00	2017-11-29 18:38:49.814246+00	5532	completed				+14122453333		47	2017-05-31 18:41:34.359566	2017-05-31 18:42:21.185053	CA702d8646e9993ba76d153848e0659765	\N	125			0	inbound	+12147122250	\N	1.46535491943359375	\N	new lead	cochran automot	9	\N	\N	1782
2017-05-31 20:07:21.947583+00	2017-11-29 18:38:49.814281+00	5538	completed				+14122453333		226	2017-05-31 20:07:21.945542	2017-05-31 20:11:07.823613	CAe51a85dfae1954d94e9d5e97d5f10940	\N	133			0	inbound	+12147122250	\N	4.77848196029663086	\N	new lead	cochran automot	9	\N	\N	1782
2017-03-17 20:09:33.118099+00	2017-11-29 18:38:53.212538+00	3478	completed				+14122453333		218	2017-03-17 20:09:33.116013	2017-03-17 20:13:10.687697	CA95d8bf52048a9b09f2fa6d65828c13cd	\N	\N			0	inbound	+12146922088	\N	5.4324638843536377	\N	new lead		9	\N	\N	1782
2017-04-14 17:48:26.659821+00	2017-11-29 18:38:49.80496+00	3927	completed				+14122453333		64	2017-04-14 17:48:26.657172	2017-04-14 17:49:30.605203	CAa6295086ba949ffe633c5e7cc562a54e	\N	125			0	inbound	+12147122250	\N	2.21280407905578613	\N	new lead	cochran automot	9	\N	\N	1782
2017-04-14 17:49:25.77006+00	2017-11-29 18:38:49.804967+00	3928	completed				+14122453333		76	2017-04-14 17:49:25.767084	2017-04-14 17:50:41.592288	CAce97d6e4d7539aa1d095fc46c5342c2f	\N	124			0	inbound	+12147122250	\N	1.73133111000061035	\N	new lead	cochran automot	9	\N	\N	1782
2016-05-31 17:34:45.597023+00	2017-11-29 18:31:56.600068+00	286	completed	Unknown			+17815848179		48	2016-05-31 17:34:45.59547	2016-05-31 17:35:33.575739	CAbc83b2644e80c2fbce167a07bddc163c	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE74879fdd4f88eba5ea239a8cf6b91342	0	inbound	+18556311397	\N	14.8361389636993408	null	new lead		1	\N	\N	1787
2016-05-31 18:42:21.409575+00	2017-11-29 18:31:56.600075+00	292	completed	Unknown			+17815848179		15	2016-05-31 18:42:21.406419	2016-05-31 18:42:36.46817	CA503ed647447d235d2c6f96bb7a624530	\N	16			0	inbound	+18556311397	\N	5.30424690246582031	null	new lead		1	\N	\N	1787
2016-05-31 18:43:12.511544+00	2017-11-29 18:31:56.600082+00	293	completed	Unknown			+17815848179		408	2016-05-31 18:43:12.510559	2016-05-31 18:50:00.010663	CA13cff31d02f9ced4fe41310da6ac8468	\N	18		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REfe2df5eab2f2923453ad41ab990dd2c9	0	inbound	+18556311397	\N	12.3605442047119141	null	new lead		1	\N	\N	1787
2016-05-31 17:44:36.169071+00	2016-05-31 17:45:41.764742+00	287	completed				+17815848179		61	2016-05-31 17:44:36.167717	2016-05-31 17:45:41.76362	CAcdbe46417616cc1a9108a2f6874347a8	c6c46e91-97c9-404c-92ba-454008d80db7	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REda422efbd7f10dec79b078df4b7bf051	1	outbound	+18556311397	\N	1.43597888946533203	{}	new lead		1	\N	\N	1787
2016-05-31 17:55:56.456921+00	2016-05-31 17:58:35.062152+00	288	completed	Richard 	Mondello	mondoplastics@msn.com	+17815848179		115	2016-05-31 17:55:56.455887	2016-05-31 17:58:35.060186	CA416aa330816b56886c07837306e73e61	f3e4cfe5-2811-4ab1-9d96-3f14b202cd33	17		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE2ca5efc8dd64ac0a75b7de3a0e43e535	1	outbound	+18556311397	\N	25.2958080768585205	{}	new lead		1	\N	\N	1787
2017-11-21 21:04:53.723632+00	2017-11-21 21:18:52.144873+00	7166	completed	Donyal	Smith	donyal_smith@yahoo.com	+17065344590		200	2017-11-21 21:04:53.722096	2017-11-21 21:08:24.599736	CA4c0ab70a45d8c92e626f057a157ad276	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE6fdfa59ce27e4cbbde10cbafbe202a8e	1	outbound	+17704009016	\N	10.0895140171051025	{}	select status		13	\N	\N	317
2017-11-21 17:27:22.346257+00	2017-11-21 17:29:17.297427+00	7158	completed	Mary 	Sheriff 	Msheriff34@gmail.com	+16785486624		51	2017-11-21 17:27:22.344565	2017-11-21 17:28:23.498402	CA35c05e066f17f6cbfa6b37d35b30e5db	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REdda8d0e910fa89fdc445700983a8a0a8	1	outbound	+17704009016	\N	13.2804560661315918	{}	select status		13	\N	\N	945
2017-11-21 14:31:45.274147+00	2017-11-21 14:33:56.608776+00	7156	completed	Kaitlyn	Chilli	kaitlynchilli@gmail.com	+14702723574		89	2017-11-21 14:31:45.27271	2017-11-21 14:33:14.131679		\N	150			0	outbound	+17704009016	132	\N	\N	select status		13	\N	\N	1636
2017-11-20 23:42:02.881859+00	2017-11-21 14:33:56.61882+00	7148	missed	Kaitlyn	Chilli	kaitlynchilli@gmail.com	+14702723574		0	2017-11-20 23:42:02.879898	2017-11-20 23:47:56.359413	CAd835efef8343e3d064b46b64117a5772	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			3	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	1636
2017-11-22 00:00:12.368012+00	2017-11-27 20:02:15.439429+00	7169	missed	Kizzy	Dukes	Kflem3311@gmail.com	+16787916228		\N	2017-11-22 00:00:12.36651	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	3215
2017-11-21 23:51:48.530704+00	2017-11-21 23:58:03.173465+00	7167	completed	Alannah	Davis	alannah.shauri@gmail.com	+17063724651		235	2017-11-21 23:51:48.52906	2017-11-21 23:55:52.64597	CAfed6eb1041ec097096144060a246f2fd	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REf2cee25262a697b6558a17a44936a63e	1	outbound	+17704009016	\N	8.22825908660888672	{}	select status		13	\N	\N	4171
2017-11-22 15:52:09.878522+00	2017-11-22 16:20:45.784414+00	7174	completed	Heather	Wilkie	sunshine72286@yahoo.com	+16783293965		58	2017-11-22 15:52:09.876299	2017-11-22 15:53:17.620155	CA864f042d472c00c7bca23217eb305fe3	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE14609f58e8f6ee73e4e4ce8ad2e97c63	1	outbound	+17704009016	\N	8.48276114463806152	{}	select status		13	\N	\N	393
2018-01-04 23:00:14.815113+00	2018-01-04 23:05:18.092769+00	8193	completed				+18473123318		303	2018-01-04 23:00:14.811352	2018-01-04 23:05:18.089699		\N	15			0	outbound	+13367394103	139	\N	\N	new lead		1	\N	\N	4031
2017-11-22 16:18:07.543435+00	2017-11-22 16:25:24.936102+00	7175	completed				+17702978700		357	2017-11-22 16:18:07.541366	2017-11-22 16:24:04.531859	CAd33783539a5dd85cfdd46fadd499dfa8	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE2c3e6660fea099e75362305832eb145e	0	inbound	+17704009016	132	315.614711999893188	\N	select status		13	\N	\N	656
2017-08-09 16:40:21.62025+00	2017-11-22 16:25:24.949689+00	5976	completed				+17702978700		20	2017-08-09 16:40:21.619156	2017-08-09 16:40:41.77092	CA277de65e15b9316248cae03036fff121	\N	154			0	inbound	+17707665699	134	1.41618800163269043	\N	select status		13	\N	\N	656
2017-09-20 17:24:18.975034+00	2017-11-22 16:25:24.949705+00	6405	completed				+17702978700		82	2017-09-20 17:24:18.973578	2017-09-20 17:25:41.011482	CA4e4468301ea03f492bd3c840483b30a1	\N	154			0	inbound	+17707665699	134	2.75478792190551758	\N	select status		13	\N	\N	656
2017-09-20 17:27:33.370171+00	2017-11-22 16:25:24.949712+00	6406	completed				+17702978700		13	2017-09-20 17:27:33.367766	2017-09-20 17:27:46.476325	CA0b3ea8f0b9e6453388992358e7eabccb	\N	154			0	inbound	+17707665699	134	1.57846498489379883	\N	select status		13	\N	\N	656
2017-09-22 14:46:17.377552+00	2017-11-22 16:25:24.949727+00	6430	completed				+17702978700		18	2017-09-22 14:46:17.375791	2017-09-22 14:46:35.128816	CA82e8fc0651d24999d717bb6a06502eb8	\N	154			0	inbound	+17707665699	134	2.57137608528137207	\N	select status		13	\N	\N	656
2017-11-10 22:41:16.3207+00	2017-11-22 16:25:24.949743+00	7011	completed				+17702978700		84	2017-11-10 22:41:16.31893	2017-11-10 22:42:40.149751	CA0a23704454c3700ba6c95ac67b8d22f9	\N	154			0	inbound	+17707665699	134	1.55126500129699707	\N	select status		13	\N	\N	656
2017-11-25 18:27:32.36254+00	2017-11-25 18:27:32.579924+00	7300	missed				+17702978700		0	2017-11-25 18:27:32.361309	2017-11-25 18:27:32.569994	CA19ecbe1b109f1b410db88f7afa4a4c6e	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2017-11-24 17:05:51.338155+00	2017-11-24 17:05:52.213847+00	7191	missed				+17702978700		1	2017-11-24 17:05:51.335217	2017-11-24 17:05:52.199598	CA500beabcb6913503e536ab7288941280	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2017-11-22 20:21:10.31653+00	2017-11-22 20:38:30.438569+00	7180	completed	Tamekia	Riden	Tamekia.riden@yahoo.com	+14044925147		24	2017-11-22 20:21:10.314999	2017-11-22 20:21:50.609385	CAcc9da1626ef7ebb8ba5b7f267e2fde5d	0427608a-ae09-4db0-a1e8-374423ee28c3	150			1	outbound	+17704009016	\N	21.4429588317871094	{}	select status		13	\N	\N	881
2017-11-22 21:39:24.005951+00	2017-11-22 21:49:51.786806+00	7181	completed	WILLIAM	KING		+14047842522		346	2017-11-22 21:39:24.001985	2017-11-22 21:45:10.281199	CAfc58c9ac5b20890711cbde311510ba9d	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE4639352e666f88f01e989251582c3a6f	0	inbound	+17704009016	132	13.2973220348358154	\N	select status		13	\N	\N	1153
2017-11-23 20:31:05.708448+00	2017-11-24 14:57:16.588359+00	7182	missed	Jennifer	Sampedro	Sampedro.jennifer23@gmail.com	+17067683604		0	2017-11-23 20:31:05.706934	2017-11-23 20:37:01.431064	CAed6cb336b0f1219fca613f53637b3b6e	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			3	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	2593
2017-11-24 03:10:03.667032+00	2017-11-24 23:16:17.892481+00	7184	missed	Melissa	Ayers	zafraia@yahoo.com	+16786085817		\N	2017-11-24 03:10:03.665225	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	521
2017-11-24 03:02:28.414618+00	2017-11-24 23:16:17.905878+00	7183	missed	Melissa	Ayers	zafraeia@yahoo.com	+16786085817		\N	2017-11-24 03:02:28.412916	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	521
2017-11-22 18:16:12.910176+00	2017-11-22 18:17:04.449989+00	7177	completed	Sabrina	Menefield		+17063528629		50	2017-11-22 18:16:12.908423	2017-11-22 18:17:03.222352	CA316a41c305cb0e659f8a48b302986db9	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE6c4fb3379725596a0bb06fc7c77556c8	0	inbound	+17704009016	132	16.5280990600585938	\N	select status		13	\N	\N	654
2016-06-02 13:44:44.178262+00	2016-06-02 13:46:50.537459+00	343	completed	Mary 	Mondello	marymondellojr@msn.com	+17815848179		97	2016-06-02 13:44:44.176821	2016-06-02 13:46:50.535968	CAc3c43cd66169efff1aa552055ee8b4c1	f3e4cfe5-2811-4ab1-9d96-3f14b202cd33	17		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE5193135066be5d5b3584de780e8b3ad6	1	outbound	+18556311397	\N	25.5777459144592285	{}	new lead		1	\N	\N	1787
2017-08-30 21:07:18.612097+00	2017-08-30 21:10:32.326977+00	6207	completed				+16825587529		193	2017-08-30 21:07:18.610813	2017-08-30 21:10:31.604793	CA3a8051fbcf3c5956fe38a2e54a98bafa	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE5a83eafd28e045c03d5699050ff9ae33	0	inbound	+18177569010	124	9.32330203056335449	\N	new lead	artiguez maldon	12	\N	\N	1788
2017-07-17 23:17:13.079942+00	2017-07-17 23:20:30.745947+00	5796	completed				+18179158521		197	2017-07-17 23:17:13.07798	2017-07-17 23:20:29.581269	CA59178eefcc52b496a16dd7ddfb23f954	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE4a5bf340c41bfc933129ae95eb56f1d2	0	inbound	+18177569010	124	65.2666339874267578	\N	new lead	cell phone   tx	12	\N	\N	1792
2017-02-12 18:58:40.041206+00	2017-02-12 19:00:20.607903+00	3163	missed	Name	Unavailabl		+17378742833		101	2017-02-12 18:58:40.038151	2017-02-12 19:00:20.601259	CAaf2dac7b24409fbfc9871f19cd6231b8	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACafc5b14e320f72bf4ed973f9ab19c98d/Recordings/RE9a44ab346b54bbc62f6c78c0e92ae39b	0	inbound	+17735469660	16	0.709388971328735352	null	new lead		1	\N	\N	1797
2017-02-12 19:00:53.845189+00	2017-02-12 19:02:27.35865+00	3165	missed	Name	Unavailabl		+17378742833		94	2017-02-12 19:00:53.843144	2017-02-12 19:02:27.353917	CA67fc4a6f55e2259778aac0c361e71c60	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACafc5b14e320f72bf4ed973f9ab19c98d/Recordings/RE04dfcda4cdd4d42c83c29a4836f6a940	0	inbound	+17735469660	16	0.479707002639770508	null	new lead		1	\N	\N	1797
2017-12-23 15:22:09.199673+00	2017-12-23 15:26:40.057092+00	8079	completed				+15758089040		270	2017-12-23 15:22:09.197503	2017-12-23 15:26:39.346903	CAceeda7e7a6496d325634bfb8e3fdacc6	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REa6d590a9752f50d78a92fd2b7260c215	0	inbound	+18177569010	124	13.7163169384002686	\N	new lead	reagan robert p	12	\N	\N	1798
2017-12-12 15:21:18.321597+00	2017-12-12 15:21:53.880264+00	7809	completed				+14043726629		34	2017-12-12 15:21:18.319794	2017-12-12 15:21:52.596005	CA542cea022aced17d1ada3b100a9c6495	\N	157		https://api.twilio.com/2010-04-01/Accounts/ACbd7756819f4882feb347788ad7959655/Recordings/RE4aa457f69cce9500d74e7e700155d7df	0	inbound	+17706597466	137	10.7436978816986084	\N	new lead		14	\N	\N	1799
2017-03-09 16:56:04.674313+00	2017-11-29 18:38:53.211953+00	3357	completed				+15014424449		36	2017-03-09 16:56:04.671966	2017-03-09 16:56:40.270445	CA9e88c19d950c30760f898a51fbbcdeb0	\N	\N			0	inbound	+12146922088	\N	6.88122391700744629	\N	new lead	hubbard angelia	9	\N	\N	1800
2016-11-19 01:53:19.89708+00	2016-11-19 01:53:19.922931+00	2950	missed	Alexander	Bostick	alexmbostick@gmail.com	+18175785795		\N	2016-11-19 01:53:19.896047	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	1801
2016-08-15 21:55:19.365421+00	2016-12-10 00:55:45.165327+00	1528	completed				+16109482115		9	2016-08-15 21:55:19.362999	2016-08-15 21:55:28.583607	CA2a71207d2f68175ae7a33beb1e3b07bc	\N	24			0	inbound	+18557129406	\N	2.02326202392578125	null	new lead		3	\N	\N	1802
2016-08-15 21:55:38.194651+00	2016-12-10 00:55:45.165335+00	1529	completed				+16109482115		16	2016-08-15 21:55:38.193727	2016-08-15 21:55:54.451543	CA23938e7ea316569f4a215c1c55e22240	\N	24			0	inbound	+18557129406	\N	2.74750900268554688	null	new lead		3	\N	\N	1802
2016-06-01 11:45:26.36519+00	2016-06-01 12:17:07.225411+00	302	completed	thomas	wildman	twildman@neo.rr.com	+13308313840		\N	2016-06-01 11:45:26.364255	\N		ee869226-e246-4ab4-aaaa-e9403e2ddd39	\N			0	outbound	+18555983683	\N	\N	{}	new lead		1	\N	\N	1803
2016-06-27 13:58:34.649498+00	2016-06-27 15:19:55.591123+00	489	completed	thomas	wildman	twildman@neo.rr.com	+13308313840		10	2016-06-27 13:58:34.648546	2016-06-27 13:58:56.775661	CA7e23f98326f29e8b4a4a4348900fff07	ee869226-e246-4ab4-aaaa-e9403e2ddd39	\N			1	outbound	+18555983683	\N	5.75947308540344238	{}	new lead		1	\N	\N	1803
2016-06-27 16:06:48.321675+00	2016-06-27 16:08:43.270118+00	521	completed				+13308313840		110	2016-06-27 16:06:48.320739	2016-06-27 16:08:43.268922	CAe3050dafec1326bdeee46969dc410c02	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.5888669490814209	{}	new lead		1	\N	\N	1803
2016-06-27 13:50:38.791083+00	2017-11-29 18:32:13.82054+00	487	completed	Unknown			+13308313840		72	2016-06-27 13:50:38.789791	2016-06-27 13:51:51.129282	CA7ea11d37c24d234a16d182bb3d3d3c35	\N	17		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REe86e0035c9bbf2723b97fcf47e55e30b	0	inbound	+18555983683	\N	32.0903630256652832	null	new lead		1	\N	\N	1803
2016-06-27 13:59:27.414586+00	2017-11-29 18:32:13.820554+00	491	completed	Thomas	Wildman		+13308313840		25	2016-06-27 13:59:27.413535	2016-06-27 13:59:52.466598	CAdf369115e36cb063feb2d9dbad33053a	\N	\N			0	inbound	+18555983683	\N	14.0766959190368652	null	new lead		1	\N	\N	1803
2016-06-27 15:41:16.23984+00	2017-11-29 18:32:13.820596+00	514	completed	Thomas	Wildman		+13308313840		50	2016-06-27 15:41:16.237968	2016-06-27 15:42:05.932563	CA64775bc44de4dab5a3239ca723bafdd0	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE67662ef6b08a642fd052a5e815813140	0	inbound	+18555983683	\N	14.2266628742218018	null	new lead		1	\N	\N	1803
2017-12-11 17:16:41.143013+00	2017-12-11 17:16:51.772469+00	7781	completed				+16785228797		9	2017-12-11 17:16:41.141242	2017-12-11 17:16:50.481563	CA3b6ad8bc01fba5ee10e4f1edf3d5ed0d	\N	157		https://api.twilio.com/2010-04-01/Accounts/ACbd7756819f4882feb347788ad7959655/Recordings/RE3a1451a19a99ede62772b554439f6b8e	0	inbound	+17706597466	137	5.64321208000183105	\N	new lead		14	\N	\N	1805
2017-12-11 17:17:00.090329+00	2017-12-11 17:17:08.801933+00	7782	completed				+16785228797		8	2017-12-11 17:17:00.088014	2017-12-11 17:17:08.025275	CAed1344907281bae53341401ed68be3fe	\N	157		https://api.twilio.com/2010-04-01/Accounts/ACbd7756819f4882feb347788ad7959655/Recordings/REd838b7c163ddd7b31fed347ead00673b	0	inbound	+17706597466	137	4.74384307861328125	\N	new lead		14	\N	\N	1805
2017-05-02 16:17:54.0771+00	2017-11-29 18:38:49.808642+00	4574	completed				+12145056231		77	2017-05-02 16:17:54.075339	2017-05-02 16:19:11.440008	CAe4b6c4ad4b489238e010c63c654eb612	\N	127			0	inbound	+12147122250	\N	1.19031596183776855	\N	new lead	bomar brant    	9	\N	\N	1806
2016-08-08 18:07:10.559837+00	2017-11-29 18:32:13.821685+00	1331	completed	Mark	Such		+13308810901		154	2016-08-08 18:07:10.557932	2016-08-08 18:09:44.593885	CA5b7b9257f91178effa0e4c690ba7dbff	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE82b5afb04a4fee6caf620628f16921bd	0	inbound	+18555983683	\N	7.40861201286315918	null	application submitted - autopay		1	\N	\N	1809
2016-08-08 18:17:07.293371+00	2017-11-29 18:32:13.821692+00	1332	completed				+13308810901		694	2016-08-08 18:17:07.292244	2016-08-08 18:28:41.403967	CA4e284c77742aae29ef5cb747c3d1a06e	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE27d5013da7d6137b9924e591856f5fb0	0	inbound	+18555983683	\N	11.6232280731201172	null	application submitted - autopay		1	\N	\N	1809
2016-08-08 18:28:51.505039+00	2016-08-08 20:08:04.885225+00	1333	missed	Mark	Such	1@1.com	+13308810901		\N	2016-08-08 18:28:51.504072	\N		ee869226-e246-4ab4-aaaa-e9403e2ddd39	\N			0	outbound	+18555983683	\N	\N	{}	application submitted - autopay		1	\N	\N	1809
2017-11-09 16:23:15.422213+00	2017-11-09 16:26:57.428321+00	6996	completed	Lashonda	Burks	Burkslashonda@gmail.com	+17063729769		207	2017-11-09 16:23:15.420504	2017-11-09 16:26:55.104706	CA47721fe7983990f4b5cdc399fe426111	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE96c1af73892f80555f20da4f3e893de2	1	outbound	+17704009016	\N	12.1813530921936035	{}	new lead		13	\N	\N	1810
2017-07-31 13:09:09.779148+00	2017-07-31 13:09:42.131152+00	5896	completed				+14702667623		32	2017-07-31 13:09:09.777147	2017-07-31 13:09:41.368006	CA022c022853e61782e5d259d5d68d8986	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE379e6492509a84e1f42c55ea77571ce6	0	inbound	+17704009016	132	8.08201718330383301	\N	new lead		13	\N	\N	1811
2017-07-29 22:51:15.833853+00	2017-07-29 22:51:50.327317+00	5889	missed				+14702667623		34	2017-07-29 22:51:15.831634	2017-07-29 22:51:50.317599	CA73c174c656c9d6037c446c14853a1c0a	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REbc1cda19947e2fa05a3f0a7bffa11cc3	0	inbound	+17704009016	132	\N	\N	new lead		13	\N	\N	1811
2017-05-09 22:30:12.812355+00	2017-11-29 18:38:53.215527+00	4940	completed				+18323909428		247	2017-05-09 22:30:12.81046	2017-05-09 22:34:19.643666	CAfe87d68cb80b8788bd58c432818437ed	\N	\N		https://api.twilio.com/2010-04-01/Accounts/AC5422b9b221417a7a84556a92f6edc492/Recordings/RE4f62e1ef272f24d511d839af88552713	0	inbound	+12146922088	\N	4.17022299766540527	\N	new lead	lladira angulo	9	\N	\N	1813
2017-10-30 15:31:55.119108+00	2017-10-30 15:34:55.716289+00	6866	completed				+16827010719		180	2017-10-30 15:31:55.11696	2017-10-30 15:34:54.974945	CAb490b6298c8edd569d36f558b614f8a0	\N	155		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REbc025e3ac00799517f23ca064a83b105	0	inbound	+18177569010	124	4.66270995140075684	\N	new lead	dallas  tx	12	\N	\N	1815
2017-04-23 22:30:32.799385+00	2017-04-23 22:30:43.335969+00	4243	missed				+12544661054		11	2017-04-23 22:30:32.79663	2017-04-23 22:30:43.323035	CA97fa25987b316b9c4030203f342f3721	\N	\N			0	inbound	+18177569010	124	\N	\N	new lead	wireless caller	12	\N	\N	1817
2017-11-25 14:39:23.048069+00	2017-11-25 14:39:23.564168+00	7263	missed				+17702978700		1	2017-11-25 14:39:23.045833	2017-11-25 14:39:23.553888	CA2e595bfbf64594b36b9fd60cf0292fd3	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2017-11-25 14:39:24.997381+00	2017-11-25 14:39:25.4288+00	7264	missed				+17702978700		0	2017-11-25 14:39:24.996323	2017-11-25 14:39:25.412892	CA58b53f7032db13f4d189813b989c2040	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2017-11-25 14:39:26.621126+00	2017-11-25 14:39:27.360824+00	7265	missed				+17702978700		1	2017-11-25 14:39:26.619975	2017-11-25 14:39:27.346228	CAa50fe122f1a6fdd5d374959cc945fe54	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2017-11-25 14:39:28.5353+00	2017-11-25 14:39:29.068092+00	7266	missed				+17702978700		1	2017-11-25 14:39:28.533738	2017-11-25 14:39:29.060548	CA7d2f511e3042af1077b26f2c4d2c2778	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2017-11-25 14:39:30.460642+00	2017-11-25 14:39:30.866799+00	7267	missed				+17702978700		0	2017-11-25 14:39:30.459467	2017-11-25 14:39:30.857651	CA8d8db0ac21ee44e437b84bc8f0591c26	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2017-11-25 14:39:32.324227+00	2017-11-25 14:39:32.52796+00	7268	missed				+17702978700		0	2017-11-25 14:39:32.323062	2017-11-25 14:39:32.519742	CA6babb3d00fed21a08a6f29bfe789efd6	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2017-11-25 14:39:33.725293+00	2017-11-25 14:39:33.956726+00	7269	missed				+17702978700		0	2017-11-25 14:39:33.724063	2017-11-25 14:39:33.943844	CAaf6ad1085a1ba9d2e844afa765e9d3a6	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2017-11-25 14:39:35.303744+00	2017-11-25 14:39:35.569148+00	7270	missed				+17702978700		0	2017-11-25 14:39:35.301614	2017-11-25 14:39:35.56088	CAf06f94fbb0b62af565cb4b954e582d30	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2017-11-25 14:39:37.054258+00	2017-11-25 14:39:37.291164+00	7271	missed				+17702978700		0	2017-11-25 14:39:37.052274	2017-11-25 14:39:37.283304	CA5cfb25e5a26b4e506946cc1dcb736ddc	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2017-11-25 14:39:38.450967+00	2017-11-25 14:39:38.801791+00	7272	missed				+17702978700		0	2017-11-25 14:39:38.44962	2017-11-25 14:39:38.794076	CAb72dd197379266247d16ed2a5f4a765e	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2017-11-25 14:39:40.006206+00	2017-11-25 14:39:40.323487+00	7273	missed				+17702978700		0	2017-11-25 14:39:40.005046	2017-11-25 14:39:40.314115	CA0b338bb4b431b6959ba83d65fe415ad1	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2017-11-25 14:39:41.516602+00	2017-11-25 14:39:41.737172+00	7274	missed				+17702978700		0	2017-11-25 14:39:41.515449	2017-11-25 14:39:41.729257	CA57f8bb14df7896758ab5b7b66953bf4d	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2017-11-25 14:39:43.527564+00	2017-11-25 14:39:43.762456+00	7275	missed				+17702978700		0	2017-11-25 14:39:43.526061	2017-11-25 14:39:43.754046	CA4d26977335b10a9870a3265a9fc1c6a4	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2017-11-25 14:39:44.675331+00	2017-11-25 14:39:44.885575+00	7276	missed				+17702978700		0	2017-11-25 14:39:44.674017	2017-11-25 14:39:44.875715	CA275837f574bd2e48cddc06fb28ae9844	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2017-11-25 14:39:46.004305+00	2017-11-25 14:39:46.213965+00	7277	missed				+17702978700		0	2017-11-25 14:39:46.002807	2017-11-25 14:39:46.203514	CA393fe47f28a2a417dd7f7ed5b3d2efe8	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2017-11-25 14:39:47.412583+00	2017-11-25 14:39:47.711388+00	7278	missed				+17702978700		0	2017-11-25 14:39:47.411255	2017-11-25 14:39:47.699486	CAd19d34869948ce8962409f88f380be18	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2017-11-25 16:18:16.211854+00	2017-11-25 16:18:16.65998+00	7290	missed				+14042133394		0	2017-11-25 16:18:16.210036	2017-11-25 16:18:16.647629	CA92f022c52552c8f1f89a23865cd1a875	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	28
2017-11-25 14:39:59.748541+00	2017-11-25 14:39:59.988251+00	7286	missed				+17702978700		0	2017-11-25 14:39:59.747049	2017-11-25 14:39:59.964592	CA16df521152ab718d91c3a658b638ca36	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2017-11-25 14:40:01.440239+00	2017-11-25 14:40:01.965072+00	7287	missed				+17702978700		1	2017-11-25 14:40:01.438875	2017-11-25 14:40:01.954765	CA78afed388b2867e0be87c89d94e5968e	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2017-11-25 14:40:03.232946+00	2017-11-25 14:40:03.476987+00	7288	missed				+17702978700		0	2017-11-25 14:40:03.231766	2017-11-25 14:40:03.46322	CA342259eed8cbd3a448d040e5c29cb35c	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2017-11-25 14:40:04.994097+00	2017-11-25 14:40:05.361888+00	7289	missed				+17702978700		0	2017-11-25 14:40:04.992173	2017-11-25 14:40:05.349889	CAedf1377a952a9ae44c05d38edc0444aa	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2017-11-25 18:27:21.972632+00	2017-11-25 18:27:22.343481+00	7295	missed				+17702978700		0	2017-11-25 18:27:21.971291	2017-11-25 18:27:22.33207	CA981615b626e33ea276a3d0626324e8c3	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2017-11-25 18:27:18.249795+00	2017-11-25 18:27:18.504089+00	7293	missed				+17702978700		0	2017-11-25 18:27:18.248277	2017-11-25 18:27:18.496076	CA070b58589b5df409503773ec23f20562	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2017-11-25 18:27:19.998445+00	2017-11-25 18:27:20.719948+00	7294	missed				+17702978700		1	2017-11-25 18:27:19.997098	2017-11-25 18:27:20.707112	CAa3bddd541fec6a2202e382a65fb6cd90	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	656
2016-08-23 19:06:51.123794+00	2017-01-27 21:12:23.81363+00	1683	completed				+17408521386		34	2016-08-23 19:06:51.122683	2016-08-23 19:07:24.960885		\N	\N			0	outbound	+18555343978	48	\N	null	do not contact		1	\N	\N	4061
2017-11-29 16:55:41.190874+00	2017-11-29 17:00:47.186782+00	7394	completed				+16784208877		268	2017-11-29 16:55:41.188249	2017-11-29 17:00:08.882112	CAc1ced3c29877be4f8a609fe04846629a	\N	152			0	inbound	+17707665732	133	8.2080078125	\N	select status	bryant david	13	\N	\N	318
2017-11-26 21:03:41.40484+00	2017-11-26 21:04:03.732554+00	7329	missed				+18172300700		22	2017-11-26 21:03:41.402849	2017-11-26 21:04:03.723202	CA436cc2289f114d9401bfa009dde07ce4	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE542bae821fd9ba09eb27365c3ed06dd2	0	inbound	+18177569010	124	\N	\N	new lead	d r horton	12	\N	\N	4036
2017-11-27 14:12:56.380186+00	2017-11-27 14:15:07.065305+00	7331	completed	Joshua	Caudle	Nitenite758@gmail.com	+16788828211		115	2017-11-27 14:12:56.378432	2017-11-27 14:15:06.673054	CAb080839366497a88b5512f5578954fa8	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REc857fd690675d60a1eddfbd39e8db2d6	1	outbound	+17704009016	\N	11.5391280651092529	{}	select status		13	\N	\N	691
2017-11-27 14:47:15.128053+00	2017-11-27 14:49:32.080557+00	7332	completed	Ramona 	Long 	longramona20@gmail.com	+16789342630		68	2017-11-27 14:47:15.125168	2017-11-27 14:48:23.179433		\N	150			0	outbound	+17704009016	132	\N	\N	select status		13	\N	\N	958
2017-11-27 00:16:02.80496+00	2017-11-27 14:49:32.093313+00	7330	missed	Ramona 	Long 	longramona20@gmail.com	+16789342630		\N	2017-11-27 00:16:02.803285	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	958
2017-11-27 16:05:36.060054+00	2017-11-27 16:06:17.61796+00	7337	completed	Ramona 	Long 		+16789342630		41	2017-11-27 16:05:36.057911	2017-11-27 16:06:16.775971	CA7faa0f45b366e14c6901ed880430ed6b	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REa0b72e97f0d6ed3d110cf9c83fecdba1	0	inbound	+17704009016	132	13.0461928844451904	\N	select status	harris lyric	13	\N	\N	958
2017-03-11 22:29:18.628602+00	2017-11-29 18:47:25.067694+00	3383	completed				+18176837818		128	2017-03-11 22:29:18.626668	2017-03-11 22:31:26.215382	CAbdf27b962a498bd7f69266f93429a9a8	\N	82		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE42b4b78141c0b23c1a20067fd2f45c69	0	inbound	+19728330116	\N	8.57920289039611816	\N	new lead	brooks lamedra	8	\N	\N	1821
2016-06-03 22:07:23.007211+00	2017-11-29 18:31:10.261132+00	375	completed	Sarah	Buckley		+15138009798		16	2016-06-03 22:07:23.00558	2016-06-03 22:07:39.15653	CA3beb4cda14697295a8e1148f8f7ef7c5	\N	\N			0	inbound	+18556311490	\N	\N	null	new lead		1	\N	\N	1823
2016-06-02 13:16:02.616192+00	2017-11-29 18:31:10.260886+00	342	completed	Sarah	Buckley		+15138009798		26	2016-06-02 13:16:02.615105	2016-06-02 13:16:28.428216	CA94751e7b8d2e9e2dc4cbffe75c614ef5	\N	\N			0	inbound	+18556311490	\N	14.5706729888916016	null	new lead		1	\N	\N	1823
2016-06-01 13:15:55.723651+00	2016-06-01 13:17:17.86759+00	305	completed				+15138009798		77	2016-06-01 13:15:55.72252	2016-06-01 13:17:17.866582	CA1147b261aa3ead58bfd477247a6ba74d	cd89e433-4bde-4f86-9b22-8f52c2413fcd	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE1daada5ec581948133358f728a403a81	1	outbound	+18556311490	\N	1.83295702934265137	{}	new lead		1	\N	\N	1823
2016-06-02 03:11:30.666951+00	2016-06-02 11:33:10.585326+00	337	completed	Sarah	Buckley	Lvlyldy711@yahoo.com	+15138009798		\N	2016-06-02 03:11:30.665034	\N		25d0200e-983d-4413-94ae-eb664b99711c	\N			0	outbound	+18556311490	\N	\N	{}	new lead		1	\N	\N	1823
2016-06-03 21:30:53.348588+00	2016-06-03 21:31:44.836196+00	374	completed				+15138009798		47	2016-06-03 21:30:53.346715	2016-06-03 21:31:44.834901	CA8f3075530b069759c35e1770142a631d	cd89e433-4bde-4f86-9b22-8f52c2413fcd	16			1	outbound	+18556311490	\N	1.55239486694335938	{}	new lead		1	\N	\N	1823
2016-06-06 15:18:02.785511+00	2016-06-06 15:19:04.892277+00	381	completed				+15138009798		57	2016-06-06 15:18:02.784465	2016-06-06 15:19:04.89126	CA599415ecaf664edee954918ad0170a4d	cd89e433-4bde-4f86-9b22-8f52c2413fcd	16			1	outbound	+18556311490	\N	1.37601900100708008	{}	new lead		1	\N	\N	1823
2016-06-01 12:13:39.09185+00	2017-11-29 18:31:10.260649+00	303	completed	Unknown			+15138009798		10	2016-06-01 12:13:39.090447	2016-06-01 12:13:49.535335	CAfc4500b47834db5bce6c91cb938dbbfa	\N	\N			0	inbound	+18556311490	\N	\N	null	new lead		1	\N	\N	1823
2016-06-01 13:58:32.690629+00	2017-11-29 18:31:10.260682+00	307	completed	Unknown			+15138009798		55	2016-06-01 13:58:32.68917	2016-06-01 13:59:27.774072	CA83954338046643e343e80a96b70e3795	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE486b7349c99859a84d158febde2f8f8e	0	inbound	+18556311490	\N	2.74538993835449219	null	new lead		1	\N	\N	1823
2016-06-02 13:15:48.744428+00	2017-11-29 18:31:10.260868+00	341	completed	Sarah	Buckley		+15138009798		8	2016-06-02 13:15:48.742505	2016-06-02 13:15:56.502849	CA1f5843426dde45aba1f66031de7b65af	\N	\N			0	inbound	+18556311490	\N	\N	null	new lead		1	\N	\N	1823
2017-11-27 18:04:02.963429+00	2017-11-27 18:04:37.071815+00	7346	completed				+17633178640		34	2017-11-27 18:04:02.961598	2017-11-27 18:04:37.060138	CA42cadaa9f3bc7e22e92b9c4e85ae0180	\N	158			0	inbound	+18558645656	136	2.55386590957641602	\N	new lead		15	\N	\N	288
2017-11-27 18:54:47.269983+00	2017-11-27 18:55:10.481878+00	7347	completed				+17633178640		23	2017-11-27 18:54:47.267006	2017-11-27 18:55:10.470168	CA24deddea16491d58e3ef1a1e3d8b890e	\N	158			0	inbound	+18558645656	136	2.54385805130004883	\N	new lead		15	\N	\N	288
2017-04-15 19:59:04.030304+00	2017-11-29 18:38:49.805132+00	3971	completed				+12147737774		61	2017-04-15 19:59:04.028245	2017-04-15 20:00:05.15498	CA4540bceacea3f7bd894f17e80bacbc35	\N	124			0	inbound	+12147122250	\N	1.33369088172912598	\N	new lead	united states l	9	\N	\N	1225
2017-04-15 19:59:58.803596+00	2017-11-29 18:38:49.80514+00	3972	completed				+12147737774		81	2017-04-15 19:59:58.802028	2017-04-15 20:01:19.611233	CA6cb55a80461a7e30bee7731d3e9eeb58	\N	127			0	inbound	+12147122250	\N	1.21722412109375	\N	new lead	united states l	9	\N	\N	1225
2017-04-15 20:09:11.683622+00	2017-11-29 18:38:49.805154+00	3974	missed				+14703289614		56	2017-04-15 20:09:11.681422	2017-04-15 20:10:07.34401	CA623fb1215707e2edd7859d6b1a153637	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	boelter donald	9	\N	\N	2419
2017-04-15 20:10:41.829597+00	2017-11-29 18:38:49.805161+00	3976	completed				+14703289614		88	2017-04-15 20:10:41.828025	2017-04-15 20:12:09.336261	CA83648c04d29edb3e0a4cf109554e9233	\N	107			0	inbound	+12147122250	\N	7.02592301368713379	\N	new lead	boelter donald 	9	\N	\N	2419
2017-11-27 19:01:06.600743+00	2017-11-27 19:01:07.597917+00	7348	missed				+17633254561		1	2017-11-27 19:01:06.598501	2017-11-27 19:01:07.587479	CA7988e12ebeb78078972066e38aaddadb	\N	\N			0	inbound	+18558645656	136	\N	\N	new lead		15	\N	\N	2427
2017-11-27 17:05:46.106234+00	2017-11-27 17:27:08.578533+00	7341	missed				+18179371078		21	2017-11-27 17:05:46.104938	2017-11-27 17:06:07.468214	CA937312d9c255d8f5e01bc1b74b7019b5	\N	\N			0	inbound	+18177569010	124	1260.82397699356079	\N	new lead	vazquez angel	12	\N	\N	3578
2016-06-03 18:40:29.125461+00	2017-11-29 18:31:10.26111+00	371	completed	Sarah	Buckley		+15138009798		48	2016-06-03 18:40:29.123389	2016-06-03 18:41:16.665397	CAcfb65a7bb6b7be0c90c1b636ab01f39a	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REb3f89c3d00b0ef4d80fdf504bc748581	0	inbound	+18556311490	\N	13.5333230495452881	null	new lead		1	\N	\N	1823
2016-06-03 22:11:42.415594+00	2017-11-29 18:31:10.261151+00	376	completed	Sarah	Buckley		+15138009798		12	2016-06-03 22:11:42.41445	2016-06-03 22:11:54.76579	CAaddf3a90b040dbd3e217c724dbe2040f	\N	\N			0	inbound	+18556311490	\N	\N	null	new lead		1	\N	\N	1823
2016-06-06 20:00:12.033844+00	2017-11-29 18:31:10.261186+00	389	completed	Unknown			+15138009798		152	2016-06-06 20:00:12.031798	2016-06-06 20:02:43.615983	CA991a33fcbfb813750c502ad53f6ca95a	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE2aff138232d1b8c30882955e47406359	0	inbound	+18556311490	\N	4.84890890121459961	null	new lead		1	\N	\N	1823
2016-11-04 19:52:02.34072+00	2016-12-10 01:01:51.441142+00	2725	completed				+16197409721		30	2016-11-04 19:52:02.338732	2016-11-04 19:52:32.295637	CAf518dad29a4813c8396b945f7134c26c	\N	50			0	inbound	+18559693782	\N	2.81399893760681152	null	new lead		3	\N	\N	1824
2017-11-14 21:59:39.81953+00	2017-11-14 22:01:47.482046+00	7056	completed				+18178568993		127	2017-11-14 21:59:39.817672	2017-11-14 22:01:46.940327	CAed1091c2986b483529c74c5e4a6c60b6	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE507d806fa5e9a5c02b694bdd750d749d	0	inbound	+18177569010	124	7.29333400726318359	\N	new lead	johnson paul	12	\N	\N	1825
2017-11-14 22:05:09.370012+00	2017-11-14 22:08:15.285358+00	7058	completed				+18178568993		185	2017-11-14 22:05:09.368308	2017-11-14 22:08:14.110816	CA4cc7d0786a467bd7944bcadd8cfd7dd6	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE2fc928b2f172af127a60ad663ad8a25f	0	inbound	+18177569010	124	112.888161182403564	\N	new lead	johnson paul	12	\N	\N	1825
2017-11-14 22:02:56.419658+00	2017-11-14 22:10:38.224932+00	7057	completed				+18178568993		462	2017-11-14 22:02:56.417512	2017-11-14 22:10:38.207876	CAd82d67b274cd08a6cd4a72868fa3d410	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REe3a65bae021c2cc16b3157b2d0148bee	0	inbound	+18177569010	124	439.108783960342407	\N	new lead	johnson paul	12	\N	\N	1825
2016-09-07 17:29:39.213762+00	2016-12-09 17:07:45.33164+00	1919	completed				+12153852693		223	2016-09-07 17:29:39.212606	2016-09-07 17:33:21.790521	CA1270faabef739e102d93bf9bec595dd5	\N	55			0	inbound	+18552467810	\N	2.53065085411071777	null	new lead		3	\N	\N	1826
2017-12-27 22:34:17.441504+00	2017-12-27 22:47:22.812933+00	8132	completed				+14073393193		782	2017-12-27 22:34:17.439755	2017-12-27 22:47:19.678465	CAff1fd40ef05f1ad1dfc6a63e674957e2	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE90f6421303402279ab04243e6be93a5c	0	inbound	+18558645656	136	2.43802595138549805	\N	new lead		15	\N	\N	1828
2017-04-06 19:35:55.887533+00	2017-05-17 15:41:07.224298+00	3708	completed				+12142237841		70	2017-04-06 19:35:55.885774	2017-04-06 19:37:05.821398	CA7d1d15adb09d0c10fe2f055edb0676e7	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE03000be7fee3f19537966ffa293f1d20	0	inbound	+18177569010	124	9.70052719116210938	\N	new lead	rodkey sylvia	12	\N	\N	1832
2017-09-29 19:11:26.126249+00	2017-09-29 19:12:31.395105+00	6543	completed	Keonda	Brown		+17708159031		64	2017-09-29 19:11:26.125001	2017-09-29 19:12:30.132511	CA79b7beba14da57ace1a66c194cd1be7a	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE20b9d724c9ffe1bce46d6b249ff9e92d	0	inbound	+17704009016	132	14.5822010040283203	\N	new lead		13	\N	\N	1834
2017-09-29 19:10:09.799494+00	2017-09-29 19:11:21.005839+00	6541	completed	Keonda	Brown	keonda_brown@yahoo.com	+17708159031		52	2017-09-29 19:10:09.797569	2017-09-29 19:11:18.709273	CA5f1bb0d2a2f738fd1a40c12c9f4746b6	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REd1815438af4cf23e1be243320801eaaa	1	outbound	+17704009016	\N	12.7964498996734619	{}	new lead		13	\N	\N	1834
2017-09-29 19:04:43.399153+00	2017-09-29 19:05:55.767402+00	6540	completed				+17708159031		72	2017-09-29 19:04:43.397139	2017-09-29 19:05:55.744307	CAa17bde21aa6458ab3dd9d6f20b5b715f	\N	152			0	inbound	+17707665732	133	9.91189908981323242	\N	new lead		13	\N	\N	1834
2016-07-12 16:24:31.314391+00	2017-11-29 18:31:41.490409+00	856	completed				+16143892760		22	2016-07-12 16:24:31.31319	2016-07-12 16:24:52.946098	CAdf9ae4725c6df5bf05c11a40d2afe016	\N	18			0	inbound	+18552959002	\N	12.7130241394042969	null	application submitted - autopay		1	\N	\N	1835
2016-07-11 14:28:16.32109+00	2017-11-29 18:31:41.490389+00	846	completed				+16143892760		47	2016-07-11 14:28:16.320038	2016-07-11 14:29:03.525431	CA521b04c7588b14562085b48548d3e46f	\N	17		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE9ca705c76aecd4b4db905bb6467b4e62	0	inbound	+18552959002	\N	8.84269094467163086	null	application submitted - autopay		1	\N	\N	1835
2016-08-13 01:09:16.89255+00	2016-08-15 12:16:27.487224+00	1469	missed	ALFRED	HERRERA	smilingjack56@twc.com	+16143892760		\N	2016-08-13 01:09:16.891337	\N		d33a481e-e0af-47ac-9f90-260f20b69de5	\N			0	outbound	+18552959002	\N	\N	{}	application submitted - autopay		1	\N	\N	1835
2016-07-11 14:29:39.164903+00	2017-11-29 18:31:41.490395+00	847	missed				+16143892760		54	2016-07-11 14:29:39.163903	2016-07-11 14:30:32.697765	CAf24cd46824923172edfab0b95c59e0d6	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE183d5b2b60b2e6197c32088cfd5f8294	0	inbound	+18552959002	\N	14.5133419036865234	null	application submitted - autopay		1	\N	\N	1835
2016-08-08 14:55:35.320793+00	2017-01-27 21:12:23.812811+00	1324	completed	Mr. Hurarah			+16143892760		110	2016-08-08 14:55:35.319501	2016-08-08 14:57:25.284627		\N	\N			0	outbound	+18555343978	48	\N	null	application submitted - autopay		1	\N	\N	1835
2016-07-12 16:25:47.775526+00	2017-11-29 18:31:41.490416+00	857	missed	Mr. Hurarah			+16143892760		28	2016-07-12 16:25:47.774533	2016-07-12 16:26:15.388683	CAdc579ec435fc4948880de0a508b5a9f5	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE7225bfd79b546c89f329ef306a3e47eb	0	inbound	+18552959002	\N	17.2493131160736084	null	application submitted - autopay		1	\N	\N	1835
2016-08-09 13:23:41.18535+00	2017-01-27 21:12:23.812909+00	1352	completed	Mr. Hurarah			+16143892760		621	2016-08-09 13:23:41.183849	2016-08-09 13:34:02.56107	CA114716e007d2a5dea21dbe133898e9d7	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE779ba79f6cd895636c1e1d08fc42f599	0	inbound	+18555343978	48	16.4375808238983154	null	application submitted - autopay		1	\N	\N	1835
2016-07-29 18:42:01.584406+00	2016-07-29 18:42:01.584433+00	1043	missed	Sonia	Bauer	jackandsonia@msn.com	+15134895613	Your online application doesn't load, if someone could please call me as soon as possible I would appreciate it.\n\nRespectfully\n\nSonia Bauer	\N	2016-07-29 18:42:01.583234	\N		e576a333-5bc2-44ef-8856-7c36c8f7081a	\N			0	outbound	+18556311439	\N	\N	{}	new lead		1	\N	\N	1836
2016-07-29 18:51:26.754698+00	2016-07-29 18:51:55.178741+00	1044	completed	Sonia	Bauer		+15134895613		26	2016-07-29 18:51:26.753152	2016-07-29 18:51:55.177738	CAd1383a179c76b3a255abd200c5d7cb7c	cd89e433-4bde-4f86-9b22-8f52c2413fcd	16			1	outbound	+18556311490	\N	2.27558612823486328	{}	new lead		1	\N	\N	1836
2016-07-29 18:54:21.27263+00	2016-07-29 18:54:48.392914+00	1045	completed	Sonia	Bauer		+15134895613		24	2016-07-29 18:54:21.271654	2016-07-29 18:54:48.391889	CA1370464fbc79394edc247e3fb560d02a	cd89e433-4bde-4f86-9b22-8f52c2413fcd	16			1	outbound	+18556311490	\N	2.38742899894714355	{}	new lead		1	\N	\N	1836
2017-03-28 20:53:58.178016+00	2017-11-29 18:31:56.600309+00	3613	missed				+19783320982		28	2017-03-28 20:53:58.175879	2017-03-28 20:54:26.607306	CA6f512c84b17e9b31849781a3292296ac	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE875f19feb7b5ce322edf16f7c589f3a8	0	inbound	+18556311397	\N	\N	\N	application started		1	\N	\N	1839
2016-11-07 18:22:15.242227+00	2016-11-07 18:30:08.842925+00	2793	completed				+18325416609		470	2016-11-07 18:22:15.240128	2016-11-07 18:30:05.597039	CA71c3ac42aee6f2f2a66e9e1d3e056e6b	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE23c2f8b43360c1519556b4d10f948afa	0	inbound	+18557240606	49	2.25959300994873047	null	new lead		1	\N	\N	1840
2017-12-05 10:13:20.88389+00	2017-12-05 10:14:07.762834+00	7577	completed	Kenneth	Dorman	kwbullet@comcast.net	+13032103576		44	2017-12-05 10:13:20.882251	2017-12-05 10:14:07.761618	CA224e87edf1d3087f141212330eaac7c5	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.25854396820068359	{}	new lead		15	\N	\N	1841
2017-12-05 19:02:26.53176+00	2017-12-05 19:18:20.350783+00	7593	completed	Kenneth	Dorman		+13032103576		951	2017-12-05 19:02:26.529702	2017-12-05 19:18:17.156759	CA54154e359a1b07b0bfbc81670f433235	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE6a5e0cd803c12bd42c2fe499e8f8d5d8	0	inbound	+18558645656	136	3.41339898109436035	\N	new lead		15	\N	\N	1841
2017-03-19 00:59:28.804631+00	2017-11-29 18:38:53.212629+00	3501	completed				+18172230317		21	2017-03-19 00:59:28.8026	2017-03-19 00:59:49.386877	CA599ea1afeeee226863bef439e89d773f	\N	105			0	inbound	+12146922088	\N	4.1896059513092041	\N	new lead		9	\N	\N	1843
2017-08-22 19:02:33.1198+00	2017-08-22 19:05:53.274867+00	6138	completed	Anthony	Thomas	anthonythomas.ga@gmail.com	+17063005402		177	2017-08-22 19:02:33.118325	2017-08-22 19:05:52.583985	CA64d5344480b7a4a88dad8f67a5dad4db	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REf64a2f013e8179a4fd75c34d2589e733	1	outbound	+17704009016	\N	18.3697450160980225	{}	new lead		13	\N	\N	1844
2017-07-31 17:05:12.752133+00	2017-07-31 17:11:48.432953+00	5902	completed				+17065315023		396	2017-07-31 17:05:12.748525	2017-07-31 17:11:48.430871	CAd85ac1005143f568fdcdb197c59f4e8b	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE9b179661749f45cd3f0860765856c758	0	inbound	+17704009016	132	366.765484809875488	\N	new lead		13	\N	\N	1846
2017-07-31 17:16:08.250625+00	2017-07-31 17:22:30.879311+00	5904	missed				+17065315023		52	2017-07-31 17:16:08.248713	2017-07-31 17:17:00.348972	CA40854919666579b98b7f9d928fbb88e8	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE3485ef45e83c023d7c9258a1fc35676d	0	inbound	+17704009016	132	\N	\N	new lead		13	\N	\N	1846
2017-07-31 17:12:20.859846+00	2017-07-31 17:18:37.290635+00	5903	missed				+17065315023		47	2017-07-31 17:12:20.857375	2017-07-31 17:13:07.644309	CAda9aad6fe73820dac142864a85f6ff93	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REca1e089ec32b7db8cde2c935be10476b	0	inbound	+17704009016	132	\N	\N	new lead		13	\N	\N	1846
2017-05-18 14:36:30.655675+00	2017-11-29 18:29:57.477773+00	5180	completed				+17032689704		3	2017-05-18 14:36:30.653935	2017-05-18 14:36:33.327054	CA43cd38b4aa9b2b379f146110cc6ab59c	\N	142			0	inbound	+18442976550	\N	1.07867288589477539	\N	new lead		1	\N	\N	1847
2017-03-27 15:45:47.592691+00	2017-11-29 18:47:25.067933+00	3588	completed				+19038218578		334	2017-03-27 15:45:47.590702	2017-03-27 15:51:21.576905	CA0d5816b1380a284d8b09898cd995e75e	\N	84		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE00006ff285462eb2086043a5cadc6011	0	inbound	+19728330116	\N	16.5642189979553223	\N	new lead	alfaro francisc	8	\N	\N	1848
2017-02-09 23:21:03.802979+00	2017-02-09 23:31:48.948234+00	3159	completed	BROWN	ERIC     		+16308626767		645	2017-02-09 23:21:03.800324	2017-02-09 23:31:48.946812	CA4f294bbac90a146a06477c5d4f0f628d	\N	79			0	inbound	+17735469660	16	17.0475151538848877	null	new lead		1	\N	\N	1850
2017-11-20 17:29:55.561467+00	2017-11-20 17:33:48.287249+00	7143	completed				+19087218117		229	2017-11-20 17:29:55.557666	2017-11-20 17:33:44.878793	CA7976679f28a312ebe63388f04e74e3bc	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE435fa755a8622e1908d7dd85b51cbefc	0	inbound	+17704009016	132	11.5833020210266113	\N	new lead		13	\N	\N	1852
2017-02-05 08:27:29.836367+00	2017-02-05 08:27:29.836394+00	3148	missed	babu khan		luxryhealthcare@gmail.com	+14156637470		\N	2017-02-05 08:27:29.834632	\N		3784ab32-dd2a-4afe-b372-b25e22263604	\N			0	outbound	+17735469660	\N	\N	{}	new lead		1	\N	\N	1900
2017-12-02 20:01:26.497189+00	2017-12-02 20:02:36.569122+00	7498	completed	DeeAnn	Dennert-Marks	dennertdd23@gmail.com	+16165587260		66	2017-12-02 20:01:26.494988	2017-12-02 20:02:36.567233	CA2314725431a7f78035e4049bacd7e895	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.91988396644592285	{}	new lead		15	\N	\N	1853
2017-04-10 00:19:31.552471+00	2017-11-29 18:38:53.213652+00	3758	completed				+19728784309		42	2017-04-10 00:19:31.550661	2017-04-10 00:20:13.66386	CA97a72ae48aff2c111773826029225627	\N	105			0	inbound	+12146922088	\N	16.7205269336700439	\N	new lead	dallas  tx	9	\N	\N	1855
2017-11-28 18:13:57.850019+00	2017-11-28 18:17:54.838855+00	7363	completed	Markeas	Jones	Carnell706@gmail.com	+18502935426		44	2017-11-28 18:13:57.84765	2017-11-28 18:15:04.850842	CA0fdbe55e81943ae7dbe681c6b9e4127d	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE7ef7e1dd825f82308e4b969b950ef524	1	outbound	+17704009016	\N	22.4706480503082275	{}	select status		13	\N	\N	1857
2016-08-30 21:36:53.945009+00	2016-12-10 01:05:11.33711+00	1821	missed				+14042814239		1	2016-08-30 21:36:53.943714	2016-08-30 21:36:54.658406	CAd80a10da7ad2890b35acb273a53cb000	\N	\N			0	inbound	+18555693686	\N	\N	null	new lead		3	\N	\N	1859
2017-03-22 15:59:22.403617+00	2017-11-29 18:38:53.212763+00	3537	completed				+17867920797		273	2017-03-22 15:59:22.40123	2017-03-22 16:03:55.546474	CAbf46c611061adf3562c248b5472e0a9a	\N	\N			0	inbound	+12146922088	\N	5.39305686950683594	\N	new lead	cell phone   fl	9	\N	\N	1861
2017-06-19 19:08:48.989148+00	2017-06-24 13:45:04.893973+00	5609	completed				+16183551134		36	2017-06-19 19:08:48.986432	2017-06-19 19:09:24.56272	CA2ea0a9afb02f360fc0b1c42795dc2244	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE429be32165f7d8c1d270050eee596b62	0	inbound	+17704009016	132	11.4188210964202881	\N	new lead		13	\N	\N	1862
2016-09-16 15:01:47.314889+00	2016-12-10 01:01:51.440974+00	2031	completed				+16193951854		313	2016-09-16 15:01:47.312522	2016-09-16 15:07:00.170531	CA37c6d6e31f765d89c430c0af6a01991e	\N	50			0	inbound	+18559693782	\N	2.29852294921875	null	new lead		3	\N	\N	1864
2017-03-09 14:50:26.820603+00	2017-11-29 18:38:53.211939+00	3355	completed				+12144753768		240	2017-03-09 14:50:26.818538	2017-03-09 14:54:27.249851	CAa69ee10f2c35964b08de68b1005e8c59	\N	\N			0	inbound	+12146922088	\N	9.81637787818908691	\N	new lead	cell phone   tx	9	\N	\N	1867
2017-10-27 15:11:09.835231+00	2017-10-27 15:12:02.694134+00	6837	completed				+16822704446		52	2017-10-27 15:11:09.832939	2017-10-27 15:12:01.574198	CA28090a44a7af83d847f75f7c205d0793	\N	146			0	inbound	+18177569010	124	22.5676510334014893	\N	new lead	garza eric	12	\N	\N	1869
2016-11-01 17:43:30.32763+00	2016-11-01 17:53:23.352784+00	2482	completed				+17708330041		592	2016-11-01 17:43:30.325133	2016-11-01 17:53:22.365982	CAf5fd6ab160cf777c67ab256a052a2994	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE4a829eb0e735f8388cbf833ac1f0d296	0	inbound	+18557240606	49	\N	null	new lead		1	\N	\N	1873
2017-12-07 13:32:02.169778+00	2017-12-07 13:32:21.247332+00	7675	missed				+14706990747		19	2017-12-07 13:32:02.167579	2017-12-07 13:32:21.236713	CA0c6c555ff2f94350077802dec9e12021	\N	\N			0	inbound	+17704009016	132	\N	\N	new lead	cole quentaurus	13	\N	\N	1874
2017-04-19 00:08:02.062306+00	2017-11-29 18:38:49.805681+00	4082	missed				+12142159910		22	2017-04-19 00:08:02.059817	2017-04-19 00:08:23.695002	CA62cc02138c9a6fd078ab3231358482e9	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	lemak john     	9	\N	\N	1876
2016-06-30 20:45:18.422347+00	2016-06-30 20:46:29.84885+00	694	completed	Bettie	Morton	NA@noemail.com	+13135848316		0	2016-06-30 20:45:18.420974	2016-06-30 20:45:48.631754	CAe5f950afbe95498fc842dac3f8b8f607	ee869226-e246-4ab4-aaaa-e9403e2ddd39	\N			1	outbound	+18555983683	\N	13.476625919342041	{}	new lead		1	\N	\N	1878
2017-05-24 21:23:09.592093+00	2017-11-29 18:38:49.81333+00	5383	completed				+19726866200		87	2017-05-24 21:23:09.590277	2017-05-24 21:24:36.645772	CA04334b0f506d79f9028e2329c3e774df	\N	103			0	inbound	+12147122250	\N	5.05816197395324707	\N	new lead	amd dealership	9	\N	\N	1879
2017-05-25 17:34:44.880836+00	2017-11-29 18:38:49.813438+00	5399	completed				+19726866200		68	2017-05-25 17:34:44.87892	2017-05-25 17:35:52.603792	CA7952dc2fae58ac86bb4b60801c584220	\N	107			0	inbound	+12147122250	\N	8.1534571647644043	\N	new lead	hancock mazda of mesquite	9	\N	\N	1879
2017-04-18 06:58:49.751764+00	2017-11-29 18:38:53.214107+00	4021	completed				+15122692644		66	2017-04-18 06:58:49.749483	2017-04-18 06:59:55.652169	CA79aa8d9c78638495dd7472ea92f083a4	\N	\N			0	inbound	+12146922088	\N	15.181891918182373	\N	new lead	austin  tx	9	\N	\N	1880
2017-04-18 07:02:36.341085+00	2017-11-29 18:38:53.214121+00	4023	completed				+15122692644		20	2017-04-18 07:02:36.337899	2017-04-18 07:02:56.798573	CAb7c6d004d6e4e1324edaab3c5aa98a6b	\N	\N			0	inbound	+12146922088	\N	11.8266351222991943	\N	new lead	austin  tx	9	\N	\N	1880
2017-04-18 07:03:02.185414+00	2017-11-29 18:38:53.214128+00	4024	completed				+15122692644		80	2017-04-18 07:03:02.183433	2017-04-18 07:04:22.415829	CA9dd20189cbc6ba358424d222c9d14151	\N	\N			0	inbound	+12146922088	\N	3.77454590797424316	\N	new lead	austin  tx	9	\N	\N	1880
2017-09-06 22:59:19.751943+00	2017-09-06 22:59:19.814677+00	6280	missed	Deidre	Davis	Didibritton@gmail.com	+17702749728		\N	2017-09-06 22:59:19.750051	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	1885
2016-11-04 20:31:57.55499+00	2016-11-04 20:47:59.460362+00	2729	completed				+16024105410		958	2016-11-04 20:31:57.553105	2016-11-04 20:47:55.719515	CAce3c2552b8fdd42f83f8b0d738499ee7	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE71d9b7b8c9bda85cbf0a242301c5577b	0	inbound	+18557240606	49	1.89114713668823242	null	new lead		1	\N	\N	1887
2017-04-15 14:40:57.139884+00	2017-11-29 18:38:53.214+00	3952	completed				+18173539392		227	2017-04-15 14:40:57.137192	2017-04-15 14:44:44.157804	CA2bf99bd6577067d5e0111fa933e1391c	\N	\N			0	inbound	+12146922088	\N	5.63798689842224121	\N	new lead	vines germon	9	\N	\N	1890
2017-04-15 14:49:24.240767+00	2017-11-29 18:38:53.214007+00	3953	completed				+18173539392		135	2017-04-15 14:49:24.238735	2017-04-15 14:51:39.27687	CA3db2acdc5845021e1ab69bb1db1f7d27	\N	\N			0	inbound	+12146922088	\N	5.25100088119506836	\N	new lead	vines germon	9	\N	\N	1890
2017-08-29 19:11:09.399289+00	2017-08-29 19:14:25.584816+00	6197	completed				+17705402678		196	2017-08-29 19:11:09.397599	2017-08-29 19:14:25.575484	CA228ece7cee856ceb76565fc3ecb09b00	\N	150			0	inbound	+17707665732	133	12.264348030090332	\N	new lead		13	\N	\N	1895
2017-09-05 12:09:38.336252+00	2017-09-05 12:10:03.869472+00	6255	missed				+17705402678		26	2017-09-05 12:09:38.334018	2017-09-05 12:10:03.857359	CA616e0893522a612ae8951662f8055093	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REbd9f5606f5b2091b684250629041d626	0	inbound	+17707665732	133	\N	\N	new lead		13	\N	\N	1895
2017-09-06 19:57:54.421054+00	2017-09-06 19:58:17.094155+00	6277	completed				+17705402678		23	2017-09-06 19:57:54.419181	2017-09-06 19:58:17.087508	CA167efe82a1d81aaac2503b1947474add	\N	150			0	inbound	+17707665732	133	13.1518318653106689	\N	new lead		13	\N	\N	1895
2017-09-06 19:58:25.198039+00	2017-09-06 19:59:44.501458+00	6278	completed				+17705402678		79	2017-09-06 19:58:25.196753	2017-09-06 19:59:44.491027	CA87ead77fd537861ee0d0f938ee0abf7d	\N	152			0	inbound	+17707665732	133	12.8702068328857422	\N	new lead		13	\N	\N	1895
2016-08-04 17:03:35.048142+00	2016-08-04 18:15:04.380494+00	1204	missed	TAB	PEELER	maypeeler@yahoo.com	+16617130813		\N	2016-08-04 17:03:35.046711	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - autopay		1	\N	\N	1898
2016-08-10 20:48:40.315742+00	2016-08-12 18:14:18.427255+00	1398	missed	Alberta	Vawter	1@1.com	+16619487807		\N	2016-08-10 20:48:40.314681	\N		ea8e48b7-042e-42ec-8dde-d03bf75a9bad	\N			0	outbound	+18556311350	\N	\N	{}	application submitted - autopay		1	\N	\N	1899
2016-08-10 22:05:42.355147+00	2016-08-12 18:14:18.427265+00	1402	missed	Alberta	Vawter	1@1.com	+16619487807		\N	2016-08-10 22:05:42.353894	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - autopay		1	\N	\N	1899
2016-08-10 20:28:07.423276+00	2017-11-29 18:31:37.368804+00	1397	completed				+16619487807		1224	2016-08-10 20:28:07.42216	2016-08-10 20:48:31.085828	CAf5d16683d30a4557abfb06b8fa99c9e8	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE22dab9ca5c93186c1fd5d172c43ccf38	0	inbound	+18555472453	\N	6.30347204208374023	null	application submitted - autopay		1	\N	\N	1899
2016-08-12 18:04:47.081387+00	2017-11-29 18:31:37.368889+00	1446	completed	Alberta	Vawter		+16619487807		80	2016-08-12 18:04:47.079256	2016-08-12 18:06:06.592545	CAd864664546abfdd294e959045c1f73f1	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REa24745d4b82645395c30ab9348c53cfc	0	inbound	+18555472453	\N	9.48888492584228516	null	application submitted - autopay		1	\N	\N	1899
2016-07-21 15:44:58.509385+00	2016-07-21 15:46:13.712733+00	913	completed	Lenore	Pettiford	pettifordlm@yahoo.com	+13303981086		58	2016-07-21 15:44:58.508095	2016-07-21 15:46:13.711659	CA2dd88818d155dcae75baab74b28a8751	ee869226-e246-4ab4-aaaa-e9403e2ddd39	18			1	outbound	+18555983683	\N	14.8338439464569092	{}	new lead		1	\N	\N	1902
2016-11-04 23:52:50.33867+00	2016-12-10 01:01:51.441149+00	2736	completed				+18583497885		72	2016-11-04 23:52:50.336751	2016-11-04 23:54:02.170507	CAd728859da4c40999018b4a9ca6455d77	\N	50			0	inbound	+18559693782	\N	2.17541599273681641	null	new lead		3	\N	\N	1903
2016-07-25 15:02:34.041663+00	2016-12-10 00:55:45.164947+00	932	completed				+16085584741		184	2016-07-25 15:02:34.040295	2016-07-25 15:05:38.074112	CA086e323c4e532efd2aec41a6ff7d33bc	\N	24			0	inbound	+18557129406	\N	12.7016360759735107	null	new lead		3	\N	\N	1904
2017-08-30 13:24:26.699862+00	2017-08-30 13:25:13.159426+00	6203	completed				+17068094449		46	2017-08-30 13:24:26.697871	2017-08-30 13:25:13.146416	CA471660dd3d8d09c45f5ed56c184373cc	\N	153			0	inbound	+17707665732	133	10.3885359764099121	\N	new lead		13	\N	\N	1906
2016-10-05 18:38:31.681311+00	2016-12-09 17:10:17.413542+00	2193	completed				+18624386747		302	2016-10-05 18:38:31.67986	2016-10-05 18:43:33.437352	CAdfffcd4d3bf3198f68316941edd90c46	\N	27			0	inbound	+18552716856	\N	7.46507477760314941	null	new lead		3	\N	\N	1907
2017-05-03 17:01:16.544046+00	2017-05-03 17:27:24.73982+00	4640	completed				+17039342664		1568	2017-05-03 17:01:16.541346	2017-05-03 17:27:24.723325	CAd489c1476d3e46e39eaf90c8eac458b5	\N	79			0	inbound	+17735469660	16	7.80937385559082031	\N	new lead	international automotive	1	\N	\N	1912
2017-03-23 00:30:58.895493+00	2017-11-29 18:38:53.212812+00	3552	completed				+18304466388		446	2017-03-23 00:30:58.893582	2017-03-23 00:38:24.7573	CAb05777c8818945772d95b94f6860b8ed	\N	\N			0	inbound	+12146922088	\N	3.88273096084594727	\N	new lead	schafer gregory	9	\N	\N	1914
2017-07-24 19:01:55.068406+00	2017-07-24 19:23:40.514626+00	5843	missed				+18177563633		1304	2017-07-24 19:01:55.064827	2017-07-24 19:23:39.258129	CA9312e62a48cc4cb4646a24edaae8860e	\N	\N			0	inbound	+18177569010	124	1279.59395289421082	\N	new lead	dallas  tx	12	\N	\N	1915
2017-05-02 00:06:50.369973+00	2017-11-29 18:38:49.808495+00	4561	completed				+19727430182		82	2017-05-02 00:06:50.367403	2017-05-02 00:08:12.816924	CA8eab78659818e92010ff498c2f62de0c	\N	124			0	inbound	+12147122250	\N	1.98876595497131348	\N	new lead	barber daryl   	9	\N	\N	1916
2017-05-03 23:53:52.161304+00	2017-11-29 18:38:49.809563+00	4694	completed				+19727430182		58	2017-05-03 23:53:52.159917	2017-05-03 23:54:50.535612	CA290ffda54e383cd6ea31ceb2b6f7950b	\N	125			0	inbound	+12147122250	\N	1.90549492835998535	\N	new lead	barber daryl   	9	\N	\N	1916
2017-05-03 23:54:49.747613+00	2017-11-29 18:38:49.809571+00	4695	completed				+19727430182		55	2017-05-03 23:54:49.746197	2017-05-03 23:55:44.380083	CA3e28eb66613cbd89b95e05f43c075e19	\N	99			0	inbound	+12147122250	\N	7.94277405738830566	\N	new lead	barber daryl   	9	\N	\N	1916
2017-05-22 15:53:03.885218+00	2017-11-29 18:38:49.81255+00	5274	completed				+19727430182		83	2017-05-22 15:53:03.882519	2017-05-22 15:54:26.794698	CA9cdfc98864c7438fe15377bf38050331	\N	127			0	inbound	+12147122250	\N	1.57984209060668945	\N	new lead	barber daryl   	9	\N	\N	1916
2017-05-27 14:54:21.98341+00	2017-11-29 18:38:49.813855+00	5465	completed				+19727430182		83	2017-05-27 14:54:21.981379	2017-05-27 14:55:44.535326	CA2870c4f251ce6ecc7cbb8eed7922a5dd	\N	126			0	inbound	+12147122250	\N	1.86926889419555664	\N	new lead	barber daryl   	9	\N	\N	1916
2017-05-01 22:47:26.79908+00	2017-11-29 18:38:53.214909+00	4556	completed				+19366487221		182	2017-05-01 22:47:26.796598	2017-05-01 22:50:28.763008	CAbd1da7e188b64037782f6a9b32bb07f0	\N	107			0	inbound	+12146922088	\N	6.94526410102844238	\N	new lead	ian dohalick	9	\N	\N	1919
2016-10-05 22:32:09.357597+00	2016-12-10 01:01:00.200331+00	2204	completed				+13472372547		61	2016-10-05 22:32:09.355963	2016-10-05 22:33:10.191853	CAade65ecfd523a119b60b0fb330e19b7c	\N	57			0	inbound	+18557860909	\N	4.64356017112731934	null	new lead		3	\N	\N	1921
2016-06-07 00:45:27.386327+00	2017-11-29 18:31:56.600118+00	390	completed	Melvin	Shapiro		+17817065203		95	2016-06-07 00:45:27.384514	2016-06-07 00:47:02.088423	CA4decd6cfd876d6ac2e2e32964c028c33	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE443332e3cfe444bdaa5a9ccb5dbb2602	0	inbound	+18556311397	\N	\N	null	new lead		1	\N	\N	1923
2016-06-16 13:50:41.086606+00	2016-06-16 13:51:17.613674+00	424	completed				+17817065203		32	2016-06-16 13:50:41.085189	2016-06-16 13:51:17.612338	CA6bd938c1f4ee9cdc20d97f5b259b3ab5	c6c46e91-97c9-404c-92ba-454008d80db7	16			1	outbound	+18556311397	\N	1.15374302864074707	{}	new lead		1	\N	\N	1923
2016-11-10 15:51:31.176017+00	2016-12-10 01:01:00.200599+00	2831	completed				+17065640734		173	2016-11-10 15:51:31.174843	2016-11-10 15:54:24.232025	CA28c1fe2d9fde64957295fa7587aad21d	\N	57			0	inbound	+18557860909	\N	1.25399494171142578	null	new lead		3	\N	\N	1925
2017-12-04 20:08:56.636345+00	2017-12-04 20:09:41.711072+00	7554	completed				+19283017241		45	2017-12-04 20:08:56.634628	2017-12-04 20:09:41.700023	CA55bd052047b2982f9f79b3ceaf0e04f9	\N	153			0	inbound	+17707665732	133	9.69477081298828125	\N	new lead	cell phone   az	13	\N	\N	1926
2017-12-05 15:38:25.802167+00	2017-12-05 15:46:24.99235+00	7584	completed				+19283017241		479	2017-12-05 15:38:25.800002	2017-12-05 15:46:24.988262	CA504ac4fe703ce3e97d6011948173eab7	\N	150			0	inbound	+17707665732	133	323.916127920150757	\N	new lead	cell phone   az	13	\N	\N	1926
2016-12-05 15:53:57.700754+00	2016-12-09 17:08:31.908908+00	3040	completed				+16099896059		241	2016-12-05 15:53:57.699148	2016-12-05 15:57:59.052363	CAcda80610ff4af60bd8bc136605a71ec8	\N	67			0	inbound	+18552576059	\N	1.53056883811950684	null	new lead		3	\N	\N	1927
2017-12-05 02:27:21.598485+00	2017-12-05 02:27:21.662445+00	7574	missed	Danielle	Bennett	d.bennett143@yahoo.com	+16786177425		\N	2017-12-05 02:27:21.596881	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	1931
2017-12-05 15:12:07.257362+00	2017-12-05 15:15:09.044485+00	7581	completed	Danielle 	Bennett 	d.bennett143@yahoo.com	+16786177425		163	2017-12-05 15:12:07.255627	2017-12-05 15:15:07.755202	CA1e9ffc3eb00017b2ddc86d841a8e02f3	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REfe706a2d91e92b73811c6a4b0f1f4d2b	1	outbound	+17704009016	\N	16.9289908409118652	{}	new lead		13	\N	\N	1931
2017-12-20 18:31:05.919714+00	2017-12-20 18:40:16.956932+00	8032	completed				+17707665844		515	2017-12-20 18:31:05.91788	2017-12-20 18:39:40.844604	CA4597ee03bc6816051fbebc8504e1c281	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REe8298e1625925ae1c5bf1bfea113ace4	0	inbound	+17707665732	133	321.171931982040405	\N	select status	atlanta  ga	13	\N	\N	1932
2016-10-31 19:30:16.478617+00	2016-10-31 19:33:14.285901+00	2394	completed				+17138183059		177	2016-10-31 19:30:16.475583	2016-10-31 19:33:13.630099	CA850e0fdc294d9f206ff294acb4dd2318	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE0380e631db32155410cbbaba3480c028	0	inbound	+18557240606	49	2.57281017303466797	null	new lead		1	\N	\N	1933
2016-11-10 20:41:24.543125+00	2017-01-27 21:12:23.814086+00	2847	completed				+17324064522		63	2016-11-10 20:41:24.542052	2016-11-10 20:42:27.64389		\N	\N			0	outbound	+18555343978	48	\N	null	new lead		1	\N	\N	1934
2016-11-06 20:19:10.982653+00	2016-11-06 20:19:45.346238+00	2773	completed				+17324064522		34	2016-11-06 20:19:10.979664	2016-11-06 20:19:44.871883	CA86ece66876576e8e45b8804269cbb4ef	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REdbfb5153d94ca40a6fc752ed76f0a145	0	inbound	+18557240606	49	1.86579513549804688	null	new lead		1	\N	\N	1934
2016-11-10 20:39:06.467106+00	2017-01-27 21:12:23.814079+00	2846	completed				+17324064522		119	2016-11-10 20:39:06.465354	2016-11-10 20:41:05.785603		\N	\N			0	outbound	+18555343978	48	\N	null	new lead		1	\N	\N	1934
2017-05-30 14:26:58.691+00	2017-05-30 14:38:04.03873+00	5487	completed				+19568271199		664	2017-05-30 14:26:58.6893	2017-05-30 14:38:02.722786	CA4cd7ab9bafa9857b66ec75b2c46a42dd	\N	132		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE31bcd15c93f8d1539fa4a1a970108c00	0	inbound	+18172104002	126	384.651686906814575	\N	new lead	herrera romana 	12	\N	\N	1935
2017-05-17 18:29:16.960983+00	2017-05-17 18:30:46.468505+00	5163	completed				+17202764293		88	2017-05-17 18:29:16.959289	2017-05-17 18:30:45.379296	CA8bba511fe6cd841f43799750e44ed2ee	\N	132		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE4f9cb85aa1b9703cbd65ab45946a8dae	0	inbound	+18172104002	126	7.40067887306213379	\N	new lead	wireless caller	12	\N	\N	1937
2016-08-16 13:30:01.280828+00	2016-12-10 00:55:45.165342+00	1537	completed				+14849951295		14	2016-08-16 13:30:01.278348	2016-08-16 13:30:15.440893	CA2bd6221b01c5df852477243b58640037	\N	24			0	inbound	+18557129406	\N	1.11956286430358887	null	new lead		3	\N	\N	1938
2016-08-16 13:31:59.923758+00	2016-12-10 00:55:45.165349+00	1538	completed				+14849951295		15	2016-08-16 13:31:59.922655	2016-08-16 13:32:14.957416	CA84cc4e96ad2fccdcb3745657721cecda	\N	24			0	inbound	+18557129406	\N	1.73544001579284668	null	new lead		3	\N	\N	1938
2017-11-11 22:06:36.459063+00	2017-11-11 22:12:36.83998+00	7029	missed	peggy	patton	pag4274@yahoo.com	+14792538819		0	2017-11-11 22:06:36.456992	2017-11-11 22:12:36.837896	CAa2e494b2145148e5a6654eab5c3d1f4f	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			3	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	1939
2017-04-07 20:08:26.690706+00	2017-11-29 18:38:53.213432+00	3731	missed				+12142004604		3	2017-04-07 20:08:26.688867	2017-04-07 20:08:29.784091	CAd969e201dc8d8c62706163b5dafa5fef	\N	\N			0	inbound	+12146922088	\N	\N	\N	new lead	auto insurance	9	\N	\N	1940
2017-05-01 20:06:55.048998+00	2017-11-29 18:38:49.808353+00	4545	completed				+19729347287		49	2017-05-01 20:06:55.047297	2017-05-01 20:07:44.245458	CA0e3073ce9bf96654dbfcb48950c22fe4	\N	\N			0	inbound	+12147122250	\N	16.6011059284210205	\N	new lead	tuesday morning	9	\N	\N	1943
2017-03-01 14:53:18.766746+00	2017-03-01 14:53:56.891703+00	3263	completed	Steve			+14018716997		27	2017-03-01 14:53:18.763479	2017-03-01 14:53:56.888203	CAb24278af54dc2a8a961cf2c5c49a4851	02e2ba2f-b880-4f06-9dad-a715fa6b6b38	78			1	outbound	+18036184545	\N	10.2871010303497314	{}	new lead		6	\N	\N	1944
2017-07-21 15:01:57.065332+00	2017-07-21 15:03:44.009628+00	5825	completed				+12543962715		106	2017-07-21 15:01:57.06321	2017-07-21 15:03:42.869861	CAe9449f31a5886fd772c7cbd9d76eec7b	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE7205db4fabf4a28a7e796280019e6016	0	inbound	+18177569010	124	19.4648399353027344	\N	new lead	euless  tx	12	\N	\N	1945
2017-04-27 16:13:14.098765+00	2017-11-29 18:38:49.806937+00	4364	completed				+15173166356		64	2017-04-27 16:13:14.097477	2017-04-27 16:14:17.877517	CA95e087c44043c923d0e072012ebb0e53	\N	125			0	inbound	+12147122250	\N	1.30720996856689453	\N	new lead	vrettos dimitri	9	\N	\N	1946
2017-04-27 16:43:12.499089+00	2017-11-29 18:38:49.806959+00	4368	completed				+15173166356		292	2017-04-27 16:43:12.496333	2017-04-27 16:48:04.111285	CA66835b32a759325304ab87f1e66a48b1	\N	\N			0	inbound	+12147122250	\N	4.61151719093322754	\N	new lead	vrettos dimitri	9	\N	\N	1946
2017-11-16 23:09:02.203587+00	2017-11-21 14:53:25.898888+00	7084	completed	Adrianne	Chatman	bigbabychat@gmail.com	+16783087980		17	2017-11-16 23:09:02.202112	2017-11-16 23:09:32.073768	CAdbcee1252f7879b797f3ba4a054611bf	0427608a-ae09-4db0-a1e8-374423ee28c3	153			1	outbound	+17704009016	\N	12.3623409271240234	{}	select status		13	\N	\N	1947
2017-11-16 23:10:18.748626+00	2017-11-21 14:53:25.888407+00	7085	completed	Adrianne	Chatman	bigbabychat@gmail.com	+16783087980		132	2017-11-16 23:10:18.746289	2017-11-16 23:12:30.262539		\N	153			0	outbound	+17704009016	132	\N	\N	select status		13	\N	\N	1947
2016-10-17 23:16:55.744104+00	2016-12-10 01:01:00.200455+00	2310	missed				+16613804077		4	2016-10-17 23:16:55.742999	2016-10-17 23:16:59.624369	CA77894d2074d881b51a11a3e4eaca4fff	\N	\N			0	inbound	+18557860909	\N	\N	null	new lead		3	\N	\N	1949
2017-03-22 22:38:03.582594+00	2017-05-17 15:41:07.224207+00	3548	completed				+16822224316		121	2017-03-22 22:38:03.580275	2017-03-22 22:40:05.037253	CAb5a0098691ceb413d974e5bb5ec4fffd	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REc6464bb2de2e413107fe568244e8d234	0	inbound	+18177569010	124	8.42238497734069824	\N	new lead	texas call	12	\N	\N	1950
2016-11-01 13:43:04.381175+00	2016-11-01 13:50:01.976014+00	2460	completed				+14046227600		416	2016-11-01 13:43:04.379877	2016-11-01 13:50:00.541726	CA2ad457f7c77bff38cd175293c2919dc6	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE36d064cd86f0c71f32b35024f99aa41f	0	inbound	+18557240606	49	1.97899413108825684	null	new lead		1	\N	\N	1952
2016-06-01 23:14:07.985867+00	2017-11-29 18:31:05.368867+00	336	completed	Spam			+16302346074		318	2016-06-01 23:14:07.983131	2016-06-01 23:19:25.695788	CA56c3e0afb4d00fff914fa5c59c9b8742	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REf9debd3df5e0fc9122301cf10926ad12	0	inbound	+18557824539	\N	\N	null	new lead		1	\N	\N	1953
2017-08-17 20:41:18.411929+00	2017-08-17 20:45:34.281859+00	6081	completed				+14102593405		256	2017-08-17 20:41:18.408765	2017-08-17 20:45:34.268912	CA423ae5a94f359e7faad1100f7da8eb82	\N	154			0	inbound	+17707665699	134	1.20461010932922363	\N	new lead		13	\N	\N	1958
2016-07-05 20:48:39.353559+00	2016-07-05 20:51:30.301893+00	761	completed	Lesley	Bradley		+13306877460		166	2016-07-05 20:48:39.352621	2016-07-05 20:51:30.300876	CAa9a7cb97051044e87922a5ec7202e09c	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	2.64685416221618652	{}	new lead		1	\N	\N	1963
2016-07-05 21:01:24.024649+00	2016-07-05 21:02:20.237881+00	765	completed	Lesley	Bradley		+13306877460		52	2016-07-05 21:01:24.023476	2016-07-05 21:02:20.236964	CA582c27d5accc15d0633febba91df0fe3	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.41594099998474121	{}	new lead		1	\N	\N	1963
2016-07-11 21:10:06.619476+00	2017-11-29 18:32:13.821474+00	853	completed	Lesley	Bradley		+13306877460		75	2016-07-11 21:10:06.616712	2016-07-11 21:11:21.645162	CA8dfcc861cb43ccf0033d3e269177e3ee	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE54717ac3eaa2ab5169e32c7751504c1d	0	inbound	+18555983683	\N	\N	null	new lead		1	\N	\N	1963
2016-07-16 15:01:38.025865+00	2017-11-29 18:32:13.821488+00	883	missed	Lesley	Bradley		+13306877460		44	2016-07-16 15:01:38.0229	2016-07-16 15:02:22.021749	CA1bdf5bb4c7f862c1d81d6af45310085d	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REe899b2845daab945b4706319b2be6334	0	inbound	+18555983683	\N	\N	null	new lead		1	\N	\N	1963
2016-06-27 15:22:11.028435+00	2017-11-29 18:32:13.820582+00	510	completed	Lesley	Bradley		+13306877460		41	2016-06-27 15:22:11.027569	2016-06-27 15:22:51.94169	CAbde2455c7ff52b47822beb99544bc471	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE2eeca9c163ad0d6be0fb4b02dda1455c	0	inbound	+18555983683	\N	14.4077119827270508	null	new lead		1	\N	\N	1963
2016-06-27 15:05:44.800222+00	2016-06-27 15:06:51.158649+00	503	completed				+13306877460		62	2016-06-27 15:05:44.799239	2016-06-27 15:06:51.156877	CAcce523cb5a653dae632dd96e83503042	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.28634905815124512	{}	new lead		1	\N	\N	1963
2016-06-27 16:03:40.773621+00	2016-06-27 16:05:46.427181+00	520	completed				+13306877460		122	2016-06-27 16:03:40.772645	2016-06-27 16:05:46.426196	CAadc2d11dc8f6f81f8ff3a5faff5772a3	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.55909991264343262	{}	new lead		1	\N	\N	1963
2016-06-27 19:42:03.496368+00	2016-06-27 20:39:43.872699+00	545	completed	Lesley	Bradley	blbsis769@aol.com	+13306877460		13	2016-06-27 19:42:03.495381	2016-06-27 19:42:45.242047	CA39379610ceed7f89a73367a7f3621bc7	ee869226-e246-4ab4-aaaa-e9403e2ddd39	\N			1	outbound	+18555983683	\N	25.764732837677002	{}	new lead		1	\N	\N	1963
2016-06-27 00:32:14.50612+00	2017-11-29 18:32:13.82049+00	477	completed	Lesley	Bradley		+13306877460		14	2016-06-27 00:32:14.504506	2016-06-27 00:32:28.412913	CAe565f9323b5a33c9008f9f93918bfdb4	\N	\N			0	inbound	+18555983683	\N	\N	null	new lead		1	\N	\N	1963
2016-07-01 18:05:01.911011+00	2017-11-29 18:32:13.821253+00	723	completed	Lesley	Bradley		+13306877460		51	2016-07-01 18:05:01.909634	2016-07-01 18:05:52.513353	CA5d935eebfd8f9843c2108fa234c6f415	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REc2b33ac384c5a0ff6b253a322b327461	0	inbound	+18555983683	\N	13.5333280563354492	null	new lead		1	\N	\N	1963
2016-07-05 18:38:29.709726+00	2017-11-29 18:32:13.821317+00	757	completed	Lesley	Bradley		+13306877460		42	2016-07-05 18:38:29.707836	2016-07-05 18:39:12.158599	CAb460c4d0f99b2fbb0a598496d2e84a0b	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REfabb5b40448b682d2be83b2bc2de6b1c	0	inbound	+18555983683	\N	13.8866679668426514	null	new lead		1	\N	\N	1963
2016-07-05 20:57:01.615721+00	2017-11-29 18:32:13.821346+00	764	completed	Lesley	Bradley		+13306877460		63	2016-07-05 20:57:01.614776	2016-07-05 20:58:04.8694	CAeb5367f0d0ced5bd9eb1b9d0a8c608c6	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE1e9d79a366e31894b1cc9c23484cbb71	0	inbound	+18555983683	\N	13.785243034362793	null	new lead		1	\N	\N	1963
2017-11-02 16:09:45.73597+00	2017-11-02 16:15:46.492999+00	6901	missed	Samantha	Cordero	Slde3019@gmail.com	+17068946533		0	2017-11-02 16:09:45.73438	2017-11-02 16:15:46.491513	CAea8a0dacb53f1aa8fd9ed2ce04b58432	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			3	outbound	+17704009016	\N	12.736997127532959	{}	new lead		13	\N	\N	1966
2016-10-06 15:21:04.201986+00	2016-12-10 00:57:48.46179+00	2215	completed				+18059880560		119	2016-10-06 15:21:04.199785	2016-10-06 15:23:03.568194	CA4dc45f664f49db7842acce947237bf40	\N	30			0	inbound	+18559652184	\N	6.25608706474304199	null	new lead		3	\N	\N	1967
2017-03-02 23:21:50.199322+00	2017-11-29 18:38:53.211839+00	3315	completed				+17135484019		22	2017-03-02 23:21:50.197185	2017-03-02 23:22:12.115999	CA8b796a0d4e9852269acc61f9db572df2	\N	\N			0	inbound	+12146922088	\N	10.8851649761199951	\N	new lead	miketinac antho	9	\N	\N	1997
2016-05-26 15:08:05.037687+00	2016-05-26 15:59:38.023675+00	247	completed	Betty	Niemann	bettyboop47@windstream.net	+16065613851		12	2016-05-26 15:08:05.035215	2016-05-26 15:08:47.071831	CAaf916c70e8a13fb567d0cf6987787947	25d0200e-983d-4413-94ae-eb664b99711c	\N			1	outbound	+18556311490	\N	24.321505069732666	{}	new lead		1	\N	\N	1970
2016-05-26 19:55:47.200093+00	2016-05-26 20:00:01.712296+00	248	completed				+16065613851		249	2016-05-26 19:55:47.198039	2016-05-26 20:00:01.709391	CA57ce50e6d50f3e95c6561a7cbcb962e2	cd89e433-4bde-4f86-9b22-8f52c2413fcd	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE2321b8ab1aa2d01970a4349406a872c7	1	outbound	+18556311490	\N	2.08552312850952148	{}	new lead		1	\N	\N	1970
2016-05-26 20:05:17.979304+00	2016-05-26 20:10:46.488231+00	249	completed				+16065613851		323	2016-05-26 20:05:17.978405	2016-05-26 20:10:46.486652	CA538f679b42a24b9fbd2906e1bcf2e46c	cd89e433-4bde-4f86-9b22-8f52c2413fcd	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE22d40f27b02eb29ebc5f869868410617	1	outbound	+18556311490	\N	1.85264182090759277	{}	new lead		1	\N	\N	1970
2016-05-26 14:12:05.190364+00	2017-11-29 18:31:10.260454+00	245	completed	Unknown			+16065613851		182	2016-05-26 14:12:05.187126	2016-05-26 14:15:07.091091	CA266a68bf8c30c2f7eaee0d1d186f15ab	\N	18		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE9abd347acdfd834fb25b8ed95dbd7a42	0	inbound	+18556311490	\N	9.99066996574401855	null	new lead		1	\N	\N	1970
2016-05-26 14:53:30.285963+00	2017-11-29 18:31:10.260471+00	246	completed	Unknown			+16065613851		75	2016-05-26 14:53:30.284068	2016-05-26 14:54:44.85987	CA762926b7b94eb2ee717b403e9bbcf9a2	\N	17		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE18671b077972363660dceb5ada50e33f	0	inbound	+18556311490	\N	14.1533272266387939	null	new lead		1	\N	\N	1970
2016-05-26 20:12:36.869025+00	2017-11-29 18:31:10.260487+00	250	completed	Unknown			+16065613851		42	2016-05-26 20:12:36.868094	2016-05-26 20:13:18.885424	CAa8d9a63faf21001dde7107927654ac22	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE4d868644cfce96842b3a0b78b41b74d2	0	inbound	+18556311490	\N	14.6624271869659424	null	new lead		1	\N	\N	1970
2016-05-26 20:15:21.30188+00	2017-11-29 18:31:10.260504+00	251	completed	Unknown			+16065613851		42	2016-05-26 20:15:21.300825	2016-05-26 20:16:02.830954	CAbcdaff1ad9fb6aad952a46027d5d51f2	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE6782724ac114f12f85fcb3e21b401f33	0	inbound	+18556311490	\N	2.02927589416503906	null	new lead		1	\N	\N	1970
2016-12-27 15:33:36.963517+00	2016-12-27 15:34:18.035222+00	3096	completed				+18325663919		41	2016-12-27 15:33:36.961726	2016-12-27 15:34:17.703307	CA3a1b4377b4a90413c9748581777863e0	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REb01793d473e616d5a7785ddef1fecd48	0	inbound	+18557240606	49	2.34235286712646484	null	new lead		1	\N	\N	1976
2016-08-11 02:43:03.144638+00	2016-08-11 12:20:27.388218+00	1412	missed	Jack	Cole	tanker1948@msn.com	+16619430342		\N	2016-08-11 02:43:03.143176	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - credit union		1	\N	\N	1979
2016-08-23 18:16:34.644323+00	2017-11-29 18:31:37.369068+00	1678	missed	Jack	Cole		+16619430342		60	2016-08-23 18:16:34.642347	2016-08-23 18:17:34.87707	CAcaa709371e97afbea2ef729aad8e212e	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REfd40a7950dc45e8c3bd05611862b5680	0	inbound	+18555472453	\N	31.8350777626037598	null	application submitted - credit union		1	\N	\N	1979
2016-09-08 05:22:44.159033+00	2016-09-08 11:09:21.525647+00	1957	missed	Jack	Cole	tanker1948@msn.com	+16619430342		\N	2016-09-08 05:22:44.157932	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - credit union		1	\N	\N	1979
2017-10-04 23:08:25.687575+00	2017-10-04 23:09:39.075452+00	6587	completed				+18067905941		73	2017-10-04 23:08:25.683918	2017-10-04 23:09:38.218904	CAc4ddbf8f887c32d8486a67388dcc7663	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REa569f9c935812c8a1dbf73e37023637d	0	inbound	+18177569010	124	8.02541899681091309	\N	new lead	153 productions	12	\N	\N	1980
2016-11-10 17:58:52.58801+00	2016-11-10 18:24:04.246886+00	2835	completed				+19032686490		1509	2016-11-10 17:58:52.586428	2016-11-10 18:24:01.156686	CA34c6daedabb3bc458a1b7ed735bc6b8e	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE62355bec3e48aaaa40ceeac2566cfbd7	0	inbound	+18557240606	49	1.94846200942993164	null	new lead		1	\N	\N	1981
2017-12-19 22:08:09.549888+00	2017-12-19 22:13:37.727685+00	8016	missed	Shermeka	Exum	Shermekaexum4@gmail.com	+12404066678		0	2017-12-19 22:08:09.548335	2017-12-19 22:08:35.874227	CA1c27631ba1140491581cfd69dcbe1339	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			2	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	1983
2017-12-19 22:10:58.125874+00	2017-12-19 22:15:51.818669+00	8017	completed	Shermeka	Exum		+12404066678		293	2017-12-19 22:10:58.123734	2017-12-19 22:15:51.128794	CAd3917f0d26ccf999a0db4738a3dd1eb8	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REe788b39254fb719cdc8e63a700c438f5	0	inbound	+17704009016	132	19.2859549522399902	\N	new lead	exum shermeka	13	\N	\N	1983
2017-05-10 23:22:40.441248+00	2017-11-29 18:38:49.811059+00	4992	completed				+16316059294		343	2017-05-10 23:22:40.437964	2017-05-10 23:28:23.146887	CA860a249d10aa2155d7d78a48ac66328f	\N	\N			0	inbound	+12147122250	\N	4.48784494400024414	\N	new lead	noskin son st  	9	\N	\N	1984
2017-10-09 14:00:06.000782+00	2017-10-09 14:02:23.370098+00	6630	completed				+16787866926		136	2017-10-09 14:00:05.998121	2017-10-09 14:02:22.442197	CAa9be105270446260b17f5033941b9965	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE8ab94cc9814ade9f24bda5ee700738aa	0	inbound	+17704009016	132	14.9871339797973633	\N	new lead		13	\N	\N	1985
2016-11-03 03:14:12.938297+00	2016-11-03 03:14:12.966561+00	2614	missed	Pedro	Mosqueda	pmosqueda3@gmail.com	+15056810048		\N	2016-11-03 03:14:12.937284	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	1986
2017-05-02 21:27:14.436002+00	2017-05-02 21:49:12.336968+00	4603	missed				+18177354222		18	2017-05-02 21:27:14.433467	2017-05-02 21:27:32.186894	CA68f9cfa203b05bc89f8ea4fcb4e5ff6d	\N	\N			0	inbound	+18177569010	124	1292.90619111061096	\N	new lead	diana troy alls	12	\N	\N	1987
2017-10-31 19:13:58.259787+00	2017-10-31 19:14:37.760755+00	6883	completed				+12014234129		39	2017-10-31 19:13:58.257854	2017-10-31 19:14:36.857215	CA6ed3534e7333e99a7d791645474a6a04	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REcf4dde8f776d02240279d7544e1ba9ee	0	inbound	+18557240606	49	3.0934760570526123	\N	new lead		1	\N	\N	1988
2017-08-08 17:16:10.053684+00	2017-08-08 17:21:19.775641+00	5967	completed	Deanne	Stielow 	deanne112568@gmail.com	+17067161294		289	2017-08-08 17:16:10.052312	2017-08-08 17:21:18.500677	CA5e2a1a130c1f92ea1f0f23e7e096f8cf	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE55a0bbf9fede3f272789de788b11efca	1	outbound	+17704009016	\N	18.7021999359130859	{}	new lead		13	\N	\N	1991
2017-11-29 16:31:20.156853+00	2017-11-29 16:31:29.406968+00	7393	missed				+17406928106		9	2017-11-29 16:31:20.15493	2017-11-29 16:31:29.393955	CA3a4beb8734ed80551182c1bc213cc106	\N	\N			0	inbound	+18036184106	123	\N	\N	new lead		10	\N	\N	1993
2017-04-25 17:09:08.317337+00	2017-11-29 18:38:49.806618+00	4291	completed				+14698354539		72	2017-04-25 17:09:08.31563	2017-04-25 17:10:20.690911	CA49b4478501bc8aa58083d7a47e4b4858	\N	107			0	inbound	+12147122250	\N	7.15153598785400391	\N	new lead	romano anthony	9	\N	\N	1994
2016-09-08 13:05:11.448961+00	2016-12-10 01:05:18.400944+00	1958	completed				+16107212061		324	2016-09-08 13:05:11.446581	2016-09-08 13:10:35.226655	CA4653bd47710ee8c43f1aeb88f9e33718	\N	24			0	inbound	+18557088731	\N	1.07543587684631348	null	new lead		3	\N	\N	1996
2017-03-02 23:22:31.202149+00	2017-11-29 18:38:53.211846+00	3316	completed				+17135484019		14	2017-03-02 23:22:31.199404	2017-03-02 23:22:45.469282	CAc7a8c68150ee09bda79531a09aff92e3	\N	\N			0	inbound	+12146922088	\N	9.34057998657226562	\N	new lead	miketinac antho	9	\N	\N	1997
2017-03-08 16:48:15.42475+00	2017-11-29 18:38:53.21186+00	3343	completed				+17135484019		34	2017-03-08 16:48:15.422793	2017-03-08 16:48:48.941275	CA96b6ec38ba1bce17dad52c6dbe0d3e48	\N	\N			0	inbound	+12146922088	\N	8.75541877746582031	\N	new lead	miketinac antho	9	\N	\N	1997
2017-12-05 18:34:03.983314+00	2017-12-05 18:47:17.074631+00	7592	completed				+17722499128		790	2017-12-05 18:34:03.981345	2017-12-05 18:47:13.859154	CA3c779ad584c2923b3db7e11c8ceb52c8	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REd3dd5fbc0c0767b71573b5482f969162	0	inbound	+18558645656	136	4.07318401336669922	\N	new lead		15	\N	\N	1998
2017-04-17 13:51:45.72597+00	2017-11-29 18:38:49.805189+00	3982	missed				+15164923380		43	2017-04-17 13:51:45.72308	2017-04-17 13:52:29.089857	CAcd0c941c7f39a4d6e5481b57d7735484	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	merchant source	9	\N	\N	1845
2016-11-04 17:05:51.265692+00	2016-11-04 17:06:36.800173+00	2707	completed				+18325923052		45	2016-11-04 17:05:51.26416	2016-11-04 17:06:36.29576	CA662a63a67364fd83592d3ee7b44a94dc	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REa47cdae3541cb6ccb8bbb7c6c2092f1c	0	inbound	+18557240606	49	1.80505108833312988	null	new lead		1	\N	\N	1999
2016-11-04 17:06:55.805715+00	2016-11-04 17:29:18.790193+00	2708	completed				+18325923052		1340	2016-11-04 17:06:55.804476	2016-11-04 17:29:16.017864	CA9f9756a89a333e473927bed26c15246d	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REe86a9caf3713da0635f0146d71fa6cc0	0	inbound	+18557240606	49	1.79519510269165039	null	new lead		1	\N	\N	1999
2016-11-03 16:05:34.317888+00	2016-11-03 16:05:41.314331+00	2633	completed				+19542426044		6	2016-11-03 16:05:34.31668	2016-11-03 16:05:40.24292	CA525f3375ae01c7fdefacc3a6c9121f96	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE433d91c34d7a1459b24f1e7d71e04dcd	0	inbound	+18557240606	49	1.68431401252746582	null	new lead		1	\N	\N	2003
2016-11-03 16:05:56.576528+00	2016-11-03 16:08:32.189451+00	2634	completed				+19542426044		153	2016-11-03 16:05:56.575508	2016-11-03 16:08:29.262621	CA909475896869d62d95c823b64b6943bc	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE07abc836bfa9b454ccad469a37e466c8	0	inbound	+18557240606	49	1.7128298282623291	null	new lead		1	\N	\N	2003
2016-11-03 16:08:49.301314+00	2016-11-03 16:11:34.042823+00	2635	completed				+19542426044		163	2016-11-03 16:08:49.299568	2016-11-03 16:11:32.426068	CAd699e6b3453b43066b452c1f753f54d7	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REcfb714c4b40e584df51890e90540e6cb	0	inbound	+18557240606	49	2.17636513710021973	null	new lead		1	\N	\N	2003
2017-03-28 14:25:33.456126+00	2017-11-29 18:38:53.213091+00	3605	completed				+13165243825		273	2017-03-28 14:25:33.454051	2017-03-28 14:30:06.875621	CA6a44d152fdc7305a7b84c11e1d10ffc4	\N	105			0	inbound	+12146922088	\N	5.84504413604736328	\N	new lead	carrier enterpr	9	\N	\N	2006
2017-04-28 19:54:55.666107+00	2017-11-29 18:38:49.807328+00	4441	missed				+14693995890		18	2017-04-28 19:54:55.664304	2017-04-28 19:55:13.636736	CAb39886ef49d31d78ace22ac99b069e7b	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	dallas  tx	9	\N	\N	2007
2016-08-02 03:27:51.587313+00	2016-08-05 12:51:43.387619+00	1111	missed	Milton	Doucette	mdoucette3@outlook.com	+16612082623		\N	2016-08-02 03:27:51.586254	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - autopay		1	\N	\N	2011
2017-12-30 19:19:15.874693+00	2017-12-30 19:19:18.448066+00	8165	missed				+16787567698		3	2017-12-30 19:19:15.872939	2017-12-30 19:19:18.437415	CAb3feef2ad6f5628acadd94bc6053f023	\N	\N			0	inbound	+17706597466	137	\N	\N	new lead		14	\N	\N	2017
2017-12-09 17:42:33.548193+00	2017-12-09 17:59:39.832096+00	7744	completed				+12104820391		1023	2017-12-09 17:42:33.546423	2017-12-09 17:59:36.696761	CA5a7a59df520be76ed5ec62bc9d7223de	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REe4a6120bb7bfff045ee25c84a9846a73	0	inbound	+18558645656	136	2.53353214263916016	\N	new lead		15	\N	\N	2120
2016-11-05 16:33:04.360803+00	2016-11-05 16:33:04.38818+00	2747	missed	Jose	Boone	jboone147@hotmail.com	+13012546074		\N	2016-11-05 16:33:04.359669	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2021
2017-12-06 21:49:45.979544+00	2017-12-06 22:12:35.783666+00	7664	completed				+19132066199		1367	2017-12-06 21:49:45.977777	2017-12-06 22:12:32.590812	CAb5311684f5e278dfab88fdbb8566cc02	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE22ea67fa3271beed1fa1c51f3d3fde86	0	inbound	+18558645656	136	2.54398107528686523	\N	new lead		15	\N	\N	2024
2017-12-07 23:17:55.535842+00	2017-12-07 23:35:38.695169+00	7697	completed				+19132066199		1060	2017-12-07 23:17:55.534133	2017-12-07 23:35:35.424157	CA2edd9adc79a411af9a260e751533e655	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE100b637c67fcdf123fd77967f92e4c18	0	inbound	+18558645656	136	1.97769808769226074	\N	new lead		15	\N	\N	2024
2017-08-13 01:12:42.839128+00	2017-08-13 01:12:42.88475+00	6009	missed	Cynthia	Burch	cburch0419@gmail.com	+16789973896		\N	2017-08-13 01:12:42.837823	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	2025
2016-06-25 19:59:26.112314+00	2017-11-29 18:32:13.820462+00	464	completed	Fahim	Muhammad		+17733688303		67	2016-06-25 19:59:26.110912	2016-06-25 20:00:33.133627	CA0897ab5c91d66e8a5f60e5b5c3101fc5	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE5c1a6d5211a62c8e1e37070ad79f5c17	0	inbound	+18555983683	\N	\N	null	new lead		1	\N	\N	2026
2016-06-27 14:47:04.454157+00	2016-06-27 14:49:41.535105+00	499	completed				+17733688303		152	2016-06-27 14:47:04.453003	2016-06-27 14:49:41.534168	CA70ccfa0026477690ab86b827f2a6f2ba	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.47971487045288086	{}	new lead		1	\N	\N	2026
2016-06-25 00:42:08.377961+00	2017-11-29 18:32:13.82044+00	459	completed	Fahim	Muhammad		+17733688303		19	2016-06-25 00:42:08.376133	2016-06-25 00:42:27.513865	CAc648931a60dd117c56679befe6e2fabe	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE38f579b8c9628673d53161f521ecad3f	0	inbound	+18555983683	\N	\N	null	new lead		1	\N	\N	2026
2016-11-01 16:51:28.657539+00	2016-11-01 16:57:47.763174+00	2476	completed				+14042713656		375	2016-11-01 16:51:28.656133	2016-11-01 16:57:44.154733	CA2e2b8e280314fc31b5b859eb202006a7	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE0ddec61fe32e75b2297486c0bab1fdfe	0	inbound	+18557240606	49	1.67021703720092773	null	new lead		1	\N	\N	2027
2017-05-26 18:50:44.536559+00	2017-11-29 18:38:49.813692+00	5444	completed				+12812178739		64	2017-05-26 18:50:44.534533	2017-05-26 18:51:48.351667	CA7bfd665052393eaa44ad480300c1c6a7	\N	107			0	inbound	+12147122250	\N	10.3057451248168945	\N	new lead	golden bright l	9	\N	\N	2030
2017-05-26 18:51:44.750463+00	2017-11-29 18:38:49.813716+00	5445	completed				+12812178739		80	2017-05-26 18:51:44.749074	2017-05-26 18:53:04.294735	CA366980ab7648d976fd0b62a5982cca10	\N	127			0	inbound	+12147122250	\N	6.59180879592895508	\N	new lead	golden bright l	9	\N	\N	2030
2016-08-23 20:39:02.052747+00	2017-01-27 21:12:23.813644+00	1685	completed				+12156580224		114	2016-08-23 20:39:02.049923	2016-08-23 20:40:55.781557	CA0abd8289c7798238c274d63ae68df414	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE047a409651854a4896e7b36bcb24ac23	0	inbound	+18557240606	49	5.5808711051940918	null	new lead		1	\N	\N	2032
2017-03-22 18:29:33.186742+00	2017-03-22 18:48:51.889117+00	3546	completed				+18164145316		1154	2017-03-22 18:29:33.182753	2017-03-22 18:48:47.046134	CAf371d52e0d537139db12f5523c07f44b	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REc3bc9f07a5b302c15cb2a3339cc13199	0	inbound	+18557240606	49	3.2225639820098877	\N	new lead		1	\N	\N	2033
2017-11-29 15:50:39.005314+00	2017-11-29 16:14:20.719564+00	7390	missed				+12148819731		132	2017-11-29 15:50:39.003471	2017-11-29 15:52:50.759924	CAb3be16fed8337f67d32e816c260e594c	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE64a0d00736410206c3b09d897827f62e	0	inbound	+18177569010	124	\N	\N	new lead	acosta kenia	12	\N	\N	2036
2016-08-05 00:28:35.588148+00	2016-08-05 12:22:32.819273+00	1257	missed	patricia	murawski	vincemathias@yahoo.com	+12629947864		\N	2016-08-05 00:28:35.587273	\N		4b51c6b2-49f9-4108-8fdf-a8671e497256	\N			0	outbound	+18556311541	\N	\N	{}	application submitted - autopay		1	\N	\N	2037
2016-12-14 16:20:07.341317+00	2016-12-14 16:20:07.389815+00	3081	missed	Franklin	Glaspie	frglas@yahoo.com	+17706396560		\N	2016-12-14 16:20:07.339681	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2038
2016-11-16 16:46:54.709918+00	2016-11-16 16:52:06.886262+00	2920	completed				+17706396560		312	2016-11-16 16:46:54.708642	2016-11-16 16:52:06.503843	CAf15b1ff63c4b5c56d2b9640f3961dfed	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REc837b5034687df19e0fb0ed3a7d79f11	0	inbound	+18557240606	49	2.00782394409179688	null	new lead		1	\N	\N	2038
2017-04-18 16:55:30.631592+00	2017-11-29 18:38:49.805464+00	4043	completed				+14234320462		260	2017-04-18 16:55:30.629861	2017-04-18 16:59:51.074497	CAa2b02e8ed900fad7b9772af2cc2a543d	\N	\N			0	inbound	+12147122250	\N	6.31026196479797363	\N	new lead	dolberry andre	9	\N	\N	1000
2016-11-16 16:44:54.904763+00	2016-11-16 16:46:41.572071+00	2918	completed				+17706396560		106	2016-11-16 16:44:54.902845	2016-11-16 16:46:41.129225	CA4e8334fb6f963d8681c4d316f719c5f5	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE35c5ef0c5c66838635efc2b3d92b656a	0	inbound	+18557240606	49	2.32633113861083984	null	new lead		1	\N	\N	2038
2017-04-12 21:32:30.325768+00	2017-11-29 18:38:49.804685+00	3843	completed				+19096846082		105	2017-04-12 21:32:30.322682	2017-04-12 21:34:15.385723	CAf20352d4897f7ffe8a1de98876a2434d	\N	105			0	inbound	+12147122250	\N	4.23829483985900879	\N	new lead		9	\N	\N	2039
2017-05-08 23:00:01.052744+00	2017-11-29 18:38:49.810519+00	4891	completed				+19096846082		87	2017-05-08 23:00:01.050168	2017-05-08 23:01:28.484626	CA8e6ae4d7304f96a2cb8f96fbfdbd60b6	\N	\N			0	inbound	+12147122250	\N	0.964797019958496094	\N	new lead	cabrerapena alb	9	\N	\N	2039
2017-05-09 16:56:14.77503+00	2017-11-29 18:38:49.810583+00	4906	completed				+19096846082		84	2017-05-09 16:56:14.772934	2017-05-09 16:57:38.898895	CAf51ea5b04f170502927108b484c19c65	\N	\N			0	inbound	+12147122250	\N	1.15178012847900391	\N	new lead	cabrerapena alb	9	\N	\N	2039
2017-11-08 15:40:05.988278+00	2017-11-08 16:02:49.594847+00	6971	missed				+12542213234		70	2017-11-08 15:40:05.986351	2017-11-08 15:41:16.233942	CA6a93e773d33997a6d017f906b7ffd3fd	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE493aafa347f9bc323553116683a62dad	0	inbound	+18177569010	124	1341.70672583580017	\N	new lead	cinnamon cinnam	12	\N	\N	2040
2017-11-10 18:52:36.774084+00	2017-11-10 19:05:20.521853+00	7004	completed				+12542213234		764	2017-11-10 18:52:36.77207	2017-11-10 19:05:20.517979	CA734c17b239b363985dcd3b35bcdb5d8c	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE7f551037e43c33638aa0044f63c7c04b	0	inbound	+18177569010	124	456.242888927459717	\N	new lead	cinnamon cinnam	12	\N	\N	2040
2016-05-25 18:24:48.899475+00	2017-11-29 18:31:37.36819+00	226	completed	Unknown			+18555472453		7	2016-05-25 18:24:48.898547	2016-05-25 18:24:55.941373	CA31869340338589b5f69cc9093882d4d0	\N	\N			0	inbound	+18555472453	\N	\N	null	new lead		1	\N	\N	2046
2016-05-25 18:24:38.01738+00	2016-05-25 18:24:56.960201+00	225	completed				+18555472453		14	2016-05-25 18:24:38.016175	2016-05-25 18:24:56.958872	CA6b77de78df0239591cab2da38f95c48c	8f30d55b-8601-40b9-9d7f-11bfe29c5449	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE17b4afaaefbeb6e9fb00c392108d452a	1	outbound	+18555472453	\N	1.73228216171264648	{}	new lead		1	\N	\N	2046
2016-08-02 19:41:24.486075+00	2016-08-02 20:40:38.254031+00	1135	completed	Gloria 	Singleton	DeseraysPlexus@gmail.com	+15138081924		67	2016-08-02 19:41:24.485044	2016-08-02 19:42:56.580943	CA9ada96dd43f7f11ff6bb2cd1fed31af8	25d0200e-983d-4413-94ae-eb664b99711c	17		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE41d3d7a8ce8806b99e079b56753806e2	1	outbound	+18556311490	\N	23.3127191066741943	{}	application submitted - autopay		1	\N	\N	2047
2016-08-02 19:43:04.739607+00	2017-11-29 18:31:10.26194+00	1136	completed	Gloria 	Singleton		+15138081924		27	2016-08-02 19:43:04.738276	2016-08-02 19:43:31.800709	CA5d447e17b5ebfd4dbec8a053279e7510	\N	18			0	inbound	+18556311490	\N	24.9517779350280762	null	application submitted - autopay		1	\N	\N	2047
2016-08-02 19:43:37.565889+00	2017-11-29 18:31:10.261958+00	1137	completed	Gloria 	Singleton		+15138081924		40	2016-08-02 19:43:37.564078	2016-08-02 19:44:17.905114	CA1b85415765bddefc08ee599a998afcbc	\N	18		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE838e13aa9a7b9178c4e369956d9da59f	0	inbound	+18556311490	\N	24.4471108913421631	null	application submitted - autopay		1	\N	\N	2047
2016-08-02 19:54:48.446082+00	2017-11-29 18:31:10.261975+00	1138	completed	Gloria 	Singleton		+15138081924		151	2016-08-02 19:54:48.444802	2016-08-02 19:57:19.191175		\N	16			0	outbound	+18556311490	\N	\N	null	application submitted - autopay		1	\N	\N	2047
2017-08-10 22:00:52.499886+00	2017-08-17 14:35:21.045781+00	5986	completed				+13183943688		425	2017-08-10 22:00:52.498216	2017-08-10 22:07:57.586987	CA0f751a166d27b265b7de9334f65e15de	\N	\N			0	inbound	+18177569010	124	71.0763001441955566	\N	new lead	d kirkwood	12	\N	\N	2048
2017-08-10 22:04:55.951+00	2017-08-17 14:35:21.045788+00	5987	completed				+13183943688		1480	2017-08-10 22:04:55.949051	2017-08-10 22:29:35.821394	CA2070a3a4e1e48785f74f829c02e7d6c9	\N	\N			0	inbound	+18177569010	124	1373.88938593864441	\N	new lead	d kirkwood	12	\N	\N	2048
2017-03-23 19:47:24.391467+00	2017-11-29 18:38:53.212847+00	3561	completed				+13183661228		67	2017-03-23 19:47:24.388387	2017-03-23 19:48:31.139025	CA99d348e293aaa1ed70a63d663b5383fc	\N	\N			0	inbound	+12146922088	\N	6.10167288780212402	\N	new lead	eskew glenn    	9	\N	\N	2051
2017-03-23 20:06:10.60368+00	2017-11-29 18:38:53.212867+00	3565	completed				+13183661228		274	2017-03-23 20:06:10.601945	2017-03-23 20:10:45.093294	CAb576688f70ec7f2061949034b1cd0da9	\N	\N			0	inbound	+12146922088	\N	5.16694378852844238	\N	new lead	eskew glenn    	9	\N	\N	2051
2017-03-23 20:04:42.89626+00	2017-11-29 18:38:53.21286+00	3564	completed				+13183661228		28	2017-03-23 20:04:42.894143	2017-03-23 20:05:10.75956	CA81a33b12cf13dc58f2f6b853a7d3ffd4	\N	107			0	inbound	+12146922088	\N	4.8502349853515625	\N	new lead	eskew glenn    	9	\N	\N	2051
2016-10-30 16:44:51.91332+00	2016-10-30 16:45:26.314773+00	2374	completed				+19729239877		34	2016-10-30 16:44:51.91157	2016-10-30 16:45:25.763908	CAe649bea0907d7d8bf04d75009694b6dc	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE314e57a5ddce58c7532ec47f376bd24e	0	inbound	+18557240606	49	2.24934101104736328	null	new lead		1	\N	\N	2052
2016-11-01 16:32:39.743922+00	2016-11-01 16:56:28.711757+00	2473	completed				+19729239877		1422	2016-11-01 16:32:39.742264	2016-11-01 16:56:21.419551	CAf54eca058abda871eb6841b486aa1bdd	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE8c107cb6bca9c6875469ebe8b80c8123	0	inbound	+18557240606	49	2.27854418754577637	null	new lead		1	\N	\N	2052
2017-08-13 15:34:49.792767+00	2017-08-13 15:34:49.83817+00	6010	missed	Amber	Reed	amber1007reed@gmail.com	+17705409468		\N	2017-08-13 15:34:49.791444	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	2053
2017-04-21 20:56:22.354024+00	2017-11-29 18:47:25.068221+00	4202	completed				+19172322535		91	2017-04-21 20:56:22.351593	2017-04-21 20:57:53.548738	CA937c31fd579d66dfb2ae857fa95d249c	\N	84		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE4476ac155b96cb7eda7c8d0ce81304d2	0	inbound	+19728330116	\N	6.49414801597595215	\N	new lead	speechley earl	8	\N	\N	2055
2017-07-09 18:38:31.342817+00	2017-07-09 18:39:20.221749+00	5741	missed				+14328479286		49	2017-07-09 18:38:31.341027	2017-07-09 18:39:20.21172	CAb43849a97b5ef2fb785f92aaf5ab42d5	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REac2668db868977827ccf71ef39c8359e	0	inbound	+18177569010	124	\N	\N	new lead	midland  tx	12	\N	\N	2056
2017-10-30 22:22:45.984884+00	2017-10-30 22:28:56.496199+00	6875	missed	Christina	Kelley	christinaekelley26@yahoo.com	+16788979468		20	2017-10-30 22:22:45.98331	2017-10-30 22:28:56.494621	CAe12cb10d2e910ef81581f0ae998e851b	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			3	outbound	+17704009016	\N	349.708844900131226	{}	new lead		13	\N	\N	2057
2017-05-06 19:13:37.27554+00	2017-11-29 18:38:49.810202+00	4811	completed				+19722470800		88	2017-05-06 19:13:37.27361	2017-05-06 19:15:04.780506	CA401c24122ed0fe95e1a416fd676850ef	\N	99			0	inbound	+12147122250	\N	6.42684698104858398	\N	new lead	cotroneo auto group	9	\N	\N	2058
2017-06-22 15:01:40.31938+00	2017-06-24 13:44:45.085736+00	5630	completed				+17708771387		208	2017-06-22 15:01:40.317335	2017-06-22 15:05:07.965439	CA3c11e77677315c4cd18d427653b51af2	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE534080e240ad97009e8981062416f46c	0	inbound	+17704009016	132	8.43543386459350586	\N	new lead		13	\N	\N	2059
2017-06-22 19:34:37.343572+00	2017-06-24 13:44:45.085766+00	5635	completed				+17708771387		45	2017-06-22 19:34:37.341452	2017-06-22 19:35:22.477443	CA74eb1107eed61e71befc3357107a4867	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE2d45c47fee2b226907edd56132e3ba10	0	inbound	+17704009016	132	14.5759940147399902	\N	new lead		13	\N	\N	2059
2017-06-22 15:58:24.396554+00	2017-06-24 13:44:45.085743+00	5631	completed				+17708771387		160	2017-06-22 15:58:24.394466	2017-06-22 16:01:04.415657	CA062ab987882581cb20cad9c850cdf52b	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REaccb7d8b27f3bbc7cdbbfd973761977f	0	inbound	+17704009016	132	8.9787449836730957	\N	new lead		13	\N	\N	2059
2017-06-22 18:06:05.00071+00	2017-06-24 13:44:45.085759+00	5633	completed				+17708771387		51	2017-06-22 18:06:04.99872	2017-06-22 18:06:56.071655	CAd9fb4acf67a8011474273ced1ddae27b	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REe491308a25cd3328248141bfa34d6c58	0	inbound	+17704009016	132	19.663093090057373	\N	new lead		13	\N	\N	2059
2016-07-06 17:20:43.5706+00	2016-12-09 17:06:53.90573+00	776	completed				+12672693625		268	2016-07-06 17:20:43.569585	2016-07-06 17:25:11.107497	CAadb3e8fb2c61ecf3a8d20e8ff26e2eb0	\N	21			0	inbound	+18558021330	\N	4.83370590209960938	null	new lead		3	\N	\N	2061
2017-04-20 16:08:57.2394+00	2017-11-29 18:38:49.805939+00	4133	completed				+19855164586		254	2017-04-20 16:08:57.237443	2017-04-20 16:13:11.470379	CA22514db22359cddf102000ab300ed468	\N	\N			0	inbound	+12147122250	\N	4.05949187278747559	\N	new lead	page linda     	9	\N	\N	2062
2017-05-03 16:56:37.282648+00	2017-11-29 18:38:53.214965+00	4639	completed				+14029721263		217	2017-05-03 16:56:37.280031	2017-05-03 17:00:13.826745	CAbc9dd8c8456502868c599bb570996cb2	\N	133			0	inbound	+12146922088	\N	4.18576502799987793	\N	new lead	a. hoffman	9	\N	\N	2063
2017-05-03 16:47:21.753253+00	2017-11-29 18:38:49.809267+00	4634	completed				+14029721263		57	2017-05-03 16:47:21.75098	2017-05-03 16:48:18.785571	CA5946bcc277d84e0b2f17b7fbb6999c39	\N	107			0	inbound	+12147122250	\N	2.67552781105041504	\N	new lead	a. hoffman	9	\N	\N	2063
2017-05-03 16:48:24.721996+00	2017-11-29 18:38:49.809281+00	4636	missed				+14029721263		40	2017-05-03 16:48:24.720818	2017-05-03 16:49:04.618198	CA22c6c6025370498b0aad565b9711af76	\N	\N			0	inbound	+12147122250	\N	0.948709011077880859	\N	new lead	a. hoffman	9	\N	\N	2063
2017-05-03 16:52:50.567101+00	2017-11-29 18:38:49.809295+00	4638	missed				+14029721263		23	2017-05-03 16:52:50.565657	2017-05-03 16:53:13.114702	CAb15b0ee15df7d506341c3e58210d41ed	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	a. hoffman	9	\N	\N	2063
2017-04-01 20:53:16.671634+00	2017-11-29 18:47:25.067954+00	3656	completed				+14242179569		231	2017-04-01 20:53:16.669974	2017-04-01 20:57:07.682956	CAe03012c0a67bbc313a714b12c0cb7bd0	\N	82		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE068c4a2d76b0a6089169229e1a8303bd	0	inbound	+19728330116	\N	6.18618392944335938	\N	new lead	rami oudah	8	\N	\N	2065
2017-05-01 19:30:52.744475+00	2017-11-29 18:38:49.808271+00	4538	completed				+12146016162		151	2017-05-01 19:30:52.742088	2017-05-01 19:33:23.66605	CAe7eac041288cfe6cf7caec4e8694af25	\N	105			0	inbound	+12147122250	\N	11.1635439395904541	\N	new lead	akins sandra g 	9	\N	\N	2067
2017-12-05 17:23:09.542921+00	2017-12-05 17:41:42.463077+00	7590	completed				+17274101042		1110	2017-12-05 17:23:09.540078	2017-12-05 17:41:39.108936	CAc018deee2252cd7eb58881814a86988a	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE820730548f4f7bd3e17e4e6e3fcefebe	0	inbound	+18558645656	136	2.55115008354187012	\N	new lead		15	\N	\N	2068
2017-05-01 23:42:42.099646+00	2017-08-17 14:35:21.045075+00	4559	completed				+19402293036		45	2017-05-01 23:42:42.096714	2017-05-01 23:43:26.852897	CAa3b73609d36c9365d745f104a593be64	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REdd96483b9c7350a7b5a106896124447e	0	inbound	+18177569010	124	8.37905478477478027	\N	new lead	jasmine salgado	12	\N	\N	2069
2017-05-01 23:43:50.479978+00	2017-08-17 14:35:21.045082+00	4560	completed				+19402293036		117	2017-05-01 23:43:50.478477	2017-05-01 23:45:47.719021	CAc6b907d2fb7ca03b8d58332d7634fd3b	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE074ee982b685670a41f348975ea9cbd2	0	inbound	+18177569010	124	4.95382404327392578	\N	new lead	jasmine salgado	12	\N	\N	2069
2016-10-04 23:11:17.528039+00	2016-12-10 01:01:00.20014+00	2151	completed				+13124709921		123	2016-10-04 23:11:17.526463	2016-10-04 23:13:20.601228	CAdc30816d794c2ccddde338cbdb7e5f0e	\N	57			0	inbound	+18557860909	\N	11.4144728183746338	null	new lead		3	\N	\N	2071
2017-07-06 01:09:35.092704+00	2017-07-06 01:31:24.533218+00	5719	missed				+18177562394		40	2017-07-06 01:09:35.09051	2017-07-06 01:10:14.90474	CA3b780b14b676f274996d4343bcaebe91	\N	\N			0	inbound	+18177569010	124	1289.52044296264648	\N	new lead	aptela - did	12	\N	\N	2072
2016-08-02 00:50:28.625355+00	2016-08-02 13:36:24.136402+00	1106	missed	Keela	Mastrianni	mastriannikeela@yahoo.com	+16619745185		\N	2016-08-02 00:50:28.623889	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - credit union		1	\N	\N	2074
2017-03-13 18:44:47.228243+00	2017-11-29 18:38:53.21214+00	3401	completed				+18648591676		266	2017-03-13 18:44:47.225438	2017-03-13 18:49:13.186111	CAd2e7d3b54d047fa0e81541427c42ae5a	\N	107			0	inbound	+12146922088	\N	22.5331130027770996	\N	new lead	dean   mc innis orthodontics	9	\N	\N	2075
2017-11-21 08:55:16.350498+00	2017-11-21 14:33:14.079057+00	7151	missed	Nancy	foster	nancyfea74@gmail.com	+14702042334		\N	2017-11-21 08:55:16.348622	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	2080
2017-11-03 19:52:24.757054+00	2017-11-21 14:33:14.093691+00	6922	completed	nancy	Foster	nancyfea74@gmail.com	+14702042334		89	2017-11-03 19:52:24.755288	2017-11-03 19:54:06.450866	CA3642651b26f017ff4c91300c2e8886dc	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE767f0919ec4f01cac3cd713dbc138219	1	outbound	+17704009016	\N	15.6910028457641602	{}	select status		13	\N	\N	2080
2017-11-21 14:30:11.719753+00	2017-11-21 14:33:14.093713+00	7155	completed	Nancy	foster	nancyfea74@gmail.com	+14702042334		71	2017-11-21 14:30:11.71673	2017-11-21 14:31:22.930223		\N	152			0	outbound	+17704009016	132	\N	\N	select status		13	\N	\N	2080
2017-04-13 22:42:21.108365+00	2017-11-29 18:38:53.213873+00	3900	completed				+14403814651		35	2017-04-13 22:42:21.106384	2017-04-13 22:42:56.153422	CA20e868af24ecf457f1118f4d9aa50c5f	\N	105			0	inbound	+12146922088	\N	7.3179481029510498	\N	new lead		9	\N	\N	2079
2017-04-14 21:56:17.690529+00	2017-11-29 18:38:53.213979+00	3949	completed				+14403814651		73	2017-04-14 21:56:17.688931	2017-04-14 21:57:30.325169	CAc80143148615c83f3cdcf2960180d82e	\N	99			0	inbound	+12146922088	\N	6.25709199905395508	\N	new lead	independenc  oh	9	\N	\N	2079
2017-04-20 19:59:14.890779+00	2017-11-29 18:38:53.214319+00	4152	completed				+14403814651		176	2017-04-20 19:59:14.88811	2017-04-20 20:02:11.059046	CAbf8fcc188bb91bafa54277b5aebefa47	\N	105			0	inbound	+12146922088	\N	7.72446894645690918	\N	new lead	independenc  oh	9	\N	\N	2079
2017-04-14 20:27:41.519164+00	2017-11-29 18:38:53.213951+00	3942	completed				+14403814651		502	2017-04-14 20:27:41.517076	2017-04-14 20:36:03.761312	CAc3173f3205e0138ea1a85469cdf4f308	\N	\N			0	inbound	+12146922088	\N	2.55088901519775391	\N	new lead	independenc  oh	9	\N	\N	2079
2017-04-15 15:20:06.056021+00	2017-11-29 18:38:53.214014+00	3954	completed				+14403814651		61	2017-04-15 15:20:06.0524	2017-04-15 15:21:06.954369	CA3a3e15328c033f533b36449d1e100d98	\N	\N			0	inbound	+12146922088	\N	7.47589612007141113	\N	new lead	independenc  oh	9	\N	\N	2079
2016-08-15 16:54:02.920729+00	2016-08-16 15:33:43.630669+00	1495	missed	Olivia	Feld	feldolivia@gmail.com	+19206192560		\N	2016-08-15 16:54:02.919534	\N		4b51c6b2-49f9-4108-8fdf-a8671e497256	\N			0	outbound	+18556311541	\N	\N	{}	application submitted - autopay		1	\N	\N	2081
2017-09-09 15:09:36.170124+00	2017-09-09 15:10:44.437005+00	6304	completed	Charles	Snyder		+17063442772		68	2017-09-09 15:09:36.168677	2017-09-09 15:10:44.427466	CAe3224b2b29d4d02e5f475a528ab3eabc	\N	150			0	inbound	+17707665732	133	20.8522210121154785	\N	new lead		13	\N	\N	2082
2017-08-07 21:42:37.553308+00	2017-08-07 21:46:18.910562+00	5957	completed				+17063442772		221	2017-08-07 21:42:37.551135	2017-08-07 21:46:18.896737	CAc77e3fa999b5819041188b1dad007464	\N	152			0	inbound	+17707665732	133	19.1276659965515137	\N	new lead		13	\N	\N	2082
2017-08-07 21:53:59.124556+00	2017-08-07 21:55:55.39038+00	5958	completed	Charles	Snyder	ck136313@gmail.com	+17063442772		96	2017-08-07 21:53:59.123116	2017-08-07 21:55:54.002172	CA2d2d0ba33fb3bc58db41848f3b5d521d	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE23c8b398fd9885276ea4ccf7c6f127d4	1	outbound	+17704009016	\N	18.5100979804992676	{}	new lead		13	\N	\N	2082
2017-04-22 16:50:24.665772+00	2017-11-29 18:38:49.80637+00	4220	completed				+12149129572		85	2017-04-22 16:50:24.663988	2017-04-22 16:51:49.875193	CAb1a8c63acbdf838336185ee020fe6f1a	\N	127			0	inbound	+12147122250	\N	2.13392114639282227	\N	new lead	olsen erica    	9	\N	\N	2083
2017-04-22 16:51:46.191796+00	2017-11-29 18:38:49.806377+00	4221	completed				+12149129572		69	2017-04-22 16:51:46.189945	2017-04-22 16:52:55.42783	CA9b5c0aa4ea3b2c2d23a610739fa32724	\N	127			0	inbound	+12147122250	\N	1.3035728931427002	\N	new lead	olsen erica    	9	\N	\N	2083
2017-04-17 14:04:57.716682+00	2017-11-29 18:38:49.805196+00	3983	completed				+18882989491		100	2017-04-17 14:04:57.71337	2017-04-17 14:06:37.548821	CA66daff35b5d94dd6b2a0bf6833bf808e	\N	125			0	inbound	+12147122250	\N	1.04096484184265137	\N	new lead	800 service	9	\N	\N	2978
2017-04-22 16:52:55.16291+00	2017-11-29 18:38:49.806384+00	4222	completed				+12149129572		300	2017-04-22 16:52:55.161455	2017-04-22 16:57:54.77785	CA117f71c2cbd658a0deeef960101d1085	\N	\N			0	inbound	+12147122250	\N	5.86763787269592285	\N	new lead	olsen erica    	9	\N	\N	2083
2017-05-10 18:34:54.206933+00	2017-11-29 18:38:53.21559+00	4966	completed				+18178000436		96	2017-05-10 18:34:54.204222	2017-05-10 18:36:30.319364	CA7aea428ecf4f06ce5bd3dacd1476c58b	\N	105		https://api.twilio.com/2010-04-01/Accounts/AC5422b9b221417a7a84556a92f6edc492/Recordings/RE53e0317ecf6ecdbad8f2900dc2b4747d	0	inbound	+12146922088	\N	8.69087982177734375	\N	new lead	beavers josh	9	\N	\N	2084
2017-05-25 23:21:09.36979+00	2017-11-29 18:38:49.813564+00	5423	completed				+18178000436		112	2017-05-25 23:21:09.366372	2017-05-25 23:23:01.537132	CA81b5f0064c32bd2843af20b70b45e9e7	\N	105			0	inbound	+12147122250	\N	6.9249269962310791	\N	new lead	beavers josh	9	\N	\N	2084
2017-12-04 13:50:06.643249+00	2017-12-04 13:50:39.211125+00	7522	completed				+17633178646		32	2017-12-04 13:50:06.640865	2017-12-04 13:50:38.358519	CA52b1f18a4120f2a26125d05de7db1a6b	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE05374af1181761b4efdfccf24fa27d44	0	inbound	+18558645656	136	2.2020881175994873	\N	new lead		15	\N	\N	2085
2017-05-28 19:57:34.409255+00	2017-11-29 18:38:49.813933+00	5477	completed				+14697268039		66	2017-05-28 19:57:34.407484	2017-05-28 19:58:40.730957	CA21c2435b269071512747aea5da903d86	\N	126			0	inbound	+12147122250	\N	2.25882601737976074	\N	new lead	benitez jose	9	\N	\N	2086
2017-05-28 19:58:34.038712+00	2017-11-29 18:38:49.81394+00	5478	completed				+14697268039		51	2017-05-28 19:58:34.037239	2017-05-28 19:59:25.383524	CAaa688e2efcf88ea11ecc5310c89b8a56	\N	124			0	inbound	+12147122250	\N	1.98992300033569336	\N	new lead	benitez jose	9	\N	\N	2086
2016-12-21 04:25:00.725237+00	2016-12-21 04:25:00.753893+00	3086	missed	Young	Sung	usasuny@hotmail.com	+14695567748		\N	2016-12-21 04:25:00.724202	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2087
2017-07-14 18:16:18.370752+00	2017-07-14 18:17:23.944271+00	5778	completed	Christina	Foster	Christi.wills@yahoo.com	+16783433513		43	2017-07-14 18:16:18.369446	2017-07-14 18:17:23.919814	CAb8a5479fd73a970f9309dd0b1210ba90	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE2046318518247993acf38ccf27f5e62e	1	outbound	+17704009016	\N	18.4769799709320068	{}	new lead		13	\N	\N	2088
2016-11-07 17:47:54.411769+00	2016-11-07 17:47:54.461201+00	2791	missed	Connie	Johnston	texaslady_1945@hotmail.com	+12818970148		\N	2016-11-07 17:47:54.409745	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2089
2017-12-30 18:18:08.929734+00	2017-12-30 18:19:44.536592+00	8164	completed				+17703099216		95	2017-12-30 18:18:08.92776	2017-12-30 18:19:43.731045	CA1d00d229af6d524ddc962b701a2f631f	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REe4e61da703ea490eb975eee12da3f1ac	0	inbound	+17707665732	133	19.1684520244598389	\N	new lead	cell phone   ga	13	\N	\N	2091
2017-12-06 20:33:10.934368+00	2017-12-06 20:35:03.804228+00	7658	completed				+13046477476		112	2017-12-06 20:33:10.932835	2017-12-06 20:35:02.650201	CA52b650f99f952237c9d7d1d8f009cdd0	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE9ae73105e22a5c0a12e9f9e9ea4a6170	0	inbound	+18558645656	136	2.8781731128692627	\N	new lead		15	\N	\N	2092
2016-10-05 14:16:54.006202+00	2016-12-10 01:03:26.835776+00	2159	completed				+12018033963		11	2016-10-05 14:16:54.004642	2016-10-05 14:17:04.645133	CA7133e4af8d39a79f1acc3fe0ebffda7d	\N	68			0	inbound	+18553793442	\N	0.509765863418579102	null	new lead		3	\N	\N	2093
2016-10-05 14:17:16.518403+00	2016-12-10 01:03:26.835818+00	2160	completed				+12018033963		72	2016-10-05 14:17:16.517455	2016-10-05 14:18:28.227073	CAf4cc7fec4e7527e876d68dfd9fb676ed	\N	68			0	inbound	+18553793442	\N	0.449220895767211914	null	new lead		3	\N	\N	2093
2017-05-23 21:05:36.49741+00	2017-05-23 21:27:46.619277+00	5335	missed				+18176889781		34	2017-05-23 21:05:36.495397	2017-05-23 21:06:10.051576	CA5169ab7e4da970b49b181120637eef16	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE28ab087f4ee901fdeccf9e478be51ef2	0	inbound	+18177569010	124	1308.53958106040955	\N	new lead	sanford skylar 	12	\N	\N	2094
2017-05-23 21:27:25.855579+00	2017-05-23 21:49:26.253271+00	5337	missed				+18176889781		32	2017-05-23 21:27:25.854218	2017-05-23 21:27:57.821309	CA29e765ab79cb5f3b1defd57a682d82c0	\N	\N			0	inbound	+18177569010	124	368.788092136383057	\N	new lead	sanford skylar 	12	\N	\N	2094
2017-05-23 21:28:05.171076+00	2017-05-23 21:49:31.562475+00	5338	missed				+18176889781		25	2017-05-23 21:28:05.169615	2017-05-23 21:28:30.612439	CAbadba457ccf92a3736a47de2e21840f9	\N	\N			0	inbound	+18177569010	124	1264.93439102172852	\N	new lead	sanford skylar 	12	\N	\N	2094
2017-05-17 14:39:01.517813+00	2017-08-17 14:35:21.045234+00	5143	completed				+18176889781		99	2017-05-17 14:39:01.514105	2017-05-17 14:40:40.786512	CAce9d40da5da8f339f83143f9d3c69960	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE514e8938f8043605ad08d0be18ee711a	0	inbound	+18177569010	124	20.8861238956451416	\N	new lead	sanford skylar 	12	\N	\N	2094
2017-05-19 20:49:41.524421+00	2017-08-17 14:35:21.045248+00	5236	completed				+18176889781		14	2017-05-19 20:49:41.522324	2017-05-19 20:49:55.481519	CA8e0bd69ead9b1d3cb5cb7bbe4e1fd051	\N	\N			0	inbound	+18177569010	124	5.22682309150695801	\N	new lead	sanford skylar 	12	\N	\N	2094
2017-05-19 20:50:32.208155+00	2017-08-17 14:35:21.045255+00	5237	completed				+18176889781		53	2017-05-19 20:50:32.206309	2017-05-19 20:51:25.698192	CA90d8a1130962fb98c93836696f5b5a4c	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REf919f7404bb70df7fa170872564250e6	0	inbound	+18177569010	124	6.06251811981201172	\N	new lead	sanford skylar 	12	\N	\N	2094
2017-05-23 21:06:32.619311+00	2017-08-17 14:35:21.045313+00	5336	completed				+18176889781		629	2017-05-23 21:06:32.618085	2017-05-23 21:17:01.838361	CAdb0aa255791fa504d2637a56361cbe63	\N	\N			0	inbound	+18177569010	124	43.7673099040985107	\N	new lead	sanford skylar 	12	\N	\N	2094
2017-09-20 22:02:56.057866+00	2017-09-20 22:04:17.985559+00	6409	completed				+16789973573		82	2017-09-20 22:02:56.055916	2017-09-20 22:04:17.970457	CA495834a4c6fb4efe10ff5b629ec845e5	\N	153			0	inbound	+17707665732	133	10.5878639221191406	\N	new lead		13	\N	\N	2096
2017-09-21 14:22:46.447015+00	2017-09-21 14:23:10.939001+00	6416	completed				+16789973573		24	2017-09-21 14:22:46.44496	2017-09-21 14:23:10.924408	CAee006142d16aa701b2ee2bbbaa5ebb41	\N	153			0	inbound	+17707665732	133	6.56510114669799805	\N	new lead		13	\N	\N	2096
2017-12-05 23:00:20.971954+00	2017-12-05 23:14:44.081387+00	7615	completed				+18133891172		860	2017-12-05 23:00:20.969148	2017-12-05 23:14:40.940271	CAf65c704b172381f509bd1f49690efc15	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE01aa0acbfbf5d9f1ea3991b02dbaca62	0	inbound	+18558645656	136	2.50808906555175781	\N	new lead		15	\N	\N	2097
2017-07-03 15:26:17.498158+00	2017-07-03 15:32:32.035815+00	5711	missed				+16784632847		42	2017-07-03 15:26:17.496277	2017-07-03 15:26:59.026541	CAa70b4424b01cf80c1b5781a54f5decaa	\N	\N			0	inbound	+17704009016	132	\N	\N	new lead		13	\N	\N	2100
2016-11-06 19:38:20.312442+00	2016-11-06 19:38:20.360127+00	2772	missed	Thomas	Campbell	tomcampbell391@yahoo.com	+19402552648		\N	2016-11-06 19:38:20.310485	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2101
2017-10-04 15:02:44.484994+00	2017-10-04 15:09:21.959651+00	6575	completed	Deidre	Davis	deidredavis58@yahoo.com	+16785247834		26	2017-10-04 15:02:44.483539	2017-10-04 15:07:44.528363	CAafb7d2a9839088d82ec6a993ca7b9f09	0427608a-ae09-4db0-a1e8-374423ee28c3	153			1	outbound	+17704009016	\N	13.1477060317993164	{}	new lead		13	\N	\N	2102
2017-08-01 16:18:23.650091+00	2017-08-01 16:23:08.250797+00	5910	completed	Robert 	Stanford	dennisstanford54@gmail.com	+16788789743		266	2017-08-01 16:18:23.648542	2017-08-01 16:23:06.881691	CA9b6ea6d88b8dffad998f875808df8e01	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE0a2a39d5d768b9d052836c220bc61aed	1	outbound	+17704009016	\N	16.6514699459075928	{}	new lead		13	\N	\N	2103
2017-04-18 17:45:14.230242+00	2017-11-29 18:38:49.805478+00	4048	completed				+12146931777		131	2017-04-18 17:45:14.227525	2017-04-18 17:47:25.60441	CAedf1a96e1c81744e8bdc1526e16eb0c9	\N	\N			0	inbound	+12147122250	\N	4.87934303283691406	\N	new lead	ibe mike       	9	\N	\N	3527
2016-08-30 23:31:00.013463+00	2016-08-31 14:43:00.567311+00	1822	missed	John	Peyton	justin.peyton@yahoo.com	+15137209650		\N	2016-08-30 23:31:00.012454	\N		25d0200e-983d-4413-94ae-eb664b99711c	\N			0	outbound	+18556311490	\N	\N	{}	application submitted - credit union		1	\N	\N	2104
2016-08-30 23:41:17.566557+00	2016-08-31 14:43:00.578284+00	1823	missed	John	Peyton	justin.peyton@yahoo.com	+15137209650		\N	2016-08-30 23:41:17.565003	\N		25d0200e-983d-4413-94ae-eb664b99711c	\N			0	outbound	+18556311490	\N	\N	{}	application submitted - credit union		1	\N	\N	2104
2017-08-15 20:35:31.683215+00	2017-08-15 20:38:43.124218+00	6040	completed	Michael 	Collins 	Michaelbcollins316@gmail.com	+14046716772		173	2017-08-15 20:35:31.681725	2017-08-15 20:38:42.553939	CA86f8e71fc65d717aac27ba425408d4fc	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REc7a5b7e5ad87562ae038cf58a6edd476	1	outbound	+17704009016	\N	16.6949419975280762	{}	new lead		13	\N	\N	2105
2017-08-25 18:38:32.810874+00	2017-08-25 18:45:35.956659+00	6163	completed				+18565065122		423	2017-08-25 18:38:32.807791	2017-08-25 18:45:35.942126	CA3acbd3251b8d8efc0b3e55dbbc7acd92	\N	154			0	inbound	+17707665699	134	1.0467078685760498	\N	new lead		13	\N	\N	2107
2017-07-24 17:04:52.748313+00	2017-07-24 17:05:09.992961+00	5841	completed				+13344514174		17	2017-07-24 17:04:52.745967	2017-07-24 17:05:09.28697	CA9dfed99728c451942322eec85a6b7f34	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE0274000177a0aa0978e1077d26ff5670	0	inbound	+17704009016	132	10.4976959228515625	\N	new lead		13	\N	\N	2108
2017-05-06 20:53:53.662256+00	2017-11-29 18:38:49.810216+00	4815	completed				+12145546979		79	2017-05-06 20:53:53.660733	2017-05-06 20:55:13.061643	CA275068aeda124a2a09553435aee25e32	\N	127			0	inbound	+12147122250	\N	1.24764513969421387	\N	new lead	brad brrad     	9	\N	\N	2109
2017-05-06 20:55:06.448737+00	2017-11-29 18:38:49.810223+00	4816	completed				+12145546979		89	2017-05-06 20:55:06.446932	2017-05-06 20:56:35.440517	CA5df9e3c0cd392db771c7137a602c677b	\N	99			0	inbound	+12147122250	\N	7.8569328784942627	\N	new lead	brad brrad     	9	\N	\N	2109
2017-03-23 19:57:13.399207+00	2017-11-29 18:38:53.212853+00	3562	completed				+18179896181		940	2017-03-23 19:57:13.397088	2017-03-23 20:12:53.039382	CA22004be2cb74ddba36ca95678aa1a5ba	\N	99			0	inbound	+12146922088	\N	5.52141118049621582	\N	new lead	dallas  tx	9	\N	\N	2111
2017-05-02 21:01:00.846604+00	2017-11-29 18:38:49.808903+00	4602	completed				+14693009669		77	2017-05-02 21:01:00.843679	2017-05-02 21:02:18.246807	CA392e32dd91ac81818cf5d8296fa5eada	\N	127			0	inbound	+12147122250	\N	1.84809494018554688	\N	new lead	dallas  tx	9	\N	\N	2113
2017-10-25 15:49:56.538849+00	2017-11-29 18:31:37.369369+00	6804	missed				+14186242424		9	2017-10-25 15:49:56.536269	2017-10-25 15:50:05.332754	CA1ea244066f4eb1ee2d0e9283562fc303	\N	\N			0	inbound	+18555472453	\N	\N	\N	new lead		1	\N	\N	2114
2017-11-10 15:11:11.713219+00	2017-11-10 15:18:01.363662+00	7001	completed	Gracie	Sellers	gracie.sellers16@gmail.com	+16789394676		68	2017-11-10 15:11:11.711976	2017-11-10 15:18:00.841717	CAc70f96fd33c1feb483ea90ef969a88e7	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REbd8d4d7599b61baa12a4be0889cb6b04	3	outbound	+17704009016	\N	340.076501846313477	{}	new lead		13	\N	\N	2115
2017-11-10 15:24:08.264635+00	2017-11-10 15:27:19.738047+00	7002	completed	Gracie	Sellers		+16789394676		190	2017-11-10 15:24:08.261427	2017-11-10 15:27:18.597075	CA6b0c1cf0ee3b07dd7f478ab78a9787d7	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE61c12a98d282b0b30ca5ca5fb1a5e15c	0	inbound	+17704009016	132	14.1995339393615723	\N	new lead		13	\N	\N	2115
2017-01-03 22:24:43.645884+00	2017-01-03 22:25:32.070943+00	3105	completed				+14694469187		48	2017-01-03 22:24:43.644375	2017-01-03 22:25:31.809751	CAe3b47f0ca88db69f419c6924dde15c11	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE8ca01284f7b498a74fcbf0f87e9617c1	0	inbound	+18557240606	49	2.21285581588745117	null	new lead		1	\N	\N	2116
2017-01-03 22:57:52.223576+00	2017-01-03 23:25:31.784948+00	3107	completed				+14694469187		1653	2017-01-03 22:57:52.221442	2017-01-03 23:25:25.298481	CA845143eda85634ab015290405c7e0ad3	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE86617065997ae21784bfbda2d50617a0	0	inbound	+18557240606	49	2.3595120906829834	null	new lead		1	\N	\N	2116
2016-08-01 15:14:44.153824+00	2016-12-10 01:05:18.400722+00	1069	completed				+16109138678		350	2016-08-01 15:14:44.152191	2016-08-01 15:20:33.703946	CA0280fa3f96feec47f0f6e66ea9fb2301	\N	24			0	inbound	+18557088731	\N	1.63952016830444336	null	new lead		3	\N	\N	2117
2016-09-07 22:57:44.943349+00	2016-12-10 01:01:51.440863+00	1955	completed				+16194329060		187	2016-09-07 22:57:44.941934	2016-09-07 23:00:51.817976	CAff22accb1a0e3cc4968374c11f1a89b2	\N	50			0	inbound	+18559693782	\N	1.99676299095153809	null	new lead		3	\N	\N	2118
2017-09-29 18:36:05.763934+00	2017-09-29 18:44:25.696058+00	6539	completed				+14706999346		500	2017-09-29 18:36:05.760194	2017-09-29 18:44:25.693157	CA6c33b4e4560cadcb9f181332ee93854e	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE7b4ebacb3b9a9d8898eaba5a5bd3fd1d	0	inbound	+17707665732	133	395.427623987197876	\N	new lead		13	\N	\N	2126
2017-01-30 20:16:10.551818+00	2017-01-30 20:17:33.038226+00	3143	completed				+18589995633		82	2017-01-30 20:16:10.549912	2017-01-30 20:17:32.509949	CAd79be0963a08fb9fce2fc0574aa1b84b	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REd32d454bdd04e2ed2cdb6f2951589d99	0	inbound	+18557240606	49	2.25600719451904297	null	new lead		1	\N	\N	2129
2017-01-30 20:20:18.27925+00	2017-01-30 20:55:05.75647+00	3144	completed				+18589995633		2084	2017-01-30 20:20:18.277972	2017-01-30 20:55:01.888892	CA13478f087c348f48ed3eb4ae9316f465	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE58bc7852bbbc79c8f4ee753e0b7195d5	0	inbound	+18557240606	49	2.12588906288146973	null	new lead		1	\N	\N	2129
2017-07-15 20:07:48.27952+00	2017-08-17 14:35:21.0456+00	5784	completed				+18179839700		19	2017-07-15 20:07:48.277839	2017-07-15 20:08:07.29514	CA24e3467b6ffbd4887b582dc07edb5ae2	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REac194734f49a4a54b5740480006d8b26	0	inbound	+18177569010	124	5.36762595176696777	\N	new lead	lady lady	12	\N	\N	2132
2017-03-31 21:17:59.166443+00	2017-11-29 18:38:53.213213+00	3648	completed				+19038155395		185	2017-03-31 21:17:59.164656	2017-03-31 21:21:04.066124	CAf470aea43b35c57ba47b41ca4e7398c6	\N	\N			0	inbound	+12146922088	\N	4.5866091251373291	\N	new lead	simpson julia  	9	\N	\N	2133
2017-09-16 23:34:29.903673+00	2017-09-16 23:34:30.061675+00	6381	missed	Wesley	Cooper	1981coopdavil@gmail.com	+17068864311		\N	2017-09-16 23:34:29.90223	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	2136
2016-07-14 14:19:53.595143+00	2016-07-14 20:35:54.669893+00	868	completed	Jacalyn	Griffith	mgchamp147@aol.com	+13307193713		13	2016-07-14 14:19:53.593936	2016-07-14 14:20:26.318561	CA93decc2efab9a7fa7ec2e8c685dd5d0b	ee869226-e246-4ab4-aaaa-e9403e2ddd39	\N			1	outbound	+18555983683	\N	18.5952200889587402	{}	new lead		1	\N	\N	2137
2017-11-30 23:24:53.738369+00	2017-11-30 23:25:29.589741+00	7418	completed	eugene	peoples	lbr33zy22@gmail.com	+16786000925		20	2017-11-30 23:24:53.736634	2017-11-30 23:25:29.588568	CA09f7bada9e5f8561afdd8cc06bc20e98	0427608a-ae09-4db0-a1e8-374423ee28c3	150			1	outbound	+17704009016	\N	13.7661499977111816	{}	new lead		13	\N	\N	2139
2017-05-10 14:53:42.537255+00	2017-11-29 18:38:49.810775+00	4947	completed				+14407524999		160	2017-05-10 14:53:42.534886	2017-05-10 14:56:22.365849	CA2807dcc2564b1286401601501d6a275c	\N	124			0	inbound	+12147122250	\N	1.42184996604919434	\N	new lead	cell phone   oh	9	\N	\N	2140
2017-05-10 19:11:13.851837+00	2017-11-29 18:38:49.810875+00	4970	completed				+14407524999		81	2017-05-10 19:11:13.850351	2017-05-10 19:12:35.022002	CA94ffebcef3aeaf15e62baf6918e0064e	\N	127			0	inbound	+12147122250	\N	2.08832120895385742	\N	new lead	cell phone   oh	9	\N	\N	2140
2017-12-07 17:38:47.425687+00	2017-12-07 18:02:55.357911+00	7687	completed				+16184195380		1445	2017-12-07 17:38:47.42318	2017-12-07 18:02:52.326838	CA7e326417b05530798a1a1e4c7c1a3b04	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE730cc798e42679766347d2701903cc26	0	inbound	+18558645656	136	2.5413060188293457	\N	new lead		15	\N	\N	2141
2017-04-18 19:14:17.228148+00	2017-11-29 18:38:49.805485+00	4050	completed				+17866478430		57	2017-04-18 19:14:17.223064	2017-04-18 19:15:14.628329	CAbbd16ce956b0a3888b20ab45b3fd8457	\N	107			0	inbound	+12147122250	\N	2.37085700035095215	\N	new lead	wireless caller	9	\N	\N	1233
2017-10-12 16:05:51.161425+00	2017-10-12 16:06:26.816904+00	6677	completed	Angelina 	Fletcher 	angelina.charles5916@gmail.com	+17069888686		23	2017-10-12 16:05:51.159918	2017-10-12 16:06:25.539789	CAa40efd966650c4c813f0945347751a8a	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REaa3e2e374eed07c0298451d8df5733ad	1	outbound	+17704009016	\N	10.7939870357513428	{}	new lead		13	\N	\N	2142
2017-07-17 19:00:55.978195+00	2017-08-17 14:35:21.045608+00	5791	completed				+18134768193		293	2017-07-17 19:00:55.976151	2017-07-17 19:05:48.515957	CA05a7661f21e5f1fe4d86998960f2c5aa	\N	\N			0	inbound	+18177569010	124	10.7357809543609619	\N	new lead	gibson tia	12	\N	\N	2143
2017-07-17 19:06:32.280854+00	2017-07-17 19:28:22.283344+00	5792	missed				+18134768193		7	2017-07-17 19:06:32.277729	2017-07-17 19:06:39.587437	CAfe38b61dbdb9f961d9436aeb40e43369	\N	\N			0	inbound	+18177569010	124	1290.38380908966064	\N	new lead	gibson tia	12	\N	\N	2143
2017-05-10 21:07:05.361837+00	2017-11-29 18:38:49.811012+00	4985	completed				+12148691599		74	2017-05-10 21:07:05.360046	2017-05-10 21:08:19.681035	CA0f5dcf9e7ab1ea584755075f7394e7d2	\N	125			0	inbound	+12147122250	\N	1.18586492538452148	\N	new lead	sanderson loren	9	\N	\N	2144
2017-05-10 21:08:14.474589+00	2017-11-29 18:38:49.81102+00	4986	completed				+12148691599		76	2017-05-10 21:08:14.473329	2017-05-10 21:09:30.000036	CA3b7132e4898d4a499a1fb2047914017a	\N	107			0	inbound	+12147122250	\N	3.55553102493286133	\N	new lead	sanderson loren	9	\N	\N	2144
2017-05-12 23:22:59.610097+00	2017-11-29 18:38:49.811423+00	5051	completed				+12148691599		75	2017-05-12 23:22:59.607929	2017-05-12 23:24:14.922897	CAb5772cdd992bcd166f34709a8bceb794	\N	125			0	inbound	+12147122250	\N	2.06833600997924805	\N	new lead	sanderson loren	9	\N	\N	2144
2016-06-25 21:19:19.117603+00	2016-06-27 12:47:51.919225+00	466	completed	Ian	Dalton	Iandalton@att.net	+16143324602		\N	2016-06-25 21:19:19.116411	\N		d33a481e-e0af-47ac-9f90-260f20b69de5	\N			0	outbound	+18552959002	\N	\N	{}	new lead		1	\N	\N	2145
2017-09-07 13:40:14.825594+00	2017-09-07 13:43:28.144773+00	6282	completed	Crystal	Pressley	Crystalpressley98@gmail.com	+16788035113		184	2017-09-07 13:40:14.823727	2017-09-07 13:43:26.792599	CA130fb0821b40cfdf0a1ad9df2631d123	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE0bff030cc043a78da07c1823bdb78006	1	outbound	+17704009016	\N	17.0027081966400146	{}	new lead		13	\N	\N	2147
2016-08-26 15:54:40.833436+00	2016-12-10 01:01:00.199796+00	1788	completed				+18582744804		160	2016-08-26 15:54:40.831576	2016-08-26 15:57:20.922595	CA62a373ca4c443a96072538cded374acd	\N	57			0	inbound	+18557860909	\N	4.72182512283325195	null	new lead		3	\N	\N	2148
2017-12-04 16:40:54.910629+00	2017-12-04 16:40:54.947983+00	7538	missed	Thomas Peters	Peters	peters0481@att.net	+15053224716		\N	2017-12-04 16:40:54.908778	\N		243bc1c1-c430-4ccb-b9d9-71662ebbb896	\N			0	outbound	+18558645656	\N	\N	{}	new lead		15	\N	\N	2149
2017-12-04 16:45:55.296952+00	2017-12-04 17:07:05.830709+00	7540	completed	Thomas Peters	Peters		+15053224716		1267	2017-12-04 16:45:55.295013	2017-12-04 17:07:02.662782	CA64ab0c363c1cd8367f7bbfc4154586d3	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REfe0cafc445bc911af0f760bc19e719ac	0	inbound	+18558645656	136	3.45821881294250488	\N	new lead		15	\N	\N	2149
2017-10-19 04:54:30.154155+00	2017-10-19 04:54:30.223093+00	6747	missed	Debra	Bennett	debrab931@gmail.com	+17063806174		\N	2017-10-19 04:54:30.151966	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	2150
2017-12-04 18:43:14.495881+00	2017-12-04 18:47:53.62593+00	7548	completed	Francheska 	Tyler 	Frankieethridge1994@gmail.com	+17065387571		264	2017-12-04 18:43:14.494271	2017-12-04 18:47:53.599045	CA623c07b98969ac81ea64695bb3e4faba	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE968290d44de8457a51a6f96b0b84fcf7	1	outbound	+17704009016	\N	12.9024691581726074	{}	new lead		13	\N	\N	2151
2016-11-14 21:27:00.555164+00	2016-11-15 20:40:10.658666+00	2899	missed	Manish	Soni	moneysh.soni@yahoo.com	+15022946671		\N	2016-11-14 21:27:00.554099	\N		25d0200e-983d-4413-94ae-eb664b99711c	\N			0	outbound	+18556311490	\N	\N	{}	application submitted - credit union		1	\N	\N	2152
2016-11-14 21:15:05.022972+00	2016-11-15 20:40:10.672667+00	2898	missed	Manish	Soni	moneysh.soni@yahoo.com	+15022946671		\N	2016-11-14 21:15:05.021247	\N		25d0200e-983d-4413-94ae-eb664b99711c	\N			0	outbound	+18556311490	\N	\N	{}	application submitted - credit union		1	\N	\N	2152
2016-11-14 21:12:04.648976+00	2017-11-29 18:31:10.262617+00	2896	completed				+15022946671		898	2016-11-14 21:12:04.64761	2016-11-14 21:27:02.927469	CAb5c794c986f7dad388284cb8967116f6	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE4c5f0b89848397b139fcb0d8240c2f75	0	inbound	+18556311490	\N	7.63765883445739746	null	application submitted - credit union		1	\N	\N	2152
2017-12-16 17:04:18.77959+00	2017-12-16 17:16:36.030405+00	7923	completed				+17134341576		734	2017-12-16 17:04:18.777722	2017-12-16 17:16:32.789641	CA18c2ce6b9eeaafc4e0fd7360a49e47a1	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REbb44845a8039e949c543c05ddf02fee6	0	inbound	+18558645656	136	2.17493200302124023	\N	new lead		15	\N	\N	2153
2017-12-01 20:46:34.733461+00	2017-12-01 21:29:34.527896+00	7449	completed				+16027224255		2576	2017-12-01 20:46:34.731194	2017-12-01 21:29:31.179955	CAb4f63bdc75266ad8d323f10c984bb7ca	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE188000c95dca4df3d1f7b0010e6dde0a	0	inbound	+18558645656	136	3.2526710033416748	\N	new lead		15	\N	\N	2154
2018-02-08 22:04:34.318089+00	2018-02-08 22:04:46.190202+00	8208	missed				+17739699892		12	2018-02-08 22:04:34.316825	2018-02-08 22:04:46.18779	CA271ef738609bd484ae57702d9d5dec00	\N	\N			0	inbound	+13367394103	143	\N	\N	new lead	chicago  il	24	\N	\N	2158
2018-02-08 21:55:36.920641+00	2018-02-08 21:55:51.939225+00	8207	completed				+17739699892		15	2018-02-08 21:55:36.917631	2018-02-08 21:55:51.935816	CA6fb62c16cb35355e31e88dacd095e42e	\N	175			0	inbound	+13367394103	143	7.35600686073303223	\N	new lead	chicago  il	24	\N	\N	2158
2017-06-26 12:30:55.419924+00	2017-06-26 12:30:55.462213+00	5654	missed	Priscilla	Arthur	Cassandrarichie35@gmail.com	+14703436801		\N	2017-06-26 12:30:55.417655	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	2159
2017-04-13 15:23:35.221467+00	2017-04-13 15:25:36.55214+00	3858	completed				+17133770121		119	2017-04-13 15:23:35.21965	2017-04-13 15:25:34.64219	CA0b02373946bce46dfd0cad7bc03a24c7	\N	132		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE00af821d269765529d2a807d1e33f5e8	0	inbound	+18172104002	126	13.7688560485839844	\N	new lead	ateya mervat	12	\N	\N	2161
2017-09-02 16:51:00.183744+00	2017-09-02 16:56:59.234024+00	6241	missed	Delicia	Smith	Delicia198726@gmail.com	+16783961301		20	2017-09-02 16:51:00.182485	2017-09-02 16:56:59.231712	CAfdec55c4d8ec84f9cf40bbeb075082b4	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			3	outbound	+17704009016	\N	338.14903998374939	{}	new lead		13	\N	\N	2162
2016-11-18 19:44:14.240313+00	2016-12-10 01:05:18.401239+00	2945	completed				+16103507681		147	2016-11-18 19:44:14.238849	2016-11-18 19:46:41.107465	CAd2c5b9093359a092199b567c1efd3344	\N	24			0	inbound	+18557088731	\N	2.42824888229370117	null	new lead		3	\N	\N	2163
2017-11-06 18:33:40.241188+00	2017-11-06 18:34:57.515959+00	6949	completed	Loretta	Winborne	Lorettawinborne@outlook.com	+14047590602		63	2017-11-06 18:33:40.239704	2017-11-06 18:34:57.195183	CA610fb0182af48eaae3a933bf8856eb49	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REaf373b2bfe108b5c581bf963a8316ac4	1	outbound	+17704009016	\N	19.7190179824829102	{}	new lead		13	\N	\N	2165
2017-05-20 00:13:15.99879+00	2017-11-29 18:38:49.812384+00	5247	completed				+19033168369		1510	2017-05-20 00:13:15.996395	2017-05-20 00:38:25.508233	CAfbc3c762f7e7bf1de31b60870c4ec926	\N	133			0	inbound	+12147122250	\N	4.91604399681091309	\N	new lead	john g enloe dd	9	\N	\N	2166
2017-05-01 00:35:41.763081+00	2017-11-29 18:38:53.214859+00	4487	completed				+19722018925		41	2017-05-01 00:35:41.759558	2017-05-01 00:36:22.420774	CA939889dd9d12123f463636fe62f17672	\N	105			0	inbound	+12146922088	\N	6.78666496276855469	\N	new lead	williams kevin	9	\N	\N	2167
2017-03-10 17:27:30.084185+00	2017-11-29 18:31:05.368989+00	3375	missed				+18027341261		38	2017-03-10 17:27:30.082234	2017-03-10 17:28:07.74752	CA8e22a452b12167a7745567e89c76bfa2	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE2134cab74873d59c4770160b848b57cd	0	inbound	+18557824539	\N	\N	\N	new lead		1	\N	\N	2170
2017-08-25 15:12:42.842372+00	2017-08-25 15:21:52.164274+00	6159	completed				+16789141827		549	2017-08-25 15:12:42.840393	2017-08-25 15:21:52.161974	CAae858d331995525c8f6ab1e1734cff43	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE7ccbd0489fd3740128833613e329e87a	0	inbound	+17707665732	133	367.413728952407837	\N	new lead		13	\N	\N	2174
2017-08-25 20:23:21.467063+00	2017-08-25 20:25:01.589346+00	6165	completed				+16789141827		100	2017-08-25 20:23:21.464799	2017-08-25 20:25:01.57456	CA8a8101e293054b97ef63189a1051660f	\N	152			0	inbound	+17707665732	133	18.6861989498138428	\N	new lead		13	\N	\N	2174
2016-11-06 22:56:35.037143+00	2016-11-06 22:56:35.05992+00	2777	missed	LEANDRO	BISLIG	lbislig@yahoo.com	+19729740914		\N	2016-11-06 22:56:35.036064	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2178
2016-11-03 22:34:46.017477+00	2016-11-03 22:34:46.036964+00	2673	missed	Austin	Koepfer	akoepfer0103@gmail.com	+16232023128		\N	2016-11-03 22:34:46.016684	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2179
2017-04-10 15:05:21.40103+00	2017-05-17 15:41:07.224313+00	3765	completed				+19726467013		45	2017-04-10 15:05:21.399108	2017-04-10 15:06:06.483013	CA28582ca5750f97b34a9072303a9a1c66	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REe9fa9a9a7e53e187f4e32f2830d2388e	0	inbound	+18177569010	124	12.0536589622497559	\N	new lead	la familia insu	12	\N	\N	2180
2016-09-28 17:51:18.11806+00	2016-11-09 15:42:56.351473+00	2100	completed				+13027504959		234	2016-09-28 17:51:18.113728	2016-09-28 17:55:11.926841	CAaf61cecbe25a006ac83c3b8eb1178244	\N	37			0	inbound	+18556371303	\N	2.34479093551635742	null	new lead		3	\N	\N	2181
2017-04-21 02:23:46.813427+00	2017-04-21 02:24:59.851852+00	4172	completed				+18175850930		73	2017-04-21 02:23:46.810978	2017-04-21 02:24:59.848169	CA0ec9ba6b112bc00b27126ac3674b360c	\N	131		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE36a356d3af753b33cde0e0b50c8f6a5f	0	inbound	+18172104002	126	37.9323160648345947	\N	new lead	keeble david	12	\N	\N	2182
2017-05-03 17:12:42.510399+00	2017-11-29 18:38:49.80931+00	4642	completed				+19188526264		288	2017-05-03 17:12:42.508054	2017-05-03 17:17:30.094256	CA03e4a884608f9fcd4e58c4fb54be0a2d	\N	\N			0	inbound	+12147122250	\N	3.87638092041015625	\N	new lead	asare maxwell	9	\N	\N	2184
2017-05-24 18:52:25.226792+00	2017-11-29 18:38:49.813186+00	5369	completed				+12032677700		67	2017-05-24 18:52:25.224697	2017-05-24 18:53:32.060963	CAa72aea8521042f9312eef75b6484074b	\N	125			0	inbound	+12147122250	\N	1.21188592910766602	\N	new lead	premier financial svc inc	9	\N	\N	2186
2017-05-24 18:53:41.542483+00	2017-11-29 18:38:49.813203+00	5370	completed				+12032677700		47	2017-05-24 18:53:41.540919	2017-05-24 18:54:28.457578	CAe494a6708707c00cf6071c96b1559077	\N	105			0	inbound	+12147122250	\N	2.99065780639648438	\N	new lead	premier financi	9	\N	\N	2186
2017-05-26 13:59:25.550012+00	2017-11-29 18:38:49.813578+00	5425	completed				+12032677700		67	2017-05-26 13:59:25.547977	2017-05-26 14:00:33.044728	CAf3a69465563f30acb20dfaf8a4696ecb	\N	125			0	inbound	+12147122250	\N	1.94927501678466797	\N	new lead	premier financial svc inc	9	\N	\N	2186
2017-05-26 14:00:32.830646+00	2017-11-29 18:38:49.813585+00	5426	completed				+12032677700		67	2017-05-26 14:00:32.82798	2017-05-26 14:01:39.877749	CAee97691730a4e3c78b1fa6a3a621f1fc	\N	103			0	inbound	+12147122250	\N	11.5118520259857178	\N	new lead	premier financial svc inc	9	\N	\N	2186
2017-05-23 15:15:56.030561+00	2017-11-29 18:29:46.631465+00	5312	completed				+19149994687		420	2017-05-23 15:15:56.02871	2017-05-23 15:22:56.501135	CA8af311a8992f566a0ce7c0bc58050ac4	\N	144		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REa7da9c3e8ce9b76abecceafc9af6e14d	0	inbound	+18446671613	\N	7.60341596603393555	\N	new lead		1	\N	\N	2188
2017-12-02 14:25:42.392603+00	2017-12-02 14:29:13.858958+00	7474	completed				+17705402100		211	2017-12-02 14:25:42.390661	2017-12-02 14:29:13.842868	CAca73e5856516f961cdf8857242c08001	\N	153			0	inbound	+17707665732	133	11.927250862121582	\N	new lead	norcross  ga	13	\N	\N	2189
2016-08-12 08:27:46.321844+00	2016-08-16 19:32:06.19221+00	1433	missed	Carlos 	Hernandez	thernan7@gmail.com	+16616736641		\N	2016-08-12 08:27:46.320551	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - autopay		1	\N	\N	2191
2016-08-11 18:57:34.36635+00	2017-11-29 18:31:37.368846+00	1421	missed				+16616736641		55	2016-08-11 18:57:34.364763	2016-08-11 18:58:29.25101	CAc7f5b21a35cbbac859c816edfceaae9d	\N	\N			0	inbound	+18555472453	\N	31.4584710597991943	null	application submitted - autopay		1	\N	\N	2191
2017-04-28 21:18:11.316592+00	2017-11-29 18:38:49.807385+00	4453	completed				+1117146715700		61	2017-04-28 21:18:11.314607	2017-04-28 21:19:12.789646	CA66d27da1771e6f8c45d8f6a35a6a1e42	\N	99			0	inbound	+12147122250	\N	2.38080286979675293	\N	new lead		9	\N	\N	2192
2016-10-06 17:45:08.381723+00	2016-11-09 15:44:25.869289+00	2218	completed				+13026234710		62	2016-10-06 17:45:08.380236	2016-10-06 17:46:10.004766	CA54206f8a43798ea81608c5cbffc43016	\N	34			0	inbound	+18555122969	\N	2.52061200141906738	null	new lead		3	\N	\N	2194
2016-10-18 16:37:59.301552+00	2016-12-10 01:05:18.401182+00	2313	completed				+14843691756		309	2016-10-18 16:37:59.299929	2016-10-18 16:43:08.501525	CA1a62e1c54adfc0dd705dce9ce1693a22	\N	24			0	inbound	+18557088731	\N	2.29944491386413574	null	new lead		3	\N	\N	2195
2017-12-13 21:07:16.532883+00	2017-12-13 21:17:10.751044+00	7856	completed				+19043250492		591	2017-12-13 21:07:16.53089	2017-12-13 21:17:07.243218	CA0baccd9eadb854b5f7d96cf897c4c48e	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE8f51b28c53bf6fbb048243d1fedc2d5b	0	inbound	+18558645656	136	2.67397785186767578	\N	new lead		15	\N	\N	2196
2017-04-26 23:20:44.289202+00	2017-05-17 15:41:07.224386+00	4350	completed				+19722411040		62	2017-04-26 23:20:44.287626	2017-04-26 23:21:46.17649	CA54b622bf5e1cd1e00309661ba04e0af0	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REd02dfd8eae1cf57fb2ce741a3678f680	0	inbound	+18177569010	124	9.92119503021240234	\N	new lead	office lim     	12	\N	\N	2197
2017-04-29 19:39:58.147474+00	2017-11-29 18:38:49.807523+00	4474	completed				+19544755904		89	2017-04-29 19:39:58.145254	2017-04-29 19:41:27.275396	CA0410a526fe6b63587892209bbaff9e8b	\N	126			0	inbound	+12147122250	\N	1.1932981014251709	\N	new lead	afs acceptance	9	\N	\N	2199
2017-12-04 23:57:23.40821+00	2017-12-14 15:19:36.576597+00	7569	retry-pending	John	Autrey	johnautrey72@gmail.com	+17064100045		0	2017-12-04 23:57:23.406179	2017-12-04 23:57:49.508419	CA16051a40352263ffa44023fe678b2c73	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			1	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	2200
2017-12-14 14:00:00.123394+00	2017-12-14 15:19:36.566172+00	7861	completed	John	Autrey	johnautrey72@gmail.com	+17064100045		243	2017-12-14 14:00:00.121957	2017-12-14 14:04:18.515818	CAc88c22d2a7a2cc659b9b4f4dc8e6ea3f	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE98501a88e2ef32c9c390a2e39d2b9a20	1	outbound	+17704009016	\N	17.8713259696960449	{}	select status		13	\N	\N	2200
2016-10-17 16:12:14.508438+00	2016-12-10 00:57:42.908386+00	2305	completed				+14406391234		10	2016-10-17 16:12:14.506732	2016-10-17 16:12:24.624851	CAbb0329a851a555f0b5cad7b6dfee93f3	\N	31			0	inbound	+18555435678	\N	2.07635998725891113	null	new lead		3	\N	\N	2201
2017-07-13 00:46:23.149873+00	2017-07-13 01:08:56.748084+00	5767	missed				+18179865045		56	2017-07-13 00:46:23.147789	2017-07-13 00:47:19.285516	CA69d9dab4fcd6c7e7aaf9a9d978395317	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE8e375acdfc5c4f9b545f0730e1774310	0	inbound	+18177569010	124	1331.69265699386597	\N	new lead	sparks clayton	12	\N	\N	2204
2017-12-19 17:26:35.844998+00	2017-12-19 17:35:58.88311+00	8003	completed				+14403561329		560	2017-12-19 17:26:35.843265	2017-12-19 17:35:55.80356	CA9370eb72c12274002bb3d5c5d9c19bf9	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REa8ae4a954a552891a8cea9ba8c3fc459	0	inbound	+18558645656	136	2.84668707847595215	\N	new lead		15	\N	\N	2206
2017-12-12 15:46:48.829804+00	2017-12-12 15:47:53.262501+00	7811	completed	CLIENT SERVICES			+16787925701		63	2017-12-12 15:46:48.828029	2017-12-12 15:47:51.909921	CA684eeec871d682a227524ed536a587ec	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE7e9374bc763255c97a49527f83ef873e	0	inbound	+17704009016	132	12.4369430541992188	\N	select status	sms	13	\N	\N	2207
2017-12-12 19:09:13.735715+00	2017-12-12 19:10:25.011355+00	7820	completed	CLIENT SERVICES			+16787925701		70	2017-12-12 19:09:13.733974	2017-12-12 19:10:23.758964	CAeb69e68f6e3c1b89715435460c7578f7	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REae0d767047c6cb5a62786f4b4ff34abe	0	inbound	+17704009016	132	12.4426310062408447	\N	select status	sms	13	\N	\N	2207
2017-12-12 19:10:34.746162+00	2017-12-12 19:16:40.290994+00	7821	completed	CLIENT SERVICES			+16787925701		364	2017-12-12 19:10:34.744636	2017-12-12 19:16:39.073787	CAbe2e78740a129136ca2b62f786c2f6fe	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE42f75f06243455199080930c4073205e	0	inbound	+17704009016	132	319.568138122558594	\N	select status	sms	13	\N	\N	2207
2017-08-08 19:34:37.666253+00	2017-11-17 17:21:37.27871+00	5970	completed				+16787925701		602	2017-08-08 19:34:37.664055	2017-08-08 19:44:39.742617	CAb27d447ce71f5f33e91e62486a35f7dc	\N	150			0	inbound	+17704009016	132	345.34716010093689	\N	select status		13	\N	\N	2207
2017-11-09 16:52:08.781999+00	2017-11-17 17:21:37.278719+00	6997	completed				+16787925701		69	2017-11-09 16:52:08.779836	2017-11-09 16:53:17.978718	CA022f485b2b2a8f0cb35b7d539dd83a1f	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE8aae9f6971dfafe0459c8292c55779db	0	inbound	+17704009016	132	15.1526200771331787	\N	select status		13	\N	\N	2207
2017-11-17 17:12:37.611989+00	2017-11-17 17:21:37.265703+00	7105	completed	CLIENT SERVICES			+16787925701		349	2017-11-17 17:12:37.610237	2017-11-17 17:18:26.505891	CAa1e1289dbdccecda5a4304a13a8730ee	\N	150			0	inbound	+17704009016	132	326.45612907409668	\N	select status		13	\N	\N	2207
2017-08-04 14:51:52.840484+00	2017-11-17 17:21:37.278686+00	5932	completed				+16787925701		78	2017-08-04 14:51:52.838306	2017-08-04 14:53:10.438387	CAec4b460a2f7c745308bb7c2d37dbbfd4	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REa8fa79bf9360a4dde2dd60582f74b6a8	0	inbound	+17704009016	132	15.7663788795471191	\N	select status		13	\N	\N	2207
2017-04-18 15:40:34.49656+00	2017-11-29 18:38:49.805434+00	4037	completed				+14695791673		220	2017-04-18 15:40:34.494667	2017-04-18 15:44:14.866297	CA6e7e95644aa03a8961164d3abdab2728	\N	\N			0	inbound	+12147122250	\N	4.96955704689025879	\N	new lead	chandrasiri pra	9	\N	\N	2210
2017-05-09 17:13:42.04289+00	2017-11-29 18:38:49.810598+00	4908	completed				+14695791673		58	2017-05-09 17:13:42.040141	2017-05-09 17:14:39.560454	CAbb10da9af18b8359f3691bc161653328	\N	124			0	inbound	+12147122250	\N	1.80190777778625488	\N	new lead	chandrasiri pra	9	\N	\N	2210
2017-05-24 18:41:49.733653+00	2017-11-29 18:38:49.813132+00	5365	completed				+14695791673		68	2017-05-24 18:41:49.731425	2017-05-24 18:42:57.908689	CA6145184ba42ffd89f702bd63928ebf7a	\N	125			0	inbound	+12147122250	\N	1.29439091682434082	\N	new lead	chandrasiri pra	9	\N	\N	2210
2017-05-24 18:43:01.74774+00	2017-11-29 18:38:49.81314+00	5366	completed				+14695791673		84	2017-05-24 18:43:01.746373	2017-05-24 18:44:25.688599	CA6929cf16032d17205bc28a31faac8880	\N	124			0	inbound	+12147122250	\N	1.17886495590209961	\N	new lead	chandrasiri pra	9	\N	\N	2210
2017-05-24 18:44:21.666952+00	2017-11-29 18:38:49.813153+00	5367	completed				+14695791673		42	2017-05-24 18:44:21.665243	2017-05-24 18:45:03.449693	CA601de18c1dddd0d00b8a36ad74de8ac7	\N	105			0	inbound	+12147122250	\N	4.4633641242980957	\N	new lead	chandrasiri pra	9	\N	\N	2210
2017-05-24 18:45:17.09322+00	2017-11-29 18:38:49.813169+00	5368	completed				+14695791673		92	2017-05-24 18:45:17.091606	2017-05-24 18:46:48.880305	CAa87c2d5a210d00ce3c5c93fbe0f1d4e5	\N	124			0	inbound	+12147122250	\N	1.16573810577392578	\N	new lead	chandrasiri pra	9	\N	\N	2210
2017-05-24 18:58:07.432059+00	2017-11-29 18:38:49.81322+00	5371	completed				+14695791673		180	2017-05-24 18:58:07.429989	2017-05-24 19:01:07.471031	CAae0cdb407a0406ad82ecb7c26df4be81	\N	133			0	inbound	+12147122250	\N	5.02149200439453125	\N	new lead	chandrasiri pra	9	\N	\N	2210
2017-05-26 22:46:05.797191+00	2017-11-29 18:38:49.813811+00	5459	completed				+14695791673		81	2017-05-26 22:46:05.794951	2017-05-26 22:47:26.68708	CA44cdbb68e6db0ed64de14bbb08696216	\N	127			0	inbound	+12147122250	\N	1.93959879875183105	\N	new lead	chandrasiri pra	9	\N	\N	2210
2017-04-17 15:48:18.26573+00	2017-11-29 18:38:49.805203+00	3985	completed				+14695791673		76	2017-04-17 15:48:18.263075	2017-04-17 15:49:34.165191	CA5c8bfb11299148fbc04cda406e56c9df	\N	125			0	inbound	+12147122250	\N	2.26992678642272949	\N	new lead	chandrasiri pra	9	\N	\N	2210
2017-04-17 15:49:32.086284+00	2017-11-29 18:38:49.80521+00	3986	completed				+14695791673		77	2017-04-17 15:49:32.084612	2017-04-17 15:50:49.526419	CA7de3c613ef51efdaa849ff31da6c2bd1	\N	125			0	inbound	+12147122250	\N	2.21571207046508789	\N	new lead	chandrasiri pra	9	\N	\N	2210
2017-04-17 15:50:42.098841+00	2017-11-29 18:38:49.805225+00	3988	completed				+14695791673		60	2017-04-17 15:50:42.096656	2017-04-17 15:51:41.850692	CAa496d0b1b4dabfd13bde63fee820fc86	\N	107			0	inbound	+12147122250	\N	4.7705988883972168	\N	new lead	chandrasiri pra	9	\N	\N	2210
2017-04-17 15:51:53.951681+00	2017-11-29 18:38:49.805232+00	3989	completed				+14695791673		78	2017-04-17 15:51:53.950039	2017-04-17 15:53:11.587004	CA7155984f3fadc782146c9eafda8fa21c	\N	\N			0	inbound	+12147122250	\N	23.4235281944274902	\N	new lead	chandrasiri pra	9	\N	\N	2210
2016-06-27 18:04:44.144542+00	2017-11-29 18:32:13.820625+00	534	completed	Wayne	Harris		+17082504809		49	2016-06-27 18:04:44.143647	2016-06-27 18:05:33.431276	CA25ab71172c61db16c43a17c283398cb6	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REe6a6dc909dac01e4d106e39f96508d10	0	inbound	+18555983683	\N	14.8962469100952148	null	new lead		1	\N	\N	2215
2016-06-27 18:40:10.264573+00	2016-06-27 18:40:56.986667+00	540	completed				+17082504809		42	2016-06-27 18:40:10.263553	2016-06-27 18:40:56.984733	CA031e5e6ee5289c1b2207b6d0970f03c3	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.40702390670776367	{}	new lead		1	\N	\N	2215
2016-08-05 13:04:56.557621+00	2016-12-09 17:06:53.905759+00	1266	completed				+12158603019		65	2016-08-05 13:04:56.556147	2016-08-05 13:06:01.914023	CA9e67081ca69eb7c2be51ff1a06114d5e	\N	21			0	inbound	+18558021330	\N	3.35756587982177734	null	new lead		3	\N	\N	2216
2017-12-09 18:00:12.242621+00	2017-12-09 18:23:44.810675+00	7745	completed				+16186708178		1409	2017-12-09 18:00:12.240402	2017-12-09 18:23:41.560483	CAf0f4737ca9be23b43b356048790cecea	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REc75107d6232457261badf704066382b5	0	inbound	+18558645656	136	2.34947896003723145	\N	new lead		15	\N	\N	2217
2017-12-09 18:25:49.26201+00	2017-12-09 18:26:21.315752+00	7747	completed				+16186708178		29	2017-12-09 18:25:49.26023	2017-12-09 18:26:18.707224	CA2481b4359b3665ee416dd43acdec3e5c	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE20231cd523443547185cc855340d6543	0	inbound	+18558645656	136	4.56077694892883301	\N	new lead		15	\N	\N	2217
2017-10-11 14:47:54.682284+00	2017-10-11 14:48:21.933082+00	6657	completed				+16783430059		27	2017-10-11 14:47:54.680179	2017-10-11 14:48:21.919396	CA49a8d9ea4f7b693c214b26151f7416cb	\N	150			0	inbound	+17707665732	133	15.405411958694458	\N	new lead		13	\N	\N	2218
2017-10-11 14:53:52.582106+00	2017-10-11 14:59:47.607735+00	6659	completed				+16783430059		355	2017-10-11 14:53:52.580881	2017-10-11 14:59:47.604876	CAbecd49325fa5f8ce14a9a06ab6b0a441	\N	153			0	inbound	+17707665732	133	321.786479949951172	\N	new lead		13	\N	\N	2218
2017-10-11 15:02:09.819962+00	2017-10-11 15:04:41.098068+00	6660	completed				+16783430059		151	2017-10-11 15:02:09.817992	2017-10-11 15:04:41.082496	CA7ee39baaa8b5ca0b8be598d5314d9b8f	\N	150			0	inbound	+17707665732	133	13.9547128677368164	\N	new lead		13	\N	\N	2218
2016-07-20 21:00:12.621079+00	2016-07-22 16:50:49.101823+00	908	completed	Richard	Westfall	falcon0370@yahoo.com	+12163461946		0	2016-07-20 21:00:12.619242	2016-07-20 21:00:38.914671	CAa36c3c1df5bfdfa48d9c3459a3266e47	36dfa45c-0f7c-41c7-b250-561251aebceb	\N			1	outbound	+18556311528	\N	\N	{}	new lead		1	\N	\N	2219
2016-07-21 13:58:16.034249+00	2016-07-22 16:51:54.980299+00	912	completed	Richard	Westfall	falcon0370@yahoo.com	+12163461946	I applies for the AUTO Refinance loan yesterday but after submission realized that I incorrectly listed my gross monthly income.  I took my yearly salary and divided by 26 (pays per year) when it should have been divided by 12 (monthly)  can i correct thi	\N	2016-07-21 13:58:16.031758	\N		d18ed5e2-2c24-449a-a761-a784adea739e	\N			0	outbound	+18556311439	\N	\N	{}	new lead		1	\N	\N	2219
2016-02-12 21:24:57.718126+00	2016-02-12 21:25:32.05663+00	53	missed	Hermie			+10834523156		\N	2016-02-12 21:24:57.716923	\N	CA1159bd60e72a15123f76d42c38e069dd	53da9e33-88fb-4b04-baca-339193fd55f7	2			1	inbound		\N	\N	\N	new lead		1	\N	\N	2220
2016-08-05 21:15:56.869079+00	2017-01-27 21:12:23.812756+00	1289	completed				+16617544128		135	2016-08-05 21:15:56.867786	2016-08-05 21:18:11.925902		\N	\N			0	outbound	+18555343978	48	\N	null	do not contact		1	\N	\N	2221
2017-03-17 15:05:17.766689+00	2017-11-29 18:38:53.212495+00	3472	completed				+18326215613		39	2017-03-17 15:05:17.763487	2017-03-17 15:05:57.243891	CAe6439360bb169d2127af816bbbcdf320	\N	\N			0	inbound	+12146922088	\N	7.88448309898376465	\N	new lead		9	\N	\N	3538
2016-08-01 22:30:48.309205+00	2017-11-29 18:31:37.368349+00	1101	missed				+16617544128		47	2016-08-01 22:30:48.308211	2016-08-01 22:31:35.334062	CA62d7b46607e037a59b397a931883c541	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE94071803d72a3fe8737f8ff36c4d4eae	0	inbound	+18555472453	\N	\N	null	do not contact		1	\N	\N	2221
2016-08-01 22:29:06.504051+00	2017-11-29 18:31:37.368334+00	1100	missed				+16617544128		19	2016-08-01 22:29:06.501953	2016-08-01 22:29:25.445813	CA219ad76cbc656ffecbc8f4f572dd2e38	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE8c1c6a6a4751c84c47bf58d67df00e55	0	inbound	+18555472453	\N	\N	null	do not contact		1	\N	\N	2221
2016-08-15 22:06:00.745018+00	2017-01-27 21:12:23.813344+00	1531	completed				+13303143014		91	2016-08-15 22:06:00.744096	2016-08-15 22:07:31.261994		\N	\N			0	outbound	+18555343978	48	\N	null	new lead		1	\N	\N	2222
2016-08-15 21:44:24.601719+00	2017-11-29 18:32:13.821849+00	1524	missed				+13303143014		11	2016-08-15 21:44:24.600055	2016-08-15 21:44:35.857637	CA188f042d254cd149c227e74234182ea3	\N	\N			0	inbound	+18555983683	\N	\N	null	new lead		1	\N	\N	2222
2016-08-15 22:55:57.865945+00	2016-08-15 22:56:11.186383+00	1534	missed				+13303143014		13	2016-08-15 22:55:57.864439	2016-08-15 22:56:11.184309	CA696c44a566318c84c366b1333057db71	\N	\N			0	inbound	+18555343978	48	\N	null	new lead		1	\N	\N	2222
2017-12-04 19:06:58.2432+00	2017-12-04 19:21:04.584988+00	7549	completed				+18139383550		843	2017-12-04 19:06:58.240929	2017-12-04 19:21:01.440551	CAc4c6e8239f3cb0f9e3c2288b708c8016	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE5d26c64568596832531024ab9fa8a6e8	0	inbound	+18558645656	136	3.14061713218688965	\N	new lead		15	\N	\N	2223
2017-11-17 20:23:09.808784+00	2017-11-17 20:25:34.863273+00	7114	completed	Krystal	Nash	Krystalnash530@yahoo.com	+17064016500		58	2017-11-17 20:23:09.807024	2017-11-17 20:24:07.355472		\N	153			0	outbound	+17704009016	132	\N	\N	select status		13	\N	\N	2228
2017-11-17 19:34:13.94037+00	2017-11-17 20:25:34.873952+00	7111	completed	Krystal	Nash	Krystalnash530@yahoo.com	+17064016500		44	2017-11-17 19:34:13.939005	2017-11-17 19:40:44.360442	CAb06b62af51435a40491eccaed887cb7a	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REcca605ca7679ba02d9ebb686424674cf	3	outbound	+17704009016	\N	350.158642053604126	{}	select status		13	\N	\N	2228
2017-08-27 03:11:03.598762+00	2017-08-27 03:11:03.66562+00	6181	missed	Jonathan	Young	Annasdaddy5590.jy@gmail.com	+17705611109		\N	2017-08-27 03:11:03.596837	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	2230
2016-10-04 18:08:23.945072+00	2016-11-09 15:43:50.98163+00	2142	completed				+13052903081		33	2016-10-04 18:08:23.944128	2016-10-04 18:08:56.710585	CA0cef167c901801d201fa5147e2d86785	\N	33			0	inbound	+18554186369	\N	2.53621602058410645	null	new lead		3	\N	\N	2231
2016-08-02 21:30:46.216052+00	2017-11-29 18:31:14.616489+00	1155	completed				+19209656640		135	2016-08-02 21:30:46.214585	2016-08-02 21:33:00.975922	CA8a05fd4fa9c0cefa624772e3f73d1c32	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE58f9d0d6b6a3f7225fdf9c2d72330959	0	inbound	+18556311541	\N	8.53520083427429199	null	general interest		1	\N	\N	2233
2016-10-06 17:52:11.7471+00	2016-12-10 01:01:51.441058+00	2219	completed				+16193622765		303	2016-10-06 17:52:11.745652	2016-10-06 17:57:14.555875	CA7458eea4218ccafbda6f0de7e467b969	\N	50			0	inbound	+18559693782	\N	2.1600029468536377	null	new lead		3	\N	\N	2234
2016-10-08 17:01:02.586579+00	2016-12-10 01:01:51.441086+00	2240	completed				+16193622765		219	2016-10-08 17:01:02.58362	2016-10-08 17:04:41.377596	CAdbe49280603d966fe19b66acdaed7c57	\N	50			0	inbound	+18559693782	\N	1.99698901176452637	null	new lead		3	\N	\N	2234
2016-11-11 20:54:16.584873+00	2016-11-11 21:56:10.555219+00	2871	completed				+17132969744		3705	2016-11-11 20:54:16.581196	2016-11-11 21:56:01.665561	CAad345ab42fc0b943482d0c6292d5f8f9	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REfbad0432dfdddcddf95fef8cd410131a	0	inbound	+18557240606	49	1.78566598892211914	null	new lead		1	\N	\N	2237
2016-11-05 19:46:12.80334+00	2016-12-10 00:57:48.461914+00	2753	completed				+18057546563		303	2016-11-05 19:46:12.801974	2016-11-05 19:51:16.17905	CA869cb1db7b2da713daca1e16b96cc783	\N	30			0	inbound	+18559652184	\N	1.82355904579162598	null	new lead		3	\N	\N	2239
2016-11-05 19:45:35.738495+00	2016-12-10 00:57:48.461907+00	2752	completed				+18057546563		19	2016-11-05 19:45:35.736613	2016-11-05 19:45:54.428807	CAa368648d3684e354d02382e12d03fe6d	\N	30			0	inbound	+18559652184	\N	2.13916182518005371	null	new lead		3	\N	\N	2239
2017-06-22 17:05:52.28081+00	2017-06-24 13:44:45.085751+00	5632	completed				+17066123418		175	2017-06-22 17:05:52.278809	2017-06-22 17:08:46.811555	CAf6a78e31c38792583d9ffa04415f994e	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE6ead750b320f47f75ec820af1dada5ea	0	inbound	+17704009016	132	8.4217071533203125	\N	new lead		13	\N	\N	2240
2017-04-13 18:45:09.671961+00	2017-04-13 18:45:58.647949+00	3887	completed				+18178757674		48	2017-04-13 18:45:09.668715	2017-04-13 18:45:57.536503	CAe1ed16718e14e93ddc0bfb0139ecb9a7	\N	132		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE6ff2cd43517b234c094955eb8726bd74	0	inbound	+18172104002	126	7.91869592666625977	\N	new lead	cruz molinar jr	12	\N	\N	2245
2017-05-26 16:58:16.619118+00	2017-05-26 16:58:37.053082+00	5438	completed				+18178757674		19	2017-05-26 16:58:16.616578	2017-05-26 16:58:35.979743	CA23b6132562d26bce6856f7cbb904598d	\N	132		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE3398704dad6fde91280973073f8cd859	0	inbound	+18172104002	126	4.47417998313903809	\N	new lead	cruz molinar jr	12	\N	\N	2245
2016-11-11 18:29:03.687793+00	2016-12-10 01:01:54.351685+00	2863	completed				+17206050174		24	2016-11-11 18:29:03.686047	2016-11-11 18:29:28.008194	CAacadce86d85294554ed9e9b5a41c3660	\N	49			0	inbound	+18559584242	\N	3.0614168643951416	null	new lead		3	\N	\N	2246
2016-11-02 21:46:28.946299+00	2016-12-09 17:08:31.908872+00	2595	completed				+16098881324		318	2016-11-02 21:46:28.945024	2016-11-02 21:51:46.513397	CA19f164a6eb8db3867683162f13de4a00	\N	67			0	inbound	+18552576059	\N	1.88451313972473145	null	new lead		3	\N	\N	2247
2016-11-01 19:57:41.60606+00	2016-12-09 17:08:31.908843+00	2500	completed				+16098881324		101	2016-11-01 19:57:41.604815	2016-11-01 19:59:22.726149	CA73520a7ce5793023a6a1ac853993a255	\N	67			0	inbound	+18552576059	\N	2.63703203201293945	null	new lead		3	\N	\N	2247
2017-07-13 19:36:48.747609+00	2017-07-13 19:37:54.997639+00	5772	completed				+16789148339		65	2017-07-13 19:36:48.745434	2017-07-13 19:37:53.793345	CA73f2ff7f2996607ef83e47cb1a30d205	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE388464c8e3186f7ff93feda08f1acfcc	0	inbound	+17704009016	132	20.3636879920959473	\N	new lead		13	\N	\N	2248
2017-11-06 23:36:34.067757+00	2017-11-06 23:37:07.823429+00	6955	completed				+14698159898		33	2017-11-06 23:36:34.065567	2017-11-06 23:37:07.076178	CA5d6db7e16881f04cc82b4d678d419a42	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REb022e6b9babcfc3478f3647772044db4	0	inbound	+18177569010	124	10.0357029438018799	\N	new lead	cell phone   tx	12	\N	\N	2250
2016-08-15 20:30:59.46993+00	2017-11-29 18:31:37.368946+00	1516	completed				+16612728967		136	2016-08-15 20:30:59.466717	2016-08-15 20:33:15.885628		\N	\N			0	outbound	+18555472453	\N	\N	null	new lead		1	\N	\N	2252
2016-08-13 14:57:06.621081+00	2017-11-29 18:31:37.368904+00	1472	missed				+16612728967		17	2016-08-13 14:57:06.620129	2016-08-13 14:57:23.960465	CA7c1d742d5acc64fd1622a4b5bfbd3474	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE6a501f7992a2e5bfc8b6001c1356051b	0	inbound	+18555472453	\N	\N	null	new lead		1	\N	\N	2252
2017-05-04 20:16:19.586876+00	2017-05-04 20:17:33.476193+00	4722	completed				+18309929638		73	2017-05-04 20:16:19.584974	2017-05-04 20:17:32.222448	CAc6885ec99d2a74d353f9fe8f2e176770	\N	132		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE97171890f875c9c7748e803c668d2728	0	inbound	+18172104002	126	8.7698509693145752	\N	new lead	jaimes marcelin	12	\N	\N	2253
2017-04-26 22:58:59.310816+00	2017-11-29 18:38:53.214632+00	4347	completed				+18157217535		31	2017-04-26 22:58:59.308993	2017-04-26 22:59:30.460921	CAc812117d48d979384657e7a4fe3f5c07	\N	107			0	inbound	+12146922088	\N	7.83692002296447754	\N	new lead	cell phone   il	9	\N	\N	2254
2017-04-17 15:52:24.713356+00	2017-11-29 18:38:49.805239+00	3990	completed				+18009554408		82	2017-04-17 15:52:24.711943	2017-04-17 15:53:46.823253	CA31059f15a19227102469ca04e72ca6fc	\N	124			0	inbound	+12147122250	\N	1.94004607200622559	\N	new lead	800 service	9	\N	\N	1888
2017-04-17 15:49:43.392764+00	2017-11-29 18:38:49.805218+00	3987	completed				+12144460011		81	2017-04-17 15:49:43.391637	2017-04-17 15:51:04.106694	CA7ee1e1e455f3f8d475248b80c4587fc2	\N	127			0	inbound	+12147122250	\N	1.42441678047180176	\N	new lead	dallas       tx	9	\N	\N	1965
2017-11-29 18:32:48.42936+00	2017-11-29 19:01:12.152248+00	7395	completed				+16824122921		1704	2017-11-29 18:32:48.427827	2017-11-29 19:01:12.148876	CAcec8c8b674db2856d8e6bddf7e3b4e03	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE213dd06ab81eb4006f77ef15e4586bed	0	inbound	+18177569010	124	1395.17728686332703	\N	new lead	griffin fred	12	\N	\N	1190
2017-04-29 17:34:39.159024+00	2017-11-29 18:38:49.80744+00	4468	completed				+18157217535		69	2017-04-29 17:34:39.157141	2017-04-29 17:35:47.967262	CA38febb67c97a2843b9a6079c9e336f83	\N	105			0	inbound	+12147122250	\N	2.98345589637756348	\N	new lead	cell phone   il	9	\N	\N	2254
2017-05-25 17:07:06.777852+00	2017-11-29 18:38:49.813402+00	5394	completed				+18157217535		70	2017-05-25 17:07:06.776099	2017-05-25 17:08:16.394541	CAbf44df63f1e6ceaa9ef04ebc6637bb14	\N	125			0	inbound	+12147122250	\N	0.951292991638183594	\N	new lead	cell phone   il	9	\N	\N	2254
2017-04-24 17:24:05.49956+00	2017-11-29 18:38:49.806434+00	4252	completed				+19736381239		87	2017-04-24 17:24:05.497149	2017-04-24 17:25:32.347631	CA50cf12a8a169e78ac4eb7ef7fd35c310	\N	127			0	inbound	+12147122250	\N	1.43330907821655273	\N	new lead	langevin chris	9	\N	\N	2256
2016-11-01 23:26:57.198708+00	2016-11-01 23:27:14.236577+00	2521	completed				+19722498907		16	2016-11-01 23:26:57.197547	2016-11-01 23:27:13.503644	CAd625dcbd504614cba0af36553683c3b7	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE72d47553cedba68c49f2d96bd19480c0	0	inbound	+18557240606	49	1.68979501724243164	null	new lead		1	\N	\N	2257
2016-11-01 23:49:25.552362+00	2016-11-01 23:52:35.540255+00	2524	completed				+19722498907		190	2016-11-01 23:49:25.550537	2016-11-01 23:52:35.125099	CA631868626460a79b00603660f36daa14	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE670ad289ef22e6012f4167601c824c22	0	inbound	+18557240606	49	2.36127901077270508	null	new lead		1	\N	\N	2257
2016-11-04 15:44:49.735189+00	2017-01-27 21:12:23.814009+00	2699	completed				+19722498907		115	2016-11-04 15:44:49.734289	2016-11-04 15:46:45.229075		\N	\N			0	outbound	+18555343978	48	\N	null	new lead		1	\N	\N	2257
2017-05-14 23:33:54.290685+00	2017-05-14 23:33:55.752916+00	5065	missed				+15127488237		1	2017-05-14 23:33:54.288797	2017-05-14 23:33:55.742389	CAf0792b4d6a8a6997d3b7e73b356fdcb0	\N	\N			0	inbound	+18177569010	124	\N	\N	new lead	cadena efren	12	\N	\N	2258
2016-08-08 15:48:18.026504+00	2016-12-10 00:55:45.165198+00	1328	completed				+16109484257		229	2016-08-08 15:48:18.025514	2016-08-08 15:52:06.868187	CAce1087ae4f8a694c7fd6ba468131adf2	\N	24			0	inbound	+18557129406	\N	2.17905211448669434	null	new lead		3	\N	\N	2261
2016-08-24 18:01:28.98292+00	2016-12-10 01:01:51.440722+00	1719	completed				+16192044015		595	2016-08-24 18:01:28.981158	2016-08-24 18:11:23.974797	CA807e1b30aa1420ed09c2c8dee655c4e7	\N	50			0	inbound	+18559693782	\N	2.1103370189666748	null	new lead		3	\N	\N	2263
2016-05-29 16:52:04.051135+00	2016-12-09 17:06:53.905658+00	276	missed	Unknown			+13362984103		10	2016-05-29 16:52:04.048046	2016-05-29 16:52:13.778376	CA61cfe160a8230099e369e4eff433916b	\N	\N			0	inbound	+18558021330	\N	\N	null	new lead		3	\N	\N	2264
2017-03-30 17:25:09.595846+00	2017-11-29 18:38:53.213156+00	3628	completed				+19722519703		34	2017-03-30 17:25:09.594012	2017-03-30 17:25:43.191378	CAbb188d6eb9157493ce5a1bd0a220a256	\N	\N			0	inbound	+12146922088	\N	4.80706000328063965	\N	new lead	keil deban	9	\N	\N	2271
2017-09-01 19:18:00.443788+00	2017-09-01 19:24:29.720783+00	6236	missed				+17706399650		57	2017-09-01 19:18:00.441773	2017-09-01 19:18:57.236794	CA81d0dfcf95b7c8963dc0d4e32c6f256e	\N	\N			0	inbound	+17707665732	133	371.002076148986816	\N	new lead		13	\N	\N	2273
2017-06-19 15:13:30.802278+00	2017-08-17 14:35:21.045471+00	5606	completed				+19253830064		67	2017-06-19 15:13:30.799517	2017-06-19 15:14:37.305592	CA8c4a239ebdee78259b5a64ea8a853795	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE08d023437d0590888c4a45437f1918fd	0	inbound	+18177569010	124	20.4273688793182373	\N	new lead	cell phone   ca	12	\N	\N	2276
2017-10-03 14:28:49.547687+00	2017-10-03 14:32:16.821958+00	6562	completed				+17063514310		207	2017-10-03 14:28:49.545745	2017-10-03 14:32:16.813221	CA2945eb3a3dea8b35dab36e706819122d	\N	150			0	inbound	+17707665732	133	14.1010680198669434	\N	new lead		13	\N	\N	2277
2017-11-24 16:40:45.898146+00	2017-11-24 16:46:01.714189+00	7189	completed				+17063514310		316	2017-11-24 16:40:45.894926	2017-11-24 16:46:01.695575	CA5bf515f4e24d6d48d8648877e049a97b	\N	150			0	inbound	+17707665732	133	13.12782883644104	\N	new lead		13	\N	\N	2277
2017-11-24 16:52:28.374773+00	2017-11-24 16:53:23.645322+00	7190	completed				+17063514310		55	2017-11-24 16:52:28.371519	2017-11-24 16:53:23.632979	CAac3371ef26265b9a8c87e2c60e8e423d	\N	150			0	inbound	+17707665732	133	11.6041018962860107	\N	new lead		13	\N	\N	2277
2016-05-21 18:49:55.880087+00	2016-05-25 18:19:43.277761+00	158	completed	Edward	Babcock	water-sportsman@cox.net	+19495735168		\N	2016-05-21 18:49:55.878873	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	new lead		1	\N	\N	2279
2017-12-11 15:24:01.297213+00	2017-12-11 15:30:28.075047+00	7778	completed				+18175851403		387	2017-12-11 15:24:01.295561	2017-12-11 15:30:28.07254	CA2f37c2765d0cee95c709f74f9f71ba52	\N	146			0	inbound	+18177569010	124	348.396317958831787	\N	new lead	fort worth  tx	12	\N	\N	2280
2017-02-23 15:27:57.853789+00	2017-11-29 18:47:25.067357+00	3247	completed				+17735436541		1533	2017-02-23 15:27:57.849441	2017-02-23 15:53:31.327488	CAd3ad8cfc0964275cccc094893a0891e8	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REfcfa230ac088baa39cc2bc15441ada3b	0	inbound	+19728330116	\N	1490.15659594535828	\N	new lead		8	\N	\N	2281
2017-12-11 21:44:17.727323+00	2017-12-11 21:56:55.632336+00	7795	completed				+14195650962		755	2017-12-11 21:44:17.725258	2017-12-11 21:56:52.31768	CA67c920c7c42fcb6f0346d74a42a52b14	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE784d24c961fc996d86f331013730ebad	0	inbound	+18558645656	136	2.39744091033935547	\N	new lead		15	\N	\N	2284
2016-09-07 19:08:17.177678+00	2016-12-10 01:04:42.413762+00	1942	completed				+19093814444		25	2016-09-07 19:08:17.176041	2016-09-07 19:08:42.202896	CA4fd44ceaa7a933a8ceec0c8bd71ff6d8	\N	58			0	inbound	+18552187903	\N	1.07202506065368652	null	new lead		3	\N	\N	2286
2017-09-29 21:41:32.778928+00	2017-09-29 21:42:43.430094+00	6545	completed				+14707987477		71	2017-09-29 21:41:32.776405	2017-09-29 21:42:43.417611	CAc4fee99097d00b4176fcae67bedc0974	\N	150			0	inbound	+17707665732	133	9.5458071231842041	\N	new lead		13	\N	\N	2291
2017-04-27 00:03:24.339725+00	2017-11-29 18:38:53.214639+00	4351	completed				+1112103508936		19	2017-04-27 00:03:24.336901	2017-04-27 00:03:43.4099	CA5f837a330f4cd5475428d343d280661d	\N	105			0	inbound	+12146922088	\N	4.88122105598449707	\N	new lead		9	\N	\N	2293
2017-04-27 00:04:49.7071+00	2017-11-29 18:38:53.214646+00	4352	completed				+1112103508936		22	2017-04-27 00:04:49.705185	2017-04-27 00:05:11.467099	CA3cc22277f42057edf61d842cb0b219c0	\N	105			0	inbound	+12146922088	\N	5.63903403282165527	\N	new lead		9	\N	\N	2293
2018-01-02 17:49:05.544049+00	2018-01-02 17:49:37.588324+00	8182	missed	John	Doe		+17739699892		32	2018-01-02 17:49:05.541749	\N	c-aleod36k4q6mgi3ec4nadxa	\N	\N			0	inbound	+15626663928	140	\N	\N	service call	chicago  il	1	\N	\N	1739
2016-02-01 22:32:07.550064+00	2016-07-27 23:35:38.115378+00	20	completed	Micheal			+17739699892		\N	2016-02-01 22:32:07.547833	\N	CA11b276db27fa119e410cffc79e567376	\N	1			0	inbound		\N	\N	\N	autopay contracted		1	\N	\N	1739
2018-01-02 15:20:24.550618+00	2018-01-02 15:21:08.873232+00	8173	completed	Jozi			+17739699892		34	2018-01-02 15:20:24.546929	2018-01-02 15:21:08.870882	CA77cb64d25630205c35c9bf34572eb080	ce2136cc-f207-42c8-8d76-a00748b6b0e1	15			1	outbound	+13367394103	\N	8.02085995674133301	{"source": ""}	service call		1		\N	1739
2018-01-01 21:13:57.214939+00	2018-01-01 21:54:48.857684+00	8172	completed	Mikey	Cooper		+17739699892		14	2018-01-01 21:13:57.21105	2018-01-01 21:14:10.86166	CA16aad2a8b6adba9ab9a7396b2d6a5a12	\N	15			0	inbound	+13367394103	139	7.11420488357543945	\N	service call	chicago  il	1	\N	15	1739
2018-01-02 21:17:23.471772+00	2018-01-02 21:17:39.497475+00	8190	completed	John	Doe		+17739699892		16	2018-01-02 21:17:23.469772	2018-01-02 21:17:39.495047	CA0dc17cf7e2ee229d49db40fb6ff40052	\N	15			0	inbound	+13367394103	139	9.81524801254272461	\N	service call	chicago  il	1	\N	\N	1739
2018-01-02 21:15:53.919523+00	2018-01-02 21:16:17.959989+00	8189	completed	John	Doe		+17739699892		21	2018-01-02 21:15:53.91801	2018-01-02 21:16:14.881595	CA4d476cd5bcd65d0730641777228af60a	\N	15		https://buyercall-test-recordings.s3.amazonaws.com/FINSERV%20Group_4/8189_recording_1c2e8011dc164ee99267438cbba3dc00	0	inbound	+13367394103	139	8.68289089202880859	\N	service call	chicago  il	1	\N	\N	1739
2017-05-18 15:12:53.604507+00	2018-01-01 21:54:48.87333+00	5185	completed				+17739699892		9	2017-05-18 15:12:53.602342	2017-05-18 15:13:02.907169	CAc11317a4e650f2559b4e3849c1325414	\N	144			0	inbound	+18446671613	\N	7.69009995460510254	\N	service call		1	\N	\N	1739
2017-01-27 21:15:18.783106+00	2018-01-01 21:54:48.873295+00	3139	missed				+17739699892		20	2017-01-27 21:15:18.782013	2017-01-27 21:15:38.683187	CA2db788e4e0af16e5399b0535376e3d07	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REcf9b2c16e7f1f2a674f3183c04e2ccf0	0	inbound	+18555343978	48	\N	null	service call		1	\N	\N	1739
2017-05-18 15:10:46.751256+00	2018-01-01 21:54:48.873321+00	5184	completed				+17739699892		9	2017-05-18 15:10:46.749418	2017-05-18 15:10:56.10327	CAb2e6b72f301a77c39c327e146b6f9f19	\N	144			0	inbound	+18446671613	\N	7.61209201812744141	\N	service call		1	\N	\N	1739
2017-05-18 15:18:34.455165+00	2018-01-01 21:54:48.873338+00	5186	completed				+17739699892		15	2017-05-18 15:18:34.453914	2017-05-18 15:18:49.338564	CA9876b9ccc156598a4a9e1bdfd574b7b1	\N	144		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REf3783b714e0b004d477d02c810642eec	0	inbound	+18446671613	\N	10.4776628017425537	\N	service call		1	\N	\N	1739
2017-05-18 15:20:44.312702+00	2018-01-01 21:54:48.873345+00	5187	completed				+17739699892		9	2017-05-18 15:20:44.311224	2017-05-18 15:20:53.265136	CA01ec17f43c2bb220301d19b538a3dbf9	\N	144			0	inbound	+18446671613	\N	7.3456578254699707	\N	service call		1	\N	\N	1739
2017-05-18 15:44:58.329994+00	2018-01-01 21:54:48.873353+00	5188	completed				+17739699892		16	2017-05-18 15:44:58.328251	2017-05-18 15:45:14.667452	CAf33194b9e4ad57734f665263c2e5363a	\N	15		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE210c15f4e7e463858abcb01ef8bf3eb6	0	inbound	+19143807998	\N	11.1605939865112305	\N	service call		1	\N	\N	1739
2017-05-18 15:58:22.280972+00	2018-01-01 21:54:48.87336+00	5189	completed				+17739699892		9	2017-05-18 15:58:22.279046	2017-05-18 15:58:31.741338	CA4b67b28a4d365a53301cf541de10648d	\N	144			0	inbound	+19143807998	\N	7.82818984985351562	\N	service call		1	\N	\N	1739
2017-05-18 16:10:44.909322+00	2018-01-01 21:54:48.873367+00	5190	completed				+17739699892		18	2017-05-18 16:10:44.907573	2017-05-18 16:11:02.986172	CA99cbc331cd945ba6e75489a8bb58b914	\N	15		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE9c81e278b4b232ee87995108ad8bc04d	0	inbound	+19143807998	\N	10.9343609809875488	\N	service call		1	\N	\N	1739
2017-05-18 16:26:24.699434+00	2018-01-01 21:54:48.873382+00	5196	completed				+17739699892		6	2017-05-18 16:26:24.698085	2017-05-18 16:26:30.808908	CA0b3d81c86b2cf547d90da97c01ad9f1f	\N	142		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REebfafd56e54abdea64548bea5fdf5671	0	inbound	+19143807998	\N	0.948112964630126953	\N	service call		1	\N	\N	1739
2017-05-18 16:28:30.940831+00	2018-01-01 21:54:48.873389+00	5197	completed				+17739699892		34	2017-05-18 16:28:30.939211	2017-05-18 16:29:04.990433	CA306fe8fa334e513f465ea678ec1c5087	\N	144		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE947d822f435a936e10082025f0b3dcc0	0	inbound	+19143807998	\N	6.8530418872833252	\N	service call		1	\N	\N	1739
2017-05-18 16:31:59.287759+00	2018-01-01 21:54:48.873396+00	5198	completed				+17739699892		13	2017-05-18 16:31:59.285681	2017-05-18 16:32:12.311261	CA165044b52d932a0211d1df860a843e7d	\N	144		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REc1ccae4a85d28f2e34090414fe479ed7	0	inbound	+18446671613	\N	7.86834907531738281	\N	service call		1	\N	\N	1739
2017-05-18 16:33:31.171131+00	2018-01-01 21:54:48.873403+00	5199	completed				+17739699892		15	2017-05-18 16:33:31.169309	2017-05-18 16:33:46.311164	CA551adfb6c665ae2f42e305a36af08107	\N	144		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE1f8cba5cce71ff5fc5fcdde0b4dea103	0	inbound	+18446671613	\N	7.38815093040466309	\N	service call		1	\N	\N	1739
2017-05-18 16:34:20.059079+00	2018-01-01 21:54:48.87341+00	5200	completed				+17739699892		13	2017-05-18 16:34:20.056814	2017-05-18 16:34:32.885917	CA3c804a36885e4c044c023443693f12b1	\N	143		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE68d74a154eda383b8111946666e47bf6	0	inbound	+18443015106	\N	2.8243560791015625	\N	service call		1	\N	\N	1739
2017-05-18 16:35:00.783053+00	2018-01-01 21:54:48.873417+00	5201	completed				+17739699892		2	2017-05-18 16:35:00.780351	2017-05-18 16:35:03.195034	CA4f2a4d7d94a546537d19d2b596a0161f	\N	142			0	inbound	+18442976550	\N	0.579225778579711914	\N	service call		1	\N	\N	1739
2017-05-18 16:35:41.507549+00	2018-01-01 21:54:48.873424+00	5202	completed				+17739699892		2	2017-05-18 16:35:41.506114	2017-05-18 16:35:43.522276	CA57301558229eacda513a323a52872efd	\N	142			0	inbound	+18442976550	\N	0.707892894744873047	\N	service call		1	\N	\N	1739
2017-05-18 16:39:51.732609+00	2018-01-01 21:54:48.873431+00	5204	completed				+17739699892		8	2017-05-18 16:39:51.729818	2017-05-18 16:39:59.744322	CA7cbdc8490f5d163a0a4aa7a6221680d4	\N	142		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE331e6ace57d6f0e9b649503057295248	0	inbound	+18442976550	\N	1.13258600234985352	\N	service call		1	\N	\N	1739
2018-01-02 21:10:17.911808+00	2018-01-02 21:10:36.258153+00	8188	completed	John	Doe		+17739699892		18	2018-01-02 21:10:17.908452	2018-01-02 21:10:36.255941	CAcc181e6884e4245212420fbf4a6f77e3	\N	15			0	inbound	+13367394103	139	9.19238996505737305	\N	service call	chicago  il	1	\N	\N	1739
2018-01-02 18:50:01.458361+00	2018-01-02 18:50:20.811366+00	8183	completed	John	Doe		+17739699892		19	2018-01-02 18:50:01.452645	\N	c-ghth4rhxi4hp32wwd2cevtq	\N	15		https://buyercall-test-recordings.s3.amazonaws.com/FINSERV%20Group_4/8183_recording_8b072ea07add40b6860b9e03abc0a6d3	0	inbound	+15626663928	140	15	\N	service call	chicago  il	1	\N	\N	1739
2018-01-02 17:45:43.534545+00	2018-01-02 17:45:58.174018+00	8181	missed	John	Doe		+17739699892		15	2018-01-02 17:45:43.53266	2018-01-02 17:45:58.170091	CA7a2e98ebdb5aaea99cc006f01759dd81	\N	\N			0	inbound	+13367394103	139	\N	\N	service call	chicago  il	1	\N	\N	1739
2018-01-02 21:21:22.233788+00	2018-01-02 21:21:53.926734+00	8191	completed	John	Doe		+17739699892		30	2018-01-02 21:21:22.230562	\N	c-newqkkug5rjwbo536ktf5si	\N	15		https://buyercall-test-recordings.s3.amazonaws.com/FINSERV%20Group_4/8191_recording_62f858fadf734aa7870e1b03f38e6dbb	0	inbound	+15626663928	140	22	\N	service call	chicago  il	1	\N	\N	1739
2018-01-02 19:20:12.091822+00	2018-01-02 19:20:18.069791+00	8187	missed	John	Doe		+17739699892		6	2018-01-02 19:20:12.089191	2018-01-02 19:20:18.066166	CA89132ee0d93907892fe5f94a8aea033d	\N	\N			0	inbound	+13367394103	139	\N	\N	service call	chicago  il	1	\N	\N	1739
2018-01-02 19:18:24.854453+00	2018-01-02 19:18:38.733659+00	8186	missed	John	Doe		+17739699892		14	2018-01-02 19:18:24.853037	2018-01-02 19:18:38.730296	CA2bb59a25e74879a2f94d3e2aceaac20b	\N	\N			0	inbound	+13367394103	139	\N	\N	service call	chicago  il	1	\N	\N	1739
2018-01-02 19:17:03.580014+00	2018-01-02 19:17:22.822892+00	8185	completed	John	Doe		+17739699892		17	2018-01-02 19:17:03.578405	2018-01-02 19:17:20.359141	CA2c98cd8c0f4e7337761a3e83d24d98f0	\N	15		https://buyercall-test-recordings.s3.amazonaws.com/FINSERV%20Group_4/8185_recording_4aa0fde5de90426abe91c8c5e4f63bc3	0	inbound	+13367394103	139	10.6542110443115234	\N	service call	chicago  il	1	\N	\N	1739
2018-01-02 19:15:17.222149+00	2018-01-02 19:15:35.608617+00	8184	missed	John	Doe		+17739699892		18	2018-01-02 19:15:17.216817	2018-01-02 19:15:35.520647	CA0b5277474ddc9c62c34ac661c56291c0	\N	\N			0	inbound	+13367394103	139	\N	\N	service call	chicago  il	1	\N	\N	1739
2018-01-02 17:21:32.54926+00	2018-01-02 17:21:45.608331+00	8179	completed	John	Doe		+17739699892		14	2018-01-02 17:21:32.546049	\N	c-hbkc3gulmznay53ytgvud2q	\N	15			0	inbound	+15626663928	140	8	\N	service call	chicago  il	1	\N	\N	1739
2018-01-30 22:35:07.116261+00	2018-01-30 22:35:31.82133+00	8206	completed	John	Doe		+17739699892		25	2018-01-30 22:35:07.115033	2018-01-30 22:35:31.819071	CAcf99a7018d8cb043228afea103f56a88	\N	15			0	inbound	+13367394103	142	7.22530198097229004	\N	service call	chicago  il	1	\N	\N	1739
2018-01-30 22:33:37.509517+00	2018-01-30 22:34:01.525979+00	8205	completed	John	Doe		+17739699892		24	2018-01-30 22:33:37.505883	2018-01-30 22:34:01.521979	CAe3b2903ed147554938d706ef88b33333	\N	15			0	inbound	+13367394103	142	6.56057906150817871	\N	service call	chicago  il	1	\N	\N	1739
2018-01-30 22:06:36.679957+00	2018-01-30 22:07:00.440429+00	8204	completed	John	Doe		+17739699892		24	2018-01-30 22:06:36.678781	2018-01-30 22:07:00.437971	CA075ccf96494aae1dbc5d1c712f589ba9	\N	15			0	inbound	+13367394103	142	7.88708400726318359	\N	service call	chicago  il	1	\N	\N	1739
2018-01-30 21:55:50.226086+00	2018-01-30 21:56:07.41887+00	8203	missed	John	Doe		+17739699892		17	2018-01-30 21:55:50.224763	2018-01-30 21:56:07.415804	CA108d77c21c93c920196cb9fa85edced5	\N	\N			0	inbound	+13367394103	141	\N	\N	service call	chicago  il	1	\N	\N	1739
2018-01-30 21:52:35.335237+00	2018-01-30 21:53:03.829297+00	8202	completed	John	Doe		+17739699892		28	2018-01-30 21:52:35.332394	2018-01-30 21:53:03.826347	CAbbc05a9ff59227835e11de4f200e83c4	\N	15			0	inbound	+13367394103	141	7.70869112014770508	\N	service call	chicago  il	1	\N	\N	1739
2017-05-18 16:56:31.945861+00	2018-01-01 21:54:48.873439+00	5209	completed				+17739699892		19	2017-05-18 16:56:31.943838	2017-05-18 16:56:51.144876	CAd8738cd504b6ca3693e7438cbdfb174b	\N	144		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE24d1843296a326a5bbfb915cd03b765c	0	inbound	+18446671613	\N	7.68921303749084473	\N	service call		1	\N	\N	1739
2017-05-18 16:57:20.762557+00	2018-01-01 21:54:48.873446+00	5210	completed				+17739699892		17	2017-05-18 16:57:20.760573	2017-05-18 16:57:37.414197	CAa60ff6d87ac4195f41cb377a7e05a5a8	\N	143		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REe2444bec297ec612110dec96062d1482	0	inbound	+18443015106	\N	2.98596310615539551	\N	service call		1	\N	\N	1739
2017-11-21 17:23:22.766466+00	2017-11-21 17:24:05.912533+00	7157	completed	Harry	Tester	hv13@hotmail.com	+17739699892		35	2017-11-21 17:23:22.76514	2017-11-21 17:24:05.911349	CA3b17406d4ee69bd056083bf90bb54a31	243bc1c1-c430-4ccb-b9d9-71662ebbb896	159			1	outbound	+18558645656	\N	7.94162297248840332	{}	new lead		1	\N	\N	1739
2016-07-04 22:46:07.719182+00	2016-07-27 23:35:38.115896+00	746	completed	CHICAGO	 IL		+17739699892		43	2016-07-04 22:46:07.716757	2016-07-04 22:46:50.323607	CA4a90368dcc1c6484353461fcafce3081	\N	1			0	inbound	+17735469660	16	23.9820480346679688	null	autopay contracted		1	\N	\N	1739
2016-05-02 16:22:54.968324+00	2016-07-27 23:35:38.115693+00	84	completed	CHICAGO	 IL		+17739699892		36	2016-05-02 16:22:54.962896	2016-05-02 16:23:30.58738	CA0e9f6caeda0be4f997ead939660f26ab	\N	1			0	inbound	+17735469660	16	19.2574679851531982	null	autopay contracted		1	\N	\N	1739
2016-07-11 04:04:10.730655+00	2016-07-27 23:35:38.116+00	841	completed	CHICAGO	 IL		+17739699892		34	2016-07-11 04:04:10.72852	2016-07-11 04:04:44.786502	CA3fa0c8f5526445769f22e82432264e28	\N	1			0	inbound	+17735469660	16	18.5596790313720703	null	autopay contracted		1	\N	\N	1739
2016-05-26 03:27:18.339713+00	2016-07-27 23:35:38.115782+00	240	completed	CHICAGO	 IL		+17739699892		30	2016-05-26 03:27:18.337982	2016-05-26 03:27:47.959257	CA54f6bdeafb53f3b821c5ed97195d9374	\N	1			0	inbound	+17735469660	16	11.1227068901062012	null	autopay contracted		1	\N	\N	1739
2016-06-02 21:48:33.869765+00	2016-07-27 23:35:38.115883+00	357	completed	CHICAGO	 IL		+17739699892		35	2016-06-02 21:48:33.868404	2016-06-02 21:49:08.59348	CA27be415831eff16a6487d54c535fe310	\N	1			0	inbound	+17735469660	16	11.3950109481811523	null	autopay contracted		1	\N	\N	1739
2016-07-27 23:34:10.713861+00	2016-07-27 23:35:37.978536+00	984	completed	CHICAGO	 IL		+17739699892		37	2016-07-27 23:34:10.710659	2016-07-27 23:34:47.763157	CAee7a696755b1f127a726c852f4f3d205	\N	1			0	inbound	+17735469660	16	15.4528169631958008	null	autopay contracted		1	\N	\N	1739
2016-02-01 22:37:20.989639+00	2016-07-27 23:35:38.115416+00	21	missed	Steve	Jones	steve@mclaren.co	+17739699892	Mclaren Inc	\N	\N	\N		\N	\N			0	inbound		\N	\N	\N	autopay contracted		1	\N	\N	1739
2016-02-07 21:38:30.530145+00	2016-07-27 23:35:38.115484+00	38	missed	shaun			+17739699892		\N	2016-02-07 21:38:30.527919	\N	CAcc70802b72c5e1b8f09a3bb0dad1a294	53da9e33-88fb-4b04-baca-339193fd55f7	1			1	inbound		\N	\N	\N	autopay contracted		1	\N	\N	1739
2016-02-07 21:40:43.458936+00	2016-07-27 23:35:38.115498+00	39	completed	Steve			+17739699892		\N	2016-02-07 21:40:43.457942	\N	CA0017b3f14ed124f088a136371e76bb5b	53da9e33-88fb-4b04-baca-339193fd55f7	1			1	inbound		\N	\N	\N	autopay contracted		1	\N	\N	1739
2016-02-07 21:42:39.550029+00	2016-07-27 23:35:38.115511+00	40	completed	Sally			+17739699892		\N	2016-02-07 21:42:39.549006	\N	CAf06f02e7111bea18fd4940a82b37941f	53da9e33-88fb-4b04-baca-339193fd55f7	1			1	inbound		\N	\N	\N	autopay contracted		1	\N	\N	1739
2016-02-07 21:43:57.841252+00	2016-07-27 23:35:38.115525+00	41	completed	Sally			+17739699892		\N	2016-02-07 21:43:57.84033	\N	CAe8cacdb7642002f4abc12d5ef64c77c4	53da9e33-88fb-4b04-baca-339193fd55f7	1			1	inbound		\N	\N	\N	autopay contracted		1	\N	\N	1739
2016-02-07 21:45:26.462749+00	2016-07-27 23:35:38.115538+00	42	completed	Matthew			+17739699892		\N	2016-02-07 21:45:26.461682	\N	CAe77751629abf1f9c719ca40cee8a4a81	53da9e33-88fb-4b04-baca-339193fd55f7	1			2	inbound		\N	\N	\N	autopay contracted		1	\N	\N	1739
2016-02-11 20:10:07.29683+00	2016-07-27 23:35:38.115551+00	45	ringing	Mike 			+17739699892		\N	2016-02-11 20:10:07.292632	\N	CA27e07abd6be3d6334f5179d03e3b089e	53da9e33-88fb-4b04-baca-339193fd55f7	1			1	inbound		\N	\N	\N	autopay contracted		1	\N	\N	1739
2016-02-11 20:11:48.362486+00	2016-07-27 23:35:38.115564+00	46	completed	Mike 			+17739699892		\N	2016-02-11 20:11:48.361475	\N	CA177725b6e758565e72f137acfcb0cf3b	53da9e33-88fb-4b04-baca-339193fd55f7	1			1	inbound		\N	\N	\N	autopay contracted		1	\N	\N	1739
2016-02-15 18:05:26.404483+00	2016-07-27 23:35:38.115576+00	54	missed	Sally			+17739699892		\N	2016-02-15 18:05:26.402481	\N	CA02489b616022cfaee399629ce7e46578	53da9e33-88fb-4b04-baca-339193fd55f7	1			2	inbound		\N	\N	\N	autopay contracted		1	\N	\N	1739
2016-02-16 22:14:53.373357+00	2016-07-27 23:35:38.115589+00	55	completed	John			+17739699892		\N	2016-02-16 22:14:53.371367	\N		53da9e33-88fb-4b04-baca-339193fd55f7	1			1	inbound		\N	\N	\N	autopay contracted		1	\N	\N	1739
2016-02-16 22:16:26.56414+00	2016-07-27 23:35:38.115603+00	56	missed	John			+17739699892		\N	2016-02-16 22:16:26.563099	\N		53da9e33-88fb-4b04-baca-339193fd55f7	\N			2	inbound		\N	\N	\N	autopay contracted		1	\N	\N	1739
2016-02-16 23:30:52.357627+00	2016-07-27 23:35:38.115616+00	57	completed	Mark			+17739699892		\N	2016-02-16 23:30:52.356209	\N		53da9e33-88fb-4b04-baca-339193fd55f7	1		https://api.twilio.com/2010-04-01/Accounts/AC9029a05ead529490894695223ef2d813/Recordings/REbacc96c86a70e5ae5bf0a1a43d673acb	1	inbound		\N	\N	\N	autopay contracted		1	\N	\N	1739
2016-04-26 14:31:10.164332+00	2016-07-27 23:35:38.115629+00	74	missed	Jason			+17739699892		\N	2016-04-26 14:31:10.160912	\N		53da9e33-88fb-4b04-baca-339193fd55f7	\N			0	outbound	+18555000163	\N	\N	\N	autopay contracted		1	\N	\N	1739
2016-04-26 14:31:44.842063+00	2016-07-27 23:35:38.115642+00	75	missed	Jason			+17739699892		\N	2016-04-26 14:31:44.840804	\N		53da9e33-88fb-4b04-baca-339193fd55f7	\N			0	outbound	+17735707582	\N	\N	\N	autopay contracted		1	\N	\N	1739
2016-04-26 14:32:47.80536+00	2016-07-27 23:35:38.115655+00	76	missed	Jason			+17739699892		\N	2016-04-26 14:32:47.803661	\N		53da9e33-88fb-4b04-baca-339193fd55f7	\N			0	outbound	+17735707582	\N	\N	\N	autopay contracted		1	\N	\N	1739
2016-04-26 22:14:53.596564+00	2016-07-27 23:35:38.115667+00	80	missed	Sally			+17739699892		\N	2016-04-26 22:14:53.595608	\N		53da9e33-88fb-4b04-baca-339193fd55f7	\N			0	outbound	+17735707582	\N	\N	\N	autopay contracted		1	\N	\N	1739
2016-08-05 00:14:28.734647+00	2016-08-05 00:14:58.141571+00	1252	completed	CHICAGO	 IL		+17739699892		29	2016-08-05 00:14:28.733055	2016-08-05 00:14:58.140424	CA18ed321332f715b632c4408094e48769	\N	1			0	inbound	+17735469660	16	16.8533339500427246	null	autopay contracted		1	\N	\N	1739
2016-05-02 16:03:54.852351+00	2016-07-27 23:35:38.11568+00	83	completed	Harry			+17739699892		31	2016-05-02 16:03:54.847702	2016-05-02 16:04:36.551348	CAa94856190405abad0ff55499182703c8	53da9e33-88fb-4b04-baca-339193fd55f7	1		https://api.twilio.com/2010-04-01/Accounts/ACafc5b14e320f72bf4ed973f9ab19c98d/Recordings/RE7d8eb6ea504e45c9abc7aa77a04f560c	1	outbound	+17735469660	\N	\N	{}	autopay contracted		1	\N	\N	1739
2016-05-02 16:30:15.312491+00	2016-07-27 23:35:38.115705+00	85	completed	CHICAGO	 IL		+17739699892		25	2016-05-02 16:30:15.311249	2016-05-02 16:30:40.691856	CAbf05c0497c0fb46f4e2dd431ab2ec29c	\N	1			0	inbound	+17735469660	16	9.11135983467102051	null	autopay contracted		1	\N	\N	1739
2016-05-06 15:07:36.889256+00	2016-07-27 23:35:38.115719+00	92	completed	Gary			+17739699892		32	2016-05-06 15:07:36.888031	2016-05-06 15:08:17.45072	CA493961bcb85f856aa1e4e7d0d5dbf869	53da9e33-88fb-4b04-baca-339193fd55f7	1			1	outbound	+17735469660	\N	7.62567806243896484	{}	autopay contracted		1	\N	\N	1739
2016-05-06 15:08:51.381729+00	2016-07-27 23:35:38.115731+00	93	completed	Susan			+17739699892		46	2016-05-06 15:08:51.380121	2016-05-06 15:09:46.934458	CAe7893289262292bef8e6bfc161f107f2	53da9e33-88fb-4b04-baca-339193fd55f7	1			1	outbound	+17735469660	\N	8.48333406448364258	{}	autopay contracted		1	\N	\N	1739
2016-05-19 00:01:03.501153+00	2016-07-27 23:35:38.115744+00	135	completed	CHICAGO	 IL		+17739699892		26	2016-05-19 00:01:03.499583	2016-05-19 00:01:29.744448	CA2fb1be9d703fb86122f3beac50eadfbd	\N	1			0	inbound	+17735469660	16	10.8566420078277588	null	autopay contracted		1	\N	\N	1739
2016-05-19 00:02:06.943375+00	2016-07-27 23:35:38.115757+00	136	missed	CHICAGO	 IL		+17739699892		40	2016-05-19 00:02:06.942523	2016-05-19 00:02:46.498719	CA4180204b92cafbac9b45ebdcac4712d8	\N	\N			0	inbound	+17735469660	16	\N	null	autopay contracted		1	\N	\N	1739
2016-05-26 03:25:56.482682+00	2016-07-27 23:35:38.115769+00	239	completed	Harry			+17739699892		37	2016-05-26 03:25:56.480365	2016-05-26 03:26:45.530273	CAa5581805009d9f98a07274c413b178ef	53da9e33-88fb-4b04-baca-339193fd55f7	1			1	outbound	+17735469660	\N	9.18873906135559082	{}	autopay contracted		1	\N	\N	1739
2016-05-27 04:27:33.775178+00	2016-07-27 23:35:38.115795+00	252	completed	CHICAGO	 IL		+17739699892		27	2016-05-27 04:27:33.77081	2016-05-27 04:28:00.476092	CAdd6231f74acf1e2334b0b075e3ce9db9	\N	1			0	inbound	+17735469660	16	12.3539059162139893	null	autopay contracted		1	\N	\N	1739
2016-05-28 15:03:02.929268+00	2016-07-27 23:35:38.115808+00	268	missed	Sarah			+17739699892		0	2016-05-28 15:03:02.926974	2016-05-28 15:03:29.517143	CA371bc6a32b810c1c33294035e66cdb28	53da9e33-88fb-4b04-baca-339193fd55f7	\N			1	outbound	+17735469660	\N	\N	{}	autopay contracted		1	\N	\N	1739
2016-05-28 15:04:41.738281+00	2016-07-27 23:35:38.11582+00	269	completed	Sarah			+17739699892		31	2016-05-28 15:04:41.737293	2016-05-28 15:05:24.857164	CA97abfc66eca33d4df0e3137c07ffcf4e	53da9e33-88fb-4b04-baca-339193fd55f7	1			1	outbound	+17735469660	\N	9.19144701957702637	{}	autopay contracted		1	\N	\N	1739
2016-07-29 22:20:57.501223+00	2016-07-29 22:21:37.778681+00	1053	completed	Peter			+17739699892		26	2016-07-29 22:20:57.500292	2016-07-29 22:21:37.777223	CAb653cec5376fbdb6b66ea80a2f36ca20	53da9e33-88fb-4b04-baca-339193fd55f7	1			1	outbound	+17735469660	\N	13.2385919094085693	{}	autopay contracted		1	\N	\N	1739
2016-07-29 22:26:55.684568+00	2016-07-29 22:27:28.992456+00	1054	completed	Terry			+17739699892		33	2016-07-29 22:26:55.6829	2016-07-29 22:27:28.987507		\N	1			0	outbound	+17735469660	16	\N	null	autopay contracted		1	\N	\N	1739
2016-05-28 15:06:32.284399+00	2016-07-27 23:35:38.115833+00	270	missed	CHICAGO	 IL		+17739699892		51	2016-05-28 15:06:32.281564	2016-05-28 15:07:23.353739	CA524c5d411ccc3597e29bde6e7e00527b	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACafc5b14e320f72bf4ed973f9ab19c98d/Recordings/RE1c8bf5d76b1b6433fad97d6924567ca4	0	inbound	+17735469660	16	\N	null	autopay contracted		1	\N	\N	1739
2016-05-28 15:12:24.010378+00	2016-07-27 23:35:38.115845+00	271	completed	CHICAGO	 IL		+17739699892		24	2016-05-28 15:12:24.009165	2016-05-28 15:12:48.508598	CA5082a972deafe9f4fd3b08c0afb489b3	\N	1			0	inbound	+17735469660	16	9.55799388885498047	null	autopay contracted		1	\N	\N	1739
2016-06-02 21:45:33.706077+00	2016-07-27 23:35:38.115858+00	355	completed	Harry			+17739699892		41	2016-06-02 21:45:33.70406	2016-06-02 21:46:29.528458	CA32f199f4e93ebc9743a0e50ab798a208	53da9e33-88fb-4b04-baca-339193fd55f7	1			1	outbound	+17735469660	\N	11.1867029666900635	{}	autopay contracted		1	\N	\N	1739
2016-06-02 21:47:12.665609+00	2016-07-27 23:35:38.115871+00	356	completed	Bill			+17739699892		45	2016-06-02 21:47:12.6645	2016-06-02 21:48:15.852104	CA7d69fb86ac724eced3166987f82efa3d	53da9e33-88fb-4b04-baca-339193fd55f7	1			1	outbound	+17735469660	\N	14.7847170829772949	{}	autopay contracted		1	\N	\N	1739
2016-07-04 22:48:43.440282+00	2016-07-27 23:35:38.115908+00	747	completed	Mark			+17739699892		32	2016-07-04 22:48:43.438626	2016-07-04 22:49:28.307237	CA244f782be61cf145603b293d5d08ed37	53da9e33-88fb-4b04-baca-339193fd55f7	1			1	outbound	+17735469660	\N	9.17649316787719727	{}	autopay contracted		1	\N	\N	1739
2016-07-04 22:50:10.503107+00	2016-07-27 23:35:38.115921+00	748	missed	CHICAGO	 IL		+17739699892		15	2016-07-04 22:50:10.501375	2016-07-04 22:50:25.160156	CA36ee1e12236a0cf75ed0473f42b023f0	\N	\N			0	inbound	+17735469660	16	\N	null	autopay contracted		1	\N	\N	1739
2016-07-07 14:34:09.766654+00	2016-07-27 23:35:38.115935+00	804	missed	Steve			+17739699892		\N	2016-07-07 14:34:09.765583	\N		53da9e33-88fb-4b04-baca-339193fd55f7	\N			0	outbound	+17735469660	\N	\N	{}	autopay contracted		1	\N	\N	1739
2016-07-07 14:43:39.759306+00	2016-07-27 23:35:38.115948+00	805	missed	Steve			+17739699892		9	2016-07-07 14:43:39.756151	2016-07-07 14:44:02.45924	CA8cb9e66fe5576d59e0245ae1b703ff35	53da9e33-88fb-4b04-baca-339193fd55f7	\N			1	outbound	+17735469660	\N	10.7979471683502197	{}	autopay contracted		1	\N	\N	1739
2016-07-07 14:44:17.47057+00	2016-07-27 23:35:38.115962+00	806	missed	Steve			+17739699892		0	2016-07-07 14:44:17.469734	2016-07-07 14:44:29.063772	CAbe019779cf8c9d9f3d53c54b934e6c95	53da9e33-88fb-4b04-baca-339193fd55f7	\N			1	outbound	+17735469660	\N	9.62712907791137695	{}	autopay contracted		1	\N	\N	1739
2016-07-07 14:46:31.807584+00	2016-07-27 23:35:38.115975+00	807	missed	Steve			+17739699892		48	2016-07-07 14:46:31.806505	2016-07-07 14:47:31.13424	CAcd73ab9e086e93e0890a9a326fba0a77	53da9e33-88fb-4b04-baca-339193fd55f7	\N			1	outbound	+17735469660	\N	8.71070718765258789	{}	autopay contracted		1	\N	\N	1739
2016-07-11 04:02:18.153042+00	2016-07-27 23:35:38.115988+00	840	unanswered	George			+17739699892		48	2016-07-11 04:02:18.151021	2016-07-11 04:03:20.432285	CA38da1173a5c6fdee9ca73c1363238283	53da9e33-88fb-4b04-baca-339193fd55f7	\N			1	outbound	+17735469660	\N	11.5451250076293945	{}	autopay contracted		1	\N	\N	1739
2016-07-27 23:36:36.030551+00	2016-07-27 23:37:25.384737+00	985	completed	Hugh			+17739699892		38	2016-07-27 23:36:36.028703	2016-07-27 23:37:25.383317	CA855ee41c4dd26cf70e2af2c79fa705f9	53da9e33-88fb-4b04-baca-339193fd55f7	1			2	outbound	+17735469660	\N	7.87217903137207031	{}	autopay contracted		1	\N	\N	1739
2016-07-29 04:53:20.205932+00	2016-07-29 04:54:07.442975+00	1018	completed	Sue			+17739699892		34	2016-07-29 04:53:20.203702	2016-07-29 04:54:07.441166	CAfe581dce53f2d33d00d4a66414deb703	53da9e33-88fb-4b04-baca-339193fd55f7	1			1	outbound	+17735469660	\N	9.93089103698730469	{}	new lead		1	\N	\N	1739
2016-08-05 00:15:56.388987+00	2016-08-05 00:16:26.527634+00	1253	completed	CHICAGO	 IL		+17739699892		30	2016-08-05 00:15:56.387911	2016-08-05 00:16:26.526172	CA0b50849eb13f34b338a2106dea33dc4c	\N	1			0	inbound	+17735469660	16	10.5413148403167725	null	autopay contracted		1	\N	\N	1739
2016-07-29 05:09:27.312358+00	2016-07-29 05:09:48.102308+00	1019	missed	CHICAGO	 IL		+17739699892		21	2016-07-29 05:09:27.310464	2016-07-29 05:09:48.056386	CAd27ac65239066c8b0fc0db10fae914f6	\N	\N			0	inbound	+17735469660	16	\N	null	new lead		1	\N	\N	1739
2016-07-29 14:50:49.600439+00	2016-07-29 14:51:18.222455+00	1021	completed	CHICAGO	 IL		+17739699892		29	2016-07-29 14:50:49.598638	2016-07-29 14:51:18.221169	CAe119a3fd5555bddd56e267bc20ce8a40	\N	1			0	inbound	+17735469660	16	13.1554379463195801	null	new lead		1	\N	\N	1739
2016-07-29 14:51:47.969345+00	2016-07-29 14:52:01.076378+00	1022	missed	Larry			+17739699892		0	2016-07-29 14:51:47.968346	2016-07-29 14:52:01.07473	CA24e113cf949c74e8ac049bfa535414d6	53da9e33-88fb-4b04-baca-339193fd55f7	\N			1	outbound	+17735469660	\N	10.9012820720672607	{}	new lead		1	\N	\N	1739
2016-07-29 14:52:15.553522+00	2016-07-29 14:52:25.33902+00	1023	missed	Larry			+17739699892		0	2016-07-29 14:52:15.552557	2016-07-29 14:52:25.338271	CA49994f60e385d8e7b03558230a6f63fc	53da9e33-88fb-4b04-baca-339193fd55f7	\N			1	outbound	+17735469660	\N	7.10841703414916992	{}	new lead		1	\N	\N	1739
2016-07-29 14:56:03.248965+00	2016-07-29 14:56:14.638065+00	1024	missed	Sherri			+17739699892		0	2016-07-29 14:56:03.247046	2016-07-29 14:56:14.637174	CA365470672f74391f4df9c00bcb345f17	53da9e33-88fb-4b04-baca-339193fd55f7	\N			1	outbound	+17735469660	\N	8.6277921199798584	{}	new lead		1	\N	\N	1739
2016-07-29 14:58:50.258781+00	2016-07-29 14:59:39.911018+00	1026	completed	Sherri			+17739699892		38	2016-07-29 14:58:50.257757	2016-07-29 14:59:39.908674	CAfa88917f7c9dd3a5d653df2fd4c01757	53da9e33-88fb-4b04-baca-339193fd55f7	1			1	outbound	+17735469660	\N	10.8239400386810303	{}	new lead		1	\N	\N	1739
2016-08-05 00:18:12.708995+00	2016-08-05 00:19:10.664839+00	1254	completed	Mark			+17739699892		42	2016-08-05 00:18:12.707032	2016-08-05 00:19:10.663261	CA65a0ea8fddd8822d8504ad44dfc7b1a5	53da9e33-88fb-4b04-baca-339193fd55f7	1			1	outbound	+17735469660	\N	15.6284348964691162	{}	autopay contracted		1	\N	\N	1739
2016-08-05 00:26:04.141967+00	2016-08-05 00:26:38.353915+00	1256	completed	Mark			+17739699892		34	2016-08-05 00:26:04.139609	2016-08-05 00:26:38.350951		\N	1			0	outbound	+17735469660	16	\N	null	autopay contracted		1	\N	\N	1739
2016-07-29 22:18:58.929135+00	2016-07-29 22:19:23.831303+00	1050	completed	CHICAGO	 IL		+17739699892		25	2016-07-29 22:18:58.926923	2016-07-29 22:19:23.828654	CA6d0af7abb34b6f5e8e23eb552f7b58c0	\N	1			0	inbound	+17735469660	16	12.1105830669403076	null	autopay contracted		1	\N	\N	1739
2016-07-29 22:20:05.48196+00	2016-07-29 22:20:45.750276+00	1052	completed	Terry			+17739699892		6	2016-07-29 22:20:05.480081	2016-07-29 22:20:23.96867	CAb377bb9364ffe70007b3cef6e296582c	53da9e33-88fb-4b04-baca-339193fd55f7	1			1	outbound	+17735469660	\N	11.0128169059753418	{}	autopay contracted		1	\N	\N	1739
2016-08-01 16:06:00.623882+00	2016-08-01 16:06:32.281159+00	1072	completed	Ryan			+17739699892		22	2016-08-01 16:06:00.622706	2016-08-01 16:06:32.27835	CA217021f8da8e7cc73ead4a7ac0c081d2	53da9e33-88fb-4b04-baca-339193fd55f7	1			1	outbound	+17735469660	\N	9.14388298988342285	{}	autopay contracted		1	\N	\N	1739
2016-08-01 16:17:19.079668+00	2016-08-01 16:17:44.362006+00	1074	completed	Ryan			+17739699892		25	2016-08-01 16:17:19.078475	2016-08-01 16:17:44.359933		\N	1			0	outbound	+17735469660	16	\N	null	autopay contracted		1	\N	\N	1739
2017-02-12 19:20:53.140142+00	2017-02-12 19:22:38.950948+00	3167	missed	CHICAGO	 IL		+17739699892		106	2017-02-12 19:20:53.136608	2017-02-12 19:22:38.942126	CA264a231cabd36fad3749bfb0a4140bda	\N	\N			0	inbound	+17735469660	16	1.00453615188598633	null	autopay contracted		1	\N	\N	1739
2017-02-12 19:25:18.406859+00	2017-02-12 19:26:39.12642+00	3170	completed	CHICAGO	 IL		+17739699892		81	2017-02-12 19:25:18.405505	2017-02-12 19:26:39.125198	CAee06c2d686bde505f2afeed3d0386c4e	\N	93			0	inbound	+17735469660	16	0.916691064834594727	null	autopay contracted		1	\N	\N	1739
2017-02-15 23:53:09.889119+00	2017-02-15 23:53:24.599497+00	3207	completed	CHICAGO	 IL		+17739699892		15	2017-02-15 23:53:09.883588	2017-02-15 23:53:24.5973	CA39bc37dbb155012e23020e163672c2ef	\N	1			0	inbound	+17732950301	104	8.41591787338256836	\N	autopay contracted		1	\N	\N	1739
2017-02-12 19:24:25.584798+00	2017-02-20 02:31:36.101336+00	3169	in-progress	CHICAGO	 IL		+17739699892		18	2017-02-12 19:24:25.583461	2017-02-12 19:24:43.626564	CA5c9834cd0576fde70a0d7b5dba16bf45	\N	\N			0	inbound	+17732950301	104	14.3461048603057861	null	autopay contracted		1	\N	\N	1739
2017-02-23 14:53:10.055138+00	2017-02-23 14:53:25.26341+00	3246	completed	CHICAGO	 IL		+17739699892		15	2017-02-23 14:53:10.052553	2017-02-23 14:53:25.250674	CA1329fa46c0f2cfcb4aa482ed6e6fa3a9	\N	1			0	inbound	+17732950301	104	6.69468092918395996	\N	autopay contracted		1	\N	\N	1739
2017-02-23 17:21:17.6227+00	2017-02-23 17:21:46.04703+00	3249	missed	CHICAGO	 IL		+17739699892		28	2017-02-23 17:21:17.619521	2017-02-23 17:21:46.03869	CA20eaa657c5fb33c2c18a8861400f1b38	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACafc5b14e320f72bf4ed973f9ab19c98d/Recordings/RE3a95f8b5c8e38c86380a40eda1e2e3f7	0	inbound	+17732950301	104	\N	\N	autopay contracted		1	\N	\N	1739
2017-02-23 17:43:29.019729+00	2017-02-23 17:49:28.355006+00	3250	missed	CHICAGO	 IL		+17739699892		26	2017-02-23 17:43:29.017364	2017-02-23 17:43:55.322302	CA47fbccd230e2922781e2b5cdeeb7328d	\N	\N			0	inbound	+17732950301	104	340.64224910736084	\N	autopay contracted		1	\N	\N	1739
2016-08-22 21:40:17.592571+00	2016-08-22 21:41:03.565938+00	1650	missed	CHICAGO	 IL		+17739699892		46	2016-08-22 21:40:17.589097	2016-08-22 21:41:03.563281	CAdeaae6c7e41e8e51b12f94295639a87f	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACafc5b14e320f72bf4ed973f9ab19c98d/Recordings/RE7f91f5fc14e58d2bf700b54d2beff762	0	inbound	+17735469660	16	13.1130349636077881	null	autopay contracted		1	\N	\N	1739
2016-08-22 21:41:22.232079+00	2016-08-22 21:41:48.467019+00	1651	completed	CHICAGO	 IL		+17739699892		26	2016-08-22 21:41:22.230747	2016-08-22 21:41:48.466062	CA93fb81b3c82989b96ab82de256e81a43	\N	1			0	inbound	+17735469660	16	11.4279398918151855	null	autopay contracted		1	\N	\N	1739
2016-08-22 21:42:10.992502+00	2016-08-22 21:42:26.71157+00	1652	missed	CHICAGO	 IL		+17739699892		16	2016-08-22 21:42:10.991338	2016-08-22 21:42:26.709857	CA461fc2bcc6cb788416b5589ddc240fef	\N	\N			0	inbound	+17735469660	16	\N	null	autopay contracted		1	\N	\N	1739
2016-08-22 21:42:41.018179+00	2016-08-22 21:42:53.083363+00	1653	missed	CHICAGO	 IL		+17739699892		12	2016-08-22 21:42:41.017028	2016-08-22 21:42:53.080911	CA2b516eb90fd01e4f1bdb8d02322b9bf4	\N	\N			0	inbound	+17735469660	16	\N	null	autopay contracted		1	\N	\N	1739
2016-08-22 21:43:37.613105+00	2016-08-22 21:44:18.291162+00	1654	missed	CHICAGO	 IL		+17739699892		41	2016-08-22 21:43:37.612171	2016-08-22 21:44:18.289228	CA1392e86be15fa09ba361894323a4d09d	\N	\N			0	inbound	+17735469660	16	11.1855399608612061	null	autopay contracted		1	\N	\N	1739
2016-08-22 21:44:39.397485+00	2016-08-22 21:45:28.417397+00	1655	completed	Sammy			+17739699892		40	2016-08-22 21:44:39.395869	2016-08-22 21:45:28.415844	CA55b9322752b4e463712aee6fcac5958e	53da9e33-88fb-4b04-baca-339193fd55f7	1			1	outbound	+17735469660	\N	8.94713401794433594	{}	autopay contracted		1	\N	\N	1739
2016-11-27 19:17:42.996798+00	2016-11-27 19:18:08.330425+00	2985	completed	CHICAGO	 IL		+17739699892		25	2016-11-27 19:17:42.993839	2016-11-27 19:18:08.328342	CA9fcc953ddc408098b11c4e56083a3138	\N	1			0	inbound	+17735469660	16	8.62095403671264648	null	autopay contracted		1	\N	\N	1739
2016-11-01 01:11:21.309033+00	2016-11-01 01:12:37.83209+00	2445	completed	Sammy			+17739699892		77	2016-11-01 01:11:21.306646	2016-11-01 01:12:37.83028	CA58602e65e99fe1a7312a76ad62b9eb3b	\N	1			0	inbound	+17732950301	104	14.4054360389709473	null	autopay contracted		1	\N	\N	1739
2016-11-06 16:01:28.861008+00	2016-11-06 16:01:59.752954+00	2767	missed	Barry			+17739699892		19	2016-11-06 16:01:28.859129	2016-11-06 16:01:59.751081	CA4fb13249c493033fd5c50c2259088d0c	53da9e33-88fb-4b04-baca-339193fd55f7	\N			1	outbound	+17735469660	\N	10.6513211727142334	{}	autopay contracted		1	\N	\N	1739
2017-02-11 20:24:47.32384+00	2017-02-11 20:25:05.134862+00	3161	completed	Mihai			+17739699892		18	2017-02-11 20:24:47.321151	2017-02-11 20:25:05.131726	CA6484eeb70b2f9547f0107bc7de10ac11	\N	1			0	inbound	+17732950301	104	7.33710002899169922	null	autopay contracted		1	\N	\N	1739
2016-11-17 23:00:43.631046+00	2016-11-17 23:00:59.226817+00	2941	missed	Barry			+17739699892		16	2016-11-17 23:00:43.628771	2016-11-17 23:00:59.224092	CA61dc1d2a6a127fa1fff252f1bd838fa8	\N	\N			0	inbound	+17732950301	104	1.92215204238891602	null	autopay contracted		1	\N	\N	1739
2016-11-27 20:16:48.825523+00	2016-11-27 20:17:29.009645+00	2988	missed	Mihai		cmihai@gmail.com	+17739699892		23	2016-11-27 20:16:48.823709	2016-11-27 20:17:29.008689	CA19fb4aaca89ec455f46b685514d0ee60	030c4f8d-8f6a-470d-a473-e83e32d9e8c0	\N			1	outbound	+17735469660	\N	15.9504859447479248	{}	autopay contracted		1	\N	\N	1739
2017-02-12 15:14:05.480068+00	2017-02-12 15:14:26.567531+00	3162	missed	Mihai			+17739699892		21	2017-02-12 15:14:05.475147	2017-02-12 15:14:26.563876	CA32984aa3877de72b7ee2252a26d9db49	\N	\N			0	inbound	+17732950301	104	7.16193985939025879	null	autopay contracted		1	\N	\N	1739
2017-03-22 03:39:53.426056+00	2017-03-22 03:40:14.597237+00	3526	completed	CHICAGO	 IL		+17739699892		21	2017-03-22 03:39:53.423787	2017-03-22 03:40:14.587492	CA0eec2d04ccdf83147c6d8b5b21998363	\N	1			0	inbound	+17732950301	104	7.29594087600708008	\N	autopay contracted		1	\N	\N	1739
2018-01-02 17:43:11.544592+00	2018-01-02 17:43:37.128891+00	8180	completed	John	Doe		+17739699892		26	2018-01-02 17:43:11.543117	2018-01-02 17:43:37.126608	CAcf7a1cc002676c2accd974a2d2b3c1d0	\N	15			0	inbound	+13367394103	139	5.63196086883544922	\N	service call	chicago  il	1	\N	\N	1739
2017-05-18 16:15:52.582354+00	2018-01-01 21:54:48.873375+00	5191	completed				+17739699892		3	2017-05-18 16:15:52.580845	2017-05-18 16:15:55.225823	CAb27bbaa0670e92ed711bb1e6d6b959bf	\N	142			0	inbound	+19143807998	\N	1.10104799270629883	\N	service call		1	\N	\N	1739
2017-05-18 16:57:59.507665+00	2018-01-01 21:54:48.873453+00	5211	completed				+17739699892		11	2017-05-18 16:57:59.505059	2017-05-18 16:58:10.658683	CA60b2a79f43c8a187f700c0a7efc6c5e8	\N	142		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REb453a24d8342915eb2237e2dc5fdd9ab	0	inbound	+18442976550	\N	1.21535897254943848	\N	service call		1	\N	\N	1739
2017-05-18 16:59:25.543428+00	2018-01-01 21:54:48.87346+00	5212	completed				+17739699892		34	2017-05-18 16:59:25.542109	2017-05-18 16:59:59.1378	CA7d87cc0b9d46b31070b8b80bc1141fc5	\N	143		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REf48f3c3bd6ddcb3ed0fc62f36a04fc25	0	inbound	+18443015106	\N	2.73049616813659668	\N	service call		1	\N	\N	1739
2017-04-12 21:02:35.834853+00	2017-11-29 18:38:49.804664+00	3840	missed				+14698544963		1	2017-04-12 21:02:35.832773	2017-04-12 21:02:36.438618	CAcff53f4bc88a3da0a9a58cacbdb805f3	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead		9	\N	\N	2296
2017-05-17 14:28:45.030329+00	2017-11-29 18:38:49.811911+00	5142	missed				+14698544963		17	2017-05-17 14:28:45.028559	2017-05-17 14:29:02.296483	CA7c5b00fdef363fd93866810ff49e527f	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	dallas  tx	9	\N	\N	2296
2016-11-09 13:15:18.939081+00	2016-11-09 13:15:18.983102+00	2816	missed	Allegria	Alexander	alexanderalle@yahoo.com	+12145632636		\N	2016-11-09 13:15:18.936845	\N		ee869226-e246-4ab4-aaaa-e9403e2ddd39	\N			0	outbound	+18555983683	\N	\N	{}	new lead		1	\N	\N	2295
2017-09-23 16:13:21.488068+00	2017-11-25 20:52:06.314086+00	6463	completed				+17067142152		412	2017-09-23 16:13:21.486016	2017-09-23 16:20:13.861505	CA21c992fde7ce18e5c2d129c8b1f8e246	\N	150			0	inbound	+17707665732	133	12.1028740406036377	\N	select status		13	\N	\N	2299
2017-10-28 17:22:31.177209+00	2017-11-25 20:52:06.314124+00	6854	completed				+17067142152		428	2017-10-28 17:22:31.175694	2017-10-28 17:29:39.173267	CA9f5d54924bdeb1c8f94cfd39f0404bad	\N	154			0	inbound	+17707665699	134	1.19591999053955078	\N	select status		13	\N	\N	2299
2017-10-28 17:22:10.268356+00	2017-11-25 20:52:06.314115+00	6853	completed				+17067142152		11	2017-10-28 17:22:10.266657	2017-10-28 17:22:21.28083	CA474c15106162921115bc03266623dffd	\N	154			0	inbound	+17707665699	134	1.05271196365356445	\N	select status		13	\N	\N	2299
2017-10-28 17:31:14.992533+00	2017-11-25 20:52:06.314131+00	6855	completed				+17067142152		125	2017-10-28 17:31:14.990823	2017-10-28 17:33:19.517717	CAbd1eec35979e67d17ddb5cfdb1874bc9	\N	154			0	inbound	+17707665699	134	2.44768619537353516	\N	select status		13	\N	\N	2299
2017-11-04 19:42:40.986554+00	2017-11-25 20:52:06.314139+00	6936	completed				+17067142152		164	2017-11-04 19:42:40.984406	2017-11-04 19:45:24.757989	CA5178a2b65917f865f19ceef690d0f857	\N	154			0	inbound	+17707665699	134	1.80319595336914062	\N	select status		13	\N	\N	2299
2017-11-11 16:10:46.915833+00	2017-11-25 20:52:06.314146+00	7018	completed				+17067142152		244	2017-11-11 16:10:46.91386	2017-11-11 16:14:51.11553	CAcbfcdd6a19f54df3177f91b4b0ba3325	\N	154			0	inbound	+17707665699	134	1.2020111083984375	\N	select status		13	\N	\N	2299
2017-11-18 18:44:22.31476+00	2017-11-25 20:52:06.314153+00	7127	missed				+17067142152		0	2017-11-18 18:44:22.312628	2017-11-18 18:44:22.779274	CA1b67a4143183f6904a7dfc4e1e558e9d	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	2299
2017-11-18 18:44:32.78959+00	2017-11-25 20:52:06.314161+00	7128	missed				+17067142152		0	2017-11-18 18:44:32.78764	2017-11-18 18:44:33.11878	CAb5e66f72386d8e54d14b5c96ccf33cdc	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	2299
2017-11-25 20:50:14.725124+00	2017-11-25 20:52:06.298801+00	7327	completed				+17067142152		49	2017-11-25 20:50:14.723311	2017-11-25 20:51:03.33505	CAe1856b8b6fba9eeaf743202d7fa547e7	\N	153			0	inbound	+17707665732	133	10.0637030601501465	\N	select status	craft lisa	13	\N	\N	2299
2017-11-18 18:44:51.478158+00	2017-11-25 20:52:06.314168+00	7129	missed				+17067142152		0	2017-11-18 18:44:51.476721	2017-11-18 18:44:51.882196	CA74dd6f41ce874fed29dcf95af20cc0cc	\N	\N			0	inbound	+17707665699	134	\N	\N	select status		13	\N	\N	2299
2017-11-18 18:45:21.482277+00	2017-11-25 20:52:06.314175+00	7130	completed				+17067142152		48	2017-11-18 18:45:21.480686	2017-11-18 18:46:09.243639	CA0f0f61006e6fc00a51b66e4c5370e946	\N	153			0	inbound	+17707665732	133	9.42141008377075195	\N	select status		13	\N	\N	2299
2017-11-25 20:48:37.217726+00	2017-11-25 20:52:06.314182+00	7326	missed				+17067142152		0	2017-11-25 20:48:37.215498	2017-11-25 20:48:37.490902	CA477f444b5b90cc1edcdf707aa5212326	\N	\N			0	inbound	+17707665699	134	\N	\N	select status	craft lisa	13	\N	\N	2299
2017-04-06 23:34:26.118577+00	2017-11-29 18:38:53.213396+00	3714	completed				+19856628469		215	2017-04-06 23:34:26.116143	2017-04-06 23:38:01.616013	CA596629cd8a3808ea40274ac60f26d34d	\N	105			0	inbound	+12146922088	\N	6.88568401336669922	\N	new lead	wireless caller	9	\N	\N	2301
2016-11-01 22:27:16.311657+00	2017-11-29 18:31:37.369248+00	2514	completed	Thomas	Harrison	larryh01@verizon.net	+18172711232		179	2016-11-01 22:27:16.308976	2016-11-01 22:30:15.184768		\N	\N			0	outbound	+18555472453	\N	\N	null	general interest		1	\N	\N	2304
2016-11-01 21:56:09.431183+00	2016-11-01 22:33:56.490157+00	2513	missed	Thomas	Harrison	larryh01@verizon.net	+18172711232	Your system would not let me continue beyond step 4 because I have been retired for over 16 years and there is no employer.	\N	2016-11-01 21:56:09.429571	\N		a08a3d1d-0557-4ebb-abba-b39da203b6a6	\N			0	outbound	+18556311439	\N	\N	{}	general interest		1	\N	\N	2304
2017-02-09 21:52:40.834163+00	2017-02-09 21:54:40.726102+00	3158	completed				+14125806452		120	2017-02-09 21:52:40.832472	2017-02-09 21:54:40.723605	CAa6afa743f9f928977b0ee6038647e3e2	\N	78			0	inbound	+18036184545	119	33.6953151226043701	null	new lead		6	\N	\N	2306
2017-06-26 13:58:44.714572+00	2017-06-26 14:04:45.030688+00	5655	missed	Garry	Howard	ghoward2914@yahoo.com	+12293955117		7	2017-06-26 13:58:44.71233	2017-06-26 14:04:45.028914	CAb06e297e3f83da166f679fc624af6791	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			3	outbound	+17704009016	\N	352.554769039154053	{}	new lead		13	\N	\N	2313
2016-10-31 22:18:01.463629+00	2016-10-31 23:06:35.736377+00	2439	completed				+14694638548		2909	2016-10-31 22:18:01.461558	2016-10-31 23:06:30.406449	CAc4b3f74e27488bd9da9a0b1e18e55b52	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE7317bb5611c9a4a5c8dcfc57043a44b0	0	inbound	+18557240606	49	2.32960796356201172	null	new lead		1	\N	\N	2315
2017-11-11 18:02:24.263903+00	2017-11-11 18:03:14.393356+00	7023	completed				+12147669824		49	2017-11-11 18:02:24.262116	2017-11-11 18:03:13.334633	CA69e0a23e9dbfb1f9122ce716f8b3bf53	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REe1ef69af98073ea35c87247af9d78971	0	inbound	+18177569010	124	6.63277816772460938	\N	new lead	cell phone   tx	12	\N	\N	2316
2017-08-04 16:05:32.202044+00	2017-08-04 16:11:10.859713+00	5934	completed	kimberly	slaughter	kimberlyslaughter62211@yahoo.com	+17069680432		319	2017-08-04 16:05:32.198749	2017-08-04 16:11:09.513253	CA7ce3f12d2a8b2c3718bbed98894fcd51	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REe3fc012927286e9f72e8c8e25ee68c98	1	outbound	+17704009016	\N	22.3213229179382324	{}	new lead		13	\N	\N	2317
2017-04-25 20:48:54.249592+00	2017-04-25 21:23:08.076337+00	4308	completed				+18179464619		2051	2017-04-25 20:48:54.247896	2017-04-25 21:23:04.923648	CA28083b54c890d2f73e6ea8f1c9cd5f10	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE437c22d4283943758408ca6f70e8a3b4	0	inbound	+18557240606	49	3.2665259838104248	\N	new lead		1	\N	\N	2318
2016-11-02 00:13:42.166086+00	2016-11-02 00:13:42.191797+00	2529	missed	Lilia	Martinez 	Yocelyn0589@yahoo.com	+18172331606		\N	2016-11-02 00:13:42.164835	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2319
2017-09-04 15:42:23.602732+00	2017-09-04 15:48:27.273821+00	6248	missed	Ryan	Grayson	Acestoryteller@icloud.com	+17624489113		0	2017-09-04 15:42:23.600964	2017-09-04 15:48:27.271556	CAc951cf119eb9f141ea72753317effca6	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			3	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	2320
2016-05-26 01:22:21.33654+00	2016-05-26 12:55:40.529128+00	238	completed	Doris	Shelton	dshelton26@msn.com	+18178214386		\N	2016-05-26 01:22:21.335203	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	new lead		1	\N	\N	2324
2017-04-22 22:05:33.49596+00	2017-05-17 15:41:07.224371+00	4236	completed				+14695702407		118	2017-04-22 22:05:33.493645	2017-04-22 22:07:31.060751	CAb0d169c237580e5b8087953d7abfbde1	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE1c6347c6f315edba98fce6de520ebbf0	0	inbound	+18177569010	124	70.4569568634033203	\N	new lead	dallas  tx	12	\N	\N	2326
2016-06-03 01:45:09.423308+00	2016-06-03 12:14:47.406394+00	360	completed	wayne	morris	djzmorris@comcast.net	+19782811140		\N	2016-06-03 01:45:09.422042	\N		f3e4cfe5-2811-4ab1-9d96-3f14b202cd33	\N			0	outbound	+18556311397	\N	\N	{}	new lead		1	\N	\N	2329
2017-04-18 19:41:37.004345+00	2017-11-29 18:38:49.805492+00	4052	completed				+12144356106		175	2017-04-18 19:41:37.000944	2017-04-18 19:44:32.080941	CA22a757cde64c20e1184edf9ead618c33	\N	105			0	inbound	+12147122250	\N	8.07694578170776367	\N	new lead	ross jason     	9	\N	\N	2330
2016-07-29 15:35:33.98521+00	2016-07-29 15:42:06.890203+00	1030	completed				+18156628205		10	2016-07-29 15:35:33.983689	2016-07-29 15:35:43.9489	CAe9ee4744d325703292ce9511687b5d40	\N	\N			0	inbound	+18559694001	70	\N	null	new lead		1	\N	\N	2331
2016-07-29 15:38:57.224233+00	2016-07-29 15:42:18.201525+00	1031	completed				+18156628205		5	2016-07-29 15:38:57.223123	2016-07-29 15:39:02.052034	CAe4b14d8a5f7335475795977c45d8b349	\N	\N			0	inbound	+18559694001	70	\N	null	new lead		1	\N	\N	2331
2016-07-29 15:40:55.213991+00	2016-07-29 15:42:27.764095+00	1032	completed				+18156628205		8	2016-07-29 15:40:55.210989	2016-07-29 15:41:03.207776	CA2aab6fdfd416ab04a727a484de18099f	\N	\N			0	inbound	+18559694001	70	\N	null	new lead		1	\N	\N	2331
2016-05-25 15:24:39.038961+00	2016-05-25 15:25:15.394026+00	197	completed				+18156628205		30	2016-05-25 15:24:39.037474	2016-05-25 15:25:15.392907	CA9d7f7adbe1724b93d931aef9b41469ef	cd89e433-4bde-4f86-9b22-8f52c2413fcd	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REc59c2ae69e323fbf6f189b5a6173d2eb	1	outbound	+18556311490	\N	3.1431128978729248	{}	new lead		1	\N	\N	2331
2016-05-24 13:52:03.331813+00	2016-05-25 18:28:34.615745+00	188	completed				+18156628205		0	2016-05-24 13:52:03.330606	2016-05-24 13:52:29.73208	CA9358570f3cdcfc7f2e15762feba83dd0	cd89e433-4bde-4f86-9b22-8f52c2413fcd	\N			1	outbound	+18556311490	\N	\N	{}	new lead		1	\N	\N	2331
2016-10-10 16:15:20.74179+00	2016-12-10 01:04:28.706413+00	2246	completed				+19517121030		112	2016-10-10 16:15:20.740255	2016-10-10 16:17:12.295617	CA78cee3c13d1444670746d7592d3ce859	\N	61			0	inbound	+18557579140	\N	1.02144718170166016	null	new lead		3	\N	\N	2332
2016-10-11 16:21:07.058418+00	2016-12-10 01:04:28.706421+00	2263	completed				+19517121030		77	2016-10-11 16:21:07.056847	2016-10-11 16:22:24.391779	CA2e34fa55c07d058472c0efb817a60188	\N	61			0	inbound	+18557579140	\N	1.17935895919799805	null	new lead		3	\N	\N	2332
2017-04-01 18:53:37.256092+00	2017-11-29 18:47:25.067947+00	3653	completed				+18178776044		461	2017-04-01 18:53:37.254199	2017-04-01 19:01:18.26022	CA33cf0d32f6f141bcda46c52ed2914188	\N	118		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE81af9e7d2b2ce7c3be08dcf6c6e595a4	0	inbound	+19728330116	\N	20.3131029605865479	\N	new lead	van j	8	\N	\N	2333
2017-09-25 18:34:24.594544+00	2017-09-25 18:38:08.021712+00	6481	completed				+14042462727		223	2017-09-25 18:34:24.59207	2017-09-25 18:38:08.008888	CAf596a18213003af298ae92ca5f471d39	\N	150			0	inbound	+17707665732	133	45.1795229911804199	\N	new lead		13	\N	\N	2337
2017-09-25 18:41:11.081921+00	2017-09-25 18:42:01.817835+00	6482	completed	Derrick	Zackery	Nicholsderek@yahoo.com	+14042462727		36	2017-09-25 18:41:11.080346	2017-09-25 18:42:00.34196	CA35bfb0e93b884e55824c8e0dc8846e72	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE39032eb29441b8daefb35d98d202e5dc	1	outbound	+17704009016	\N	18.9193470478057861	{}	new lead		13	\N	\N	2337
2017-09-25 18:42:18.314647+00	2017-09-25 18:44:01.806736+00	6483	completed	Derrick	Zackery		+14042462727		103	2017-09-25 18:42:18.312957	2017-09-25 18:44:01.153664	CA8a4daf68abeb7fb36ab80c3d473f2c12	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE53f7abd4f6d29f37d9c7e9542c1440bd	0	inbound	+17704009016	132	7.99092888832092285	\N	new lead		13	\N	\N	2337
2017-04-14 16:49:10.570816+00	2017-11-29 18:38:49.804931+00	3921	completed				+1118012604217		133	2017-04-14 16:49:10.568133	2017-04-14 16:51:23.461331	CA90892dd18a924e4c8d27d1efe06195b8	\N	127			0	inbound	+12147122250	\N	1.44084596633911133	\N	new lead		9	\N	\N	2339
2016-11-02 01:15:09.841265+00	2016-11-02 01:15:09.869693+00	2534	missed	Victor	Melendez	guinga3089@gmail.com	+16824727172		\N	2016-11-02 01:15:09.840219	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2342
2017-10-03 17:19:49.484588+00	2017-10-03 17:23:55.754579+00	6565	completed				+16787258317		246	2017-10-03 17:19:49.482396	2017-10-03 17:23:55.745378	CAca520e1a33c8ee66787439aefa094976	\N	150			0	inbound	+17707665732	133	17.1176221370697021	\N	new lead		13	\N	\N	2346
2017-10-03 17:38:40.33362+00	2017-10-03 17:39:58.30686+00	6567	completed				+16787258317		78	2017-10-03 17:38:40.331666	2017-10-03 17:39:58.290967	CA0e4ca2c9b0aca4be699350799d58a5a8	\N	150			0	inbound	+17707665732	133	13.8925731182098389	\N	new lead		13	\N	\N	2346
2017-08-16 13:17:54.092906+00	2017-08-16 13:18:50.729661+00	6047	completed	Jacquelyn	Usher		+16783965605		56	2017-08-16 13:17:54.091518	2017-08-16 13:18:49.601883	CAdc1cf23e6b30e2a6d58d6df229ca4590	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE157e5f8ee1e130aea35bea2beda8ac6e	0	inbound	+17704009016	132	4.53676700592041016	\N	new lead		13	\N	\N	2350
2017-08-16 13:12:24.896435+00	2017-08-16 13:17:39.451116+00	6046	completed	Jacquelyn	Usher	Jackieusher11@gmail.com	+16783965605		53	2017-08-16 13:12:24.89438	2017-08-16 13:13:26.972858	CA9b34068117523a643f5d6c1e0a784945	0427608a-ae09-4db0-a1e8-374423ee28c3	153			1	outbound	+17704009016	\N	9.05079007148742676	{}	new lead		13	\N	\N	2350
2017-11-04 14:27:11.496524+00	2017-11-04 14:28:38.207658+00	6928	completed				+18175056272		86	2017-11-04 14:27:11.494061	2017-11-04 14:28:37.066978	CA6b1718505cdf077edaf53427fb3664c4	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE0df128e63e28eccb60a42eb77da3d08b	0	inbound	+18177569010	124	13.1111018657684326	\N	new lead	ashford joshua	12	\N	\N	2351
2016-10-04 03:09:14.736885+00	2016-12-10 01:04:28.706399+00	2135	completed				+19099362016		4	2016-10-04 03:09:14.735198	2016-10-04 03:09:18.527793	CA5594f2208a42ff3637e646bd85ae6f0c	\N	61			0	inbound	+18557579140	\N	0.824892044067382812	null	new lead		3	\N	\N	2354
2017-11-20 18:53:56.834371+00	2017-11-21 14:36:33.395174+00	7145	completed	Johnathan	Sowers	sowersjohnathan@gmail.com	+16783207041		229	2017-11-20 18:53:56.832835	2017-11-20 18:57:55.842882	CAe2636725f9dc58c8108a82eda2c9a78e	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REe7b535807cbfd8d24db8f5c874d6b962	1	outbound	+17704009016	\N	17.1313731670379639	{}	select status		13	\N	\N	2355
2017-11-20 17:51:00.226439+00	2017-11-21 14:36:33.405649+00	7144	completed	Johnathan	Sowers	Sowersjohnathan@gmail.com	+16783207041		44	2017-11-20 17:51:00.224836	2017-11-20 17:51:53.025322	CA1eee3880c8dae59da9d1243103ba772f	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REe1b3580e80b8792b8a8a9fe395f5e794	1	outbound	+17704009016	\N	12.7344999313354492	{}	select status		13	\N	\N	2355
2016-10-11 17:51:58.433147+00	2016-12-09 17:10:17.413613+00	2266	completed				+15706294053		344	2016-10-11 17:51:58.431374	2016-10-11 17:57:42.745086	CAf13b4b17c7c2607978c5553c5314d5f1	\N	27			0	inbound	+18552716856	\N	6.43486595153808594	null	new lead		3	\N	\N	2358
2016-09-03 15:13:43.775202+00	2016-12-09 17:10:17.413391+00	1871	completed				+12014525843		308	2016-09-03 15:13:43.774058	2016-09-03 15:18:51.81565	CA7e5bc005f80b9c17f404b902be7c40fb	\N	27			0	inbound	+18552716856	\N	4.71210002899169922	null	new lead		3	\N	\N	2360
2017-05-07 18:50:18.36627+00	2017-11-29 18:47:25.068411+00	4820	missed				+19038163561		4	2017-05-07 18:50:18.363239	2017-05-07 18:50:22.231635	CAe4bb179d8c00262e1173cec6e2e9372b	\N	\N			0	inbound	+19728330116	\N	\N	\N	new lead	cell phone   tx	8	\N	\N	2361
2016-11-01 16:00:20.334098+00	2016-11-01 16:03:13.576966+00	2469	completed				+16784919380		172	2016-11-01 16:00:20.3311	2016-11-01 16:03:12.697976	CA61bce991cf8a8f499375b61e37c91c79	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE20900a7dad5ecababd6d6e6f9284b99c	0	inbound	+18557240606	49	2.15084290504455566	null	new lead		1	\N	\N	2364
2016-11-01 20:58:14.095157+00	2016-11-01 21:16:11.510475+00	2509	completed				+16784919380		1069	2016-11-01 20:58:14.092617	2016-11-01 21:16:02.819853	CA5fb440db9cef9f22678b7e3b82402266	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE0cd768fad3373e1a78477cdaeee1ef81	0	inbound	+18557240606	49	1.78841900825500488	null	new lead		1	\N	\N	2364
2017-12-12 14:25:50.839879+00	2017-12-12 14:25:54.721277+00	7806	completed				+14127015078		4	2017-12-12 14:25:50.838206	2017-12-12 14:25:54.710822	CAddfd6e50b442ad7a8db6e30cef88df4b	\N	78			0	inbound	+18036184545	119	2.20668506622314453	\N	new lead		6	\N	\N	2365
2017-11-28 22:34:07.194726+00	2017-11-28 22:43:04.798692+00	7370	completed	Jessica	Smith	jesssmith79.ls@gmail.com	+19123344418		190	2017-11-28 22:34:07.192958	2017-11-28 22:37:17.543131		\N	153			0	outbound	+17704009016	132	\N	\N	select status		13	\N	\N	2366
2017-11-28 22:32:34.629092+00	2017-11-28 22:43:04.810638+00	7369	completed	Jessica	Smith	jesssmith79.ls@gmail.com	+19123344418		41	2017-11-28 22:32:34.627313	2017-11-28 22:33:29.198934	CAabe1ce6e37c1f5bb44a7e17773da8ab3	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE6fb13471c1c24fffed2bfe5e1ca670c0	1	outbound	+17704009016	\N	11.8774659633636475	{}	select status		13	\N	\N	2366
2017-05-15 16:25:40.230439+00	2017-08-17 14:35:21.045191+00	5070	completed				+18173334330		138	2017-05-15 16:25:40.227707	2017-05-15 16:27:58.675068	CAb750061f9e129c8ef0701a30ac25c04c	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE38a1dc63ccce54f55d634c0d72684711	0	inbound	+18177569010	124	6.16973304748535156	\N	new lead	wireless caller	12	\N	\N	2368
2017-04-10 21:28:55.131236+00	2017-11-29 18:38:53.213688+00	3772	completed				+15129687341		77	2017-04-10 21:28:55.129424	2017-04-10 21:30:11.956615	CAe116c965918cbd5f7e185c4ffac8d96a	\N	105			0	inbound	+12146922088	\N	5.82736110687255859	\N	new lead	legend communit	9	\N	\N	2370
2016-11-09 23:35:05.217747+00	2016-11-09 23:35:24.092175+00	2826	completed				+16025370000		19	2016-11-09 23:35:05.214642	2016-11-09 23:35:23.796596	CA0e0219e00ddef7017ab73bd388c339fe	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REd76ccd7790bbd4f944c8b3fd1c3e97c3	0	inbound	+18557240606	49	2.00760316848754883	null	new lead		1	\N	\N	2372
2016-09-10 13:14:57.779636+00	2016-12-09 17:10:17.413456+00	1987	completed				+14849518593		173	2016-09-10 13:14:57.776535	2016-09-10 13:17:50.84937	CA017faf89d9081cabd257cb9becf148d1	\N	27			0	inbound	+18552716856	\N	6.02181816101074219	null	new lead		3	\N	\N	2373
2016-09-19 21:46:40.181361+00	2016-12-10 01:04:42.413797+00	2055	completed				+19095209202		142	2016-09-19 21:46:40.180021	2016-09-19 21:49:02.622142	CA143019ea0bf789da279828151dc508a1	\N	58			0	inbound	+18552187903	\N	0.982151031494140625	null	new lead		3	\N	\N	2374
2017-06-16 19:44:03.877226+00	2017-06-16 19:44:29.853269+00	5592	missed	MIke	Degan	mike@themarketerse.com	+17033893536		\N	2017-06-16 19:44:03.875605	\N	CA8f5f158d26b7d9e69bbc8fe0b24d1f70	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	2375
2017-07-31 02:16:11.104561+00	2017-07-31 02:16:19.194188+00	5895	missed	MIke	Degan		+17033893536		8	2017-07-31 02:16:11.101968	2017-07-31 02:16:19.179588	CAd3e7e4ba9eb687047b680652459e626c	\N	\N			0	inbound	+17707665732	133	\N	\N	new lead		13	\N	\N	2375
2016-11-10 16:37:48.288578+00	2016-11-10 16:54:25.136695+00	2833	completed				+17133820850		994	2016-11-10 16:37:48.287653	2016-11-10 16:54:22.428991	CA969ddc8230847f093b244cfccc43f508	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REe55bcef61b4c92771c2311c1d5105fcb	0	inbound	+18557240606	49	1.82475996017456055	null	new lead		1	\N	\N	2377
2017-04-18 22:02:37.178601+00	2017-11-29 18:38:53.214219+00	4069	completed				+14694346967		138	2017-04-18 22:02:37.175495	2017-04-18 22:04:54.781203	CA0c4ac114ded88a5b14fa7beeb1b776d3	\N	105			0	inbound	+12146922088	\N	4.59829807281494141	\N	new lead	nova alliance s	9	\N	\N	2379
2017-05-16 15:16:03.538445+00	2017-11-29 18:38:49.811692+00	5103	completed				+14694346967		220	2017-05-16 15:16:03.535239	2017-05-16 15:19:43.874898	CAc6ae610bb10b5a06226d7c1f9da818e3	\N	107			0	inbound	+12147122250	\N	8.12163305282592773	\N	new lead	nova alliance s	9	\N	\N	2379
2017-12-01 15:42:30.182088+00	2017-12-01 15:42:34.326664+00	7426	completed				+19739579741		4	2017-12-01 15:42:30.180709	2017-12-01 15:42:34.311275	CA149747119ac3bc999bfab5b3745a714a	\N	78			0	inbound	+18036184545	119	1.78952980041503906	\N	new lead		6	\N	\N	2380
2016-11-21 01:13:01.105653+00	2016-11-21 01:13:35.748263+00	2953	completed				+12024211208		34	2016-11-21 01:13:01.103687	2016-11-21 01:13:35.288319	CA024e0267992de21234bb825a4763ca27	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REf627f9b52426a7575557610020e2d4d0	0	inbound	+18557240606	49	2.21299910545349121	null	new lead		1	\N	\N	2381
2016-11-21 22:15:57.799982+00	2016-11-21 22:17:07.290186+00	2963	completed				+12024211208		69	2016-11-21 22:15:57.79866	2016-11-21 22:17:06.617626	CAcdcb10fb20d0f07857f3fce7108e0e83	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REc7011438ed2c1ad58e789988e02c9bd2	0	inbound	+18557240606	49	2.09263896942138672	null	new lead		1	\N	\N	2381
2016-11-21 22:17:18.467472+00	2016-11-21 22:44:39.012286+00	2964	completed				+12024211208		1637	2016-11-21 22:17:18.466457	2016-11-21 22:44:35.516219	CA5a073ecd83e4b5cdd521e0b48596b3f4	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE3c5eccc54e28aed18fb8536b6530e754	0	inbound	+18557240606	49	0.377263069152832031	null	new lead		1	\N	\N	2381
2017-06-01 15:33:34.537328+00	2017-11-29 18:38:49.814345+00	5547	missed				+14698996544		24	2017-06-01 15:33:34.53526	2017-06-01 15:33:58.170364	CAdc9e835053e38010d272bc2cefc87cd9	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	bahena edgar   	9	\N	\N	2382
2017-12-07 17:39:10.46365+00	2017-12-07 18:01:43.05752+00	7688	completed				+13166822532		1349	2017-12-07 17:39:10.462415	2017-12-07 18:01:39.653404	CA23e2174a55de95248e0c540d403165fb	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE632e9815245ea85bf050c5bb287e3fbd	0	inbound	+18558645656	136	2.61617803573608398	\N	new lead		15	\N	\N	2383
2016-05-24 10:42:57.872972+00	2017-11-29 18:31:37.368176+00	185	completed	Unknown			+17574169416		318	2016-05-24 10:42:57.870195	2016-05-24 10:48:16.098895	CA96a78b20ec10c2c2e09f9ad0b323559f	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REa5e5b0d6d2ecda9675df14007d413624	0	inbound	+18555472453	\N	\N	null	new lead		1	\N	\N	2384
2017-01-12 17:08:18.238873+00	2017-01-12 17:14:50.557078+00	3116	completed				+18102651770		359	2017-01-12 17:08:18.236695	2017-01-12 17:14:17.592948	CAa6d93f94598d05abc5fb20f92807bfee	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE79f98715caab32b557877a9042f75b01	0	inbound	+18557240606	49	2.29058480262756348	null	new lead		1	\N	\N	2385
2017-01-12 17:14:55.070467+00	2017-01-12 17:16:26.993907+00	3117	completed				+18102651770		60	2017-01-12 17:14:55.068242	2017-01-12 17:15:55.521103	CAfc8ef1302c1665711a9d9679418f2098	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE2e5045e18518b86c5f4ebcd4ca2c182d	0	inbound	+18557240606	49	1.97497701644897461	null	new lead		1	\N	\N	2385
2016-12-29 21:27:39.763672+00	2016-12-29 21:27:39.791008+00	3102	missed	Steven	Rae	steverae1962@hotmail.com	+18329225533		\N	2016-12-29 21:27:39.762445	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2387
2016-07-12 18:37:35.144508+00	2016-07-20 15:45:48.076022+00	858	completed				+18034902508		60	2016-07-12 18:37:35.142561	2016-07-12 18:38:35.337393	CAb8cb6079266ccc9b4292262b69f7e6f5	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE27e317bbd4b145bf0cdc6f21e9cf91df	0	inbound	+18555343978	48	4.97499990463256836	null	new lead		1	\N	\N	2388
2016-07-12 18:46:20.405014+00	2016-07-20 15:45:48.076049+00	860	completed				+18034902508		28	2016-07-12 18:46:20.403546	2016-07-12 18:47:11.275715	CA1e35912fd8f7b8160a5beb953e8ff1c5	cb6ad4cc-25cf-4512-9908-f67d32466e31	\N			1	outbound	+18555343978	\N	19.7782959938049316	{}	new lead		1	\N	\N	2388
2016-07-12 18:47:55.653017+00	2016-07-22 11:59:53.602535+00	861	completed				+18034902508		10	2016-07-12 18:47:55.650878	2016-07-12 18:48:05.84739	CAc3e5275ba9f66969e651ef7ac31ccca4	\N	\N			0	inbound	+18555343978	48	9.30397486686706543	null	new lead		1	\N	\N	2388
2016-11-04 15:47:03.971096+00	2016-11-04 15:48:06.201974+00	2700	missed				+18034902508		62	2016-11-04 15:47:03.969323	2016-11-04 15:48:06.20043	CAf9df830fbbac12dff0367e78d8b90c52	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE55845cc6098335211d9f0ef0102aa96b	0	inbound	+18555343978	48	1.62969613075256348	null	new lead		1	\N	\N	2388
2017-06-30 22:09:44.424497+00	2017-06-30 22:11:22.523418+00	5698	completed				+18178967517		98	2017-06-30 22:09:44.423268	2017-06-30 22:11:22.52109	CAb2fb7860e8b4512f8c889ab7798793ea	\N	146			0	inbound	+18177569010	124	22.9751009941101074	\N	new lead	reyther kimberl	12	\N	\N	2389
2017-06-30 22:10:12.273963+00	2017-06-30 22:32:51.840812+00	5699	completed				+18178967517		1358	2017-06-30 22:10:12.272589	2017-06-30 22:32:50.707437	CA3dff9885070fa17cb50b404c444b7b94	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REf263b1c308aedb249b77722d8692d33d	0	inbound	+18177569010	124	1287.21041798591614	\N	new lead	reyther kimberl	12	\N	\N	2389
2017-06-30 14:56:04.243766+00	2017-08-17 14:35:21.04554+00	5690	completed				+18178967517		139	2017-06-30 14:56:04.241923	2017-06-30 14:58:22.887188	CA5216c7e59743fe0ec81020d42bb4238c	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE0c5699e53f2050869c7f5335b7baeb1d	0	inbound	+18177569010	124	8.68899703025817871	\N	new lead	reyther kimberl	12	\N	\N	2389
2017-06-30 22:07:33.877871+00	2017-08-17 14:35:21.04555+00	5695	completed				+18178967517		24	2017-06-30 22:07:33.875871	2017-06-30 22:07:57.933406	CAa19c38d2df699ebb451a370ecfca4a9f	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE556ba8e6c2c2785a693c25aafe7ca99c	0	inbound	+18177569010	124	5.33064007759094238	\N	new lead	reyther kimberl	12	\N	\N	2389
2017-06-30 22:08:08.057905+00	2017-08-17 14:35:21.045557+00	5696	completed				+18178967517		30	2017-06-30 22:08:08.056157	2017-06-30 22:08:37.736117	CAd81bdcd9b1a93d41cc193eafb1c2ed2f	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REc8eb6abbc91f68dfd80a77782cfe3538	0	inbound	+18177569010	124	5.2711331844329834	\N	new lead	reyther kimberl	12	\N	\N	2389
2017-06-30 22:08:45.20154+00	2017-08-17 14:35:21.045565+00	5697	completed				+18178967517		95	2017-06-30 22:08:45.19995	2017-06-30 22:10:19.726469	CAaad08b5f259e07a17417c1b082cc9b5d	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE352c3e5492fdb8f7a22d76138576cb05	0	inbound	+18177569010	124	61.2290689945220947	\N	new lead	reyther kimberl	12	\N	\N	2389
2016-10-27 19:56:22.059886+00	2017-11-29 18:31:56.600211+00	2362	missed				+15702089494		6	2016-10-27 19:56:22.058688	2016-10-27 19:56:28.48083	CA3edde157061e48f8dc2c06c1b35ae9b5	\N	\N			0	inbound	+18556311397	\N	\N	null	new lead		1	\N	\N	2434
2017-06-28 16:54:54.812691+00	2017-06-28 16:55:51.793955+00	5675	completed	MCKENZIE	MITCHELL	mitchell.mckenzie520@gmail.com	+16786772682		47	2017-06-28 16:54:54.81098	2017-06-28 16:55:51.503468	CAb69d5547009408b459b12c19fe0e90d0	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE059df835b4403c6e955bec83d527e5a9	1	outbound	+17704009016	\N	19.0937809944152832	{}	new lead		13	\N	\N	2390
2017-06-28 18:17:30.976919+00	2017-06-28 18:24:36.015482+00	5676	completed	MCKENZIE	MITCHELL		+16786772682		425	2017-06-28 18:17:30.972962	2017-06-28 18:24:35.558614	CAf1923cca96b30905e72b26c229622814	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE8104ba78d216fb0d4cacbc921240378d	0	inbound	+17704009016	132	327.263149976730347	\N	new lead		13	\N	\N	2390
2017-09-16 18:04:06.454755+00	2017-09-16 18:05:45.354651+00	6379	completed	PATRICIA	BURTCH		+17062449578		98	2017-09-16 18:04:06.452454	2017-09-16 18:05:44.170951	CAd10154a6851739d2170350485dacd2b2	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REdb1d662985f1b2bf3f3ff46dca77c6f6	0	inbound	+17704009016	132	11.5775461196899414	\N	new lead		13	\N	\N	2393
2017-09-06 18:49:24.038455+00	2017-09-06 18:52:51.39735+00	6275	completed	PATRICIA	BURTCH	pnorman73@hotmail.com	+17062449578		193	2017-09-06 18:49:24.03689	2017-09-06 18:52:50.273899	CA574c1ec2528b7895aed1d2228e10aa6f	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE82a5a121c6a869f9c66ab98b9a018efb	1	outbound	+17704009016	\N	14.9038240909576416	{}	new lead		13	\N	\N	2393
2016-11-01 20:40:54.130154+00	2016-11-01 20:41:36.208958+00	2506	completed				+12142026946		42	2016-11-01 20:40:54.128626	2016-11-01 20:41:35.630489	CA24160ae78e3c1bfd5c6820623f07655f	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE118dc2e5ec193988f20d4e1c2dab0b0c	0	inbound	+18557240606	49	1.8827359676361084	null	new lead		1	\N	\N	2394
2016-11-01 20:57:21.802+00	2016-11-01 20:57:21.852934+00	2508	missed	Justin	McLeod	jmcleod@usnet-1.com	+12142026946		\N	2016-11-01 20:57:21.800371	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2394
2017-09-06 01:36:45.707586+00	2017-09-06 01:36:45.768878+00	6268	missed	naomi	nunez	Naomi.nunez11713@gmail.com	+17064103388		\N	2017-09-06 01:36:45.705813	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	2398
2017-04-29 20:56:09.488647+00	2017-04-29 21:17:20.894818+00	4479	completed				+18177242051		1271	2017-04-29 20:56:09.486021	2017-04-29 21:17:20.891877	CAe57ed789d4b8c80e4852ea019dff816e	\N	129			0	inbound	+18172104002	126	352.415076017379761	\N	new lead	mcdonald lee	12	\N	\N	2401
2017-12-05 16:24:31.621811+00	2017-12-05 16:58:38.234103+00	7588	completed				+15617351500		2043	2017-12-05 16:24:31.619501	2017-12-05 16:58:34.505426	CA817b4b8983749e6ce591a198057f4714	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REae5a7d18c4e2fe25dad045f516a4525f	0	inbound	+18558645656	136	2.87726497650146484	\N	new lead		15	\N	\N	2403
2016-11-01 14:49:31.876708+00	2016-11-01 15:21:32.65686+00	2464	completed				+14044531413		1916	2016-11-01 14:49:31.875168	2016-11-01 15:21:28.1197	CA69d539d0e580a6c0e1cdfc58c3950661	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REbab05028bf88f20e467c4c1d182cb0ce	0	inbound	+18557240606	49	2.19919681549072266	null	new lead		1	\N	\N	2406
2017-11-17 13:44:23.809536+00	2017-11-17 13:51:19.970531+00	7095	completed				+18178312626		416	2017-11-17 13:44:23.80767	2017-11-17 13:51:19.967855	CA13718896f565fdc41022e238263de999	\N	146			0	inbound	+18177569010	124	348.011368989944458	\N	new lead	solidiform	12	\N	\N	2407
2017-11-17 15:23:50.74233+00	2017-11-17 15:25:10.003768+00	7100	completed				+18178312626		78	2017-11-17 15:23:50.739741	2017-11-17 15:25:08.934825	CA2fda9b8a4a52e53174571a8bc0a74bee	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REf0ea897db0ccebc799e4a0658e9c9e0d	0	inbound	+18177569010	124	10.4230818748474121	\N	new lead	solidiform	12	\N	\N	2407
2017-03-27 15:19:11.654812+00	2017-11-29 18:38:53.212944+00	3583	completed				+15139613877		185	2017-03-27 15:19:11.652101	2017-03-27 15:22:16.480704	CAb0ca11e3f1b3accebef7f0d092f65e50	\N	107			0	inbound	+12146922088	\N	6.30174708366394043	\N	new lead	hall larry	9	\N	\N	2409
2017-03-27 17:55:03.114372+00	2017-11-29 18:38:53.213001+00	3592	completed				+15139613877		25	2017-03-27 17:55:03.111322	2017-03-27 17:55:27.992043	CA7076f5669c2f63625fc0c47d08b3d044	\N	\N			0	inbound	+12146922088	\N	3.76358890533447266	\N	new lead	hall larry	9	\N	\N	2409
2017-03-31 15:05:07.299729+00	2017-11-29 18:38:53.213191+00	3642	completed				+15139613877		110	2017-03-31 15:05:07.297057	2017-03-31 15:06:57.621673	CA87f8be258c00a5b9bdf7e5700d748f86	\N	\N			0	inbound	+12146922088	\N	6.51711297035217285	\N	new lead	hall larry	9	\N	\N	2409
2017-05-23 17:41:58.551158+00	2017-08-17 14:35:21.045305+00	5325	completed				+18175017342		72	2017-05-23 17:41:58.548183	2017-05-23 17:43:10.76422	CA3301707ad8995b3ece2ecc038cfa11ce	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REe0b544431fcf9addcad187b9bf9c0224	0	inbound	+18177569010	124	5.4704279899597168	\N	new lead	wireless caller	12	\N	\N	2410
2017-04-20 18:18:55.156005+00	2017-11-29 18:38:49.806003+00	4144	completed				+19037985148		120	2017-04-20 18:18:55.153832	2017-04-20 18:20:54.684917	CA99749632de7dda0575e0d81f7d422d05	\N	125			0	inbound	+12147122250	\N	1.89906001091003418	\N	new lead	texarkana  tx	9	\N	\N	2413
2017-04-20 19:06:13.759736+00	2017-11-29 18:38:49.806017+00	4146	completed				+19037985148		63	2017-04-20 19:06:13.756371	2017-04-20 19:07:16.904766	CAf9029cdff372a2403a762f9445300d35	\N	125			0	inbound	+12147122250	\N	1.40250110626220703	\N	new lead	texarkana  tx	9	\N	\N	2413
2017-04-21 18:44:57.722801+00	2017-11-29 18:38:49.806237+00	4195	completed				+19037985148		63	2017-04-21 18:44:57.720868	2017-04-21 18:46:01.175962	CA72fe0564be7bb63280a711cb55a9a12a	\N	125			0	inbound	+12147122250	\N	1.16727590560913086	\N	new lead	texarkana  tx	9	\N	\N	2413
2017-04-21 18:46:00.47783+00	2017-11-29 18:38:49.806244+00	4196	completed				+19037985148		107	2017-04-21 18:46:00.476367	2017-04-21 18:47:47.524157	CAdb568692804698f1bc945b9777fef7d0	\N	124			0	inbound	+12147122250	\N	1.44033908843994141	\N	new lead	texarkana  tx	9	\N	\N	2413
2017-04-21 18:47:55.171384+00	2017-11-29 18:38:49.806251+00	4197	completed				+19037985148		78	2017-04-21 18:47:55.169618	2017-04-21 18:49:12.932428	CA6edccf69aac6f561a2c2362f4f54a132	\N	127			0	inbound	+12147122250	\N	1.19821715354919434	\N	new lead	texarkana  tx	9	\N	\N	2413
2017-04-21 18:49:12.246626+00	2017-11-29 18:38:49.806258+00	4198	missed				+19037985148		44	2017-04-21 18:49:12.245182	2017-04-21 18:49:56.185638	CAd804329814288d284fd876aa2b533894	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	texarkana  tx	9	\N	\N	2413
2017-04-25 19:17:02.23556+00	2017-11-29 18:38:49.806639+00	4296	completed				+19037985148		53	2017-04-25 19:17:02.233109	2017-04-25 19:17:54.957969	CAa03c9fa83993bab40886680784ae6a04	\N	125			0	inbound	+12147122250	\N	1.06148195266723633	\N	new lead	texarkana  tx	9	\N	\N	2413
2017-04-25 19:17:55.563045+00	2017-11-29 18:38:49.806646+00	4297	completed				+19037985148		81	2017-04-25 19:17:55.561144	2017-04-25 19:19:16.33395	CAea9b79947ddde32f3ca7e6112ee397eb	\N	127			0	inbound	+12147122250	\N	0.993928909301757812	\N	new lead	texarkana  tx	9	\N	\N	2413
2017-04-25 19:19:23.00639+00	2017-11-29 18:38:49.806653+00	4298	completed				+19037985148		70	2017-04-25 19:19:23.005043	2017-04-25 19:20:32.829313	CA9c6a308c25e34d7e1f6f71863a73972d	\N	124			0	inbound	+12147122250	\N	1.24577212333679199	\N	new lead	texarkana  tx	9	\N	\N	2413
2016-11-16 21:03:20.510321+00	2016-11-16 21:03:20.541811+00	2928	missed	RONALD	GOODMAN	ulricgoodman@gmail.com	+17708573716		\N	2016-11-16 21:03:20.50926	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2415
2016-06-18 21:06:25.185732+00	2017-11-29 18:31:18.808744+00	443	completed	Unknown			+14062417224		16	2016-06-18 21:06:25.183075	2016-06-18 21:06:41.199672	CA4e4b281407af6f55d74589a2ebc125e4	\N	\N			0	inbound	+18556311439	\N	\N	null	new lead		1	\N	\N	2416
2016-06-24 17:41:14.962087+00	2016-06-24 17:41:55.530422+00	453	completed				+14062417224		36	2016-06-24 17:41:14.961067	2016-06-24 17:41:55.528944	CAa93d49770907e19d9e79cb4771b56d34	bacb2c6f-2833-49e2-90e4-7cfcf770bfc6	16			1	outbound	+18556311439	\N	1.91343402862548828	{}	new lead		1	\N	\N	2416
2016-06-24 15:54:32.085873+00	2017-11-29 18:31:18.808753+00	451	completed	Robert	Cheeseman		+14062417224		30	2016-06-24 15:54:32.084469	2016-06-24 15:55:02.543786	CAb355520716769302d32a480c406f64c8	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE6bb8229a142e7cd595a0a0782b6f4692	0	inbound	+18556311439	\N	13.6354920864105225	null	new lead		1	\N	\N	2416
2016-06-24 17:42:28.99388+00	2017-11-29 18:31:18.808761+00	454	completed	Unknown			+14062417224		84	2016-06-24 17:42:28.992848	2016-06-24 17:43:53.295344	CA92209009e4b645983606a9084b21fed3	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE2266d8cadc1a808abef37d5dae67047d	0	inbound	+18556311439	\N	2.82555389404296875	null	new lead		1	\N	\N	2416
2016-10-31 18:58:20.71331+00	2016-10-31 19:03:46.936015+00	2387	completed				+17046285195		326	2016-10-31 18:58:20.711858	2016-10-31 19:03:46.449039	CAaacf6cbc34b5ccab8267b462e296d506	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE49b477087f831d39129231f29356aea0	0	inbound	+18557240606	49	1.98382806777954102	null	new lead		1	\N	\N	2417
2017-04-07 22:40:53.237739+00	2017-11-29 18:38:53.213439+00	3734	completed				+18326729500		565	2017-04-07 22:40:53.235497	2017-04-07 22:50:18.431999	CA031cc69b884f882e800759cec14e8c62	\N	99			0	inbound	+12146922088	\N	7.11371207237243652	\N	new lead	houston  tx	9	\N	\N	2422
2016-07-26 21:53:06.57546+00	2017-11-29 18:31:14.616475+00	959	missed				+19206068476		45	2016-07-26 21:53:06.573764	2016-07-26 21:53:51.389262	CA59806b0a93808a2cbd7af66e2f7db6e4	\N	\N			0	inbound	+18556311541	\N	\N	null	credit union declined no autopay		1	\N	\N	2426
2016-08-08 20:17:20.905402+00	2017-01-27 21:12:23.812881+00	1339	completed				+19206068476		83	2016-08-08 20:17:20.904004	2016-08-08 20:18:43.738224		\N	\N			0	outbound	+18555343978	48	\N	null	credit union declined no autopay		1	\N	\N	2426
2017-03-06 20:56:50.698342+00	2017-03-06 20:58:04.157716+00	3331	completed	Georgia			+19542056448		63	2017-03-06 20:56:50.695136	2017-03-06 20:58:04.155423	CA646b9e90a55d0e5a9fed4b197d548a44	53da9e33-88fb-4b04-baca-339193fd55f7	79			1	outbound	+17735469660	\N	8.84209585189819336	{}	new lead		1	\N	\N	2428
2017-06-21 17:38:22.885095+00	2017-06-24 13:45:04.89404+00	5623	completed				+17627280727		309	2017-06-21 17:38:22.881769	2017-06-21 17:43:31.479093	CA2ca76be4b0d6cfad7f69c324a857ecbe	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE3d2fb6200f6694dcb606b799b05a3913	0	inbound	+17704009016	132	9.07437705993652344	\N	new lead		13	\N	\N	2429
2017-06-29 19:21:29.839397+00	2017-06-29 19:28:41.105492+00	5686	completed				+17627280727		431	2017-06-29 19:21:29.83743	2017-06-29 19:28:41.102694	CAea56eb1c7405e7db22a35e9fff820b0f	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE2d5c78bdad76ccba9a239f75aedfb34c	0	inbound	+17704009016	132	377.276767015457153	\N	new lead		13	\N	\N	2429
2017-03-24 20:01:30.549617+00	2017-11-29 18:31:56.600302+00	3572	missed				+15702089494		8	2017-03-24 20:01:30.546702	2017-03-24 20:01:38.58295	CAcf188e8306632958d5c2ba5e88bb8ceb	\N	\N			0	inbound	+18556311397	\N	\N	\N	new lead		1	\N	\N	2434
2017-04-06 19:56:52.712318+00	2017-11-29 18:38:53.213367+00	3709	completed				+14057822567		223	2017-04-06 19:56:52.710718	2017-04-06 20:00:35.237306	CA709d0582c1548e69a9752e2e9a9ea1a3	\N	107			0	inbound	+12146922088	\N	4.37474894523620605	\N	new lead	farmers insuran	9	\N	\N	2439
2017-05-24 22:10:00.971261+00	2017-11-29 18:38:49.813337+00	5384	completed				+14077214406		77	2017-05-24 22:10:00.968403	2017-05-24 22:11:17.818062	CA169bbf3d61cb7b79d8a1b52a23b40cc0	\N	127			0	inbound	+12147122250	\N	1.9145810604095459	\N	new lead	estes antonio	9	\N	\N	2442
2017-05-26 18:26:50.453187+00	2017-11-29 18:38:49.813678+00	5442	completed				+14077214406		49	2017-05-26 18:26:50.450488	2017-05-26 18:27:39.091057	CA5ba13bc27302ba9152e6c2acb3755bc4	\N	125			0	inbound	+12147122250	\N	1.51478195190429688	\N	new lead	estes antonio	9	\N	\N	2442
2017-04-15 20:00:40.042493+00	2017-11-29 18:38:49.805147+00	3973	completed				+14077214406		89	2017-04-15 20:00:40.041174	2017-04-15 20:02:09.159558	CA08b0c3e525f9dc6ecf3b6b7233a45f01	\N	127			0	inbound	+12147122250	\N	1.10182619094848633	\N	new lead	estes antonio	9	\N	\N	2442
2017-04-15 20:48:43.89034+00	2017-11-29 18:38:49.805168+00	3977	completed				+14077214406		55	2017-04-15 20:48:43.888345	2017-04-15 20:49:38.61414	CA2862851da1d5122fa65ce9fb38dd497e	\N	124			0	inbound	+12147122250	\N	1.40900993347167969	\N	new lead	estes antonio	9	\N	\N	2442
2017-04-15 21:44:45.185429+00	2017-11-29 18:38:49.805175+00	3978	completed				+14077214406		53	2017-04-15 21:44:45.182434	2017-04-15 21:45:38.418345	CA13678ebbf03ae36c4a3928ea9d705ab7	\N	127			0	inbound	+12147122250	\N	1.37675905227661133	\N	new lead	estes antonio	9	\N	\N	2442
2017-12-20 02:44:33.697057+00	2017-12-20 02:45:56.192159+00	8019	completed	Charles	stokes	Jstokes717@gmail.com	+15708984766		78	2017-12-20 02:44:33.69544	2017-12-20 02:45:56.19111	CAd5aadf7a6371019f4d6c42d5957612c1	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.61456298828125	{}	new lead		15	\N	\N	2443
2017-05-30 20:31:17.355224+00	2017-08-17 14:35:21.045384+00	5511	completed				+12105308294		197	2017-05-30 20:31:17.352289	2017-05-30 20:34:34.034101	CAd0ec0191849f175a1fb216e0b991002d	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REcbe8808799876709c4550a7cf007289c	0	inbound	+18177569010	124	10.4590620994567871	\N	new lead	martinea elsa	12	\N	\N	2446
2016-07-11 17:55:06.335923+00	2016-07-11 19:09:26.221879+00	849	completed	Chardae	Gray	chardaeg@gmail.com	+17085394609		12	2016-07-11 17:55:06.333968	2016-07-11 17:55:26.904118	CA8082cf4e2152555d09ec03ac93bd888e	ee869226-e246-4ab4-aaaa-e9403e2ddd39	\N			1	outbound	+18555983683	\N	4.4122929573059082	{}	new lead		1	\N	\N	2450
2017-12-20 01:47:39.433042+00	2017-12-20 01:50:14.952076+00	8018	completed	Donovan	Linton	idondon@gmail.com	+19546006031		152	2017-12-20 01:47:39.431565	2017-12-20 01:50:14.950902	CA305b2b7e52ae9468e4106898b38d9f97	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.30303788185119629	{}	new lead		15	\N	\N	2454
2017-07-06 16:29:51.384255+00	2017-07-06 16:36:01.407466+00	5721	completed				+16122265470		369	2017-07-06 16:29:51.382346	2017-07-06 16:36:00.091454	CA04ffeac5eecf07af74594c418be45dd2	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE7046b961c155ae80442a4eace5fe4753	0	inbound	+17704009016	132	320.395144939422607	\N	new lead		13	\N	\N	2458
2017-04-18 20:40:03.886035+00	2017-11-29 18:38:49.805499+00	4058	completed				+19402325428		239	2017-04-18 20:40:03.883296	2017-04-18 20:44:02.576241	CA35a67609013399c846ceedf9cac740f5	\N	125			0	inbound	+12147122250	\N	1.33576297760009766	\N	new lead	cell phone   tx	9	\N	\N	2459
2016-10-06 16:12:48.537214+00	2016-12-10 01:00:18.568483+00	2216	completed				+16194604609		221	2016-10-06 16:12:48.53568	2016-10-06 16:16:29.885719	CAc858e661a79897173fdec78c52a6080b	\N	56			0	inbound	+18556775511	\N	6.1048741340637207	null	new lead		3	\N	\N	2464
2016-10-05 20:20:11.855229+00	2016-12-10 01:00:18.568476+00	2200	completed				+16194604609		388	2016-10-05 20:20:11.854134	2016-10-05 20:26:39.828252	CA7fe228140cb5078bf1287cad7a695da8	\N	56			0	inbound	+18556775511	\N	5.89066004753112793	null	new lead		3	\N	\N	2464
2016-11-03 17:11:55.778993+00	2016-11-03 17:12:24.688052+00	2642	completed				+13146957756		29	2016-11-03 17:11:55.777364	2016-11-03 17:12:24.394658	CAed0d3d781b09087e13f7fb4923fbccfa	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REe72065c9dbb4f73f80844a8812b95740	0	inbound	+18557240606	49	2.14720296859741211	null	new lead		1	\N	\N	2468
2016-11-03 17:12:28.712395+00	2016-11-03 17:51:57.34192+00	2643	completed				+13146957756		2365	2016-11-03 17:12:28.711552	2016-11-03 17:51:53.667298	CA1d939208dc1d18c7d78ef88fcff457ec	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REf1101ab9f3936388be7154769ea34a50	0	inbound	+18557240606	49	3.15009403228759766	null	new lead		1	\N	\N	2468
2016-11-16 21:02:50.991891+00	2016-11-16 21:07:06.061805+00	2927	completed				+12149428596		255	2016-11-16 21:02:50.990286	2016-11-16 21:07:05.768486	CAc48ef4cb056bf838a8b3649e57d11049	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REfb1f37fc646759bcd292c8cf13654803	0	inbound	+18557240606	49	1.95545792579650879	null	new lead		1	\N	\N	2469
2016-12-08 22:50:10.609629+00	2016-12-08 22:50:10.661472+00	3066	missed	Curtis 	Wilson 	Cawilso704@yahoo.com	+17046007353		\N	2016-12-08 22:50:10.607942	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2474
2017-12-05 19:59:15.569412+00	2017-12-05 19:59:15.618166+00	7600	missed	PHILOMENE	YOUMBI	yncyprien@yahoo.fr	+18327901902		\N	2017-12-05 19:59:15.567667	\N		243bc1c1-c430-4ccb-b9d9-71662ebbb896	\N			0	outbound	+18558645656	\N	\N	{}	new lead		15	\N	\N	2475
2017-04-07 19:27:58.966092+00	2017-11-29 18:38:53.213425+00	3728	completed				+18176924451		220	2017-04-07 19:27:58.963746	2017-04-07 19:31:38.486199	CAbd85dac79fc491cbbaa5942cb4eaa4ed	\N	\N			0	inbound	+12146922088	\N	5.49474787712097168	\N	new lead	garcia emanuel	9	\N	\N	2478
2016-11-01 20:56:25.092254+00	2016-11-01 21:00:47.801625+00	2507	completed				+17064140844		255	2016-11-01 20:56:25.091033	2016-11-01 21:00:40.551134	CAc229fd1622acd44c38f4aa4c0c315bf8	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE5a710841628b09010ddd5b5af872af4b	0	inbound	+18557240606	49	1.97764706611633301	null	new lead		1	\N	\N	2479
2016-11-04 15:38:35.47505+00	2017-01-27 21:12:23.814002+00	2698	completed				+17064140844		129	2016-11-04 15:38:35.474136	2016-11-04 15:40:44.002338		\N	\N			0	outbound	+18555343978	48	\N	null	new lead		1	\N	\N	2479
2016-07-06 20:35:42.253583+00	2016-07-06 20:37:28.459684+00	790	completed	Richard	Weimer		+13307929187		102	2016-07-06 20:35:42.251934	2016-07-06 20:37:28.458636	CAdd9b3d4271c87b1fea4a1a7a19052952	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.98802590370178223	{}	new lead		1	\N	\N	2482
2016-06-26 21:44:56.538929+00	2017-11-29 18:32:13.820476+00	474	completed	Richard	Weimer		+13307929187		22	2016-06-26 21:44:56.536883	2016-06-26 21:45:18.048134	CA1b5d91d347dbaccd2945a266e794754e	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REd48cd903f6f11e6f744d48b5d8b04624	0	inbound	+18555983683	\N	\N	null	new lead		1	\N	\N	2482
2016-06-26 22:13:57.868559+00	2017-11-29 18:32:13.820483+00	476	completed	Richard	Weimer		+13307929187		19	2016-06-26 22:13:57.866506	2016-06-26 22:14:16.609942	CA876ddb80db3e51ad5dffed916c8df246	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE511c0c1399953b3a2fa5536d6d97218b	0	inbound	+18555983683	\N	\N	null	new lead		1	\N	\N	2482
2016-06-27 14:05:20.850996+00	2017-11-29 18:32:13.820561+00	492	completed	Unknown			+13307929187		26	2016-06-27 14:05:20.849363	2016-06-27 14:05:46.360715	CAc73fe90b35cc169d92605148eedf0262	\N	\N			0	inbound	+18555983683	\N	13.8630039691925049	null	new lead		1	\N	\N	2482
2016-07-01 14:31:35.210231+00	2017-11-29 18:32:13.821188+00	711	completed	Richard	Weimer		+13307929187		49	2016-07-01 14:31:35.207282	2016-07-01 14:32:24.16436	CAd8196bf8e7a1247d347aba5217476bd1	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REa477d9abb8fe6add62eb312059bcb17f	0	inbound	+18555983683	\N	13.6346421241760254	null	new lead		1	\N	\N	2482
2016-06-26 21:55:31.197974+00	2016-06-27 12:25:08.137811+00	475	completed	Richard	Weimer	bunboytoo@aol.com	+13307929187		\N	2016-06-26 21:55:31.196913	\N		ee869226-e246-4ab4-aaaa-e9403e2ddd39	\N			0	outbound	+18555983683	\N	\N	{}	new lead		1	\N	\N	2482
2016-06-27 17:11:42.626007+00	2016-06-27 17:12:38.411686+00	526	completed				+13307929187		0	2016-06-27 17:11:42.62445	2016-06-27 17:11:47.074253	CA5ee9c848c6ea3df89465bbde92e2032e	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	\N			1	outbound	+18555983683	\N	1.41095709800720215	{}	new lead		1	\N	\N	2482
2016-06-30 18:45:13.273456+00	2016-06-30 18:48:58.25441+00	686	completed				+13307929187		219	2016-06-30 18:45:13.27251	2016-06-30 18:48:58.253418	CA92e6aba36c476dbe68a363ef6962f317	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	3.13038897514343262	{}	new lead		1	\N	\N	2482
2016-07-01 14:35:39.96853+00	2016-07-01 14:53:54.666398+00	713	completed				+13307929187		11	2016-07-01 14:35:39.967172	2016-07-01 14:35:55.260426	CA83d476fdd26723f22b3148c8b4cfede9	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	\N			1	outbound	+18555983683	\N	1.95499992370605469	{}	new lead		1	\N	\N	2482
2016-07-01 14:34:09.046653+00	2016-07-01 14:36:26.682372+00	712	completed				+13307929187		34	2016-07-01 14:34:09.045589	2016-07-01 14:34:48.706464	CA3da4146abf18ef10d6e941db2b43ebcf	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	\N			1	outbound	+18555983683	\N	1.76410698890686035	{}	new lead		1	\N	\N	2482
2016-06-27 16:29:00.566932+00	2017-11-29 18:32:13.82061+00	522	completed	Unknown			+13307929187		26	2016-06-27 16:29:00.56591	2016-06-27 16:29:26.569645	CA9e3efd682d84ae4c45b6f1f1921b90d0	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE38a7c9f2cd8a4282a772b30327f63805	0	inbound	+18555983683	\N	13.8355410099029541	null	new lead		1	\N	\N	2482
2016-07-01 14:35:50.993144+00	2017-11-29 18:32:13.821195+00	714	completed	Unknown			+13307929187		164	2016-07-01 14:35:50.992215	2016-07-01 14:38:35.321688	CA28612fbf5fe8540217c661ed324d277d	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE21f14e25ccac8d93d4c9c208d4804d6c	0	inbound	+18555983683	\N	3.5537569522857666	null	new lead		1	\N	\N	2482
2016-07-06 20:25:52.066852+00	2017-11-29 18:32:13.821403+00	788	completed	Richard	Weimer		+13307929187		50	2016-07-06 20:25:52.065795	2016-07-06 20:26:41.903335	CA94612170f3e59cbf654daa1c0a3cfba9	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE08e2ab3b708ecdc78766c17cdc8a2bf7	0	inbound	+18555983683	\N	13.7127010822296143	null	new lead		1	\N	\N	2482
2017-04-20 14:48:50.509681+00	2017-11-29 18:38:49.805889+00	4123	missed				+15758108010		29	2017-04-20 14:48:50.507162	2017-04-20 14:49:19.580818	CAbf9520cc4e27a671f037f0d88427beeb	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	albuquerque  nm	9	\N	\N	2486
2016-10-22 15:45:31.412448+00	2016-12-10 01:01:00.200513+00	2336	completed				+16193829854		104	2016-10-22 15:45:31.410027	2016-10-22 15:47:15.186046	CAf0be58555531f135ea607fb627da9fdb	\N	57			0	inbound	+18557860909	\N	12.8306400775909424	null	new lead		3	\N	\N	2488
2016-10-01 20:21:29.53294+00	2016-12-20 22:16:06.426515+00	2122	completed				+18772510696		72	2016-10-01 20:21:29.531379	2016-10-01 20:22:41.548168	CAae5fa4e9130c430302e1f46e773b977d	\N	12		https://api.twilio.com/2010-04-01/Accounts/AC0c010b259762ed5fecf508ef97abf3c6/Recordings/RE7b0c461ea39a3a226e4210869b92e28c	0	inbound	+18557343030	\N	15.2281758785247803	null	new lead		3	\N	\N	2489
2017-10-30 14:40:35.71533+00	2017-10-30 14:46:44.187575+00	6864	missed	Shannon	Brooks	Shannonbrooks97@icloud.com	+17069732896		20	2017-10-30 14:40:35.714201	2017-10-30 14:46:44.185217	CAe28c9d91335bb3886099f98412669a20	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			3	outbound	+17704009016	\N	347.833861112594604	{}	new lead		13	\N	\N	2493
2017-11-08 20:07:41.509225+00	2017-11-08 20:10:30.179739+00	6981	completed	Shannon	Brooks		+17069732896		169	2017-11-08 20:07:41.507363	2017-11-08 20:10:30.168578	CA8acc9a75ecf0430d95fbc613346cc32c	\N	153			0	inbound	+17707665732	133	7.89270401000976562	\N	new lead		13	\N	\N	2493
2017-11-09 14:46:43.257284+00	2017-11-09 14:47:22.111084+00	6992	completed	Shannon	Brooks	Shannonbrooks97@icloud.com	+17069732896		30	2017-11-09 14:46:43.255661	2017-11-09 14:47:20.859494	CA4ffd000b011a20c5ed70d64d1fba19cf	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REb03e86366f4a2ec44eaad1e92d098318	1	outbound	+17704009016	\N	7.03623485565185547	{}	new lead		13	\N	\N	2493
2017-11-09 15:10:59.128549+00	2017-11-09 15:17:16.833302+00	6994	completed	Shannon	Brooks		+17069732896		378	2017-11-09 15:10:59.126708	2017-11-09 15:17:16.830147	CA1ae3a87eba2bc9efc6bd27c85ff052b3	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REc9210215a4a9831498645e53498d4d6b	0	inbound	+17704009016	132	347.899005174636841	\N	new lead		13	\N	\N	2493
2017-11-09 15:01:22.611563+00	2017-11-09 15:02:05.93076+00	6993	completed	Shannon	Brooks		+17069732896		43	2017-11-09 15:01:22.609919	2017-11-09 15:02:05.921963	CAfafb8ed63910960cc6b29753ac337919	\N	150			0	inbound	+17707665732	133	14.6764111518859863	\N	new lead		13	\N	\N	2493
2017-11-09 15:29:25.811962+00	2017-11-09 15:35:08.049812+00	6995	completed	Shannon	Brooks		+17069732896		342	2017-11-09 15:29:25.809659	2017-11-09 15:35:08.046422	CA82168028a1e22f0fc5220bbf1b24672e	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE03fe25802816bc57da84d7052b0e6f5a	0	inbound	+17704009016	132	316.249631881713867	\N	new lead		13	\N	\N	2493
2016-06-27 15:34:17.533715+00	2016-06-27 15:34:39.678823+00	512	completed				+13307585092		17	2016-06-27 15:34:17.532687	2016-06-27 15:34:39.677556	CA6093d53d771f970cf68813899ef990c0	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.39828801155090332	{}	new lead		1	\N	\N	2495
2016-06-27 14:24:24.918723+00	2017-11-29 18:32:13.820568+00	493	completed	Sharon	Bodeen		+13307585092		58	2016-06-27 14:24:24.917521	2016-06-27 14:25:22.529581	CAb0819004c0b88d3b7ddeb30d8a8bf8a1	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REa27822caa0382d2cad8fdedd9dd6bede	0	inbound	+18555983683	\N	13.9105379581451416	null	new lead		1	\N	\N	2495
2016-08-08 14:18:49.78304+00	2016-12-09 17:06:53.905766+00	1321	completed				+12157509608		95	2016-08-08 14:18:49.782045	2016-08-08 14:20:25.014072	CAbfcd2857b28f4d4bfea227f107ef2c24	\N	21			0	inbound	+18558021330	\N	5.5887758731842041	null	new lead		3	\N	\N	2500
2017-04-13 16:55:19.704828+00	2017-11-29 18:38:49.804793+00	3877	missed				+12147658677		69	2017-04-13 16:55:19.700646	2017-04-13 16:56:28.422728	CAf4b5c257075ed5fbf603f74a54a1f456	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead		9	\N	\N	2501
2017-09-28 19:02:38.441337+00	2017-09-28 19:05:42.741464+00	6511	completed	Michael	LaBarbera	mike.labarbera@gmail.com	+17062476830		178	2017-09-28 19:02:38.438036	2017-09-28 19:05:42.143655	CA6ccbf39dc1235294400bee24f4dee172	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE71a0f0cf4e638cc2aeca1761ffb6431c	1	outbound	+17704009016	\N	5.36853194236755371	{}	new lead		13	\N	\N	2502
2017-04-15 19:54:03.075227+00	2017-11-29 18:47:25.068052+00	3969	completed				+12149145197		420	2017-04-15 19:54:03.072024	2017-04-15 20:01:02.779769	CAdf23b0149214b145a17709ff59d8a328	\N	118		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REa79307eb074b13de544543c5371f30c7	0	inbound	+19728330116	\N	388.605036020278931	\N	new lead	mccullah clint 	8	\N	\N	2504
2016-06-28 17:24:43.489187+00	2016-06-28 17:25:30.70573+00	606	completed				+16148752095		10	2016-06-28 17:24:43.488257	2016-06-28 17:24:57.128013	CA52aa683d8b571094b57fb7e6b5562f4c	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	\N			1	outbound	+18552959002	\N	1.38243198394775391	{}	new lead		1	\N	\N	2506
2016-06-28 17:15:43.072717+00	2017-11-29 18:31:41.490199+00	602	completed	Unknown			+16148752095		43	2016-06-28 17:15:43.07117	2016-06-28 17:16:26.494356	CA088eedb2686d013f365d68eebbb7212f	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE6c31700720447b889c22fc9d2aa4b43e	0	inbound	+18552959002	\N	13.8979310989379883	null	new lead		1	\N	\N	2506
2016-06-28 18:17:08.52391+00	2017-11-29 18:31:41.490206+00	609	completed	Unknown			+16148752095		28	2016-06-28 18:17:08.52186	2016-06-28 18:17:36.072075	CA5ea753be804f9ac7655c9d75614bf1dd	\N	\N			0	inbound	+18552959002	\N	14.1131100654602051	null	new lead		1	\N	\N	2506
2016-06-28 18:26:16.861854+00	2016-06-28 18:27:46.101253+00	610	completed				+16148752095		85	2016-06-28 18:26:16.860813	2016-06-28 18:27:46.099839	CAc1bdccfd219ddaef5ae160a6a20ff778	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	1.37623786926269531	{}	new lead		1	\N	\N	2506
2016-06-28 18:53:44.674761+00	2016-06-28 18:55:35.177334+00	612	completed				+16148752095		106	2016-06-28 18:53:44.673258	2016-06-28 18:55:35.176267	CA319f28c0f3fae681a357a4c5ff1c00e8	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	1.72800612449645996	{}	new lead		1	\N	\N	2506
2016-06-28 18:54:18.330795+00	2016-06-28 19:02:05.578918+00	613	completed				+16148752095		462	2016-06-28 18:54:18.329881	2016-06-28 19:02:05.577126	CAdf73a6f94139cc50907449ce4af0815f	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	1.94966697692871094	{}	new lead		1	\N	\N	2506
2016-06-28 19:02:02.164183+00	2016-06-28 19:35:42.254277+00	616	completed	Dorothy	Arthur	no1mamaw72@yahoo.com	+16148752095		0	2016-06-28 19:02:02.163263	2016-06-28 19:02:32.424973	CAd4918ff08cfac2371b5bcadc63515e7c	d33a481e-e0af-47ac-9f90-260f20b69de5	\N			1	outbound	+18552959002	\N	14.4559049606323242	{}	new lead		1	\N	\N	2506
2016-06-28 18:36:23.730617+00	2017-11-29 18:31:41.490213+00	611	completed	Dorothy	Arthur		+16148752095		46	2016-06-28 18:36:23.728336	2016-06-28 18:37:09.657229	CAd04214dbca8d6c5437463efaea22fd19	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE0acad31f56921d25094547e323eef40d	0	inbound	+18552959002	\N	14.031419038772583	null	new lead		1	\N	\N	2506
2017-09-28 18:28:15.688486+00	2017-09-28 18:29:12.791894+00	6510	completed				+17065211960		57	2017-09-28 18:28:15.685505	2017-09-28 18:29:12.775324	CA35311bc03b053a200b051072a56d73f7	\N	150			0	inbound	+17707665732	133	8.2422950267791748	\N	new lead		13	\N	\N	2507
2017-10-01 23:08:59.701556+00	2017-10-11 14:56:51.472942+00	6555	missed	Charles 	Dover	Nickgotem22@gmail.com	+16784372025		\N	2017-10-01 23:08:59.699739	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	2511
2017-12-04 17:20:27.836009+00	2017-12-04 17:43:45.595587+00	7543	missed				+14693329392		102	2017-12-04 17:20:27.834062	2017-12-04 17:22:09.496	CA3ebdb051d1138b835f54343f45c19fec	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE1f1bd3c2fc49c925eec82dc124cfa200	0	inbound	+18177569010	124	1376.20014905929565	\N	new lead	cell phone   tx	12	\N	\N	2513
2017-11-08 17:41:37.717111+00	2017-11-08 18:03:46.856374+00	6975	missed				+18174894574		38	2017-11-08 17:41:37.714446	2017-11-08 17:42:15.997038	CA6ce3e047ad2abc7e2961718715212d2b	\N	\N			0	inbound	+18177569010	124	377.298815965652466	\N	new lead	wade geneatte	12	\N	\N	2514
2017-11-08 17:42:37.580158+00	2017-11-08 18:04:31.891076+00	6976	missed				+18174894574		12	2017-11-08 17:42:37.57818	2017-11-08 17:42:49.719902	CA455ccb2a24917bef5a851f4826ffd018	\N	\N			0	inbound	+18177569010	124	1292.60073399543762	\N	new lead	wade geneatte	12	\N	\N	2514
2017-11-08 17:43:51.50021+00	2017-11-08 18:05:27.242667+00	6977	missed				+18174894574		8	2017-11-08 17:43:51.498632	2017-11-08 17:43:59.391545	CAad55cddda8860d719d46d15d6dcff10b	\N	\N			0	inbound	+18177569010	124	1274.35855507850647	\N	new lead	wade geneatte	12	\N	\N	2514
2016-12-09 21:21:23.817775+00	2016-12-09 21:27:24.493248+00	3073	completed				+18329806552		360	2016-12-09 21:21:23.815978	2016-12-09 21:27:24.065594	CA2912faad19de9732a0457ec06b19c88f	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REef0a6d511ec906844a4014844600e228	0	inbound	+18557240606	49	2.15179181098937988	null	new lead		1	\N	\N	2515
2016-10-05 14:47:07.774627+00	2016-12-09 17:10:17.413527+00	2165	completed				+16464545417		153	2016-10-05 14:47:07.773676	2016-10-05 14:49:40.643311	CA795886147cac0d9308c6c48f2b579156	\N	27			0	inbound	+18552716856	\N	7.4229280948638916	null	new lead		3	\N	\N	2516
2017-12-05 21:55:44.116883+00	2017-12-05 22:09:57.735021+00	7611	completed				+17735017315		850	2017-12-05 21:55:44.114958	2017-12-05 22:09:54.379092	CA496790abca7b31715476d72f0c7c955d	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE75030fffa1074b06ad6075b85fe090ec	0	inbound	+18558645656	136	2.65611910820007324	\N	new lead		15	\N	\N	2518
2017-11-17 17:08:17.56846+00	2017-11-17 17:09:37.018958+00	7104	completed	Megan	Waddell	MEGBWADDELL2@YAHOO.COM	+17065104812		55	2017-11-17 17:08:17.566823	2017-11-17 17:09:35.669728	CA59482a7734d07513abe78f45ba58927b	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REdcebec10ccfa9da8cf9fe11d5389ec37	1	outbound	+17704009016	\N	18.647287130355835	{}	new lead		13	\N	\N	2519
2017-11-20 15:54:19.64597+00	2017-11-20 15:56:02.892657+00	7137	completed	Megan	Waddell		+17065104812		102	2017-11-20 15:54:19.644253	2017-11-20 15:56:01.28065	CAe006b28768b92e84fdffc686f3e3aebe	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE2e44cf92d2308620823fb1a7579efe09	0	inbound	+17704009016	132	8.96652102470397949	\N	new lead		13	\N	\N	2519
2017-11-21 14:14:11.847182+00	2017-11-21 14:15:51.141188+00	7154	completed	Shanee	Diemer	salesi0208@gmail.com	+16788876695		52	2017-11-21 14:14:11.845641	2017-11-21 14:15:18.914542	CAaac4e4bf88fba8f68ed4262651752300	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REb33094da9ee1e505183837c0fb48c0cf	1	outbound	+17704009016	\N	13.7749159336090088	{}	select status		13	\N	\N	2521
2016-06-27 15:57:15.161967+00	2017-11-29 18:32:13.820603+00	519	completed	Andrew	Kidd		+13304822476		39	2016-06-27 15:57:15.160922	2016-06-27 15:57:54.205791	CAa73c57fc79750108434ae79d53367601	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REf4b793ac7a362ee2ec39215e85d1267d	0	inbound	+18555983683	\N	14.3607258796691895	null	application submitted - autopay		1	\N	\N	2523
2016-06-29 19:52:47.528575+00	2017-11-29 18:32:13.820978+00	661	completed	Unknown			+13304822476		111	2016-06-29 19:52:47.527293	2016-06-29 19:54:38.53609	CA894ba2a7898cf4a45b668923ab60f8db	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REb3de5287ac8ee1b724048c979814447d	0	inbound	+18555983683	\N	0.618174076080322266	null	application submitted - autopay		1	\N	\N	2523
2016-06-30 15:28:08.878214+00	2017-03-29 18:14:41.249807+00	671	completed				+13304822476		57	2016-06-30 15:28:08.87699	2016-06-30 15:29:10.204759	CA380aa4c52b0647f311073d422098215c	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.53911209106445312	{}	application submitted - autopay		1	\N	\N	2523
2016-06-30 18:43:20.676994+00	2017-03-29 18:14:41.249822+00	685	completed				+13304822476		53	2016-06-30 18:43:20.675712	2016-06-30 18:44:18.393091	CAe5655b38623bf5af651df4610800683f	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.6899869441986084	{}	application submitted - autopay		1	\N	\N	2523
2016-06-30 16:46:24.118832+00	2017-11-29 18:32:13.821073+00	679	completed	Unknown			+13304822476		24	2016-06-30 16:46:24.117947	2016-06-30 16:46:48.349784	CAc9d83f1d83f3a6fea677507232dd3bae	\N	\N			0	inbound	+18555983683	\N	13.8663220405578613	null	application submitted - autopay		1	\N	\N	2523
2016-06-29 19:54:50.902707+00	2017-11-29 18:32:13.820988+00	662	completed	Unknown			+13304822476		133	2016-06-29 19:54:50.901482	2016-06-29 19:57:04.054186	CA99b3773469d3fa70d6970066aa91292b	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REb1c59175df5e6f2c2273ed98ec5d02c5	0	inbound	+18555983683	\N	0.44539189338684082	null	application submitted - autopay		1	\N	\N	2523
2016-06-30 13:22:44.846561+00	2017-11-29 18:32:13.821059+00	668	completed	Andrew	Kidd		+13304822476		45	2016-06-30 13:22:44.844949	2016-06-30 13:23:29.774797	CAd871893ef9180041d0d2b02cfd06a9b2	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REfb9f4ca493007312e8e1a9f1aaade15d	0	inbound	+18555983683	\N	14.5844728946685791	null	application submitted - autopay		1	\N	\N	2523
2017-03-28 19:24:19.325352+00	2017-11-29 18:32:13.822008+00	3612	missed	Andrew	Kidd		+13304822476		38	2017-03-28 19:24:19.323712	2017-03-28 19:24:57.070958	CA95b37f22ae15a8b3dd3f2c46a208b1a1	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE237b222a8913bb85dbaa417246f3237f	0	inbound	+18555983683	\N	\N	\N	application submitted - autopay		1	\N	\N	2523
2017-03-29 13:11:06.988222+00	2017-11-29 18:32:13.82202+00	3617	missed	Andrew	Kidd		+13304822476		23	2017-03-29 13:11:06.985956	2017-03-29 13:11:30.040101	CA00f092d2ca46744f2e0a7976f7ffd0bc	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE6402cc215c242f83d9d92081afe1d167	0	inbound	+18555983683	\N	\N	\N	application submitted - autopay		1	\N	\N	2523
2017-03-29 18:13:32.175393+00	2017-11-29 18:32:13.822028+00	3619	completed	Andrew	Kidd		+13304822476		56	2017-03-29 18:13:32.173099	2017-03-29 18:14:28.557541		\N	16			0	outbound	+18555983683	\N	\N	\N	application submitted - autopay		1	\N	\N	2523
2017-04-17 20:56:10.387466+00	2017-11-29 18:38:49.805304+00	4008	completed				+19363327848		82	2017-04-17 20:56:10.385555	2017-04-17 20:57:32.800543	CA567f58d710abd79b79c50080adacfacb	\N	126			0	inbound	+12147122250	\N	1.34053707122802734	\N	new lead	kl contractors 	9	\N	\N	2524
2017-05-02 20:54:54.628137+00	2017-11-29 18:38:53.214916+00	4601	completed				+19363327848		28	2017-05-02 20:54:54.626412	2017-05-02 20:55:22.796361	CA78f88015572036f90f74bfe205d69a37	\N	103			0	inbound	+12146922088	\N	1.5007929801940918	\N	new lead	kl contractors 	9	\N	\N	2524
2017-04-14 20:34:05.384772+00	2017-11-29 18:38:49.805044+00	3943	completed				+19363327848		63	2017-04-14 20:34:05.381318	2017-04-14 20:35:08.488841	CAfa7e373ef4dca80daa6346e1c2c30bee	\N	124			0	inbound	+12147122250	\N	1.22889995574951172	\N	new lead	kl contractors 	9	\N	\N	2524
2017-04-14 20:35:05.008111+00	2017-11-29 18:38:49.805051+00	3944	completed				+19363327848		70	2017-04-14 20:35:05.005604	2017-04-14 20:36:14.545701	CAc077491cf95d1ee6d2e51b0e6089cdb7	\N	103			0	inbound	+12147122250	\N	19.7227389812469482	\N	new lead	kl contractors 	9	\N	\N	2524
2017-04-17 20:57:27.316914+00	2017-11-29 18:38:49.805311+00	4009	missed				+19363327848		19	2017-04-17 20:57:27.315282	2017-04-17 20:57:46.744116	CA024b71d5cc8c7808569e2d8d96ec6ba2	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	kl contractors 	9	\N	\N	2524
2017-04-17 20:57:37.920916+00	2017-11-29 18:38:49.805318+00	4010	completed				+19363327848		57	2017-04-17 20:57:37.918453	2017-04-17 20:58:35.275547	CA6e5acfa3dea18dcd0baca49af488d045	\N	124			0	inbound	+12147122250	\N	1.08203005790710449	\N	new lead	kl contractors 	9	\N	\N	2524
2017-04-17 20:58:25.715329+00	2017-11-29 18:38:49.805326+00	4011	completed				+19363327848		78	2017-04-17 20:58:25.71352	2017-04-17 20:59:43.275811	CA484763832d87837d9d8f1e1b16cfe54d	\N	127			0	inbound	+12147122250	\N	1.32129883766174316	\N	new lead	kl contractors 	9	\N	\N	2524
2017-04-17 20:59:39.93898+00	2017-11-29 18:38:49.805333+00	4012	completed				+19363327848		55	2017-04-17 20:59:39.93635	2017-04-17 21:00:35.285313	CA2e26fed276ff25b9b94cff81ab3f73ff	\N	127			0	inbound	+12147122250	\N	1.41312909126281738	\N	new lead	kl contractors 	9	\N	\N	2524
2017-04-17 21:00:30.069322+00	2017-11-29 18:38:49.80534+00	4013	completed				+19363327848		122	2017-04-17 21:00:30.067703	2017-04-17 21:02:31.828864	CA43cacf32e3726cf7fda9f3ca5eca5a9c	\N	\N			0	inbound	+12147122250	\N	4.85535788536071777	\N	new lead	kl contractors 	9	\N	\N	2524
2017-04-21 17:07:18.266817+00	2017-11-29 18:38:49.806159+00	4183	missed				+19363327848		41	2017-04-21 17:07:18.263805	2017-04-21 17:07:59.113238	CAffb7b6bbcad8c6934940d28e5b8736a8	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	kl contractors 	9	\N	\N	2524
2017-04-21 17:09:56.097855+00	2017-11-29 18:38:49.806167+00	4184	completed				+19363327848		78	2017-04-21 17:09:56.095438	2017-04-21 17:11:14.249129	CA3147cf87edebfbbcd14ed02ec36ebacd	\N	124			0	inbound	+12147122250	\N	2.19699287414550781	\N	new lead	kl contractors 	9	\N	\N	2524
2017-04-21 17:11:07.135034+00	2017-11-29 18:38:49.806174+00	4185	completed				+19363327848		56	2017-04-21 17:11:07.133421	2017-04-21 17:12:03.317585	CA49b479e4863d7d36863cf98aefd4ea6a	\N	\N			0	inbound	+12147122250	\N	6.64052200317382812	\N	new lead	kl contractors 	9	\N	\N	2524
2017-05-02 20:29:34.413984+00	2017-11-29 18:38:49.808836+00	4597	completed				+19363327848		56	2017-05-02 20:29:34.412253	2017-05-02 20:30:30.722653	CA0cf7f0d0fbbf9b1c460bfef5a495ec56	\N	\N			0	inbound	+12147122250	\N	2.6901860237121582	\N	new lead	kl contractors 	9	\N	\N	2524
2017-05-02 20:30:32.618933+00	2017-11-29 18:38:49.808867+00	4598	completed				+19363327848		72	2017-05-02 20:30:32.616964	2017-05-02 20:31:44.783831	CAd1e8e11ab1b1dce6c3eda9d1ecaf82d0	\N	124			0	inbound	+12147122250	\N	1.71651816368103027	\N	new lead	name unavailable	9	\N	\N	2524
2017-05-02 20:31:37.730582+00	2017-11-29 18:38:49.80888+00	4599	completed				+19363327848		78	2017-05-02 20:31:37.729165	2017-05-02 20:32:55.759467	CA556df4bf05c09cce02e265ca264e70ba	\N	127			0	inbound	+12147122250	\N	1.03013515472412109	\N	new lead	kl contractors 	9	\N	\N	2524
2017-05-02 20:52:57.79356+00	2017-11-29 18:38:49.808891+00	4600	completed				+19363327848		51	2017-05-02 20:52:57.791834	2017-05-02 20:53:48.760265	CA4bf6ee9328e176a31a0d78806e4ec7ac	\N	99			0	inbound	+12147122250	\N	2.77822995185852051	\N	new lead	kl contractors 	9	\N	\N	2524
2017-05-16 21:29:26.811575+00	2017-11-29 18:38:49.81189+00	5130	completed				+19363327848		70	2017-05-16 21:29:26.809822	2017-05-16 21:30:37.142189	CA0ce3aa385a72eaa808030a2ae3bf215a	\N	126			0	inbound	+12147122250	\N	2.24309921264648438	\N	new lead	kl contractors 	9	\N	\N	2524
2017-05-16 21:33:18.745359+00	2017-11-29 18:38:49.811897+00	5131	completed				+19363327848		66	2017-05-16 21:33:18.743276	2017-05-16 21:34:24.258359	CAe90abf3be79300deab4ce4ac15724973	\N	\N			0	inbound	+12147122250	\N	5.33954286575317383	\N	new lead	kl contractors 	9	\N	\N	2524
2017-10-14 16:00:04.654824+00	2017-10-14 16:00:08.101453+00	6712	completed				+14702482633		3	2017-10-14 16:00:04.650627	2017-10-14 16:00:08.093848	CA9242e1bd70c9ab20573af086bc38af3d	\N	154			0	inbound	+17707665699	134	0.395876884460449219	\N	new lead		13	\N	\N	2525
2017-10-14 16:00:19.896134+00	2017-10-14 16:03:23.710956+00	6713	completed				+14702482633		184	2017-10-14 16:00:19.894672	2017-10-14 16:03:23.699291	CA490e3ec43c8e9cef2fc7731f07871a74	\N	154			0	inbound	+17707665699	134	1.28317403793334961	\N	new lead		13	\N	\N	2525
2016-10-05 16:26:54.71915+00	2016-12-10 00:57:48.461776+00	2185	completed				+18054881670		114	2016-10-05 16:26:54.716166	2016-10-05 16:28:48.338877	CA9853f8ad950ba2009f9b8323f5d17518	\N	30			0	inbound	+18559652184	\N	2.20206212997436523	null	new lead		3	\N	\N	2526
2017-10-26 18:54:07.263744+00	2017-10-26 18:55:26.492778+00	6821	completed	David	Taylor	chaset165@gmail.com	+16786681574		59	2017-10-26 18:54:07.262163	2017-10-26 18:55:25.980561	CA67eaaddf63ad31642cebd174342db419	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE034bfe26f916adb5781abf4220051068	1	outbound	+17704009016	\N	19.2436599731445312	{}	new lead		13	\N	\N	2527
2016-11-13 02:01:38.705054+00	2016-11-13 02:01:38.736677+00	2881	missed	Kevin	Briglia	kevinbriglia@hotmail.com	+14808680188		\N	2016-11-13 02:01:38.703803	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2529
2017-05-16 17:28:17.190501+00	2017-08-17 14:35:21.045212+00	5115	completed				+12142508610		126	2017-05-16 17:28:17.188603	2017-05-16 17:30:23.118658	CAa3052a4ac723bad9fa21433296489bee	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE2cad5645d793177e341495c37f179057	0	inbound	+18177569010	124	12.5744011402130127	\N	new lead	bell jarrett   	12	\N	\N	2532
2016-11-03 16:19:41.633028+00	2016-11-03 16:19:53.894368+00	2637	completed				+12813502048		11	2016-11-03 16:19:41.630657	2016-11-03 16:19:53.111692	CA9745af2d9f07ebe4e3c830ab06f7909e	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REf489a32746d558f60ef113125bff0755	0	inbound	+18557240606	49	2.16537714004516602	null	new lead		1	\N	\N	2533
2017-12-13 16:04:07.922037+00	2017-12-13 16:19:09.670021+00	7843	completed				+12819484564		898	2017-12-13 16:04:07.920052	2017-12-13 16:19:06.300118	CA2f0ae73719109beb00a14e8a55123acf	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE8b8ddcec9f1ce67797b2e3c9ccaf4e5f	0	inbound	+18558645656	136	2.54428482055664062	\N	new lead		15	\N	\N	2534
2017-12-13 19:50:18.214959+00	2017-12-13 19:50:43.390874+00	7853	completed				+12819484564		24	2017-12-13 19:50:18.211456	2017-12-13 19:50:42.710401	CA68e9c9b71e5e02aa61def5d0cc7c9ba5	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REe6d8458b71a85736696cfe8454ede72c	0	inbound	+18558645656	136	3.18003606796264648	\N	new lead		15	\N	\N	2534
2017-12-14 22:23:48.661893+00	2017-12-14 22:26:24.446842+00	7883	completed				+12819484564		155	2017-12-14 22:23:48.660042	2017-12-14 22:26:23.746761	CA2d7d38ea95dcc96bb566df3534ecb049	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE8b6478346ec88f8773b4c5a7f9fc7807	0	inbound	+18558645656	136	2.22542309761047363	\N	new lead		15	\N	\N	2534
2017-05-22 15:16:24.542485+00	2017-11-29 18:38:49.812514+00	5269	completed				+18166992875		79	2017-05-22 15:16:24.541368	2017-05-22 15:17:43.510603	CAd8a3a07d6cf92b430ac3012155ab7025	\N	\N			0	inbound	+12147122250	\N	24.0712249279022217	\N	new lead	rider james    	9	\N	\N	2535
2017-04-01 19:21:33.98752+00	2017-11-29 18:38:53.213234+00	3654	completed				+14692796470		267	2017-04-01 19:21:33.985637	2017-04-01 19:26:01.226127	CAe8c40bdb070ddf81c673ba65faebe56e	\N	\N			0	inbound	+12146922088	\N	4.89864897727966309	\N	new lead	jonnas janice	9	\N	\N	2537
2017-04-04 14:18:05.304367+00	2017-11-29 18:38:49.804419+00	3683	missed				+12143155267		7	2017-04-04 14:18:05.3015	2017-04-04 14:18:12.113774	CAb6d256eabebfbbd4d135761224257ab3	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	alexander ancy	9	\N	\N	2538
2017-04-04 14:17:30.418639+00	2017-11-29 18:38:49.804412+00	3682	missed				+12143155267		7	2017-04-04 14:17:30.416657	2017-04-04 14:17:37.318935	CA73cf8de95ff6847b116d51f0ac798b33	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	alexander ancy	9	\N	\N	2538
2017-04-28 19:59:45.001629+00	2017-11-29 18:38:53.21478+00	4442	completed				+18173689577		247	2017-04-28 19:59:44.99966	2017-04-28 20:03:51.944158	CAe55dda40a84b755ad7eeb92477ec42a3	\N	133			0	inbound	+12146922088	\N	4.90584707260131836	\N	new lead	rodriguez becer	9	\N	\N	2539
2017-11-03 15:28:25.142522+00	2017-11-03 15:29:59.228902+00	6917	completed				+17063913695		94	2017-11-03 15:28:25.140589	2017-11-03 15:29:59.215579	CA77d1f23d9ded617fbe426a56c78eb7f2	\N	150			0	inbound	+17707665732	133	15.0611450672149658	\N	new lead		13	\N	\N	2545
2017-05-08 19:31:38.284426+00	2017-11-29 18:47:25.068418+00	4868	completed				+18177690045		168	2017-05-08 19:31:38.281605	2017-05-08 19:34:26.028794	CAcb8a6ae30a609a14a1f08e87504d41bf	\N	84		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REcc2c32e8a86f1e28ca6e61c9342bae60	0	inbound	+19728330116	\N	7.64952611923217773	\N	new lead	sandoval alex	8	\N	\N	2547
2017-04-22 01:29:58.751218+00	2017-11-29 18:47:25.068228+00	4206	retry-pending				+14694497276		17	2017-04-22 01:29:58.749514	2017-04-22 01:30:15.77815	CA814bf9424a1ecac3d274ae00a018c5a5	\N	\N			0	inbound	+19728330116	\N	11.6860489845275879	\N	new lead	sims dorothy	8	\N	\N	2551
2017-07-15 18:05:03.158531+00	2017-08-17 14:35:21.045593+00	5783	completed				+19708252583		152	2017-07-15 18:05:03.156192	2017-07-15 18:07:35.572975	CAde5788726f901e6ce36691a1eadda5f0	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE64dab8ddcb3917326d012dc581c25324	0	inbound	+18177569010	124	9.18174004554748535	\N	new lead	laubin christop	12	\N	\N	2553
2016-05-23 22:23:54.226233+00	2017-11-29 18:32:10.406323+00	180	completed	Unknown			+18135063161		121	2016-05-23 22:23:54.224133	2016-05-23 22:25:55.038301	CA619162c96e99475f85a1dbeb69df36c3	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REbfd7fbf6bc6e594ef1828210653a81d2	0	inbound	+18552791533	\N	\N	null	new lead		1	\N	\N	2556
2017-04-26 17:15:31.842096+00	2017-11-29 18:38:53.214581+00	4327	completed				+15127731165		357	2017-04-26 17:15:31.839553	2017-04-26 17:21:29.009766	CA5ee6044ada1bf2cf32dc6f4ddbffda1e	\N	\N			0	inbound	+12146922088	\N	3.64740085601806641	\N	new lead	nancy lopez	9	\N	\N	2558
2016-09-02 19:21:07.758356+00	2016-09-02 19:31:36.093337+00	1867	missed	Dawn	Steinhaus	dsteinhaus84@gmail.com	+15133146785		\N	2016-09-02 19:21:07.757182	\N		25d0200e-983d-4413-94ae-eb664b99711c	\N			0	outbound	+18556311490	\N	\N	{}	application submitted - autopay		1	\N	\N	2560
2017-10-30 21:19:40.191782+00	2017-10-30 21:25:41.369614+00	6874	missed				+16787608980		32	2017-10-30 21:19:40.189623	2017-10-30 21:20:12.037663	CA69b00b1b5005223967437425d46b73e4	\N	\N			0	inbound	+17704009016	132	17.6011860370635986	\N	new lead		13	\N	\N	2561
2017-12-17 14:56:10.611525+00	2017-12-18 13:58:38.851151+00	7955	missed	Natasha	Gregory	Tashasweetd@gmail.com	+16787691153		\N	2017-12-17 14:56:10.610075	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	2562
2017-05-22 07:01:01.76305+00	2017-11-29 18:31:56.600408+00	5262	missed				+15753237845		30	2017-05-22 07:01:01.760479	2017-05-22 07:01:32.172402	CA742d58c86b97500858228c893a86f78d	\N	\N			0	inbound	+18556311397	\N	\N	\N	do not contact		1	\N	\N	2565
2016-10-04 21:48:53.050825+00	2017-11-29 18:31:37.369161+00	2149	missed	Diana	Palencl		+16614291745		44	2016-10-04 21:48:53.049317	2016-10-04 21:49:36.747952	CA058d9c95a4f4c2d05169ee317f00f80d	\N	\N			0	inbound	+18555472453	\N	\N	null	new lead		1	\N	\N	2566
2016-10-03 23:31:16.828574+00	2016-10-03 23:31:16.856499+00	2134	missed	Diana	Palencl	Diana.dp05@gmail.com	+16614291745		\N	2016-10-03 23:31:16.826968	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	new lead		1	\N	\N	2566
2016-10-03 22:01:02.55556+00	2017-11-29 18:31:37.369147+00	2132	missed				+16614291745		21	2016-10-03 22:01:02.553564	2016-10-03 22:01:23.902842	CA095c5ebc45d4a2368a3e5d9968fe9e11	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE46bc48863bfa025fd6c541c20a33749e	0	inbound	+18555472453	\N	\N	null	new lead		1	\N	\N	2566
2016-10-03 23:11:28.394224+00	2017-11-29 18:31:37.369154+00	2133	missed				+16614291745		5	2016-10-03 23:11:28.392314	2016-10-03 23:11:33.158377	CAb53c68667f877e0dde43e3978c9cee8a	\N	\N			0	inbound	+18555472453	\N	\N	null	new lead		1	\N	\N	2566
2016-10-26 17:34:21.148083+00	2016-12-10 01:00:18.568538+00	2350	completed				+16199856087		98	2016-10-26 17:34:21.146162	2016-10-26 17:35:58.966316	CA568cd6b5aec56ec5b2b3ff6b1abad047	\N	56			0	inbound	+18556775511	\N	4.7027430534362793	null	new lead		3	\N	\N	2567
2017-05-09 17:12:01.797665+00	2017-11-29 18:38:49.810591+00	4907	completed				+13054437626		241	2017-05-09 17:12:01.79576	2017-05-09 17:16:03.139057	CAac3ae0cbb6c4ff8b6d17cc1358629e73	\N	\N			0	inbound	+12147122250	\N	7.36335897445678711	\N	new lead	bohn bernard   	9	\N	\N	2568
2017-05-09 18:09:44.749312+00	2017-11-29 18:38:49.810619+00	4916	completed				+13054437626		156	2017-05-09 18:09:44.746799	2017-05-09 18:12:20.623165	CA55dc2a0c3261fcb0728f0ca19cfd347f	\N	\N			0	inbound	+12147122250	\N	4.41800808906555176	\N	new lead	orange co inc	9	\N	\N	2568
2017-04-26 17:17:24.414437+00	2017-11-29 18:38:49.806766+00	4328	completed				+16829782099		154	2017-04-26 17:17:24.411443	2017-04-26 17:19:58.736303	CAd121c8593a5619e0711925c3dc2257bc	\N	105			0	inbound	+12147122250	\N	5.3270728588104248	\N	new lead	burns lerone   	9	\N	\N	2569
2016-10-10 15:32:41.946282+00	2016-12-09 17:08:31.908828+00	2245	completed				+15515804345		110	2016-10-10 15:32:41.94424	2016-10-10 15:34:32.337938	CAa0b320a6ebaab8eef6eb2f90cb624a5f	\N	67			0	inbound	+18552576059	\N	1.33667588233947754	null	new lead		3	\N	\N	2570
2016-09-01 18:50:36.845354+00	2016-12-10 01:00:18.568343+00	1840	completed				+16197271137		81	2016-09-01 18:50:36.843634	2016-09-01 18:51:57.391689	CA81ade244719699e812a54f5f98f17e12	\N	56			0	inbound	+18556775511	\N	3.46044516563415527	null	new lead		3	\N	\N	2572
2017-09-24 00:48:05.310503+00	2017-09-24 00:48:05.393812+00	6471	missed	Alexis	Thomas	lexicapri91@gmail.com	+14703011056		\N	2017-09-24 00:48:05.307944	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	2574
2016-08-05 17:38:46.769135+00	2017-11-29 18:31:37.368697+00	1279	missed				+16615263291		16	2016-08-05 17:38:46.768209	2016-08-05 17:39:03.166372	CAc43d3149575747de68d56bfddef32811	\N	\N			0	inbound	+18555472453	\N	\N	null	application submitted - credit union		1	\N	\N	2575
2016-08-05 20:27:03.771319+00	2017-01-27 21:12:23.812743+00	1284	completed	Gerald 	Collins		+16615263291		164	2016-08-05 20:27:03.769805	2016-08-05 20:29:47.660624		\N	\N			0	outbound	+18555343978	48	\N	null	application submitted - credit union		1	\N	\N	2575
2016-11-02 17:59:09.882929+00	2016-11-02 18:08:25.320655+00	2577	completed				+16782300052		555	2016-11-02 17:59:09.881536	2016-11-02 18:08:24.632015	CA41f53e646a8c99d250052dce7a251cbb	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE26b7219585666caf24fc5f7ce218ff14	0	inbound	+18557240606	49	1.76797389984130859	null	new lead		1	\N	\N	2576
2016-09-01 19:02:00.145817+00	2017-11-29 18:31:14.616552+00	1841	missed				+16083506757		59	2016-09-01 19:02:00.143942	2016-09-01 19:02:59.025508	CA8a1f18160e9f0201807d4703512ba2c7	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE7bd5bed458b31fcfaf3c1952351d5528	0	inbound	+18556311541	\N	32.0961799621582031	null	select status		1	\N	\N	2578
2016-09-03 20:18:47.5952+00	2017-01-27 21:12:23.813841+00	1879	completed	Don			+16083506757		97	2016-09-03 20:18:47.594044	2016-09-03 20:20:24.123887		\N	\N			0	outbound	+18555343978	48	\N	null	select status		1	\N	\N	2578
2017-08-19 17:18:43.342242+00	2017-08-19 17:21:41.22424+00	6104	completed				+19729840746		177	2017-08-19 17:18:43.340187	2017-08-19 17:21:40.114886	CA7e7fd4017ab9f81f5fef5ec04fa8ae28	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE6a64e6a488cb777556e743143e43955e	0	inbound	+18177569010	124	10.9942140579223633	\N	new lead	hudson joshua	12	\N	\N	2579
2017-08-19 16:35:32.061879+00	2017-08-19 16:39:39.445855+00	6103	completed				+19729840746		247	2017-08-19 16:35:32.059923	2017-08-19 16:39:38.654939	CAe0f3b6b0a76f3c7c4c4ab856449fc3ab	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE1a7ea2dde563bdedacbf23168aa63ee5	0	inbound	+18177569010	124	77.4628250598907471	\N	new lead	hudson joshua	12	\N	\N	2579
2016-10-03 15:34:49.878632+00	2016-12-09 17:10:17.413506+00	2124	completed				+19082830833		167	2016-10-03 15:34:49.875955	2016-10-03 15:37:36.709298	CA22a613b14447993755bb323e58f7c4cd	\N	27			0	inbound	+18552716856	\N	6.79624295234680176	null	new lead		3	\N	\N	2584
2017-03-20 16:51:21.61186+00	2017-11-29 18:47:25.067884+00	3507	completed				+16015732906		345	2017-03-20 16:51:21.609761	2017-03-20 16:57:06.257316	CA2c8e8eab36edce41e0a813fe4be3a3c8	\N	118		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE94914ee5154bb993bddd9e06740712e4	0	inbound	+19728330116	\N	19.417633056640625	\N	new lead	jackson  ms	8	\N	\N	2587
2017-04-19 20:59:53.990118+00	2017-11-29 18:38:49.805775+00	4102	completed				+12142352138		186	2017-04-19 20:59:53.98745	2017-04-19 21:03:00.33714	CA7000929908bb8fbfdcc7ad1e92cffbd2	\N	105			0	inbound	+12147122250	\N	7.03052592277526855	\N	new lead	aguilar mariza 	9	\N	\N	2588
2017-04-14 01:29:49.325158+00	2017-04-14 01:51:24.639569+00	3905	missed				+18177562694		1294	2017-04-14 01:29:49.323132	2017-04-14 01:51:23.452017	CA9a90890827357d241c0634c3ef34dec6	\N	\N			0	inbound	+18177569010	124	1277.90374898910522	\N	new lead	dallas  tx	12	\N	\N	2590
2017-04-21 20:09:22.091054+00	2017-11-29 18:47:25.068214+00	4200	completed				+17162281471		219	2017-04-21 20:09:22.088386	2017-04-21 20:13:01.033392	CAf254b89f3f7dd40553ad29b1be8421be	\N	83		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REb292317ca5a5a33de7403e0395ac2e81	0	inbound	+19728330116	\N	3.97186899185180664	\N	new lead	robert harris	8	\N	\N	2591
2017-04-20 15:34:07.368954+00	2017-11-29 18:38:49.805931+00	4131	completed				+15042871950		89	2017-04-20 15:34:07.366089	2017-04-20 15:35:36.150515	CA6a03153b2b709f254af1e6754b0e40d8	\N	105			0	inbound	+12147122250	\N	2.88076996803283691	\N	new lead	money mel	9	\N	\N	2592
2017-04-20 16:53:31.864545+00	2017-11-29 18:38:49.805946+00	4135	completed				+15042871950		183	2017-04-20 16:53:31.862382	2017-04-20 16:56:34.780008	CA0af274702f5b8955506961f7658bf786	\N	105			0	inbound	+12147122250	\N	5.6811671257019043	\N	new lead	money mel	9	\N	\N	2592
2016-11-02 15:58:53.02157+00	2016-11-02 16:06:51.301894+00	2558	completed				+16824388073		478	2016-11-02 15:58:53.020326	2016-11-02 16:06:50.703843	CA957ee9ce9a90679596759786e4dca655	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE66f6f317ced2577ad4826b840236e487	0	inbound	+18557240606	49	2.054595947265625	null	new lead		1	\N	\N	2597
2016-08-01 18:33:06.98083+00	2017-11-29 18:31:37.368276+00	1089	completed	David	Ekman		+16612752296		229	2016-08-01 18:33:06.979728	2016-08-01 18:36:56.036987	CA4bec07fc31896bf8072d4c193a0e3159	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REa6a01a44ab828b11835e1b1240d6218f	0	inbound	+18555472453	\N	8.4778439998626709	null	general interest		1	\N	\N	2599
2016-11-01 21:06:25.350565+00	2016-12-09 17:08:31.908865+00	2510	completed				+18146889359		139	2016-11-01 21:06:25.34888	2016-11-01 21:08:44.442685	CA9f86818e5124c1c36fe7e9bacac0eb31	\N	67			0	inbound	+18552576059	\N	1.86575412750244141	null	new lead		3	\N	\N	2601
2017-11-09 14:32:18.301777+00	2017-11-09 14:38:02.055473+00	6991	missed				+17864996469		11	2017-11-09 14:32:18.29965	2017-11-09 14:32:29.32262	CA0452c8b43e2e4da15b2e4d4b6a8ebceb	\N	\N			0	inbound	+17707665732	133	321.688990116119385	\N	new lead		13	\N	\N	2604
2016-08-12 20:35:31.80613+00	2017-01-27 21:12:23.813193+00	1462	completed	Elizabeth	Caldwel		+16612689346		158	2016-08-12 20:35:31.804863	2016-08-12 20:38:09.37672	CA583f944c0be39f0c41b5e73a1d439dfa	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE9655a1e418fb6ae0a87967bbaf339c74	0	inbound	+18555343978	48	7.9598848819732666	null	general interest		1	\N	\N	2605
2016-08-12 20:32:53.595188+00	2017-01-27 21:12:23.813186+00	1461	completed	Elizabeth	Caldwel		+16612689346		114	2016-08-12 20:32:53.594314	2016-08-12 20:34:47.872837		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	2605
2016-08-04 18:11:44.342803+00	2017-11-29 18:31:37.368632+00	1208	completed				+16612689346		43	2016-08-04 18:11:44.341085	2016-08-04 18:12:27.356319	CAbe792cda1a30c75e7ca9a77533b1975f	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE20abe4205b0d96bce9e08698484a4749	0	inbound	+18555472453	\N	20.0092339515686035	null	general interest		1	\N	\N	2605
2016-08-04 18:12:44.952802+00	2017-11-29 18:31:37.368639+00	1209	completed				+16612689346		31	2016-08-04 18:12:44.951827	2016-08-04 18:13:15.530835	CAb7aae5de52dcc7c3a064749bfbaeb0d9	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REcddfc07fec91b2024e7c0c36607ad0bf	0	inbound	+18555472453	\N	19.6796870231628418	null	general interest		1	\N	\N	2605
2016-08-04 18:13:24.056104+00	2017-11-29 18:31:37.368646+00	1210	completed				+16612689346		29	2016-08-04 18:13:24.054268	2016-08-04 18:13:53.150528	CA437fdf6a7dd1f4967142f7156fee7bd1	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REaab78f13968c96405af3e99f1ad60e60	0	inbound	+18555472453	\N	19.6120560169219971	null	general interest		1	\N	\N	2605
2016-08-04 18:19:24.774725+00	2017-11-29 18:31:37.368653+00	1211	completed				+16612689346		46	2016-08-04 18:19:24.773404	2016-08-04 18:20:10.627862	CA92a5141e7d0685f3d068db1eec9af14f	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REd363ba5b569ec35f6d77f5b704874054	0	inbound	+18555472453	\N	18.7081711292266846	null	general interest		1	\N	\N	2605
2017-06-23 20:54:41.142328+00	2017-11-29 18:31:56.600429+00	5645	missed				+15747039275		7	2017-06-23 20:54:41.139192	2017-06-23 20:54:48.327521	CA241f173e068025aa505a8519255eef37	\N	\N			0	inbound	+18556311397	\N	\N	\N	new lead		1	\N	\N	2610
2017-06-21 18:02:13.667049+00	2017-08-17 14:35:21.045485+00	5624	completed				+18176660376		237	2017-06-21 18:02:13.664839	2017-06-21 18:06:11.038158	CAb84f5240951909f30d21530134e511b8	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REa63387d3e04d1a232c7d51a0712f669d	0	inbound	+18177569010	124	5.4783480167388916	\N	new lead	turner jacklyn 	12	\N	\N	2611
2017-06-21 18:10:13.273553+00	2017-06-21 18:11:03.139692+00	5625	completed				+18176660376		49	2017-06-21 18:10:13.270398	2017-06-21 18:11:02.075484	CAa44cac744fe733c843ac02216acab9d1	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE781216751ad7d8b665f3e79e8d62b7d9	0	inbound	+18177569010	124	6.83133888244628906	\N	new lead	turner jacklyn 	12	\N	\N	2611
2016-11-04 22:42:54.230643+00	2016-11-04 22:48:57.784053+00	2735	completed				+12147832667		363	2016-11-04 22:42:54.229028	2016-11-04 22:48:57.34942	CA6408328ff27b247b1b48cfb78a806823	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE2897b8a834d736d8173c2edb0b70e32d	0	inbound	+18557240606	49	2.09568190574645996	null	new lead		1	\N	\N	2612
2016-11-14 20:28:31.772351+00	2016-11-14 20:28:31.81647+00	2894	missed	Michelle	Haskin	mhaskin.mh@gmail.com	+13462129393		\N	2016-11-14 20:28:31.770275	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2614
2016-10-05 00:11:11.498211+00	2016-12-10 01:04:28.706406+00	2156	completed				+19098217308		145	2016-10-05 00:11:11.49732	2016-10-05 00:13:36.098991	CA243cdf120ebb4e0e4b5d0a6a07be2268	\N	61			0	inbound	+18557579140	\N	0.961291074752807617	null	new lead		3	\N	\N	2615
2016-11-06 17:10:48.270601+00	2016-11-06 17:10:48.297736+00	2769	missed	LYNN	STEPHENS	fitlynn@yahoo.com	+19366895078		\N	2016-11-06 17:10:48.269513	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2618
2017-11-21 20:10:38.477907+00	2017-11-21 20:14:44.890844+00	7165	completed	Raydreone 	Howard 	Rayhow12@gmail.com	+17065109231		139	2017-11-21 20:10:38.474008	2017-11-21 20:13:11.089252	CA8161d9560e60c5f3e58f9334f1207b06	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REf7797eb57eda46dcad7cf8e2ffdba8b4	1	outbound	+17704009016	\N	13.7393131256103516	{}	select status		13	\N	\N	2619
2017-05-16 22:58:17.088273+00	2017-11-29 18:38:49.811904+00	5133	completed				+12148098362		93	2017-05-16 22:58:17.0857	2017-05-16 22:59:50.230215	CAfb2bca931f33b938dff6fb1f4717d14e	\N	\N			0	inbound	+12147122250	\N	5.94948601722717285	\N	new lead	frye kandy l	9	\N	\N	2621
2017-05-18 16:40:05.550176+00	2017-11-29 18:38:49.81216+00	5205	completed				+12148098362		58	2017-05-18 16:40:05.548139	2017-05-18 16:41:03.120975	CA64bc8e8539e22dc790ab5c8c4c479cde	\N	\N			0	inbound	+12147122250	\N	8.49597001075744629	\N	new lead	frye kandy l	9	\N	\N	2621
2017-05-31 15:07:44.282511+00	2017-11-29 18:38:49.814182+00	5521	completed				+12148098362		75	2017-05-31 15:07:44.280695	2017-05-31 15:08:59.039416	CAf077b72766cf647cc307bf2a07f0b1c2	\N	126			0	inbound	+12147122250	\N	1.87424707412719727	\N	new lead	edgett johnny  	9	\N	\N	2621
2017-05-31 16:05:15.170052+00	2017-11-29 18:38:49.81421+00	5525	completed				+12148098362		74	2017-05-31 16:05:15.168145	2017-05-31 16:06:28.763103	CA0f1d1957ca27489d351375527640a158	\N	126			0	inbound	+12147122250	\N	0.965034008026123047	\N	new lead	frye kandy l	9	\N	\N	2621
2017-05-31 16:06:21.133987+00	2017-11-29 18:38:49.814217+00	5526	completed				+12148098362		80	2017-05-31 16:06:21.132032	2017-05-31 16:07:41.068352	CAe54bf3eb33df514bbdc8a1257615e767	\N	126			0	inbound	+12147122250	\N	1.3237309455871582	\N	new lead	edgett johnny  	9	\N	\N	2621
2017-05-31 16:07:39.781436+00	2017-11-29 18:38:49.814224+00	5527	completed				+12148098362		61	2017-05-31 16:07:39.779604	2017-05-31 16:08:40.620266	CAab9bbcb16f7d68cbfb56f54cd85995db	\N	127			0	inbound	+12147122250	\N	1.76873898506164551	\N	new lead	frye kandy l	9	\N	\N	2621
2017-05-31 16:08:47.662696+00	2017-11-29 18:38:49.814232+00	5528	completed				+12148098362		67	2017-05-31 16:08:47.661209	2017-05-31 16:09:54.428517	CA90625cdcfb3e83de0ca4f840701e55d2	\N	107			0	inbound	+12147122250	\N	7.26055812835693359	\N	new lead	frye kandy l	9	\N	\N	2621
2017-09-30 17:28:30.425377+00	2017-09-30 17:29:35.335067+00	6549	completed				+16785796998		65	2017-09-30 17:28:30.42344	2017-09-30 17:29:35.323421	CAab5ca202698e73b5740ed9180aaab306	\N	152			0	inbound	+17707665732	133	19.5291612148284912	\N	new lead		13	\N	\N	2622
2017-10-18 17:39:44.045771+00	2017-10-18 17:39:54.456487+00	6739	missed				+17707847288		10	2017-10-18 17:39:44.043253	2017-10-18 17:39:54.434304	CA98e29df28ee47765fd75c0067a58fd99	\N	\N			0	inbound	+17707669297	131	\N	\N	new lead		6	\N	\N	2626
2017-10-18 17:40:18.301249+00	2017-10-18 17:40:32.622757+00	6740	missed				+17707847288		14	2017-10-18 17:40:18.299654	2017-10-18 17:40:32.610671	CA239b47c6f62a64fea65b708784111fa3	\N	\N			0	inbound	+17707669297	131	\N	\N	new lead		6	\N	\N	2626
2016-07-28 15:58:56.563539+00	2016-07-29 14:08:21.698238+00	998	completed	Harold	Gemmell	dablitz13@yahoo.com	+14062037349		0	2016-07-28 15:58:56.562559	2016-07-28 15:59:27.284586	CA70ac72ff81a6594f476db34b49249fbf	07cfd785-7aef-47fb-8d17-7f38ec833934	\N			1	outbound	+18556311439	\N	24.7826309204101562	{}	application submitted - credit union		1	\N	\N	2627
2017-04-18 19:20:44.171803+00	2017-11-29 18:38:53.214184+00	4051	completed				+19185204245		140	2017-04-18 19:20:44.168887	2017-04-18 19:23:04.479013	CA856560c54cf9414f1567bd2e1ea77f53	\N	107			0	inbound	+12146922088	\N	8.4411771297454834	\N	new lead	henry james	9	\N	\N	2628
2017-04-18 19:09:00.547105+00	2017-11-29 18:38:53.214177+00	4049	completed				+19185204245		117	2017-04-18 19:09:00.544769	2017-04-18 19:10:57.644569	CA6c6891d5bcbabbfc9461c754f7d70ab4	\N	\N			0	inbound	+12146922088	\N	6.16389298439025879	\N	new lead	llc entourage  	9	\N	\N	2628
2016-11-03 16:10:06.698341+00	2016-11-03 16:38:23.907391+00	2636	completed				+14708993111		1694	2016-11-03 16:10:06.697095	2016-11-03 16:38:20.509975	CA50aeb723d62f38022305140924706098	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE65589211dbe5a46d96821cd028ae77c6	0	inbound	+18557240606	49	2.55448198318481445	null	new lead		1	\N	\N	2630
2016-09-29 18:30:31.630746+00	2016-12-10 01:04:28.706363+00	2110	completed				+17062971994		62	2016-09-29 18:30:31.628301	2016-09-29 18:31:33.694547	CAeb93c1735db6867af403dda8f80637f7	\N	61			0	inbound	+18557579140	\N	1.38147211074829102	null	new lead		3	\N	\N	2631
2016-09-29 18:32:16.643674+00	2016-12-10 01:04:28.70637+00	2111	completed				+17062971994		42	2016-09-29 18:32:16.642738	2016-09-29 18:32:59.043474	CA8c26f2a25265d2c8b95f7616dc2a83d2	\N	61			0	inbound	+18557579140	\N	1.38042688369750977	null	new lead		3	\N	\N	2631
2017-03-16 19:36:42.730696+00	2017-11-29 18:47:25.067792+00	3469	completed				+12145799559		561	2017-03-16 19:36:42.728644	2017-03-16 19:46:03.447674	CAb94b7fab412e5298b36640ae9ab71442	\N	82		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE2565ff64537c51a84871f495eb816215	0	inbound	+19728330116	\N	9.12684011459350586	\N	new lead	around the clock tax svc	8	\N	\N	2633
2017-12-09 23:50:28.947416+00	2017-12-09 23:51:17.045406+00	7756	completed				+19402554950		47	2017-12-09 23:50:28.945723	2017-12-09 23:51:15.877422	CA621d6fa049acdf355f2d9c3a5788b33b	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REe5ecbc9d8b5b930ae772d90525c1ed7a	0	inbound	+18177569010	124	9.0919039249420166	\N	new lead	marsden terry	12	\N	\N	2634
2016-11-17 15:25:48.445811+00	2016-11-17 15:25:48.474213+00	2934	missed	thomas	wesolowski	mufan17@yahoo.com	+13149565097		\N	2016-11-17 15:25:48.444741	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2635
2017-10-30 16:37:03.661748+00	2017-10-30 16:40:58.608522+00	6867	completed	Adrian	Jones	Adrianjones0212@gmail.com	+17066805377		220	2017-10-30 16:37:03.660101	2017-10-30 16:40:58.583475	CA4422ef645c91b71ea2772ee86f90c514	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE2606da0d1e47abb6228f5324181feea0	1	outbound	+17704009016	\N	12.274885892868042	{}	new lead		13	\N	\N	2636
2016-11-21 21:32:26.834583+00	2016-12-09 17:06:57.830416+00	2961	completed				+15142744607		15	2016-11-21 21:32:26.832403	2016-11-21 21:32:41.749077	CAaec5fc5361b1034ce70f618d19eef989	\N	20			0	inbound	+18552000227	\N	2.3373558521270752	null	new lead		3	\N	\N	2637
2017-03-02 16:58:25.232772+00	2017-11-29 18:47:25.067537+00	3291	completed				+19723588836		699	2017-03-02 16:58:25.230463	2017-03-02 17:10:04.644191	CA3405cd5c061610759f45d8ed34fa9e8f	\N	84		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE2950928d5a6397555dcf4ff7b8c74079	0	inbound	+19728330116	\N	338.316682815551758	\N	new lead	cell phone   tx	8	\N	\N	2639
2017-08-30 20:38:18.319231+00	2017-08-30 20:41:41.898881+00	6205	completed				+18173026298		203	2017-08-30 20:38:18.316601	2017-08-30 20:41:41.051257	CAda066e94eac5ddb9a2ec593f7405ced3	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE2818ff55be4ddc4a95ca770b91bc7428	0	inbound	+18177569010	124	14.8019459247589111	\N	new lead	harrison ava	12	\N	\N	2640
2017-10-05 15:23:46.877972+00	2017-10-05 15:27:05.064992+00	6593	completed	Hannah	Walters	hannah.walters1128@gmail.com	+17063085026		181	2017-10-05 15:23:46.876177	2017-10-05 15:27:05.043283	CAa17d670a35ab63beb68d3811f8b9dd24	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE6543b002c2467c05b5a1ac281bca3cde	1	outbound	+17704009016	\N	15.2052760124206543	{}	new lead		13	\N	\N	2643
2017-11-29 14:41:36.257242+00	2017-11-29 14:45:04.643466+00	7388	completed				+16784579785		208	2017-11-29 14:41:36.255276	2017-11-29 14:45:04.6322	CAb90d458f744da42646c9fd5ecacde842	\N	154			0	inbound	+17707665699	134	1.99243998527526855	\N	new lead	shayabelle	13	\N	\N	2644
2016-08-24 14:03:24.993537+00	2017-01-27 21:12:23.813679+00	1695	completed				+15134467094		38	2016-08-24 14:03:24.992306	2016-08-24 14:04:03.084811		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	2646
2016-08-24 14:04:15.483621+00	2017-01-27 21:12:23.813686+00	1696	completed				+15134467094		39	2016-08-24 14:04:15.481775	2016-08-24 14:04:54.017732		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	2646
2016-08-23 13:59:25.625432+00	2017-11-29 18:31:10.262568+00	1667	completed				+15134467094		348	2016-08-23 13:59:25.624297	2016-08-23 14:05:14.022524	CA9af95f8964c9d2d944a9006e49647df6	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REa95c09396c0c8efa492f545f40719d92	0	inbound	+18556311490	\N	6.44261407852172852	null	general interest		1	\N	\N	2646
2017-07-12 22:14:00.580317+00	2017-07-12 22:36:23.117681+00	5764	missed				+18177214210		47	2017-07-12 22:14:00.578055	2017-07-12 22:14:47.785627	CAe3e537b7f8ea19c84b330e9e102e6369	\N	\N			0	inbound	+18177569010	124	1317.8196280002594	\N	new lead	charles getty	12	\N	\N	2647
2017-07-12 22:16:58.004826+00	2017-07-12 22:39:20.90169+00	5766	missed				+18177214210		49	2017-07-12 22:16:58.00301	2017-07-12 22:17:46.565968	CAdf47fb8beec141ccca5b137e826337eb	\N	\N			0	inbound	+18177569010	124	1315.59296107292175	\N	new lead	charles getty	12	\N	\N	2647
2017-07-14 23:43:49.631942+00	2017-07-14 23:45:39.765812+00	5781	completed				+18177214210		109	2017-07-14 23:43:49.630346	2017-07-14 23:45:38.639891	CA7307e1be81249f6721d366d424ad5f7f	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE0a5eef7f742bc6bd0201005160129581	0	inbound	+18177569010	124	49.4882779121398926	\N	new lead	charles getty	12	\N	\N	2647
2016-06-17 15:57:41.983998+00	2016-12-09 17:06:53.905694+00	435	completed	Unknown			+12157575920		128	2016-06-17 15:57:41.982665	2016-06-17 15:59:49.67184	CA96f059ed78551ead513b0a050b5290e4	\N	21			0	inbound	+18558021330	\N	2.98317408561706543	null	new lead		3	\N	\N	2648
2017-03-10 22:09:14.911157+00	2017-11-29 18:47:25.06768+00	3379	completed				+15805794697		545	2017-03-10 22:09:14.9089	2017-03-10 22:18:19.517141	CAdcaa6f7d2f5d4d55457cbeb29c3737d8	\N	82		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE018a2ff2f91d8f8eb437f593a6fcf6e4	0	inbound	+19728330116	\N	310.169278860092163	\N	new lead	parker kody    	8	\N	\N	2652
2017-06-22 19:31:48.854825+00	2017-08-09 14:43:41.852296+00	5634	unanswered	Scottie 	Graham	scottiegraham30173@gmail.com	+17069368672		45	2017-06-22 19:31:48.853236	2017-06-22 19:39:27.962629	CAa9c568bd1a3f93634d65e11fd2060afe	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			3	outbound	+17704009016	\N	419.436156034469604	{}	select status		13	\N	\N	2654
2017-08-09 14:17:30.093356+00	2017-08-09 14:43:41.843757+00	5974	missed	Scottie 	Graham 	scottiegraham30173@gmail.com	+17069368672		59	2017-08-09 14:17:30.091855	2017-08-09 14:24:37.480196	CA728177437cba436982a78923993f9ff4	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			3	outbound	+17704009016	\N	365.028909921646118	{}	select status		13	\N	\N	2654
2016-06-27 18:57:07.314906+00	2016-06-27 18:57:29.171648+00	544	completed				+15136644000		18	2016-06-27 18:57:07.313118	2016-06-27 18:57:29.170605	CAb4d9304c38c86d11d6005e581b8df816	cd89e433-4bde-4f86-9b22-8f52c2413fcd	16			1	outbound	+18556311490	\N	1.35735297203063965	{}	new lead		1	\N	\N	2655
2016-06-27 18:51:33.696599+00	2017-11-29 18:31:10.261347+00	542	completed	Unknown			+15136644000		26	2016-06-27 18:51:33.694442	2016-06-27 18:51:59.394248	CA795e8f1968cb1e90c1c3f30a74aaefd7	\N	\N			0	inbound	+18556311490	\N	14.21138596534729	null	new lead		1	\N	\N	2655
2017-12-07 16:59:38.429132+00	2017-12-07 17:19:22.259546+00	7685	completed				+14692871104		1181	2017-12-07 16:59:38.427291	2017-12-07 17:19:19.041989	CA331c2f49ab14b92494c2652842f43c8b	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE58c74ee55a37aa84696852574c3dedf4	0	inbound	+18558645656	136	2.08350586891174316	\N	new lead		15	\N	\N	2656
2017-05-10 20:31:21.947729+00	2017-11-29 18:38:49.810959+00	4980	completed				+17046997027		271	2017-05-10 20:31:21.94371	2017-05-10 20:35:52.767886	CA838dafdc94bbe01a7d6a98ce6b46cdd5	\N	107			0	inbound	+12147122250	\N	3.18259716033935547	\N	new lead	shembo yodi    	9	\N	\N	2657
2016-08-03 21:06:57.850403+00	2016-08-03 21:26:19.649416+00	1187	missed	Dan 	Clepper	daniel.clepper@afit.edu	+15137391890	I applied to refinance my car based on a mailer received.  I have not been able to connect with a rep.  Please advise if the loan was approved.  Thanks!	\N	2016-08-03 21:06:57.848668	\N		e576a333-5bc2-44ef-8856-7c36c8f7081a	\N			0	outbound	+18556311439	\N	\N	{}	general interest		1	\N	\N	2662
2016-08-03 22:00:26.905125+00	2017-11-29 18:31:10.262082+00	1191	completed	Dan 	Clepper	daniel.clepper@afit.edu	+15137391890		79	2016-08-03 22:00:26.903489	2016-08-03 22:01:46.279652		\N	16			0	outbound	+18556311490	\N	\N	null	general interest		1	\N	\N	2662
2016-11-15 19:47:06.825041+00	2016-12-10 01:01:51.441163+00	2911	completed				+18587352991		53	2016-11-15 19:47:06.823613	2016-11-15 19:48:00.311015	CA31ab232504039217cc9a105fa3f8f923	\N	50			0	inbound	+18559693782	\N	3.05766892433166504	null	new lead		3	\N	\N	3925
2017-05-01 19:43:12.505789+00	2017-11-29 18:38:53.214887+00	4541	completed				+18062180875		88	2017-05-01 19:43:12.502844	2017-05-01 19:44:40.607961	CAbfaa3b1513818004c055fe673dc09bec	\N	107			0	inbound	+12146922088	\N	4.67355799674987793	\N	new lead	tovar lorena	9	\N	\N	2663
2017-05-01 19:39:26.299656+00	2017-11-29 18:38:49.808287+00	4539	completed				+18062180875		69	2017-05-01 19:39:26.296876	2017-05-01 19:40:35.142649	CA6777f768de9fee414f65b31376bb15a5	\N	124			0	inbound	+12147122250	\N	0.876193046569824219	\N	new lead	tovar lorena   	9	\N	\N	2663
2017-12-07 21:54:46.227204+00	2017-12-07 21:58:35.537749+00	7694	completed				+18137844482		227	2017-12-07 21:54:46.225384	2017-12-07 21:58:33.284159	CA73512b968da24f72c8e9f59ad32f1557	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE6ac200049b3ea6d3bbd073be4ff2a7d6	0	inbound	+18558645656	136	2.17850303649902344	\N	new lead		15	\N	\N	2665
2017-04-12 20:58:30.79831+00	2017-11-29 18:38:53.213823+00	3839	completed				+16175105354		27	2017-04-12 20:58:30.795887	2017-04-12 20:58:57.644437	CA2088147373852451e3c363cb1e4f4df7	\N	105			0	inbound	+12146922088	\N	5.6309821605682373	\N	new lead	welbourn robert	9	\N	\N	2666
2017-03-30 22:26:40.443538+00	2017-11-29 18:38:53.213184+00	3637	completed				+15029953999		22	2017-03-30 22:26:40.440277	2017-03-30 22:27:02.44543	CA6a83b98422d84c11448314369be17ffc	\N	107			0	inbound	+12146922088	\N	7.75103998184204102	\N	new lead	louisville  ky	9	\N	\N	2667
2016-11-05 23:26:07.154023+00	2016-11-05 23:26:07.177106+00	2764	missed	zhenhan	cai	jacky_caizh@hotmail.com	+17139097482		\N	2016-11-05 23:26:07.152987	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2668
2017-05-04 13:53:25.147551+00	2017-05-04 14:15:57.14149+00	4701	missed				+18177366274		47	2017-05-04 13:53:25.146328	2017-05-04 13:54:12.308133	CA9dfa8590e35425bc65c3a1662124e9b5	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE458569d696c5ad30a8c2d5b0bc09e2c8	0	inbound	+18177569010	124	1330.25455689430237	\N	new lead	cell phone   tx	12	\N	\N	2670
2017-05-04 14:24:58.935588+00	2017-05-04 14:47:19.469602+00	4704	missed				+18177366274		40	2017-05-04 14:24:58.933907	2017-05-04 14:25:38.867558	CA41ac07555b3d3ec2f4315af4ccc8c648	\N	\N			0	inbound	+18177569010	124	1318.74417591094971	\N	new lead	cell phone   tx	12	\N	\N	2670
2017-12-09 15:23:39.149364+00	2017-12-09 15:33:23.385518+00	7741	completed				+16789341463		261	2017-12-09 15:23:39.147761	2017-12-09 15:27:59.736112	CA4e62816b4d37fd8585a9ccf6f7a16053	\N	152			0	inbound	+17707665732	133	9.46070313453674316	\N	select status	conner christin	13	\N	\N	2671
2016-09-04 21:10:30.021647+00	2016-12-10 01:01:51.440779+00	1886	completed				+16199772682		140	2016-09-04 21:10:30.019912	2016-09-04 21:12:50.384365	CA3a8718c227fa1be640f98b9a1ec3ccc1	\N	50			0	inbound	+18559693782	\N	2.2123110294342041	null	new lead		3	\N	\N	2672
2016-10-31 19:02:48.592407+00	2016-11-02 14:55:11.324477+00	2392	missed				+18178887964		0	2016-10-31 19:02:48.591211	2016-10-31 19:02:48.858162	CAdf415139cb95f64b768686cd28a4e322	\N	\N			0	inbound	+18557240606	49	\N	null	select status		1	\N	\N	2673
2016-10-31 19:01:10.952612+00	2016-11-02 14:55:11.324464+00	2390	missed				+18178887964		3	2016-10-31 19:01:10.951557	2016-10-31 19:01:14.400358	CA13d9efed035780683f6c613cda8847b8	\N	\N			0	inbound	+18557240606	49	\N	null	select status		1	\N	\N	2673
2016-10-31 19:01:11.837806+00	2016-11-02 14:55:11.32447+00	2391	missed				+18178887964		0	2016-10-31 19:01:11.836262	2016-10-31 19:01:12.216372	CA1cdb1e5416b95efcd34f2ee0ebd1f884	\N	\N			0	inbound	+18557240606	49	\N	null	select status		1	\N	\N	2673
2016-10-31 19:00:40.575588+00	2016-11-02 14:55:11.324429+00	2388	missed				+18178887964		2	2016-10-31 19:00:40.573764	2016-10-31 19:00:42.398301	CA59b7771b6684b15b4ebe758da559d2cb	\N	\N			0	inbound	+18557240606	49	\N	null	select status		1	\N	\N	2673
2016-10-31 19:00:43.297876+00	2016-11-02 14:55:11.324456+00	2389	missed				+18178887964		3	2016-10-31 19:00:43.296672	2016-10-31 19:00:46.646627	CA77d982e51ebc7b1ea35151af19a64e75	\N	\N			0	inbound	+18557240606	49	\N	null	select status		1	\N	\N	2673
2016-10-31 19:02:49.293232+00	2016-11-02 14:55:11.324483+00	2393	missed				+18178887964		0	2016-10-31 19:02:49.292254	2016-10-31 19:02:49.687151	CAd806dddc86dcec1403481102b169df3a	\N	\N			0	inbound	+18557240606	49	\N	null	select status		1	\N	\N	2673
2016-11-02 14:24:36.281918+00	2017-01-27 21:12:23.813911+00	2544	completed				+18178887964		400	2016-11-02 14:24:36.280677	2016-11-02 14:31:15.973606		\N	\N			0	outbound	+18557240606	49	\N	null	select status		1	\N	\N	2673
2017-05-26 20:21:38.993388+00	2017-11-29 18:38:49.813724+00	5447	missed				+13256768925		21	2017-05-26 20:21:38.991194	2017-05-26 20:21:59.525643	CAea36507b5e32d70be178eec289dfc769	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	txdot credit un	9	\N	\N	2674
2016-10-05 15:04:03.286683+00	2016-12-10 01:01:00.200159+00	2168	completed				+16193708981		34	2016-10-05 15:04:03.285382	2016-10-05 15:04:36.972799	CA76f967573b24d31858b9a26720854ae1	\N	57			0	inbound	+18557860909	\N	32.2762501239776611	null	new lead		3	\N	\N	2676
2016-12-01 18:21:57.628437+00	2016-12-10 01:01:51.441184+00	3018	completed				+18583859311		223	2016-12-01 18:21:57.626673	2016-12-01 18:25:40.484954	CA86f03048fcbd1afa928e923b8ba12303	\N	50			0	inbound	+18559693782	\N	3.17427301406860352	null	new lead		3	\N	\N	2680
2016-11-05 17:14:15.63725+00	2016-11-05 17:48:53.31152+00	2750	completed				+18173125439		2074	2016-11-05 17:14:15.635797	2016-11-05 17:48:49.462626	CA662127f889eb1f2a01c98028806dfba5	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REa268b62c917b25c7c07f8a5bf3c845cf	0	inbound	+18557240606	49	\N	null	new lead		1	\N	\N	2683
2017-07-31 15:08:19.850332+00	2017-07-31 15:09:00.037335+00	5900	completed				+12605855184		39	2017-07-31 15:08:19.847301	2017-07-31 15:08:58.77435	CA49592df19d57a0d943e4e5a425d01d8f	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE8297fc8c12c86779e9ea15e5e10b3f4c	0	inbound	+17704009016	132	15.3515868186950684	\N	new lead		13	\N	\N	2684
2017-07-31 15:06:25.639947+00	2017-07-31 15:12:21.070903+00	5899	missed				+12605855184		25	2017-07-31 15:06:25.6379	2017-07-31 15:06:50.425103	CA24edf03dedf9222189bdd2c62db1859d	\N	\N			0	inbound	+17704009016	132	\N	\N	new lead		13	\N	\N	2684
2017-07-31 15:05:02.396635+00	2017-07-31 15:12:52.257456+00	5897	completed				+12605855184		470	2017-07-31 15:05:02.392241	2017-07-31 15:12:52.253906	CA84c7dc2465af157312bfce3a9ca328d3	\N	152			0	inbound	+17704009016	132	325.563573837280273	\N	new lead		13	\N	\N	2684
2017-07-31 15:05:21.150668+00	2017-07-31 15:06:49.682484+00	5898	completed				+12605855184		87	2017-07-31 15:05:21.149555	2017-07-31 15:06:48.450505	CA62d0f15e815abfeac9d4100bce87d1e4	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE2a5105327241d53dda973055dd302a29	0	inbound	+17704009016	132	19.9475870132446289	\N	new lead		13	\N	\N	2684
2016-10-04 19:22:32.012981+00	2016-12-09 17:06:53.905992+00	2144	missed				+12157738285		0	2016-10-04 19:22:32.012027	2016-10-04 19:22:32.279852	CAb9fc168606879bd90a917eff0a87fca5	\N	\N			0	inbound	+18558021330	\N	\N	null	new lead		3	\N	\N	2688
2016-10-04 19:22:33.104613+00	2016-12-09 17:06:53.905999+00	2145	missed				+12157738285		0	2016-10-04 19:22:33.103772	2016-10-04 19:22:33.598853	CA82b7cfbe4c70170ae07df533ad93a974	\N	\N			0	inbound	+18558021330	\N	\N	null	new lead		3	\N	\N	2688
2016-10-04 19:22:44.864381+00	2016-12-09 17:06:53.906006+00	2146	completed				+12157738285		199	2016-10-04 19:22:44.863334	2016-10-04 19:26:04.16736	CAd4d7fe6c422e369c219c0da64f7afbc9	\N	21			0	inbound	+18558021330	\N	2.40506219863891602	null	new lead		3	\N	\N	2688
2016-10-04 19:26:36.42122+00	2016-12-09 17:06:53.906014+00	2147	completed				+12157738285		200	2016-10-04 19:26:36.420158	2016-10-04 19:29:56.658961	CA1db539d6aa411826d2c561c7f891d9bf	\N	21			0	inbound	+18558021330	\N	2.20844793319702148	null	new lead		3	\N	\N	2688
2017-03-23 21:25:09.24651+00	2017-11-29 18:38:53.212874+00	3566	completed				+18179862547		82	2017-03-23 21:25:09.244057	2017-03-23 21:26:30.835784	CA85fe58ac8ff38efd60c09ef25801e84a	\N	\N			0	inbound	+12146922088	\N	3.57821106910705566	\N	new lead	basavaraju raja	9	\N	\N	2693
2017-10-15 19:06:09.099761+00	2017-10-15 19:06:42.937539+00	6718	missed				+18178457948		34	2017-10-15 19:06:09.098065	2017-10-15 19:06:42.920746	CAc55008033967fd87206d56212bfa8045	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REe2942aac531f800dccd9af6405be85c3	0	inbound	+18177569010	124	\N	\N	new lead	steven john	12	\N	\N	2696
2016-09-03 14:35:14.748633+00	2016-12-09 17:07:45.331612+00	1869	completed				+14848326591		333	2016-09-03 14:35:14.745488	2016-09-03 14:40:47.348578	CAc5f5d00035dd82f7bf42fa15944c5275	\N	55			0	inbound	+18552467810	\N	1.91220903396606445	null	new lead		3	\N	\N	2698
2017-06-20 18:17:34.79635+00	2017-06-20 18:18:17.047081+00	5615	missed	richard	valdes	valdesr@autonation.com	+17863313845		19	2017-06-20 18:17:34.792912	2017-06-20 18:18:15.62897	CA50c7c21468af6ad21e5bf32867a5e2d5	3784ab32-dd2a-4afe-b372-b25e22263604	\N			1	outbound	+17735469660	\N	20.8183388710021973	{}	new lead		1	\N	\N	2704
2017-10-04 18:53:44.492583+00	2017-10-04 18:57:00.502649+00	6580	completed	Michael	Peters	Milagia03@gmail.com	+18052484234		185	2017-10-04 18:53:44.490263	2017-10-04 18:56:59.217216	CAa192c7be305e295a3f7319b802f36f8a	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REdb8b61a27e87436fbefeffc741e33075	1	outbound	+17704009016	\N	9.07050704956054688	{}	new lead		13	\N	\N	2708
2016-11-15 01:07:38.441252+00	2016-11-15 01:07:38.464444+00	2902	missed	blanca	garcia	b_govea@hotmail.com	+19405949146		\N	2016-11-15 01:07:38.44015	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2713
2017-10-27 19:15:10.269261+00	2017-10-27 19:21:07.806125+00	6844	missed	David 	Wright	undertakerdeadmanwalking2007@gmail.com	+14702482137		0	2017-10-27 19:15:10.267696	2017-10-27 19:21:07.804338	CAfe062534b7a5be31ca2798dc0dde7a45	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			3	outbound	+17704009016	\N	340.899403095245361	{}	new lead		13	\N	\N	2714
2017-11-04 19:30:20.073773+00	2017-11-04 19:31:22.977726+00	6935	completed				+18172232742		62	2017-11-04 19:30:20.07164	2017-11-04 19:31:21.889362	CA390660e6ca5ee111125893d029699762	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE111f88994058b4b96327827b79fbc32e	0	inbound	+18177569010	124	7.95714902877807617	\N	new lead	hackfeld tricia	12	\N	\N	2715
2016-06-27 14:27:58.975227+00	2017-11-29 18:31:41.490072+00	494	completed	Jeffrey	Bond		+16145714877		32	2016-06-27 14:27:58.973937	2016-06-27 14:28:30.482979	CAb734ec4ed09ca3ecf9a351eaf3bdbec2	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE3b3f5c30a3502cb8921a87acb743a5f0	0	inbound	+18552959002	\N	14.5177278518676758	null	new lead		1	\N	\N	2721
2016-06-27 15:50:59.873633+00	2016-06-27 15:53:39.323326+00	517	completed				+16145714877		154	2016-06-27 15:50:59.872273	2016-06-27 15:53:39.322304	CA9d3e71311061f899c8895a8977ae48aa	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	2.36347794532775879	{}	new lead		1	\N	\N	2721
2016-06-27 13:58:54.372385+00	2017-11-29 18:31:41.490064+00	490	completed	Unknown			+16145714877		30	2016-06-27 13:58:54.370662	2016-06-27 13:59:24.705606	CA3e277257f06649d822ece4df73bec581	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE442b2f993a441a54495beb9fb15fdb1a	0	inbound	+18552959002	\N	13.1237139701843262	null	new lead		1	\N	\N	2721
2017-05-19 15:20:09.253482+00	2017-11-29 18:38:49.812259+00	5226	completed				+17066691991		215	2017-05-19 15:20:09.251147	2017-05-19 15:23:44.611548	CA446915c812a7a5ee106620c529e3fae4	\N	99			0	inbound	+12147122250	\N	4.75216317176818848	\N	new lead	hopper emma    	9	\N	\N	2725
2016-05-25 22:18:25.577647+00	2016-05-26 12:55:26.132122+00	236	completed	Gary	Pfleger	gpfleger@huff.com	+15134760433		\N	2016-05-25 22:18:25.57595	\N		25d0200e-983d-4413-94ae-eb664b99711c	\N			0	outbound	+18556311490	\N	\N	{}	new lead		1	\N	\N	2726
2016-05-27 19:27:21.449055+00	2016-05-27 19:28:08.011697+00	266	completed				+15134760433		41	2016-05-27 19:27:21.448106	2016-05-27 19:28:08.010591	CA56733f52adcba7dcc4e6d2932c22a4c8	cd89e433-4bde-4f86-9b22-8f52c2413fcd	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REe1682d50d6a9f9a3f1816aa0f34ac4cf	1	outbound	+18556311490	\N	2.57852816581726074	{}	new lead		1	\N	\N	2726
2016-05-31 13:27:38.743154+00	2016-05-31 13:30:36.829894+00	279	completed				+15134760433		172	2016-05-31 13:27:38.741678	2016-05-31 13:30:36.828749	CA8d9b6aa659dd88cd070f1cfe82e55c24	cd89e433-4bde-4f86-9b22-8f52c2413fcd	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REef249bff68a1d79870caa45c757af12f	1	outbound	+18556311490	\N	2.78985404968261719	{}	new lead		1	\N	\N	2726
2016-05-31 14:12:41.744422+00	2016-05-31 14:13:55.043244+00	281	completed				+15134760433		68	2016-05-31 14:12:41.743197	2016-05-31 14:13:55.041959	CA0afe1097b2b497cf1f796f7f372cd6c3	cd89e433-4bde-4f86-9b22-8f52c2413fcd	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE9afa7f23ffc32f9dafd3a68a68b28fd8	1	outbound	+18556311490	\N	1.72999405860900879	{}	new lead		1	\N	\N	2726
2016-05-27 17:09:07.99153+00	2016-05-27 17:10:22.200307+00	260	completed				+15134760433		70	2016-05-27 17:09:07.990618	2016-05-27 17:10:22.199309	CA50811781413cac8b2975206c5804d9c6	cd89e433-4bde-4f86-9b22-8f52c2413fcd	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REdaac848fe63a7776b7b6210cba8d024e	1	outbound	+18556311490	\N	1.37572407722473145	{}	new lead		1	\N	\N	2726
2016-05-27 17:07:33.936466+00	2016-05-27 17:08:21.908402+00	259	completed				+15134760433		44	2016-05-27 17:07:33.93375	2016-05-27 17:08:21.907352	CA86abbf1fd96829727af109c109c800ea	cd89e433-4bde-4f86-9b22-8f52c2413fcd	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE1126aeac2961ea18dd44e061489f93b3	1	outbound	+18556311490	\N	1.57061004638671875	{}	new lead		1	\N	\N	2726
2016-05-27 18:09:58.817902+00	2017-11-29 18:31:10.260534+00	261	completed	Unknown			+15134760433		38	2016-05-27 18:09:58.814669	2016-05-27 18:10:36.345615	CAf43afd117b8c4440f3a31aa8c9fd8960	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE686288c5b50678918be6e2932d7ee979	0	inbound	+18556311490	\N	13.9119091033935547	null	new lead		1	\N	\N	2726
2016-05-31 13:56:40.351319+00	2017-11-29 18:31:10.260598+00	280	completed	Unknown			+15134760433		60	2016-05-31 13:56:40.34951	2016-05-31 13:57:40.403535	CA3caee0049c1924a83cb2d69aeac0fdee	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REc2d231fd5c61b6195f8166146ad6f648	0	inbound	+18556311490	\N	14.3913869857788086	null	new lead		1	\N	\N	2726
2017-08-21 14:50:15.713734+00	2017-08-21 15:12:01.448863+00	6123	missed				+18177562560		46	2017-08-21 14:50:15.711877	2017-08-21 14:51:01.669498	CA5655687d1ccfcb8df81ed1fab430d903	\N	\N			0	inbound	+18177569010	124	1284.06265687942505	\N	new lead	dallas  tx	12	\N	\N	2729
2016-08-17 15:22:15.15085+00	2016-12-09 17:06:53.905787+00	1549	completed				+19086739000		39	2016-08-17 15:22:15.149338	2016-08-17 15:22:53.6978	CAbc31afc071b1d2d281675e21621fe2bb	\N	21			0	inbound	+18558021330	\N	2.90286803245544434	null	new lead		3	\N	\N	2731
2016-09-07 14:44:34.066779+00	2016-12-09 17:06:53.905871+00	1902	completed				+19086739000		417	2016-09-07 14:44:34.065308	2016-09-07 14:51:31.159309	CAddca74df8d33fedef6f90c2c8b54a75f	\N	21			0	inbound	+18558021330	\N	2.83275985717773438	null	new lead		3	\N	\N	2731
2017-04-25 20:32:45.11835+00	2017-04-25 20:34:48.477058+00	4306	completed				+19723650831		123	2017-04-25 20:32:45.11647	2017-04-25 20:34:47.737783	CA8b3ef70c9067be399973a863f7cb51f5	\N	132		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REac3c1850262518a3b4a78250afcef0bf	0	inbound	+18172104002	126	21.295928955078125	\N	new lead	williams sharon	12	\N	\N	2736
2016-08-08 20:18:15.992042+00	2016-08-08 20:42:05.261522+00	1340	missed	Robert	Hickman	rhickman1@aol.com	+16148376645		\N	2016-08-08 20:18:15.991068	\N		d33a481e-e0af-47ac-9f90-260f20b69de5	\N			0	outbound	+18552959002	\N	\N	{}	application submitted - credit union		1	\N	\N	2738
2016-08-18 16:45:19.89674+00	2017-11-29 18:31:41.490716+00	1586	completed	Robert	Hickman		+16148376645		229	2016-08-18 16:45:19.894495	2016-08-18 16:49:08.69179		\N	16			0	outbound	+18552959002	\N	\N	null	application submitted - credit union		1	\N	\N	2738
2016-08-19 14:54:53.437508+00	2017-11-29 18:31:41.49073+00	1601	missed	Robert	Hickman		+16148376645		63	2016-08-19 14:54:53.435386	2016-08-19 14:55:56.142536	CA1064d0a1c7615bd2c9f7d8f64b5ad905	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE7ec213e2f77ec839fc98f1b5b1e12224	0	inbound	+18552959002	\N	31.5545558929443359	null	application submitted - credit union		1	\N	\N	2738
2016-08-19 15:15:53.116214+00	2017-11-29 18:31:41.490737+00	1602	completed	Robert	Hickman		+16148376645		40	2016-08-19 15:15:53.114695	2016-08-19 15:16:33.153155		\N	16			0	outbound	+18552959002	\N	\N	null	application submitted - credit union		1	\N	\N	2738
2016-08-19 15:16:12.197575+00	2017-11-29 18:31:41.490744+00	1603	completed	Robert	Hickman		+16148376645		38	2016-08-19 15:16:12.195986	2016-08-19 15:16:50.008144		\N	16			0	outbound	+18552959002	\N	\N	null	application submitted - credit union		1	\N	\N	2738
2016-08-19 15:18:59.916702+00	2017-11-29 18:31:41.490751+00	1604	missed	Robert	Hickman		+16148376645		56	2016-08-19 15:18:59.915567	2016-08-19 15:19:55.439915	CA2be624e1ee8423b9adae174304eef7d6	\N	\N			0	inbound	+18552959002	\N	31.8013019561767578	null	application submitted - credit union		1	\N	\N	2738
2016-08-19 18:17:35.716728+00	2017-11-29 18:31:41.490772+00	1621	completed	Robert	Hickman		+16148376645		62	2016-08-19 18:17:35.715748	2016-08-19 18:18:37.401531		\N	16			0	outbound	+18552959002	\N	\N	null	application submitted - credit union		1	\N	\N	2738
2016-08-19 18:17:01.390904+00	2017-11-29 18:31:41.490765+00	1620	ringing	Robert	Hickman		+16148376645		\N	2016-08-19 18:17:01.389826	\N		\N	16			0	outbound	+18552959002	\N	\N	null	application submitted - credit union		1	\N	\N	2738
2016-08-23 14:41:48.499168+00	2017-11-29 18:31:41.4908+00	1671	completed	Robert	Hickman		+16148376645		43	2016-08-23 14:41:48.497406	2016-08-23 14:42:31.494829		\N	16			0	outbound	+18552959002	\N	\N	null	application submitted - credit union		1	\N	\N	2738
2016-08-19 18:11:22.347725+00	2017-11-29 18:31:41.490758+00	1618	completed	Robert	Hickman		+16148376645		129	2016-08-19 18:11:22.345839	2016-08-19 18:13:31.597369	CA683ccffd0b5ef3a0538943514334de75	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE617fa7f92dfe51a84dff446a1161697f	0	inbound	+18552959002	\N	9.70344305038452148	null	application submitted - credit union		1	\N	\N	2738
2016-08-18 16:34:00.097654+00	2017-11-29 18:31:41.490709+00	1584	completed	Robert	Hickman		+16148376645		78	2016-08-18 16:34:00.096177	2016-08-18 16:35:17.837039	CAbf56227934984b1338355ee4ba703622	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE581d28b1b8abc2ce8865613b57860a8f	0	inbound	+18552959002	\N	9.41476011276245117	null	application submitted - credit union		1	\N	\N	2738
2016-08-18 15:32:47.940273+00	2017-11-29 18:31:41.490702+00	1580	completed	Robert	Hickman	rhickman1@aol.com	+16148376645		62	2016-08-18 15:32:47.939217	2016-08-18 15:33:50.169159		\N	16			0	outbound	+18552959002	\N	\N	null	application submitted - credit union		1	\N	\N	2738
2016-08-18 16:48:34.290568+00	2017-11-29 18:31:41.490723+00	1587	completed	Robert	Hickman		+16148376645		210	2016-08-18 16:48:34.289329	2016-08-18 16:52:04.362423		\N	16			0	outbound	+18552959002	\N	\N	null	application submitted - credit union		1	\N	\N	2738
2017-10-20 19:06:56.111595+00	2017-10-20 19:08:13.209129+00	6769	completed	Barbara	Aly	amber29054@aol.com	+17702928340		55	2017-10-20 19:06:56.109125	2017-10-20 19:08:13.207706	CAa9aec62cbbf6ee541330e378fe63455c	0427608a-ae09-4db0-a1e8-374423ee28c3	152			1	outbound	+17704009016	\N	21.8739230632781982	{}	new lead		13	\N	\N	2739
2017-11-20 14:03:58.461886+00	2017-11-20 14:07:18.19887+00	7135	missed	eugenia	pressley	eugeniapressley@yahoo.com	+17067681241		70	2017-11-20 14:03:58.459629	2017-11-20 14:05:08.885437		\N	150			0	outbound	+17704009016	132	\N	\N	select status		13	\N	\N	2740
2017-11-19 02:22:12.311816+00	2017-11-20 14:07:18.214804+00	7133	missed	eugenia	pressley	eugeniapressley@yahoo.com	+17067681241		\N	2017-11-19 02:22:12.310252	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	2740
2017-05-26 20:57:11.304129+00	2017-11-29 18:38:49.813753+00	5451	completed				+12149716688		56	2017-05-26 20:57:11.302071	2017-05-26 20:58:07.688758	CAbc29a7f9656bdd77393050ca3ab764ba	\N	107			0	inbound	+12147122250	\N	2.73841500282287598	\N	new lead	dot wo garden	9	\N	\N	2743
2017-05-26 20:57:59.939708+00	2017-11-29 18:38:49.813768+00	5453	completed				+12149716688		50	2017-05-26 20:57:59.938528	2017-05-26 20:58:49.746828	CA2e6ee952fa9622af858f1a6b549a6131	\N	125			0	inbound	+12147122250	\N	0.976124048233032227	\N	new lead	dot wo garden	9	\N	\N	2743
2017-05-26 20:58:46.3584+00	2017-11-29 18:38:49.813775+00	5454	completed				+12149716688		83	2017-05-26 20:58:46.356916	2017-05-26 21:00:09.738549	CA97e264cd7afffb95e2a9963c81579d3e	\N	124			0	inbound	+12147122250	\N	1.08276700973510742	\N	new lead	dot wo garden	9	\N	\N	2743
2017-05-26 22:24:54.740732+00	2017-11-29 18:38:49.81379+00	5456	completed				+12149716688		46	2017-05-26 22:24:54.738499	2017-05-26 22:25:40.264159	CA307fea19365e66dedd7d569c6a41b7a7	\N	133			0	inbound	+12147122250	\N	2.99536299705505371	\N	new lead	dot wo garden	9	\N	\N	2743
2017-05-26 22:25:35.771724+00	2017-11-29 18:38:49.813797+00	5457	completed				+12149716688		37	2017-05-26 22:25:35.770111	2017-05-26 22:26:12.934696	CAa9d9a8197f3ff29f9d48c9b88b31f45b	\N	103			0	inbound	+12147122250	\N	9.37351298332214355	\N	new lead	dot wo garden	9	\N	\N	2743
2017-05-26 22:26:04.576934+00	2017-11-29 18:38:49.813804+00	5458	missed				+12149716688		39	2017-05-26 22:26:04.575204	2017-05-26 22:26:43.434901	CA9da25020b068069204b9d7e098e9ca64	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	dot wo garden	9	\N	\N	2743
2017-05-26 23:07:55.090757+00	2017-11-29 18:38:49.813819+00	5460	completed				+12149716688		33	2017-05-26 23:07:55.088582	2017-05-26 23:08:28.495824	CAb499ecc0d31eddebb330f615ae18eae0	\N	105			0	inbound	+12147122250	\N	18.4055230617523193	\N	new lead	dot wo garden	9	\N	\N	2743
2017-05-26 23:08:38.279272+00	2017-11-29 18:38:49.813826+00	5461	completed				+12149716688		39	2017-05-26 23:08:38.277928	2017-05-26 23:09:17.453878	CAb0d9f05b13a5e45e55404b12f03fefd3	\N	107			0	inbound	+12147122250	\N	3.57396984100341797	\N	new lead	dot wo garden	9	\N	\N	2743
2017-05-27 18:46:22.12391+00	2017-11-29 18:38:49.813912+00	5473	completed				+12149716688		157	2017-05-27 18:46:22.12215	2017-05-27 18:48:59.406224	CAd3a8060cfa4964ed4913d9d3f9c31640	\N	99			0	inbound	+12147122250	\N	5.29347991943359375	\N	new lead	dot wo garden	9	\N	\N	2743
2017-11-30 19:48:58.162958+00	2017-11-30 19:50:27.325337+00	7415	completed				+17062247705		89	2017-11-30 19:48:58.159853	2017-11-30 19:50:27.31317	CA6b665e64484286509d67d3f113adf059	\N	150			0	inbound	+17707665732	133	20.5864651203155518	\N	new lead	osborn christy	13	\N	\N	2745
2016-07-19 12:21:01.489645+00	2016-12-10 01:05:11.337029+00	890	missed				+13156247895		10	2016-07-19 12:21:01.486952	2016-07-19 12:21:11.29387	CAc30a2cb3df3f7c39721db118182cf678	\N	\N			0	inbound	+18555693686	\N	\N	null	new lead		3	\N	\N	2746
2017-07-17 23:17:13.260283+00	2017-07-17 23:17:49.133152+00	5797	missed				+14402190391		36	2017-07-17 23:17:13.259181	2017-07-17 23:17:49.124686	CA0e8470a0f9e64c6b864bf1da5a6eea3f	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE4a96a5ca15dca163cefb27778ee29585	0	inbound	+17707665732	133	\N	\N	new lead		13	\N	\N	2747
2017-05-15 16:54:45.082634+00	2017-11-29 18:38:49.811544+00	5074	completed				+17274921599		72	2017-05-15 16:54:45.080562	2017-05-15 16:55:56.60346	CAe831dd0674af87b6d9b622732fcfb92d	\N	133			0	inbound	+12147122250	\N	3.6459660530090332	\N	new lead	buscema steve  	9	\N	\N	2748
2017-05-15 17:17:45.06916+00	2017-11-29 18:38:49.811551+00	5075	completed				+17274921599		600	2017-05-15 17:17:45.06745	2017-05-15 17:27:45.062059	CA3be470771a384e7a08da5f4ef0e8f51b	\N	99			0	inbound	+12147122250	\N	4.01410984992980957	\N	new lead	buscema steve  	9	\N	\N	2748
2017-05-19 18:26:07.344864+00	2017-11-29 18:38:49.812274+00	5228	completed				+17274921599		545	2017-05-19 18:26:07.342102	2017-05-19 18:35:12.047021	CAd36f807c1ffc13736f8246dac07d9871	\N	133			0	inbound	+12147122250	\N	5.76045513153076172	\N	new lead	buscema steve  	9	\N	\N	2748
2017-05-03 00:40:44.83904+00	2017-11-29 18:38:53.214923+00	4612	completed				+19726722427		39	2017-05-03 00:40:44.836534	2017-05-03 00:41:23.619077	CAe98a41225d7927759c9a4cc78c98b077	\N	105			0	inbound	+12146922088	\N	24.7866830825805664	\N	new lead	fonseca alejand	9	\N	\N	2751
2016-05-20 18:59:19.562933+00	2017-11-29 18:32:01.935394+00	139	completed	Unknown			+16142308645		42	2016-05-20 18:59:19.561774	2016-05-20 19:00:01.843642	CA46d9098f8e8f63c27c84eec76929a0fd	\N	17		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REfbe4dcd38bd4b13cc9e88691f47bb969	0	inbound	+18556311513	\N	25.7356631755828857	null	new lead		1	\N	\N	2752
2017-08-16 20:31:03.032722+00	2017-08-16 20:31:38.296112+00	6055	completed				+14703571443		35	2017-08-16 20:31:03.030036	2017-08-16 20:31:38.285433	CA50286c712304605209126abd590a22c4	\N	153			0	inbound	+17707665732	133	11.040693998336792	\N	new lead		13	\N	\N	2753
2016-10-31 21:48:36.669398+00	2016-10-31 21:48:37.071719+00	2431	missed				+19722421925		0	2016-10-31 21:48:36.668391	2016-10-31 21:48:37.06823	CA961b189af7d81231399acd55d7cff254	\N	\N			0	inbound	+18557240606	49	\N	null	new lead		1	\N	\N	2755
2016-10-31 21:47:11.647316+00	2016-10-31 21:47:12.00099+00	2426	missed				+19722421925		0	2016-10-31 21:47:11.645194	2016-10-31 21:47:11.999363	CA59d701f973025b67d0f3fcebe46a09e4	\N	\N			0	inbound	+18557240606	49	\N	null	new lead		1	\N	\N	2755
2016-10-31 21:47:12.63342+00	2016-10-31 21:47:12.89902+00	2427	missed				+19722421925		0	2016-10-31 21:47:12.632374	2016-10-31 21:47:12.896921	CA0b6d7eda322889f2489e75733b590624	\N	\N			0	inbound	+18557240606	49	\N	null	new lead		1	\N	\N	2755
2016-10-31 21:48:11.003596+00	2016-10-31 21:48:11.323616+00	2428	missed				+19722421925		0	2016-10-31 21:48:11.002656	2016-10-31 21:48:11.320943	CA319018d4cb18d6e86ebf19dfaf5ad55f	\N	\N			0	inbound	+18557240606	49	\N	null	new lead		1	\N	\N	2755
2016-10-31 21:48:11.925131+00	2016-10-31 21:48:12.193097+00	2429	missed				+19722421925		0	2016-10-31 21:48:11.924116	2016-10-31 21:48:12.191111	CAaed1a4d504bdb2302b329bf707cf9a6e	\N	\N			0	inbound	+18557240606	49	\N	null	new lead		1	\N	\N	2755
2016-10-31 21:48:35.631569+00	2016-10-31 21:48:36.01232+00	2430	missed				+19722421925		0	2016-10-31 21:48:35.630539	2016-10-31 21:48:36.010981	CA5eea402143820c3f854a7833e50e5185	\N	\N			0	inbound	+18557240606	49	\N	null	new lead		1	\N	\N	2755
2016-11-02 14:14:38.280429+00	2017-01-27 21:12:23.813897+00	2541	completed				+19722421925		91	2016-11-02 14:14:38.277904	2016-11-02 14:16:09.738806		\N	\N			0	outbound	+18557240606	49	\N	null	new lead		1	\N	\N	2755
2016-10-31 22:04:18.070331+00	2016-10-31 22:04:18.099224+00	2433	missed	Jeremy	Fonteneaux	jfonteneaux1@gmail.com	+14693871254		\N	2016-10-31 22:04:18.069003	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2757
2016-10-31 22:14:09.175364+00	2016-10-31 22:14:09.474632+00	2435	missed	Jeremy	Fonteneaux		+14693871254		0	2016-10-31 22:14:09.174308	2016-10-31 22:14:09.472948	CAf86fb7d98eb2d18b018947e01539ef0a	\N	\N			0	inbound	+18557240606	49	\N	null	new lead		1	\N	\N	2757
2016-10-31 22:14:09.992992+00	2016-10-31 22:14:10.241231+00	2436	missed	Jeremy	Fonteneaux		+14693871254		0	2016-10-31 22:14:09.991838	2016-10-31 22:14:10.239237	CA9695fa2959aecfb38de912dc52690ed1	\N	\N			0	inbound	+18557240606	49	\N	null	new lead		1	\N	\N	2757
2016-10-31 22:14:18.268698+00	2016-10-31 22:14:18.544417+00	2437	missed	Jeremy	Fonteneaux		+14693871254		0	2016-10-31 22:14:18.267029	2016-10-31 22:14:18.542771	CA00ed3c6baa5f9e26788d3afd8ccb3ec0	\N	\N			0	inbound	+18557240606	49	\N	null	new lead		1	\N	\N	2757
2016-10-31 22:14:19.114978+00	2016-10-31 22:14:19.34895+00	2438	missed	Jeremy	Fonteneaux		+14693871254		0	2016-10-31 22:14:19.113823	2016-10-31 22:14:19.347659	CAe4afb9800ee6f339905fceac2da54578	\N	\N			0	inbound	+18557240606	49	\N	null	new lead		1	\N	\N	2757
2016-10-29 23:01:59.002979+00	2016-10-29 23:01:59.064493+00	2371	missed	Summer	Richards	incapearl@gmail.com	+14696506034		\N	2016-10-29 23:01:59.00164	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2760
2017-09-23 07:06:37.15425+00	2017-09-23 07:06:37.216119+00	6439	missed	Charity	Kesler	Charitynadine.08@gmail.com	+17063809314		\N	2017-09-23 07:06:37.152513	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	2761
2016-08-12 21:00:53.552736+00	2017-01-27 21:12:23.813215+00	1465	completed				+13394401114		56	2016-08-12 21:00:53.551828	2016-08-12 21:01:49.617492		\N	\N			0	outbound	+18555343978	48	\N	null	do not contact		1	\N	\N	2762
2016-07-20 12:27:53.414349+00	2017-11-29 18:31:56.600139+00	901	missed				+13394401114		16	2016-07-20 12:27:53.413062	2016-07-20 12:28:09.439847	CA1cb7093863a77896b4288fcb2defa908	\N	\N			0	inbound	+18556311397	\N	\N	null	do not contact		1	\N	\N	2762
2016-08-12 21:02:10.413501+00	2017-01-27 21:12:23.813221+00	1466	completed				+13394401114		39	2016-08-12 21:02:10.412533	2016-08-12 21:02:49.898468	CAff0d1cdc9a91d6345690ea11c7298f3c	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE1c02cda63a69cf5068bc7f83b7a23d30	0	inbound	+18555343978	48	5.15187287330627441	null	do not contact		1	\N	\N	2762
2016-07-23 14:19:50.50548+00	2016-07-25 11:50:38.494234+00	922	completed	Debora	Tyson	deboramty@yahoo.com	+15129661113		\N	2016-07-23 14:19:50.502544	\N		d33a481e-e0af-47ac-9f90-260f20b69de5	\N			0	outbound	+18552959002	\N	\N	{}	new lead		1	\N	\N	2763
2016-10-12 19:54:11.064222+00	2016-11-09 15:44:25.869313+00	2285	completed				+13022130611		27	2016-10-12 19:54:11.062634	2016-10-12 19:54:37.585456	CAb4e2f2da41b6e732c99ce1b7233ffddb	\N	34			0	inbound	+18555122969	\N	2.84433317184448242	null	new lead		3	\N	\N	2764
2017-11-27 20:23:43.082774+00	2017-11-27 20:24:25.149279+00	7351	completed				+18178195403		41	2017-11-27 20:23:43.080248	2017-11-27 20:24:24.516309	CA15a11755614d98342eaca2b6b85b5534	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE7c7919afe3d07b1689a3783e6bdd90e2	0	inbound	+18177569010	124	8.42264604568481445	\N	new lead	cantu angelo	12	\N	\N	2765
2017-11-27 20:55:12.057973+00	2017-11-27 20:55:12.209939+00	7353	missed				+18178195403		0	2017-11-27 20:55:12.055064	2017-11-27 20:55:12.200088	CA7414995fb1159696f7ff83809a5885f2	\N	\N			0	inbound	+18177569010	124	\N	\N	new lead	cantu angelo	12	\N	\N	2765
2017-05-24 15:36:36.881178+00	2017-11-29 18:38:49.813003+00	5351	completed				+12148432707		175	2017-05-24 15:36:36.879097	2017-05-24 15:39:31.773214	CA32597a31762db9dfe1beea4d3729fca0	\N	107			0	inbound	+12147122250	\N	14.2237777709960938	\N	new lead	quinones ana   	9	\N	\N	2766
2017-06-21 16:40:24.692453+00	2017-06-24 13:45:04.894032+00	5622	completed				+14046644338		40	2017-06-21 16:40:24.690244	2017-06-21 16:41:04.284182	CA0532d05d6c64e4c4a58e2cf1277e2f29	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE63c2e23f2b306910b0e00b6134148518	0	inbound	+17704009016	132	10.72918701171875	\N	new lead		13	\N	\N	2768
2017-09-11 02:21:26.839336+00	2017-09-11 02:21:26.89883+00	6313	missed	Monika	Patel	monikapatel23.1994@gmail.com	+17069731622		\N	2017-09-11 02:21:26.837744	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	2770
2017-04-12 17:56:08.811725+00	2017-11-29 18:38:49.80457+00	3823	completed				+14322695864		114	2017-04-12 17:56:08.810438	2017-04-12 17:58:02.731643	CA0a59882244b246958e278acea9d98730	\N	127			0	inbound	+12147122250	\N	1.2694098949432373	\N	new lead	cell phone   tx	9	\N	\N	2772
2017-04-12 16:09:55.02897+00	2017-11-29 18:38:49.804534+00	3813	completed				+14322695864		80	2017-04-12 16:09:55.025644	2017-04-12 16:11:14.676675	CAdde1256c315496d753ade8a77b25e29e	\N	124			0	inbound	+12147122250	\N	1.42624902725219727	\N	new lead	cell phone   tx	9	\N	\N	2772
2017-04-19 21:57:35.179165+00	2017-11-29 18:38:53.214276+00	4113	completed				+12088840150		768	2017-04-19 21:57:35.177145	2017-04-19 22:10:22.875946	CAf82163daea2d439322c33c382706e721	\N	105			0	inbound	+12146922088	\N	6.36344599723815918	\N	new lead	caped fcu	9	\N	\N	2775
2016-06-13 21:21:32.173926+00	2016-06-13 21:23:26.083609+00	409	completed				+19377250831		71	2016-06-13 21:21:32.17251	2016-06-13 21:22:47.392105	CA1dcfe44c7401cee6f663fa920b041e9e	cd89e433-4bde-4f86-9b22-8f52c2413fcd	\N			1	outbound	+18556311490	\N	1.34966492652893066	{}	new lead		1	\N	\N	2777
2016-06-21 16:40:55.79556+00	2016-06-21 16:42:19.088084+00	445	completed				+19377250831		79	2016-06-21 16:40:55.793911	2016-06-21 16:42:19.087104	CA25908370d73d1ddd591b827beb0a359d	cd89e433-4bde-4f86-9b22-8f52c2413fcd	16			1	outbound	+18556311490	\N	1.33237385749816895	{}	new lead		1	\N	\N	2777
2016-06-22 00:47:18.482917+00	2016-06-22 14:42:44.571114+00	446	completed	Vonda	Chaney	dakota81495@yahoo.com	+19377250831		\N	2016-06-22 00:47:18.481649	\N		25d0200e-983d-4413-94ae-eb664b99711c	\N			0	outbound	+18556311490	\N	\N	{}	new lead		1	\N	\N	2777
2016-06-27 15:29:38.586233+00	2016-06-27 15:31:09.722403+00	511	completed				+19377250831		87	2016-06-27 15:29:38.58459	2016-06-27 15:31:09.721407	CA0c08208b0a5c67f6efb08feb7da0b817	cd89e433-4bde-4f86-9b22-8f52c2413fcd	16			1	outbound	+18556311490	\N	1.36078810691833496	{}	new lead		1	\N	\N	2777
2016-06-28 21:06:39.240992+00	2016-06-28 21:15:25.296545+00	621	completed				+19377250831		521	2016-06-28 21:06:39.239931	2016-06-28 21:15:25.295585	CA944b7a7d947944f06520db33cd32e0db	cd89e433-4bde-4f86-9b22-8f52c2413fcd	16			1	outbound	+18556311490	\N	1.60903406143188477	{}	new lead		1	\N	\N	2777
2016-06-11 16:12:12.468387+00	2017-11-29 18:31:10.261256+00	405	completed	Vonda	Chaney		+19377250831		26	2016-06-11 16:12:12.466232	2016-06-11 16:12:38.630367	CA7c3d158e4cb3da03517cac406488ccff	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE83d279cc445912218dd302bcd39d69c3	0	inbound	+18556311490	\N	\N	null	new lead		1	\N	\N	2777
2016-06-11 16:13:36.185767+00	2017-11-29 18:31:10.261274+00	406	completed	Vonda	Chaney		+19377250831		18	2016-06-11 16:13:36.18477	2016-06-11 16:13:53.91141	CA14c663f9a052850adee5b7f09d24c775	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REcc23b2abbd3b00a19f682120ec170aee	0	inbound	+18556311490	\N	\N	null	new lead		1	\N	\N	2777
2016-06-13 21:42:18.422604+00	2017-11-29 18:31:10.261292+00	411	completed	Vonda			+19377250831		44	2016-06-13 21:42:18.421628	2016-06-13 21:43:01.956353	CAce54137d8b3ade6e12e1483f9d618958	\N	\N			0	inbound	+18556311490	\N	\N	null	new lead		1	\N	\N	2777
2016-06-21 16:30:14.439391+00	2017-11-29 18:31:10.26131+00	444	completed	Vonda	Chaney		+19377250831		57	2016-06-21 16:30:14.437602	2016-06-21 16:31:11.883999	CA8adf628b1b60f3c2b4da9220dc17f279	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REad2961e26afce889085892b276eadda0	0	inbound	+18556311490	\N	23.4024820327758789	null	new lead		1	\N	\N	2777
2016-06-28 16:43:55.864788+00	2017-11-29 18:31:10.261365+00	593	completed	Evelyn	Beeman		+19377250831		44	2016-06-28 16:43:55.863684	2016-06-28 16:44:39.691315	CA8801abe66c1c6c78e1ced9565810546d	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REa30c3a965c104f30925dff8d9a55825d	0	inbound	+18556311490	\N	13.7232110500335693	null	new lead		1	\N	\N	2777
2016-06-28 21:03:38.958887+00	2017-11-29 18:31:10.261382+00	620	completed	Vonda	Chaney		+19377250831		56	2016-06-28 21:03:38.957186	2016-06-28 21:04:34.899848	CAc395e2db4d3b069795e5db83e9078133	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE69c95061296ff4a054bfb518e6d55979	0	inbound	+18556311490	\N	\N	null	new lead		1	\N	\N	2777
2017-03-09 20:44:48.75476+00	2017-11-29 18:38:53.211989+00	3365	completed				+17135568931		103	2017-03-09 20:44:48.752644	2017-03-09 20:46:31.375329	CA041106bb42925d41909265b73d8e6d4f	\N	107			0	inbound	+12146922088	\N	16.1792988777160645	\N	new lead	houston ind sch	9	\N	\N	2778
2016-08-15 21:03:38.405639+00	2016-08-15 21:15:12.486125+00	1518	missed	Danielle	Anderson	andersondanielle54@yahoo.com	+19375806500		\N	2016-08-15 21:03:38.404487	\N		253cd8e5-09ac-4056-92ec-7e351aa19233	\N			0	outbound	+18557824539	\N	\N	{}	application submitted - autopay		1	\N	\N	2780
2016-08-15 20:40:57.307159+00	2017-11-29 18:31:05.368968+00	1517	completed				+19375806500		1294	2016-08-15 20:40:57.305961	2016-08-15 21:02:31.042047	CAe235867a522ee3c62936ac0d872ac3d1	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE0dde6001af78e0be0093c38ea8e399d9	0	inbound	+18557824539	\N	5.82065296173095703	null	application submitted - autopay		1	\N	\N	2780
2017-06-23 19:31:01.162346+00	2017-06-23 19:31:11.089449+00	5643	missed				+16094322155		10	2017-06-23 19:31:01.158345	2017-06-23 19:31:11.077843	CA9426e23ab17fd7bb1405f43535d0c924	\N	\N			0	inbound	+18555343978	48	\N	\N	new lead		1	\N	\N	2781
2017-09-25 22:29:18.921615+00	2017-09-25 22:35:36.172083+00	6487	missed				+17708855600		44	2017-09-25 22:29:18.919608	2017-09-25 22:30:02.922312	CA4681a2b2c9b8152d14b197efd3182939	\N	\N			0	inbound	+17707665732	133	360.543661832809448	\N	new lead		13	\N	\N	2782
2017-09-30 17:26:31.127886+00	2017-09-30 17:29:07.703652+00	6548	completed				+16785084760		157	2017-09-30 17:26:31.124674	2017-09-30 17:29:07.690863	CA1c6a28f48dad9b25a466006e8f737409	\N	154			0	inbound	+17707665699	134	1.12880301475524902	\N	new lead		13	\N	\N	2784
2017-04-19 20:29:43.247117+00	2017-11-29 18:38:49.805753+00	4098	completed				+17164711910		56	2017-04-19 20:29:43.244915	2017-04-19 20:30:39.034592	CA6741a563c80fdfc0b6b24d99e8c89b71	\N	125			0	inbound	+12147122250	\N	1.80835509300231934	\N	new lead	collymore j    	9	\N	\N	2785
2017-04-19 20:30:42.187177+00	2017-11-29 18:38:49.805761+00	4099	completed				+17164711910		91	2017-04-19 20:30:42.184565	2017-04-19 20:32:12.695401	CA953cbe542131b1ad270d6a5130a99eaf	\N	126			0	inbound	+12147122250	\N	1.68536710739135742	\N	new lead	collymore j    	9	\N	\N	2785
2017-04-19 20:37:56.623619+00	2017-11-29 18:38:49.805768+00	4100	completed				+17164711910		71	2017-04-19 20:37:56.617375	2017-04-19 20:39:07.882955	CA1fdd330be3b02ead3b6eb6d6a5af1fd9	\N	125			0	inbound	+12147122250	\N	5.51545882225036621	\N	new lead	collymore j    	9	\N	\N	2785
2017-12-06 20:12:38.321225+00	2017-12-06 20:19:22.711606+00	7656	completed	Joshua 	Davenport	Davenportthegreat93@gmail.com	+17063518062		58	2017-12-06 20:12:38.319863	2017-12-06 20:19:22.368094	CA1aaba3e47f96acd8667d36bbd4e636bf	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REffae4923063eab60dd630bb752c6d391	3	outbound	+17704009016	\N	344.91447901725769	{}	new lead		13	\N	\N	2790
2017-04-22 15:40:43.496644+00	2017-05-17 15:41:07.224364+00	4216	completed				+15408422793		15	2017-04-22 15:40:43.494502	2017-04-22 15:40:58.699276	CAa7e49716ad7057dca437df4183ac1067	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REd97625b70dc9061f4aff48e8961355f8	0	inbound	+18177569010	124	7.51090192794799805	\N	new lead	mejia dougles	12	\N	\N	2791
2017-04-14 16:12:00.826759+00	2017-11-29 18:38:49.804916+00	3917	completed				+12142983450		176	2017-04-14 16:12:00.823753	2017-04-14 16:14:56.959124	CA4ce4bacdf12ac7e632944780916fcaba	\N	107			0	inbound	+12147122250	\N	6.8609168529510498	\N	new lead		9	\N	\N	2792
2017-01-28 21:20:10.880956+00	2017-01-28 21:21:41.045937+00	3142	completed	ROSE	MICHAEL   		+14089813188		90	2017-01-28 21:20:10.878886	2017-01-28 21:21:41.043486	CAe2747d055b3e5bcdd16ffdf3ceab8939	\N	79		https://api.twilio.com/2010-04-01/Accounts/ACafc5b14e320f72bf4ed973f9ab19c98d/Recordings/RE133e5889f2ede5d19e5d6879de6739d9	0	inbound	+17735469660	16	63.4776308536529541	null	new lead		1	\N	\N	2794
2017-05-09 14:17:12.263523+00	2017-11-29 18:38:53.215456+00	4896	completed				+18178080961		45	2017-05-09 14:17:12.260968	2017-05-09 14:17:57.183224	CA164e2a77948601356b6de3aad856a8a0	\N	\N			0	inbound	+12146922088	\N	2.46875810623168945	\N	new lead	wess holdings l	9	\N	\N	2795
2017-05-09 15:56:16.710248+00	2017-11-29 18:38:49.810547+00	4901	completed				+18178080961		291	2017-05-09 15:56:16.708822	2017-05-09 16:01:07.240859	CA782c6c5331d1065c57cb5f72a9454c94	\N	\N			0	inbound	+12147122250	\N	1.90049982070922852	\N	new lead	wess holdings l	9	\N	\N	2795
2017-05-10 14:54:11.027713+00	2017-11-29 18:38:49.810782+00	4948	completed				+18178080961		292	2017-05-10 14:54:11.026362	2017-05-10 14:59:02.774586	CA5b22c3a131af9ed117c12f03b27b0439	\N	107			0	inbound	+12147122250	\N	5.50114703178405762	\N	new lead	wess holdings l	9	\N	\N	2795
2016-11-11 17:54:27.140351+00	2016-11-11 17:54:27.164589+00	2862	missed	John	Ardans	JARDANS@COX.NET	+14806035118		\N	2016-11-11 17:54:27.139182	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2796
2017-11-16 14:22:49.157927+00	2017-11-16 22:59:06.912373+00	7078	completed	Wayne	Long		+17062864994		334	2017-11-16 14:22:49.155821	2017-11-16 14:28:23.21488	CA2ae80eabc69d7d10a7ca844adc4367ae	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE0a40c16abaee0de66e252823e916f42c	0	inbound	+17704009016	132	17.7051351070404053	\N	select status		13	\N	\N	2797
2016-06-02 21:12:48.523312+00	2016-06-02 21:14:02.888309+00	354	completed				+16616096637		69	2016-06-02 21:12:48.522245	2016-06-02 21:14:02.887112	CAef4be96fde700e88df5999de346c26ae	8f30d55b-8601-40b9-9d7f-11bfe29c5449	16			1	outbound	+18555472453	\N	1.92360520362854004	{}	new lead		1	\N	\N	2801
2016-06-02 21:03:12.772506+00	2017-11-29 18:31:37.36824+00	353	completed	Unknown			+16616096637		44	2016-06-02 21:03:12.771318	2016-06-02 21:03:57.193	CA04ca983ef9971bf1d36d4a6e7aea19ca	\N	\N			0	inbound	+18555472453	\N	\N	null	new lead		1	\N	\N	2801
2016-08-06 00:09:31.314739+00	2016-08-08 12:49:26.446481+00	1299	missed	sandra	resendiz	sandyres7@hotmail.com	+16612385072		\N	2016-08-06 00:09:31.313838	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - credit union		1	\N	\N	2802
2016-08-11 19:44:10.677407+00	2017-11-29 18:31:37.368853+00	1423	missed	sandra	resendiz		+16612385072		64	2016-08-11 19:44:10.676156	2016-08-11 19:45:14.564734	CA520a4ba7cf3b1710946cca67b795c926	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE30b776588d1f0112c167cb35e11b8934	0	inbound	+18555472453	\N	31.4993801116943359	null	application submitted - credit union		1	\N	\N	2802
2016-08-11 20:06:17.149402+00	2017-11-29 18:31:37.368861+00	1424	missed	sandra	resendiz		+16612385072		42	2016-08-11 20:06:17.147798	2016-08-11 20:06:59.403195	CAa3c6b72de02ccca199e76d436f91d882	\N	\N			0	inbound	+18555472453	\N	31.5308959484100342	null	application submitted - credit union		1	\N	\N	2802
2016-08-09 18:32:27.299625+00	2017-11-29 18:31:37.368775+00	1362	completed	sandra	resendiz		+16612385072		180	2016-08-09 18:32:27.298457	2016-08-09 18:35:27.268674	CAfa61ac6661dfb1ecc7df4ab3dbdb5b83	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE0da5cbc3c56ae81f4b429c598e152951	0	inbound	+18555472453	\N	8.7488858699798584	null	application submitted - credit union		1	\N	\N	2802
2016-08-06 01:37:03.189703+00	2017-11-29 18:31:37.368725+00	1303	missed	sandra	resendiz		+16612385072		19	2016-08-06 01:37:03.18821	2016-08-06 01:37:22.041113	CA990eb0ccd06b9adb6f5b68e72500bd13	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REb2d45e81ed09f6a0bf109411e8bb17f3	0	inbound	+18555472453	\N	\N	null	application submitted - credit union		1	\N	\N	2802
2016-08-09 00:05:56.043271+00	2017-11-29 18:31:37.368761+00	1350	missed	sandra	resendiz		+16612385072		19	2016-08-09 00:05:56.041512	2016-08-09 00:06:14.601412	CA24f5e39b0de468339ea90fe05ae83ff7	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REac1e0b778ca29935b20ce62e05217eb8	0	inbound	+18555472453	\N	\N	null	application submitted - credit union		1	\N	\N	2802
2016-08-10 23:34:18.207919+00	2017-11-29 18:31:37.368818+00	1406	missed	sandra	resendiz		+16612385072		19	2016-08-10 23:34:18.206135	2016-08-10 23:34:37.008695	CA4ecbaeb46942f464e1a811fdf856e91e	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REfe89370d1163ce4af958b30d64e0e335	0	inbound	+18555472453	\N	\N	null	application submitted - credit union		1	\N	\N	2802
2016-08-10 23:34:49.258198+00	2017-11-29 18:31:37.368825+00	1407	missed	sandra	resendiz		+16612385072		22	2016-08-10 23:34:49.257345	2016-08-10 23:35:11.010388	CA383fb3e1b6d29880a30df44ec09ecd16	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REb920b8a29eb5c98a8e998b9652856562	0	inbound	+18555472453	\N	\N	null	application submitted - credit union		1	\N	\N	2802
2016-08-11 18:11:37.172344+00	2017-11-29 18:31:37.368832+00	1418	missed	sandra	resendiz		+16612385072		56	2016-08-11 18:11:37.170644	2016-08-11 18:12:33.00394	CA568fe798440c0088bc4d3bb0d430d02f	\N	\N			0	inbound	+18555472453	\N	31.8847110271453857	null	application submitted - credit union		1	\N	\N	2802
2016-06-05 18:28:04.768736+00	2017-11-29 18:31:37.368254+00	378	completed	Susan	Pertick		+18502255874		17	2016-06-05 18:28:04.767145	2016-06-05 18:28:21.804112	CA868d47bc0ea478feb8a2eb4b6ce7f9b6	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REf35549799c1b7bb13640a0478977894f	0	inbound	+18555472453	\N	\N	null	new lead		1	\N	\N	2805
2016-06-06 15:22:49.494915+00	2016-06-06 15:24:06.841509+00	384	completed				+18502255874		72	2016-06-06 15:22:49.493917	2016-06-06 15:24:06.839496	CA39b0b9849e881982a971b028f4e80a4a	8f30d55b-8601-40b9-9d7f-11bfe29c5449	16			1	outbound	+18555472453	\N	1.79698896408081055	{}	new lead		1	\N	\N	2805
2016-06-11 01:37:13.086053+00	2016-06-11 13:21:51.267754+00	404	completed	Susan	Pertik	zsuzsas@cox.net	+18502255874		\N	2016-06-11 01:37:13.084807	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	new lead		1	\N	\N	2805
2016-06-17 19:44:28.144752+00	2016-06-17 19:45:56.303078+00	438	completed	Susan	Pertik	zsuzsas@cox.net	+18502255874		60	2016-06-17 19:44:28.143601	2016-06-17 19:45:56.3021	CA8efd27b3f842864ef2ab2b2502a80bc8	99186475-9344-4e80-b3b1-0ed2e7856585	17		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REc921e5f797e1703f8e9005bdc7c23662	1	outbound	+18555472453	\N	25.4296741485595703	{}	new lead		1	\N	\N	2805
2017-09-06 18:47:37.50732+00	2017-09-06 18:49:15.472942+00	6274	completed				+18326554803		96	2017-09-06 18:47:37.505102	2017-09-06 18:49:13.218977	CA708dfc44cca8e767509fafa4caa8e20e	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE4a483aba838846cc5dd64e227fb854be	0	inbound	+18177569010	124	7.21176409721374512	\N	new lead	cell phone   tx	12	\N	\N	2808
2016-11-03 18:30:09.980974+00	2016-11-03 18:35:49.159765+00	2648	completed				+12817046052		338	2016-11-03 18:30:09.978315	2016-11-03 18:35:48.330017	CAa0a922e70963064b202a6392fb355983	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE2f0bfc1c662f2246580fcf95beb091ea	0	inbound	+18557240606	49	1.60012292861938477	null	new lead		1	\N	\N	2810
2017-05-06 17:04:20.561989+00	2017-05-06 17:05:07.325074+00	4805	completed				+13126612664		46	2017-05-06 17:04:20.560012	2017-05-06 17:05:06.526686	CA5b8567a5f5c3562a1445004fd61ac911	\N	132		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE06637a3ec0f458c1082f482d878be751	0	inbound	+18172104002	126	15.6359519958496094	\N	new lead	captain america	12	\N	\N	2811
2017-08-26 20:54:05.193806+00	2017-08-26 20:57:33.532745+00	6179	completed				+19032859637		207	2017-08-26 20:54:05.191939	2017-08-26 20:57:32.682677	CA5294bcc57a79623d30c5eff2b592d746	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE0e8616280f4f71bce081b3bbe7c75cdc	0	inbound	+18177569010	124	11.9947760105133057	\N	new lead	flores garcia i	12	\N	\N	2816
2016-07-25 17:57:30.361852+00	2016-07-25 17:59:16.512063+00	936	completed	Brad	Lucas	Stefanielucas84@gmail.com	+16143731984		77	2016-07-25 17:57:30.360025	2016-07-25 17:59:16.510843	CA2bd7ea217ed75b4228367953d758b5f5	d33a481e-e0af-47ac-9f90-260f20b69de5	17		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REf23240a63df2ae51093cffeea868d63c	1	outbound	+18552959002	\N	22.8590781688690186	{}	new lead		1	\N	\N	2817
2017-08-11 21:43:10.108428+00	2017-08-11 21:49:07.870201+00	5994	completed				+14057062848		357	2017-08-11 21:43:10.10561	2017-08-11 21:49:06.64365	CAb7d4a202454a7f7ea25cd5f82e0b26c3	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE98dffa7cfec83ed19090ffdb57eeebcb	0	inbound	+17704009016	132	330.168806076049805	\N	new lead		13	\N	\N	2819
2017-07-06 16:33:02.150555+00	2017-07-06 16:38:49.187808+00	5722	missed				+17707668965		12	2017-07-06 16:33:02.1488	2017-07-06 16:33:13.915093	CAb38c5a912defe630291ab333f558f291	\N	\N			0	inbound	+17707665732	133	\N	\N	new lead		13	\N	\N	2821
2017-08-05 20:15:18.599413+00	2017-08-05 20:17:20.771399+00	5942	completed				+18179073874		121	2017-08-05 20:15:18.59716	2017-08-05 20:17:19.681145	CA16e7a46765f3fac9d568f11f1b212340	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE6c4a65114756201e4c71f947abd1fa6c	0	inbound	+18177569010	124	14.3080110549926758	\N	new lead	pineda arnulfo	12	\N	\N	2822
2017-08-05 20:05:56.788793+00	2017-08-17 14:35:21.045731+00	5941	completed				+18179073874		329	2017-08-05 20:05:56.787106	2017-08-05 20:11:25.78337	CA7bcc869004d321edee571feded82a709	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REb68f1fb2d8ea66aef17c2178e6a986a2	0	inbound	+18177569010	124	37.2572779655456543	\N	new lead	pineda arnulfo	12	\N	\N	2822
2017-05-08 23:22:02.956493+00	2017-05-08 23:27:48.171888+00	4893	completed				+18177059001		345	2017-05-08 23:22:02.95438	2017-05-08 23:27:48.169566	CA75d74e80ebd0c517147ba5d7e67d00fc	\N	132			0	inbound	+18172104002	126	17.5330359935760498	\N	new lead	menn jeffrey   	12	\N	\N	2824
2017-09-29 03:18:47.917132+00	2017-10-11 14:53:21.475896+00	6523	missed	mssy	nichols	j@gmil.com	+16786161105		\N	2017-09-29 03:18:47.914347	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	2825
2017-05-02 23:16:58.961962+00	2017-11-29 18:38:49.808926+00	4607	completed				+12145490339		111	2017-05-02 23:16:58.959459	2017-05-02 23:18:50.141797	CAaffc2efc07f6418b589a4aded2fd8cc4	\N	127			0	inbound	+12147122250	\N	2.20726490020751953	\N	new lead	action fire pro	9	\N	\N	2827
2017-05-02 20:14:19.931677+00	2017-11-29 18:38:49.808824+00	4596	completed				+12145490339		104	2017-05-02 20:14:19.929963	2017-05-02 20:16:04.095285	CAcb26879213b1d2ff24a164248c7c238f	\N	125			0	inbound	+12147122250	\N	1.89056611061096191	\N	new lead	action fire pro	9	\N	\N	2827
2017-05-05 22:43:02.446749+00	2017-11-29 18:38:49.810152+00	4795	completed				+12145490339		95	2017-05-05 22:43:02.444472	2017-05-05 22:44:37.465248	CAd59bcd5a56acce3eaef10a8be2597410	\N	125			0	inbound	+12147122250	\N	1.3692319393157959	\N	new lead	action fire pro	9	\N	\N	2827
2016-08-15 22:44:35.178989+00	2016-08-16 11:05:56.134496+00	1533	missed	rafael	rivera	rafy1028@yahoo.com	+16612369470		\N	2016-08-15 22:44:35.177698	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - autopay		1	\N	\N	2828
2017-01-23 16:56:11.971059+00	2017-11-29 18:31:56.600267+00	3132	missed				+15702878544		7	2017-01-23 16:56:11.969265	2017-01-23 16:56:19.333523	CA09ce7fdca7ad4483d0309a12fef91f76	\N	\N			0	inbound	+18556311397	\N	2.19502711296081543	null	new lead		1	\N	\N	2829
2017-12-15 17:53:53.439829+00	2017-12-15 17:54:26.456668+00	7898	completed	Alison 	Everhart	alison_everhart@outlook.com	+16024004193		29	2017-12-15 17:53:53.437714	2017-12-15 17:54:26.45567	CA751d3caf1d98e19357a6802758f31f12	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.35085892677307129	{}	new lead		15	\N	\N	2831
2017-07-17 19:59:52.796086+00	2017-07-17 20:06:05.665091+00	5794	completed				+17062442005		372	2017-07-17 19:59:52.793436	2017-07-17 20:06:04.89472	CA76d56086f02fdc0ad9597e600c431a47	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REabc5beec05af66904b0c4083199a77e4	0	inbound	+17704009016	132	16.6600260734558105	\N	new lead		13	\N	\N	2832
2017-07-18 19:40:13.262726+00	2017-07-18 19:47:09.928453+00	5801	completed				+17062442005		416	2017-07-18 19:40:13.260965	2017-07-18 19:47:09.677493	CA91473c194db061e2314d2de8a0ee8b3f	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE26141bf71431211f5a6af0813ceceaf7	0	inbound	+17704009016	132	384.562421083450317	\N	new lead		13	\N	\N	2832
2017-07-18 20:07:50.738781+00	2017-07-18 20:13:45.216259+00	5804	missed				+17062442005		35	2017-07-18 20:07:50.737459	2017-07-18 20:08:26.228865	CAc0857542412763706fa5b6ae07b44256	\N	\N			0	inbound	+17704009016	132	345.282187938690186	\N	new lead		13	\N	\N	2832
2017-07-18 20:08:32.857637+00	2017-07-18 20:14:50.508277+00	5805	completed				+17062442005		376	2017-07-18 20:08:32.855736	2017-07-18 20:14:49.261388	CA89454cb8e30afa6c0ce27f455d302790	\N	152			0	inbound	+17704009016	132	346.682642936706543	\N	new lead		13	\N	\N	2832
2017-07-18 20:09:10.991387+00	2017-07-18 20:15:09.784002+00	5806	missed				+17062442005		36	2017-07-18 20:09:10.990121	2017-07-18 20:09:46.90825	CAb1394dc930a16aba64c0af07788a641f	\N	\N			0	inbound	+17704009016	132	339.741511821746826	\N	new lead		13	\N	\N	2832
2017-07-18 20:09:56.648768+00	2017-07-18 20:16:35.902946+00	5807	completed				+17062442005		399	2017-07-18 20:09:56.647524	2017-07-18 20:16:35.900203	CA2a566034a2bb410dcbc0609d21b015e3	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE358746070ca56730579d00993c631b8c	0	inbound	+17704009016	132	366.01836895942688	\N	new lead		13	\N	\N	2832
2017-07-18 20:11:20.604088+00	2017-07-18 20:17:32.358926+00	5808	completed				+17062442005		371	2017-07-18 20:11:20.601824	2017-07-18 20:17:31.226915	CA23a586807bcaf3678215e527fa06523b	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REabd327aa83ccc69a86500e0692afd4f3	0	inbound	+17704009016	132	344.597786903381348	\N	new lead		13	\N	\N	2832
2017-07-19 12:39:15.789304+00	2017-07-19 12:39:29.771633+00	5811	missed				+17062442005		14	2017-07-19 12:39:15.787072	2017-07-19 12:39:29.76254	CA57e9858fd4193465d06bac6a619a914e	\N	\N			0	inbound	+17704009016	132	\N	\N	new lead		13	\N	\N	2832
2017-07-18 20:12:16.793247+00	2017-07-18 20:20:00.472591+00	5809	completed				+17062442005		464	2017-07-18 20:12:16.792154	2017-07-18 20:20:00.467679	CA1e882fc31e3294decb3246c8d3aa1146	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REffd1d40dcc92d35296b05d8f585e063d	0	inbound	+17704009016	132	373.111251831054688	\N	new lead		13	\N	\N	2832
2017-07-19 12:30:21.32311+00	2017-07-19 12:31:03.463519+00	5810	missed				+17062442005		42	2017-07-19 12:30:21.321149	2017-07-19 12:31:03.454655	CA6531e5fe0ab8cd5d9b2c64f3b90392cd	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE3e128028f70fafa40718a3385521ee35	0	inbound	+17704009016	132	\N	\N	new lead		13	\N	\N	2832
2017-09-26 18:41:44.416391+00	2017-09-26 18:44:27.777852+00	6490	completed				+18327976422		163	2017-09-26 18:41:44.414767	2017-09-26 18:44:27.023741	CA62a4094b9ccee7bbb3a065eb26e1ef94	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE9f5985521cef0ff77bf51bdeb2e6e88f	0	inbound	+18177569010	124	13.0899949073791504	\N	new lead	clarice mclarty	12	\N	\N	2833
2017-05-08 20:46:53.014579+00	2017-11-29 18:38:49.810447+00	4874	completed				+18479270557		92	2017-05-08 20:46:53.012245	2017-05-08 20:48:25.171968	CAe365ba4c1d1a989d9e8a70de714206bb	\N	\N			0	inbound	+12147122250	\N	1.43386602401733398	\N	new lead	cell phone   il	9	\N	\N	2836
2017-05-08 20:48:20.69778+00	2017-11-29 18:38:49.810455+00	4875	completed				+18479270557		105	2017-05-08 20:48:20.694925	2017-05-08 20:50:05.398122	CAc6b96713d90dfa71b2f861d654ef1026	\N	127			0	inbound	+12147122250	\N	1.37219619750976562	\N	new lead	cell phone   il	9	\N	\N	2836
2017-05-08 20:49:58.389282+00	2017-11-29 18:38:49.810462+00	4876	completed				+18479270557		85	2017-05-08 20:49:58.38739	2017-05-08 20:51:23.799282	CA258a16cb32da41332d1d8f22c92e70d6	\N	125			0	inbound	+12147122250	\N	1.17141199111938477	\N	new lead	cell phone   il	9	\N	\N	2836
2017-05-08 20:53:40.982235+00	2017-11-29 18:38:49.810469+00	4877	completed				+18479270557		169	2017-05-08 20:53:40.980076	2017-05-08 20:56:29.959922	CA489ba3ac01b33a4a5bb78bb987625675	\N	\N			0	inbound	+12147122250	\N	1.32137393951416016	\N	new lead	cell phone   il	9	\N	\N	2836
2017-09-01 16:09:32.690344+00	2017-09-01 16:13:11.570979+00	6233	completed				+17068097156		217	2017-09-01 16:09:32.686266	2017-09-01 16:13:09.806278	CA017e3703ae6ee36760298b18e485e932	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE3b829bff5a133d115d0a5d68fb53b831	0	inbound	+17704009016	132	13.5715188980102539	\N	new lead		13	\N	\N	2838
2017-09-01 18:45:28.042718+00	2017-09-01 18:52:44.897928+00	6234	completed				+17068097156		433	2017-09-01 18:45:28.039675	2017-09-01 18:52:41.52438	CAd01294f36212812b9ce6b907a2b1b503	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE50e09a703dc439e678ee7d6be7f79be0	0	inbound	+17704009016	132	379.009871006011963	\N	new lead		13	\N	\N	2838
2017-09-01 19:21:57.245629+00	2017-09-01 19:42:56.672363+00	6237	completed				+17068097156		1259	2017-09-01 19:21:57.2433	2017-09-01 19:42:56.669235	CA4a0f1575b7c786a8ad85768473779b87	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REb01e184dcbaf873bcc284000c6b0b9c8	0	inbound	+17704009016	132	370.096902132034302	\N	new lead		13	\N	\N	2838
2017-09-07 18:06:41.804473+00	2017-09-07 18:12:31.339419+00	6284	completed				+17068097156		348	2017-09-07 18:06:41.802419	2017-09-07 18:12:30.127124	CA7d44afc7cc35b8a780fee5e4e6ae436d	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REb855d5808f0966de59d93842ce644059	0	inbound	+17704009016	132	314.603644132614136	\N	new lead		13	\N	\N	2838
2017-03-15 00:36:37.696351+00	2017-11-29 18:38:53.212325+00	3439	completed				+17876796020		258	2017-03-15 00:36:37.69415	2017-03-15 00:40:55.670788	CAad7a607b990aae9e1e3e8c4ad9784882	\N	107			0	inbound	+12146922088	\N	14.2094058990478516	\N	new lead	syminington ric	9	\N	\N	2840
2016-05-20 20:37:53.024383+00	2017-11-29 18:31:56.600016+00	143	completed	Unknown			+17815815936		111	2016-05-20 20:37:53.021852	2016-05-20 20:39:43.696519	CA91fd4bdee6c2b10e9d31f2b3f04950d9	\N	17		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE8ab6d5c60f2f0320158cce53bcddb0f6	0	inbound	+18556311397	\N	25.2224700450897217	null	new lead		1	\N	\N	2845
2016-05-24 14:08:42.586197+00	2017-11-29 18:31:56.60006+00	189	completed	Unknown			+17815815936		201	2016-05-24 14:08:42.584741	2016-05-24 14:12:03.244365	CAb2fa043e8f505ba78b23959fd7e1cb46	\N	18		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REc5403640563673526b8a6ad5e00fc6e1	0	inbound	+18556311397	\N	13.2729871273040771	null	new lead		1	\N	\N	2845
2016-06-16 13:51:37.640586+00	2016-06-16 13:52:18.836381+00	425	completed				+17815815936		37	2016-06-16 13:51:37.639629	2016-06-16 13:52:18.835229	CA6341fa1bb3e58973b3370c98dbf9287d	c6c46e91-97c9-404c-92ba-454008d80db7	16			1	outbound	+18556311397	\N	1.35661005973815918	{}	new lead		1	\N	\N	2845
2016-05-31 19:02:29.222608+00	2017-11-29 18:31:56.600089+00	294	completed	Unknown			+17815815936		108	2016-05-31 19:02:29.221344	2016-05-31 19:04:16.763882	CA112b69525eca89cca307a75b2303d0e6	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REea400cc3f4e1ca4a23523332cf9437a5	0	inbound	+18556311397	\N	5.4331510066986084	null	new lead		1	\N	\N	2845
2017-11-01 21:56:03.733882+00	2017-11-01 21:58:45.340494+00	6896	completed	Robert 	Miller II	junebugg301@gmail.com	+16148177001		147	2017-11-01 21:56:03.732374	2017-11-01 21:58:45.059978	CAf6b18742442fe9e2c3237660a7bc9d73	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REd00cd006eb69db7833644d65eec8496b	1	outbound	+17704009016	\N	13.9941661357879639	{}	new lead		13	\N	\N	2846
2017-05-03 23:34:11.801003+00	2017-11-29 18:38:49.809556+00	4691	completed				+12145494084		257	2017-05-03 23:34:11.798713	2017-05-03 23:38:28.406389	CA8c68864e67eb87be296cdd02863ceae2	\N	107			0	inbound	+12147122250	\N	5.73451685905456543	\N	new lead	star tire co in	9	\N	\N	2847
2016-10-17 13:35:20.725709+00	2017-11-29 18:32:13.821929+00	2304	missed				+13306804861		51	2016-10-17 13:35:20.722952	2016-10-17 13:36:11.273754	CAf255c068f99e8ab61f17de09a2b642ee	\N	\N			0	inbound	+18555983683	\N	31.8220479488372803	null	new lead		1	\N	\N	2850
2016-10-17 17:09:21.155557+00	2017-11-29 18:32:13.821936+00	2306	missed				+13306804861		80	2016-10-17 17:09:21.153077	2016-10-17 17:10:40.751674	CA8ca0506bb6f4280dcf5d8e4c22305e0e	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE3059ded656d5829e8ad62ce85db05d97	0	inbound	+18555983683	\N	32.424314022064209	null	new lead		1	\N	\N	2850
2016-07-06 17:14:01.019848+00	2016-12-10 01:05:18.400601+00	775	completed				+12674211869		207	2016-07-06 17:14:01.018828	2016-07-06 17:17:28.093011	CA8ac1eeeb0ff555a023cbdf495f1e32e3	\N	24			0	inbound	+18557088731	\N	3.05553507804870605	null	new lead		3	\N	\N	2851
2017-12-04 17:17:41.715597+00	2017-12-04 17:18:40.769995+00	7541	completed	Joseph 	Miller 	Jammiller6872@gmail.com	+12177104256		56	2017-12-04 17:17:41.714021	2017-12-04 17:18:40.767651	CAf217315c7d4fc8130b4aa865ae6c4493	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.82276201248168945	{}	new lead		15	\N	\N	2852
2016-12-13 18:16:11.277442+00	2017-11-29 18:32:10.406485+00	3079	missed				+13612491314		1	2016-12-13 18:16:11.275691	2016-12-13 18:16:12.57621	CAd227be92c53d1cac8febdba6fdc94630	\N	\N			0	inbound	+18552791533	\N	\N	null	new lead		1	\N	\N	2853
2017-05-25 18:18:19.575328+00	2017-11-29 18:38:49.813466+00	5404	completed				+18596192975		82	2017-05-25 18:18:19.573348	2017-05-25 18:19:41.161722	CA59407ec7942d5264c8acba6a47518d72	\N	127			0	inbound	+12147122250	\N	1.78553509712219238	\N	new lead	harney diane	9	\N	\N	2854
2017-11-20 15:53:39.13053+00	2017-11-20 15:55:32.762222+00	7136	completed				+16825560399		112	2017-11-20 15:53:39.128113	2017-11-20 15:55:31.522229	CA31f10461bf32377ba1969327f057016f	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REb80ccaf0ad04cc39d9a89676fd5d7823	0	inbound	+18177569010	124	7.67010593414306641	\N	new lead	dallas  tx	12	\N	\N	2856
2017-12-11 22:00:52.9598+00	2017-12-11 22:05:30.034635+00	7796	completed	Megan	Moreland	Beautifullybroken327@gmail.com	+13303241524		274	2017-12-11 22:00:52.958382	2017-12-11 22:05:30.033114	CAfe5a5d7e21e3fc625d453d73a4f2240a	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.84698200225830078	{}	new lead		15	\N	\N	2857
2016-11-06 20:33:13.021268+00	2016-11-06 20:33:25.98976+00	2774	completed				+17708552486		13	2016-11-06 20:33:13.01966	2016-11-06 20:33:25.5406	CA65a2c853b33eebd6afd30627fdeeff25	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE18b2cd1711a43a7e45e44dd1f3c5def5	0	inbound	+18557240606	49	1.76707196235656738	null	new lead		1	\N	\N	2858
2017-11-21 14:11:23.446764+00	2017-11-21 14:25:19.409294+00	7153	completed	Sharon	Barnes	sbarnes53.sb@yahoo.com	+17063625403		65	2017-11-21 14:11:23.445102	2017-11-21 14:12:45.384903	CA2a7b9c66102d6e323bee5976ea63e4a2	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE28a239b86cdc0a1b1b80f65a32aa1da6	1	outbound	+17704009016	\N	15.5129630565643311	{}	select status		13	\N	\N	2859
2016-10-31 22:47:27.631517+00	2016-10-31 22:47:27.6597+00	2440	missed	Patrick	Beaubien	beaubien1000@gmail.com	+17705279463		\N	2016-10-31 22:47:27.630525	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2864
2016-08-29 18:29:56.237439+00	2017-01-27 21:12:23.813813+00	1814	completed				+15136098208		58	2016-08-29 18:29:56.235901	2016-08-29 18:30:54.310896		\N	\N			0	outbound	+18555343978	48	\N	null	new lead		1	\N	\N	2868
2016-08-29 15:12:44.11819+00	2017-11-29 18:31:10.262575+00	1807	missed				+15136098208		87	2016-08-29 15:12:44.116741	2016-08-29 15:14:11.041493	CA16d5b1081f0f2fd289adca158f622360	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE313ac7864b52768581c8c7e93ac433d2	0	inbound	+18556311490	\N	31.9548909664154053	null	new lead		1	\N	\N	2868
2016-09-19 17:04:46.284732+00	2017-11-29 18:31:10.262589+00	2046	missed				+15136098208		57	2016-09-19 17:04:46.283068	2016-09-19 17:05:43.450288	CA331949d2d282218f077a6ee86dec5a44	\N	\N			0	inbound	+18556311490	\N	32.5519649982452393	null	new lead		1	\N	\N	2868
2016-09-19 17:06:46.962722+00	2017-11-29 18:31:10.262596+00	2047	missed				+15136098208		76	2016-09-19 17:06:46.961403	2016-09-19 17:08:03.399671	CA67c8fb879bc98211bda65b24d06cb9c6	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REef137f2578abc7492b4507a2b8242ce7	0	inbound	+18556311490	\N	32.9616520404815674	null	new lead		1	\N	\N	2868
2017-05-23 19:06:21.374493+00	2017-11-29 18:38:49.81289+00	5332	completed				+12147084121		70	2017-05-23 19:06:21.372679	2017-05-23 19:07:31.084107	CA132327ea59d711f9e8719a20b05a757d	\N	107			0	inbound	+12147122250	\N	6.62442708015441895	\N	new lead	richardson derr	9	\N	\N	2869
2017-04-27 13:22:30.093076+00	2017-11-29 18:38:53.214653+00	4353	completed				+12815155384		125	2017-04-27 13:22:30.091183	2017-04-27 13:24:35.091344	CA459838a2a2a83156321125bd6d1cee85	\N	133			0	inbound	+12146922088	\N	12.0788898468017578	\N	new lead	phillips mcarth	9	\N	\N	2872
2017-12-26 11:29:23.110398+00	2017-12-26 11:29:23.162039+00	8096	missed	Wendy	Seay	blueyeshine99@gmail.com	+17706249366		\N	2017-12-26 11:29:23.108929	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	2873
2016-11-01 22:41:22.021593+00	2016-11-01 23:13:53.800235+00	2516	completed				+19102586270		1946	2016-11-01 22:41:22.020329	2016-11-01 23:13:47.869439	CAae496c1cedd33f58b2240106de43b33d	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REd39326112587b0ac8e52852a9e69b17c	0	inbound	+18557240606	49	2.35605502128601074	null	new lead		1	\N	\N	2879
2016-12-28 13:37:54.673387+00	2016-12-28 14:23:48.099953+00	3101	missed	Tyler	Beasy	tyler.beasy@yahoo.com	+16145574210		\N	2016-12-28 13:37:54.67216	\N		d33a481e-e0af-47ac-9f90-260f20b69de5	\N			0	outbound	+18552959002	\N	\N	{}	application submitted - autopay		1	\N	\N	2886
2016-12-28 01:42:47.70621+00	2017-11-29 18:31:41.490814+00	3099	missed				+16145574210		19	2016-12-28 01:42:47.703797	2016-12-28 01:43:06.782223	CAbc4fa3407cfe3c273c4a6da869dcf580	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE20042ee22327206b1d11dc19bc469b4b	0	inbound	+18552959002	\N	\N	null	application submitted - autopay		1	\N	\N	2886
2016-12-28 13:13:35.910165+00	2017-11-29 18:31:41.490821+00	3100	missed				+16145574210		37	2016-12-28 13:13:35.908266	2016-12-28 13:14:13.166588	CA334c3f9bc62cf91b3abaeaa2bdbc286e	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REcba96ddc94e2f156999bd923750ac6e4	0	inbound	+18552959002	\N	\N	null	application submitted - autopay		1	\N	\N	2886
2017-01-10 20:00:44.812286+00	2017-11-29 18:31:41.490828+00	3115	missed	Tyler	Beasy		+16145574210		74	2017-01-10 20:00:44.809464	2017-01-10 20:01:59.218551	CA2729b08b530779dff9940a18aa68d0cb	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REb029b50e9b0707bebe3057f348fdfd67	0	inbound	+18552959002	\N	32.0022430419921875	null	application submitted - autopay		1	\N	\N	2886
2017-12-05 23:27:23.20681+00	2017-12-05 23:32:35.203562+00	7619	completed				+14049539443		312	2017-12-05 23:27:23.20539	2017-12-05 23:32:35.187943	CA7197d26e4a707d4bdf7bb888f1b71e51	\N	152			0	inbound	+17707665732	133	18.6297118663787842	\N	new lead	cell phone   ga	13	\N	\N	2887
2017-10-16 18:57:19.403843+00	2017-10-16 18:58:29.978828+00	6725	completed	Donna	Hunter	lilb.dh@gmail.com	+17069636905		50	2017-10-16 18:57:19.401458	2017-10-16 18:58:29.410376	CA3ba302d046b84f8c5bc664649efd8be4	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REf4ec7fd3def47d260b498ed3e37c4d8b	1	outbound	+17704009016	\N	19.2221460342407227	{}	new lead		13	\N	\N	2888
2016-11-10 19:07:33.682698+00	2016-11-10 19:16:04.370058+00	2839	completed				+17047981238		509	2016-11-10 19:07:33.679847	2016-11-10 19:16:02.888222	CA29aafb8b39a45212537020504bd0e090	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE1593e23d7a725dbd09b9df4dff16547d	0	inbound	+18557240606	49	6.00244283676147461	null	new lead		1	\N	\N	2890
2017-10-06 21:06:36.283213+00	2017-10-06 21:06:54.954758+00	6606	completed				+17063635113		19	2017-10-06 21:06:36.281333	2017-10-06 21:06:54.935762	CA7519436ef923c8aa884084fd99aedc94	\N	154			0	inbound	+17707665699	134	1.08470416069030762	\N	new lead		13	\N	\N	2891
2017-10-06 22:07:08.748558+00	2017-10-06 22:07:09.414664+00	6610	missed				+17063635113		1	2017-10-06 22:07:08.746908	2017-10-06 22:07:09.400947	CA15e7b184a6dd27599bc7b8e9d19e25d5	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	2891
2017-10-06 19:09:30.091278+00	2017-10-06 19:13:59.222391+00	6603	completed				+17063635113		269	2017-10-06 19:09:30.089151	2017-10-06 19:13:59.203137	CAb4a4c4fa748156c727b3fff101f97c66	\N	154			0	inbound	+17707665699	134	1.20094609260559082	\N	new lead		13	\N	\N	2891
2017-10-06 19:14:32.679559+00	2017-10-06 19:15:16.164349+00	6604	completed				+17063635113		43	2017-10-06 19:14:32.677744	2017-10-06 19:15:16.151731	CAc74466ad05c8f5b349686f94d3a59aef	\N	154			0	inbound	+17707665699	134	3.11930012702941895	\N	new lead		13	\N	\N	2891
2017-10-06 21:07:09.172185+00	2017-10-06 21:13:11.819512+00	6607	completed				+17063635113		363	2017-10-06 21:07:09.170716	2017-10-06 21:13:11.798128	CA72d8777aad4a1d733f19b4a9ec312dab	\N	154			0	inbound	+17707665699	134	1.25419497489929199	\N	new lead		13	\N	\N	2891
2017-10-06 21:50:06.885599+00	2017-10-06 21:54:40.973225+00	6609	completed				+17063635113		274	2017-10-06 21:50:06.883599	2017-10-06 21:54:40.963985	CAb0b7b2aa4ec605864176ed9624812f54	\N	154			0	inbound	+17707665699	134	2.32003998756408691	\N	new lead		13	\N	\N	2891
2017-10-07 20:28:55.585266+00	2017-10-07 20:31:00.274103+00	6622	completed				+17063635113		125	2017-10-07 20:28:55.58321	2017-10-07 20:31:00.25986	CAbaec99367dbdb393b68bfc131e487ced	\N	154			0	inbound	+17707665699	134	2.65548181533813477	\N	new lead		13	\N	\N	2891
2017-04-13 17:50:21.95517+00	2017-11-29 18:38:49.804815+00	3882	missed				+15049947449		92	2017-04-13 17:50:21.95267	2017-04-13 17:51:53.95807	CAe90b057da7728a79545dd0c78e4fc315	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead		9	\N	\N	2892
2016-11-07 01:06:48.902346+00	2016-11-07 01:06:48.936329+00	2778	missed	Mary	Wagner	mar_wagner@hotmail.com	+17138623380		\N	2016-11-07 01:06:48.900887	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	2894
2017-04-13 19:05:44.422434+00	2017-11-29 18:38:49.804844+00	3889	missed				+19495362107		37	2017-04-13 19:05:44.420003	2017-04-13 19:06:21.869522	CA06e80682ab50a2924b0bca3f4d26c938	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead		9	\N	\N	2895
2017-04-13 20:18:32.354311+00	2017-11-29 18:38:49.804881+00	3895	completed				+19495362107		260	2017-04-13 20:18:32.351592	2017-04-13 20:22:52.459234	CA70c8f6bc1f2ee81af83df567c8f0f015	\N	107			0	inbound	+12147122250	\N	8.11948490142822266	\N	new lead		9	\N	\N	2895
2017-04-13 19:06:13.655836+00	2017-11-29 18:38:49.804852+00	3890	completed				+19495362107		77	2017-04-13 19:06:13.654438	2017-04-13 19:07:31.108848	CAa30f4accb9a23ba11d2b704b63c75adc	\N	126			0	inbound	+12147122250	\N	1.02615785598754883	\N	new lead		9	\N	\N	2895
2017-05-26 20:51:04.145101+00	2017-11-29 18:38:49.813746+00	5450	missed				+17149792500		32	2017-05-26 20:51:04.142515	2017-05-26 20:51:35.954228	CAaf4ac0ee6e51dbe75369ca984af24631	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	s coast acura	9	\N	\N	2896
2017-05-26 20:57:28.275375+00	2017-11-29 18:38:49.813761+00	5452	completed				+17149792500		91	2017-05-26 20:57:28.274181	2017-05-26 20:58:59.600486	CA40886ea09438f52e2d4db4fb4184648e	\N	125			0	inbound	+12147122250	\N	0.964541196823120117	\N	new lead	south coast acu	9	\N	\N	2896
2016-05-31 15:47:38.552504+00	2017-11-29 18:32:10.406442+00	284	completed	Unknown			+17183772731		347	2016-05-31 15:47:38.55092	2016-05-31 15:53:25.974183	CA223c02214c3fd7ee0035b1fbbad25cfb	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE3f36654f46b347f41596bc2a64593137	0	inbound	+18552791533	\N	13.8472890853881836	null	new lead		1	\N	\N	2897
2017-11-11 14:48:19.448773+00	2017-11-11 14:48:19.982911+00	7016	missed				+16783004803		1	2017-11-11 14:48:19.44633	2017-11-11 14:48:19.970977	CA908ab13527b6a6cf7121beb21d188152	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	2898
2017-11-11 14:48:37.764049+00	2017-11-11 14:48:38.145629+00	7017	missed				+16783004803		0	2017-11-11 14:48:37.762883	2017-11-11 14:48:38.137622	CA568f6edf36714030743e346217a2edea	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	2898
2016-08-25 18:36:59.294731+00	2016-12-09 17:06:53.905808+00	1779	completed				+16106624226		295	2016-08-25 18:36:59.29297	2016-08-25 18:41:53.898407	CAad32fc7ae905333ec3177e60a4ac5e2d	\N	21			0	inbound	+18558021330	\N	2.96754002571105957	null	new lead		3	\N	\N	2901
2016-08-25 21:21:26.586531+00	2016-12-09 17:06:53.905815+00	1783	completed				+16106624226		475	2016-08-25 21:21:26.584929	2016-08-25 21:29:21.869635	CAf0af7829c0ed338b87a28d6a7f88827c	\N	21			0	inbound	+18558021330	\N	2.81373286247253418	null	new lead		3	\N	\N	2901
2017-12-08 15:08:33.923776+00	2017-12-08 15:09:49.704693+00	7709	completed				+19728630569		75	2017-12-08 15:08:33.921989	2017-12-08 15:09:48.470375	CAeb1472dece725441e8579bf46a1772ad	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REb1fcb21d302965f023e9b57767b9282c	0	inbound	+18177569010	124	11.9812231063842773	\N	new lead	dallas  tx	12	\N	\N	2902
2017-08-29 14:50:44.245322+00	2017-08-29 15:00:29.250146+00	6194	completed	Annette	Walker	walkerannette40@yahoo.com	+17062961793		243	2017-08-29 14:50:44.243924	2017-08-29 15:00:29.223225	CAfff5902785b13b65360520527b3ae3b6	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE096db01092d7b45091b3987dcfbed131	3	outbound	+17704009016	\N	342.827946901321411	{}	new lead		13	\N	\N	2903
2017-09-04 14:23:46.965619+00	2017-09-04 14:29:48.883223+00	6246	missed	Annette	Walker		+17062961793		31	2017-09-04 14:23:46.963409	2017-09-04 14:24:18.169678	CA27031d8f438c64896e21411c76530471	\N	\N			0	inbound	+17704009016	132	\N	\N	new lead		13	\N	\N	2903
2017-09-07 19:05:38.783838+00	2017-09-07 19:08:06.097132+00	6286	completed	Annette	Walker		+17062961793		146	2017-09-07 19:05:38.781605	2017-09-07 19:08:04.757001	CAd0df94b7f253b245bc2f046bb80fed03	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE141c7560831d5d1af5c5cac13663c43c	0	inbound	+17704009016	132	14.8561289310455322	\N	new lead		13	\N	\N	2903
2016-10-05 15:34:53.32371+00	2017-02-11 20:02:07.779581+00	2175	completed				+19735352717		74	2016-10-05 15:34:53.321831	2016-10-05 15:36:06.997656	CA4d7a81b8f2bf4fdee2761d7c5a594657	\N	\N			0	inbound	+18559763286	\N	1.88299083709716797	null	new lead		3	\N	\N	2904
2017-11-06 23:04:47.373535+00	2017-11-06 23:21:12.674283+00	6954	completed				+17065318461		985	2017-11-06 23:04:47.371502	2017-11-06 23:21:12.664281	CA0a1ec6c543a4f45bd907456cba840e9c	\N	154			0	inbound	+17707665699	134	1.3455960750579834	\N	new lead		13	\N	\N	2908
2017-03-09 14:38:31.739858+00	2017-11-29 18:38:53.211932+00	3354	completed				+12143995444		210	2017-03-09 14:38:31.737119	2017-03-09 14:42:01.798013	CAc969a7e3c82e76e102435aa95253dc4f	\N	\N			0	inbound	+12146922088	\N	8.29010415077209473	\N	new lead	cell phone   tx	9	\N	\N	2909
2016-08-25 12:40:06.616242+00	2016-12-09 17:07:45.331546+00	1759	missed				+16107725380		37	2016-08-25 12:40:06.615148	2016-08-25 12:40:43.629549	CAb052fbe92c087e06a54f96c7d5eb8962	\N	\N			0	inbound	+18552467810	\N	\N	null	new lead		3	\N	\N	2913
2016-08-25 12:42:07.620925+00	2016-12-09 17:07:45.331553+00	1760	missed				+16107725380		23	2016-08-25 12:42:07.619745	2016-08-25 12:42:30.816814	CA18b3eaf5822bb711fa990a6732600bba	\N	\N			0	inbound	+18552467810	\N	\N	null	new lead		3	\N	\N	2913
2016-08-25 12:39:11.54955+00	2016-12-09 17:07:45.331539+00	1758	missed				+16107725380		37	2016-08-25 12:39:11.547767	2016-08-25 12:39:48.743883	CA04289b58ab9df80f86d6fb8bc9c248c8	\N	\N			0	inbound	+18552467810	\N	\N	null	new lead		3	\N	\N	2913
2016-08-25 17:23:37.673348+00	2016-12-09 17:07:45.331567+00	1777	completed				+16107725380		260	2016-08-25 17:23:37.671987	2016-08-25 17:27:57.528211	CAcc0adffa59614a6f2e8958ee8a92d989	\N	55			0	inbound	+18552467810	\N	2.84566998481750488	null	new lead		3	\N	\N	2913
2016-08-25 17:34:13.870181+00	2016-12-09 17:07:45.331574+00	1778	completed				+16107725380		196	2016-08-25 17:34:13.868715	2016-08-25 17:37:30.139949	CA7d1e06eb1579bdaaba03b713cd9b4b35	\N	55			0	inbound	+18552467810	\N	2.77762985229492188	null	new lead		3	\N	\N	2913
2017-08-26 15:16:25.82104+00	2017-08-26 15:25:32.020009+00	6176	completed	Terrell	Cole	tcole0608@gmail.com	+17065996204		197	2017-08-26 15:16:25.819638	2017-08-26 15:25:31.750661	CA71cff0976fb1f649e9dbaaccb6509f42	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REd752f9d8311ed512530727d47d331b06	3	outbound	+17704009016	\N	342.313961029052734	{}	new lead		13	\N	\N	2915
2017-09-02 13:12:49.284389+00	2017-09-02 13:12:49.6881+00	6239	missed				+17062243048		0	2017-09-02 13:12:49.282293	2017-09-02 13:12:49.669717	CAe7356f0ccaf3548f5f9ef78496723057	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	2919
2017-12-01 18:31:22.585451+00	2017-12-01 18:34:51.101646+00	7439	completed	Tanethgia	Davenport	Dtaneika024@outlook.com	+17066906252		195	2017-12-01 18:31:22.583813	2017-12-01 18:34:50.621763	CA2c614f50c782fff4539d7d6280628a14	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE843cbd6081c91dee182a8a563ea3e9ed	1	outbound	+17704009016	\N	11.185164213180542	{}	new lead		13	\N	\N	2921
2016-09-03 15:47:44.438563+00	2016-12-10 01:00:18.568371+00	1872	completed				+16198528737		432	2016-09-03 15:47:44.436793	2016-09-03 15:54:56.725241	CAa760e66a1ef6d8f458d7f0574961b7af	\N	56			0	inbound	+18556775511	\N	7.97961807250976562	null	new lead		3	\N	\N	2926
2017-11-17 19:26:28.140152+00	2017-11-17 19:34:09.136986+00	7110	completed				+17065890242		461	2017-11-17 19:26:28.138121	2017-11-17 19:34:09.119789	CA16eacf02e5b71589df1261f768a16366	\N	150			0	inbound	+17707665732	133	12.6246359348297119	\N	new lead		13	\N	\N	2928
2017-04-20 14:13:44.029375+00	2017-11-29 18:47:25.068151+00	4122	completed				+19728399510		235	2017-04-20 14:13:44.027225	2017-04-20 14:17:38.657338	CAb2df0f1fb810c367bb8632604f14a07e	\N	84		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE17d3481b760844ed78e4a1fca8b7890d	0	inbound	+19728330116	\N	3.78372907638549805	\N	new lead	billeaudeaux ga	8	\N	\N	2934
2017-05-02 16:19:07.281314+00	2017-05-02 16:20:38.600327+00	4575	completed				+18172312156		90	2017-05-02 16:19:07.279245	2017-05-02 16:20:37.514148	CA81c62b26158a27853641b46f1ea164ca	\N	132		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REfbf8a6285b133a0d836b9f9f4f11740b	0	inbound	+18172104002	126	10.1211080551147461	\N	new lead	claudiea clark	12	\N	\N	2935
2017-07-19 19:24:16.1812+00	2017-07-19 19:24:59.72646+00	5815	completed	Harley	Payne jr	Gwwc2017@gmail.com	+16784144222		33	2017-07-19 19:24:16.179547	2017-07-19 19:24:58.269918	CAaad37c502f9db7fdbbdcf63e2d51d1d2	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE43f916d1dc7010a55665de4fee7d6a38	1	outbound	+17704009016	\N	11.2107760906219482	{}	new lead		13	\N	\N	2936
2017-08-14 15:33:47.037216+00	2017-08-14 15:38:07.388051+00	6020	completed	Amber	Reed	amber1007reed@gmail.com	+16789516888		250	2017-08-14 15:33:47.035583	2017-08-14 15:38:06.554138	CA8ed4a0be7a49737a13dd76f714c4ccbb	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REab065b5ef2e09a16984de31089c054c3	1	outbound	+17704009016	\N	8.30707907676696777	{}	new lead		13	\N	\N	2937
2017-08-14 15:46:28.986944+00	2017-08-14 15:47:31.485754+00	6021	completed	Amber	Reed	amber1007reed@gmail.com	+16789516888		62	2017-08-14 15:46:28.983842	2017-08-14 15:47:31.483342		\N	153			0	outbound	+17704009016	132	\N	\N	new lead		13	\N	\N	2937
2017-09-01 19:12:59.241107+00	2017-09-01 19:20:04.58277+00	6235	missed	Amber	Reed		+16789516888		88	2017-09-01 19:12:59.239227	2017-09-01 19:14:26.919479	CA8e7eb5a89bd7ac5d57e18b730b91f67b	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE2a90b0dfeb5613d1a87e25a4c4842fb1	0	inbound	+17707665732	133	405.04189395904541	\N	new lead		13	\N	\N	2937
2017-04-28 19:20:18.894045+00	2017-11-29 18:38:53.214766+00	4436	completed				+17012235973		23	2017-04-28 19:20:18.89169	2017-04-28 19:20:41.819832	CAaa0a11fa6024e38d9df9c6b216dab64b	\N	99			0	inbound	+12146922088	\N	5.43404698371887207	\N	new lead	bismarck     nd	9	\N	\N	2942
2017-09-20 23:15:05.26761+00	2017-09-20 23:20:29.729242+00	6411	completed				+18174487346		324	2017-09-20 23:15:05.265169	2017-09-20 23:20:29.72649	CA5aaa20d4e3f97810dff59ccd7e084282	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REe5b11c91dba6e260e3d2829ce2848eb8	0	inbound	+18177569010	124	79.3527510166168213	\N	new lead	rogers	12	\N	\N	2945
2018-02-13 01:22:44.530451+00	2018-02-13 01:23:00.192197+00	8212	completed				+17739699892		15	2018-02-13 01:22:44.528346	\N	c-gst7hbfrcfswhep4uao5gta	\N	180		https://buyercall-test-recordings.s3.amazonaws.com/Morry%20Construction_29/8212_recording_67c136c9c59e4b598ac3dfba256a22d2	0	inbound	+15626663928	147	9	\N	new lead	HONDA K MI NCHI	29	\N	\N	2946
2016-08-15 17:14:48.212474+00	2017-11-29 18:31:14.616503+00	1497	missed	Patricia	Murawski		+19203702934		98	2016-08-15 17:14:48.211018	2016-08-15 17:16:25.758212	CAd0336bd067f7b96b57cd4788aacedc9a	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REd942687e8ae60639efa0d0a006402747	0	inbound	+18556311541	\N	31.8426980972290039	null	application submitted - autopay		1	\N	\N	2948
2016-08-15 17:16:54.995246+00	2017-11-29 18:31:14.61651+00	1498	missed				+19203702934		56	2016-08-15 17:16:54.993366	2016-08-15 17:17:50.905659	CA0c85f34de577bf1fa59c916a505a0341	\N	\N			0	inbound	+18556311541	\N	31.3422589302062988	null	application submitted - autopay		1	\N	\N	2948
2016-08-05 15:27:29.147831+00	2017-01-27 21:12:23.812722+00	1275	completed				+19203702934		470	2016-08-05 15:27:29.145987	2016-08-05 15:35:19.346027		\N	\N			0	outbound	+18555343978	48	\N	null	application submitted - autopay		1	\N	\N	2948
2016-08-17 16:12:22.450047+00	2017-11-29 18:31:14.616517+00	1551	completed	Patricia	Murawski		+19203702934		146	2016-08-17 16:12:22.448209	2016-08-17 16:14:47.956663	CA1e092ef070253a655293ee873bfe9ada	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REb1261037070c1d5189dcbfac6415ed29	0	inbound	+18556311541	\N	6.82136201858520508	null	application submitted - autopay		1	\N	\N	2948
2016-08-05 00:30:34.595697+00	2017-11-29 18:31:14.616496+00	1258	missed				+19203702934		38	2016-08-05 00:30:34.594421	2016-08-05 00:31:12.319419	CAcfecf7c71b71ae75241d2c32c96472e3	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REb3add1c6efc3573849e704e8794e6d6d	0	inbound	+18556311541	\N	\N	null	application submitted - autopay		1	\N	\N	2948
2016-09-07 16:11:34.63676+00	2017-11-29 18:31:14.616559+00	1908	completed	Patricia	Murawski		+19203702934		88	2016-09-07 16:11:34.635777	2016-09-07 16:13:02.490395	CA945f2103cce1fa690dc2310d5868117a	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE5744483ab151f6ca9eb45c2c85a646d4	0	inbound	+18556311541	\N	6.92859292030334473	null	application submitted - autopay		1	\N	\N	2948
2016-09-07 18:44:17.336052+00	2016-12-10 01:01:51.440835+00	1941	completed				+16195652523		277	2016-09-07 18:44:17.334996	2016-09-07 18:48:54.34268	CAdf2aac6bf1dfe5d797dcb8628a0d4714	\N	50			0	inbound	+18559693782	\N	1.95228385925292969	null	new lead		3	\N	\N	2949
2017-04-18 17:30:11.494993+00	2017-11-29 18:38:49.805471+00	4047	missed				+14174251062		45	2017-04-18 17:30:11.492959	2017-04-18 17:30:56.451313	CA51383a1d005f0cd5d895dcb53b07aa5f	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	heppner brian  	9	\N	\N	2953
2017-08-15 11:40:05.581977+00	2017-08-15 11:40:05.638366+00	6031	missed	Kimberly	Hontz	kimhontz@gmail.com	+17064296367		\N	2017-08-15 11:40:05.580162	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	2956
2017-12-14 21:36:19.636986+00	2017-12-14 22:09:29.304224+00	7882	completed				+16619045675		1986	2017-12-14 21:36:19.635231	2017-12-14 22:09:26.013282	CA3ca635b4e5f1cc0760fb3fa5c5a2d589	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE25b794f4a2d4b7fec5abea4e8346312b	0	inbound	+18558645656	136	2.30450892448425293	\N	new lead		15	\N	\N	2957
2017-04-08 00:22:58.238293+00	2017-11-29 18:38:53.213461+00	3737	completed				+18645040076		184	2017-04-08 00:22:58.236454	2017-04-08 00:26:02.64499	CA3cd4323861905b26dd40b6326e2d828a	\N	107			0	inbound	+12146922088	\N	5.12977504730224609	\N	new lead	cell phone   sc	9	\N	\N	2959
2017-12-27 20:57:41.870846+00	2017-12-27 21:00:27.537867+00	8125	completed				+19402064097		165	2017-12-27 20:57:41.868704	2017-12-27 21:00:26.370443	CA48931dcccfffcd8bedc6ec4a8e27ebe0	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REa69815d7c1fcaaa1559896b9f8f0acf4	0	inbound	+18177569010	124	8.87335491180419922	\N	new lead	wilson armstron	12	\N	\N	2961
2017-12-29 16:59:35.915651+00	2017-12-29 17:00:55.437142+00	8152	completed				+19402064097		79	2017-12-29 16:59:35.912343	2017-12-29 17:00:54.727075	CA439b173ee5ffb558878c7ffc78a66f3f	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE6bf146dd5d29af39d7548ce149fe433d	0	inbound	+18177569010	124	10.1110739707946777	\N	new lead	wilson armstron	12	\N	\N	2961
2017-09-09 22:25:04.897147+00	2017-09-09 22:25:04.954377+00	6309	missed	Brittney	Morgan	morganbrittney85@gmail.com	+17062449778		\N	2017-09-09 22:25:04.895434	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	2963
2016-11-15 14:28:58.279734+00	2016-12-09 17:10:17.413663+00	2906	completed				+16109727942		158	2016-11-15 14:28:58.278141	2016-11-15 14:31:36.321779	CA8106904e24b8868bcaa42f28046e66b3	\N	27			0	inbound	+18552716856	\N	6.50616121292114258	null	new lead		3	\N	\N	2966
2016-11-15 14:31:52.89475+00	2016-12-09 17:10:17.41367+00	2907	completed				+16109727942		80	2016-11-15 14:31:52.893518	2016-11-15 14:33:13.295225	CA1d9bf30ff4a591d3b3fdc2ca2153f837	\N	27			0	inbound	+18552716856	\N	6.09153509140014648	null	new lead		3	\N	\N	2966
2017-12-10 23:42:08.63557+00	2017-12-10 23:43:29.136956+00	7766	completed	brenda	mondragon	brendie911@gmail.com	+18478341620		78	2017-12-10 23:42:08.63412	2017-12-10 23:43:29.134311	CA94e57ed351a24aa905c607d507f87fec	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.01670980453491211	{}	new lead		15	\N	\N	2968
2017-12-11 00:04:15.2072+00	2017-12-11 00:05:36.872594+00	7767	completed	brenda	mondragon		+18478341620		81	2017-12-11 00:04:15.204802	2017-12-11 00:05:36.170893	CA81c1939f4f08d4eea707bc3cdf2ec0fb	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REdde96a8e37325b1004bcb1b64ba6079b	0	inbound	+18558645656	136	2.31373882293701172	\N	new lead		15	\N	\N	2968
2016-08-19 17:08:16.171326+00	2017-01-27 21:12:23.813478+00	1613	completed				+15137677214		36	2016-08-19 17:08:16.169568	2016-08-19 17:08:51.926877		\N	\N			0	outbound	+18555343978	48	\N	null	application submitted - credit union		1	\N	\N	2973
2016-08-19 17:59:03.331773+00	2016-08-19 18:14:58.703918+00	1617	missed	David	Miller	wildkats88@yahoo.com	+15137677214		\N	2016-08-19 17:59:03.329914	\N		25d0200e-983d-4413-94ae-eb664b99711c	\N			0	outbound	+18556311490	\N	\N	{}	application submitted - credit union		1	\N	\N	2973
2016-08-19 17:09:16.434544+00	2017-01-27 21:12:23.813492+00	1615	completed				+15137677214		66	2016-08-19 17:09:16.433595	2016-08-19 17:10:22.078869		\N	\N			0	outbound	+18555343978	48	\N	null	application submitted - credit union		1	\N	\N	2973
2016-08-19 17:45:03.999489+00	2017-01-27 21:12:23.813498+00	1616	completed				+15137677214		824	2016-08-19 17:45:03.997535	2016-08-19 17:58:47.594676		\N	\N			0	outbound	+18555343978	48	\N	null	application submitted - credit union		1	\N	\N	2973
2016-08-19 17:08:34.047109+00	2017-01-27 21:12:23.813484+00	1614	completed				+15137677214		35	2016-08-19 17:08:34.045863	2016-08-19 17:09:09.201808		\N	\N			0	outbound	+18555343978	48	\N	null	application submitted - credit union		1	\N	\N	2973
2016-08-19 09:28:49.454076+00	2017-11-29 18:31:10.262445+00	1598	missed				+15137677214		37	2016-08-19 09:28:49.452076	2016-08-19 09:29:26.702001	CA378d6c0529294d3edc316a22448b6737	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE30afcbc97e221e24c3f7f66e2268df88	0	inbound	+18556311490	\N	\N	null	application submitted - credit union		1	\N	\N	2973
2016-08-19 15:37:12.115797+00	2017-11-29 18:31:10.262477+00	1605	missed				+15137677214		19	2016-08-19 15:37:12.113617	2016-08-19 15:37:30.997582	CAffa2c9f35fc12536fb514c31dc4c6ba8	\N	\N			0	inbound	+18556311490	\N	\N	null	application submitted - credit union		1	\N	\N	2973
2016-08-19 15:38:12.260457+00	2017-11-29 18:31:10.262496+00	1606	missed				+15137677214		59	2016-08-19 15:38:12.259545	2016-08-19 15:39:11.617615	CAa96be805a937d718a871df418ab11d8a	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REe8a1e216879c4b7a0ed96a28bdf9315a	0	inbound	+18556311490	\N	31.7657589912414551	null	application submitted - credit union		1	\N	\N	2973
2016-08-19 15:39:24.85008+00	2017-11-29 18:31:10.262511+00	1607	missed				+15137677214		58	2016-08-19 15:39:24.848904	2016-08-19 15:40:23.25819	CA4b202fdc05b05eb0679cc3631457535c	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REc681163dd5d71014dfa4a56757d9f390	0	inbound	+18556311490	\N	31.9027099609375	null	application submitted - credit union		1	\N	\N	2973
2016-08-19 15:40:32.836075+00	2017-11-29 18:31:10.262524+00	1608	missed				+15137677214		75	2016-08-19 15:40:32.835131	2016-08-19 15:41:47.691828	CA3add7bbe25452cd4cbb4c6767afce518	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REf8d21d7aeb2bdeb129538bf19e541ce6	0	inbound	+18556311490	\N	31.8502840995788574	null	application submitted - credit union		1	\N	\N	2973
2016-08-19 16:22:33.43181+00	2017-11-29 18:31:10.262532+00	1609	missed	David 	Miller		+15137677214		54	2016-08-19 16:22:33.42991	2016-08-19 16:23:27.161655	CA8d1212e673c2c8b00a4f931278e38f2d	\N	\N			0	inbound	+18556311490	\N	31.6712272167205811	null	application submitted - credit union		1	\N	\N	2973
2016-08-19 20:11:12.22369+00	2017-11-29 18:31:10.262539+00	1625	completed	David	Miller	wildkats88@yahoo.com	+15137677214		37	2016-08-19 20:11:12.222185	2016-08-19 20:11:49.714829		\N	16			0	outbound	+18556311490	\N	\N	null	application submitted - credit union		1	\N	\N	2973
2016-08-19 20:11:30.760775+00	2017-11-29 18:31:10.262546+00	1626	completed	David	Miller	wildkats88@yahoo.com	+15137677214		190	2016-08-19 20:11:30.759748	2016-08-19 20:14:40.575207		\N	16			0	outbound	+18556311490	\N	\N	null	application submitted - credit union		1	\N	\N	2973
2017-03-22 22:42:05.431671+00	2017-08-17 14:35:21.044877+00	3549	completed				+12148607768		359	2017-03-22 22:42:05.430006	2017-03-22 22:48:04.652353	CAabf156c313e24b6b1e4c0e250fe70ec4	\N	\N			0	inbound	+18177569010	124	42.3937859535217285	\N	new lead	absalon jose	12	\N	\N	2974
2017-07-21 15:06:46.662177+00	2017-08-17 14:35:21.045637+00	5826	completed				+12148607768		1378	2017-07-21 15:06:46.660577	2017-07-21 15:29:44.283079	CA255058f574fa73f1741b4885b9bca584	\N	\N			0	inbound	+18177569010	124	1321.75809097290039	\N	new lead	absalon jose	12	\N	\N	2974
2016-08-05 12:55:10.629259+00	2016-12-10 01:05:11.337052+00	1265	missed				+17187278498		10	2016-08-05 12:55:10.627546	2016-08-05 12:55:20.363916	CA2ac504d9af48a4b7e7132dac14a7bb84	\N	\N			0	inbound	+18555693686	\N	\N	null	new lead		3	\N	\N	2975
2016-07-19 13:12:01.74404+00	2017-11-29 18:31:41.490511+00	893	completed				+18039557294		44	2016-07-19 13:12:01.742696	2016-07-19 13:12:46.215372	CAa3e763952371a53a5d1313d5693f2407	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE58bcb77507b8dfbc51b699b3da0649a3	0	inbound	+18552959002	\N	6.39381718635559082	null	new lead		1	\N	\N	2977
2016-07-19 13:12:52.177612+00	2017-11-29 18:31:41.490518+00	894	completed				+18039557294		41	2016-07-19 13:12:52.176582	2016-07-19 13:13:32.68605	CAe6f1e62b53aafb0df30c85a150803846	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REea99655eb7cacce49cdf86c9898bc263	0	inbound	+18552959002	\N	6.77512001991271973	null	new lead		1	\N	\N	2977
2017-11-02 17:44:42.94332+00	2017-11-02 17:52:00.76172+00	6905	completed				+17063807898		438	2017-11-02 17:44:42.940207	2017-11-02 17:52:00.749284	CA73c96a33490785116e631bb6ed2bbc98	\N	150			0	inbound	+17707665732	133	12.7387819290161133	\N	new lead		13	\N	\N	2976
2016-11-28 22:07:31.707984+00	2017-11-29 18:31:10.262624+00	2993	missed				+15135023964		73	2016-11-28 22:07:31.706935	2016-11-28 22:08:44.663736	CA7dfc5e6022880c168e462d364ceaf0e1	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE8a3eb46ca68c37257b467aa58350ed2d	0	inbound	+18556311490	\N	2.24625492095947266	null	new lead		1	\N	\N	2981
2016-11-29 21:17:45.400662+00	2017-11-29 18:31:10.262631+00	3001	missed				+15135023964		78	2016-11-29 21:17:45.398732	2016-11-29 21:19:03.563376	CA751626a46f45cb9095fbdc2d80709e27	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE06dd0e833867b7dd72ef130491c13801	0	inbound	+18556311490	\N	31.9910860061645508	null	new lead		1	\N	\N	2981
2016-11-29 21:21:47.860768+00	2017-11-29 18:31:10.262638+00	3002	missed				+15135023964		98	2016-11-29 21:21:47.858648	2016-11-29 21:23:25.417402	CAd836761b2acea3aa76212e204ddcc270	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE94f4ccd0e1546cc1cda3580e2a0fe28b	0	inbound	+18556311490	\N	32.0940139293670654	null	new lead		1	\N	\N	2981
2017-08-24 13:45:02.258959+00	2017-08-24 13:45:56.171631+00	6152	completed	Rachel	Moore	Moorerachel51597@yahoo.com	+16785490992		43	2017-08-24 13:45:02.257526	2017-08-24 13:45:56.140706	CA3a0ab2ed25dec0bdb35d834938911fe0	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REb06f50f172c8d9c623db225d1299c492	1	outbound	+17704009016	\N	15.5560870170593262	{}	new lead		13	\N	\N	2982
2017-10-16 17:38:12.788973+00	2017-10-16 17:39:26.322356+00	6720	completed				+12547471159		73	2017-10-16 17:38:12.786952	2017-10-16 17:39:25.657373	CA2689893c8ef0aef7f3414e21d5e1b2d8	\N	155		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE957039441c41779b7b0a05aed34ae85f	0	inbound	+18177569010	124	9.03314399719238281	\N	new lead	cell phone   tx	12	\N	\N	2983
2017-12-07 22:38:02.185313+00	2017-12-07 22:46:30.511135+00	7696	completed				+12695682636		505	2017-12-07 22:38:02.183486	2017-12-07 22:46:27.221674	CA60b5a2eaede6692f2b8e0e922bbdc8b8	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE14b22844d38136e1efc07792b3d47458	0	inbound	+18558645656	136	2.7503349781036377	\N	new lead		15	\N	\N	2987
2017-02-23 23:13:56.935576+00	2017-11-29 18:47:25.067419+00	3252	completed				+17739699892		41	2017-02-23 23:13:56.933232	2017-02-23 23:14:37.690494	CA517d9dddf8a68bd57de612c502a01e13	\N	81		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE6a7fb53256a71988d5e0e2a927a8a685	0	inbound	+19728330116	\N	10.6561481952667236	\N	new lead		8	\N	\N	2988
2017-05-10 16:55:22.217646+00	2017-05-17 15:41:07.224451+00	4952	completed				+18172296707		62	2017-05-10 16:55:22.21507	2017-05-10 16:56:23.781824	CA4e646bc1661d55b3f09e3b8028265999	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE5eebb623971d5a123b481167c95c68b1	0	inbound	+18177569010	124	7.9299161434173584	\N	new lead	cell phone   tx	12	\N	\N	2991
2017-11-04 15:33:54.851107+00	2017-11-04 15:35:03.280055+00	6930	completed				+12149944612		68	2017-11-04 15:33:54.848964	2017-11-04 15:35:02.708908	CAdf3c23b77cbdacfeea70963d5311b2b2	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REdcb4e830f7f756222a49a1ff8dae80b4	0	inbound	+18177569010	124	10.0763869285583496	\N	new lead	black betty	12	\N	\N	2992
2017-05-26 23:45:43.262304+00	2017-11-29 18:38:49.813841+00	5463	completed				+19032438352		57	2017-05-26 23:45:43.260082	2017-05-26 23:46:40.532462	CA4dd527acf0d77fecfedc49629837718d	\N	107			0	inbound	+12147122250	\N	8.42824387550354004	\N	new lead	clarke drake   	9	\N	\N	2993
2017-05-27 13:20:28.99199+00	2017-11-29 18:38:49.813848+00	5464	completed				+19032438352		92	2017-05-27 13:20:28.989841	2017-05-27 13:22:01.069869	CA515934b6b5bcfa03e2f9e6d21a719756	\N	103			0	inbound	+12147122250	\N	10.0820968151092529	\N	new lead	clarke drake   	9	\N	\N	2993
2017-03-10 18:51:48.183707+00	2017-11-29 18:38:53.212032+00	3377	missed				+18178126605		4	2017-03-10 18:51:48.181864	2017-03-10 18:51:51.862354	CA36f354b6abe69547b73a0f7f34fdff84	\N	\N			0	inbound	+12146922088	\N	\N	\N	new lead	baker cynthia	9	\N	\N	2994
2017-09-22 14:59:25.771576+00	2017-09-22 15:09:58.741268+00	6432	completed				+16822270659		633	2017-09-22 14:59:25.769667	2017-09-22 15:09:58.738788	CA3cd2485f8b66579654de2b8798b87c3c	\N	146			0	inbound	+18177569010	124	349.383841037750244	\N	new lead	mclain blake	12	\N	\N	2995
2017-10-11 16:14:49.275396+00	2017-10-11 16:37:19.924852+00	6663	completed				+16822270659		1350	2017-10-11 16:14:49.273584	2017-10-11 16:37:19.697517	CA4fc90b9f35017ea4613eb2550523d992	\N	155		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REdad4170c66b02ad0dec4292feb356462	0	inbound	+18177569010	124	1318.49557113647461	\N	new lead	mclain blake	12	\N	\N	2995
2017-10-26 19:52:30.996914+00	2017-10-26 19:52:58.370825+00	6826	completed				+16822270659		27	2017-10-26 19:52:30.994881	2017-10-26 19:52:57.638845	CA2cc023aee36e1c98ae06b061feaf7753	\N	155		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE52edc4131d7c461a59466fed1c718b64	0	inbound	+18177569010	124	10.624006986618042	\N	new lead	mclain blake	12	\N	\N	2995
2016-08-10 19:24:02.948419+00	2016-12-10 01:05:11.337067+00	1393	completed				+13155336807		64	2016-08-10 19:24:02.946424	2016-08-10 19:25:07.40599	CA5f95d2bc33687542295f13c95d60b88f	\N	25			0	inbound	+18555693686	\N	3.03942298889160156	null	new lead		3	\N	\N	2996
2016-09-08 14:17:55.266349+00	2016-12-09 17:10:17.413427+00	1959	completed				+14845429324		178	2016-09-08 14:17:55.264916	2016-09-08 14:20:53.748429	CA491f77acbe1197a783b1a19d96ae2236	\N	27			0	inbound	+18552716856	\N	4.69716691970825195	null	new lead		3	\N	\N	2998
2017-10-21 13:50:00.282875+00	2017-10-21 13:53:02.995634+00	6773	completed	Deondra	Watkins	rubyholliday9@gmail.com	+16788768324		164	2017-10-21 13:50:00.28122	2017-10-21 13:53:02.432824	CA11dac5f986fc7f6d3a0fd66948518c80	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REb75e80f0cd38a0e45d0fc049f5b05196	1	outbound	+17704009016	\N	14.2650151252746582	{}	new lead		13	\N	\N	2999
2017-08-25 23:55:59.630356+00	2017-08-26 00:18:16.035311+00	6169	missed				+16825838356		46	2017-08-25 23:55:59.628629	2017-08-25 23:56:45.179913	CAa5cfeb1e6ead2f394ca95661b30f6d2b	\N	\N			0	inbound	+18177569010	124	1315.21868085861206	\N	new lead	murphy kristie	12	\N	\N	3000
2016-06-14 16:20:13.241221+00	2017-11-29 18:31:33.77556+00	415	completed	Unknown			+14403822434		26	2016-06-14 16:20:13.239923	2016-06-14 16:20:39.009721	CAfa852e4b0192ac169713f1426673b481	\N	\N			0	inbound	+18556311350	\N	14.4300501346588135	null	new lead		1	\N	\N	3003
2016-06-14 16:10:46.874827+00	2017-11-29 18:31:33.775529+00	414	completed	Unknown			+14403822434		31	2016-06-14 16:10:46.873345	2016-06-14 16:11:17.388293	CA4f87480ae06c02d9ccea181764897c99	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE556fe6a0796a6f5eccc08fbf274d7e1e	0	inbound	+18556311350	\N	14.6530678272247314	null	new lead		1	\N	\N	3003
2016-06-14 16:28:04.752552+00	2017-11-29 18:31:33.775569+00	416	completed	Mike	Tirabasso		+14403822434		55	2016-06-14 16:28:04.751676	2016-06-14 16:28:59.7287	CA1fb39b75dcc733f547fbb169907b38bb	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE984ccce3d3e0c3445f3fa04d8ec54f12	0	inbound	+18556311350	\N	14.6778390407562256	null	new lead		1	\N	\N	3003
2016-06-17 20:41:29.052713+00	2017-11-29 18:31:33.775584+00	439	completed	Michael	Tirabasso		+14403822434		23	2016-06-17 20:41:29.051094	2016-06-17 20:41:52.522304	CA1e25361d56a6536a6621d93923850036	\N	\N			0	inbound	+18556311350	\N	14.5095582008361816	null	new lead		1	\N	\N	3003
2016-06-18 12:52:17.774567+00	2017-11-29 18:31:33.775592+00	441	completed	Michael	Tirabasso		+14403822434		41	2016-06-18 12:52:17.772677	2016-06-18 12:52:58.483988	CA047ddd65d5dc342d12866663e9e3bdef	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REea766a0b8e84fd653606e2c0ba592151	0	inbound	+18556311350	\N	\N	null	new lead		1	\N	\N	3003
2016-06-14 17:28:51.750087+00	2016-06-14 17:32:11.854857+00	417	completed				+14403822434		18	2016-06-14 17:28:51.747828	2016-06-14 17:29:15.218948	CA4eb8ee95c2c191ba1c641e77d4806086	f452a839-1c09-4197-a86b-ba53f5a3554c	\N			1	outbound	+18556311350	\N	2.23667478561401367	{}	new lead		1	\N	\N	3003
2016-06-14 17:32:51.79039+00	2016-06-14 17:34:13.594458+00	418	completed				+14403822434		77	2016-06-14 17:32:51.789372	2016-06-14 17:34:13.593513	CA6a0ef0fdfc9c456c6d80264494bc6f0b	f452a839-1c09-4197-a86b-ba53f5a3554c	16			1	outbound	+18556311350	\N	1.39338302612304688	{}	new lead		1	\N	\N	3003
2016-06-18 13:17:11.990709+00	2016-06-20 11:11:16.376393+00	442	completed	Michael	Tirabasso	michaeltirabasso@att.net	+14403822434		\N	2016-06-18 13:17:11.989316	\N		ea8e48b7-042e-42ec-8dde-d03bf75a9bad	\N			0	outbound	+18556311350	\N	\N	{}	new lead		1	\N	\N	3003
2016-08-24 16:25:56.973505+00	2016-12-10 01:00:18.568291+00	1715	completed				+16195647013		241	2016-08-24 16:25:56.97137	2016-08-24 16:29:58.123761	CAf99678ef5ba189682be0b18b016e217b	\N	56			0	inbound	+18556775511	\N	4.95960307121276855	null	new lead		3	\N	\N	3004
2017-03-02 21:23:46.284054+00	2017-03-02 21:25:03.763371+00	3308	completed				+18052317736		77	2017-03-02 21:23:46.28236	2017-03-02 21:25:03.742749	CA0de60a26945dce561e36378e2aa10ea2	\N	78			0	inbound	+18036184545	119	31.846980094909668	\N	new lead		6	\N	\N	3007
2017-11-27 17:40:17.884081+00	2017-11-27 17:40:21.669222+00	7343	missed				+17633178644		4	2017-11-27 17:40:17.882529	2017-11-27 17:40:21.658571	CAe446fde262859482ef188a0504705d0f	\N	\N			0	inbound	+18558645656	136	\N	\N	new lead		15	\N	\N	3008
2017-11-27 15:45:39.004194+00	2017-11-27 15:46:47.808048+00	7334	completed				+17633178644		69	2017-11-27 15:45:39.001984	2017-11-27 15:46:47.798188	CAb8701a8ac9249a660575d9e340699ddf	\N	158			0	inbound	+18558645656	136	2.44797801971435547	\N	new lead		15	\N	\N	3008
2017-11-27 15:53:16.864094+00	2017-11-27 15:53:43.206487+00	7335	completed				+17633178644		26	2017-11-27 15:53:16.86194	2017-11-27 15:53:43.192955	CAd804f264da1cad45c3ee95fa8b6c5a24	\N	158			0	inbound	+18558645656	136	2.85359692573547363	\N	new lead		15	\N	\N	3008
2017-11-27 15:54:31.862406+00	2017-11-27 15:54:54.971118+00	7336	completed				+17633178644		23	2017-11-27 15:54:31.860478	2017-11-27 15:54:54.961343	CA3424d8f4d8c00545718f2741a29d532e	\N	158			0	inbound	+18558645656	136	2.36579203605651855	\N	new lead		15	\N	\N	3008
2017-11-27 18:00:10.617116+00	2017-11-27 18:00:54.833849+00	7344	completed				+17633178644		44	2017-11-27 18:00:10.614593	2017-11-27 18:00:54.820507	CAcb6cd2b88329ae4bd9df708a29fbfd5f	\N	158			0	inbound	+18558645656	136	3.00237178802490234	\N	new lead		15	\N	\N	3008
2017-11-27 17:39:52.113765+00	2017-11-27 17:39:55.364916+00	7342	missed				+17633178644		3	2017-11-27 17:39:52.111159	2017-11-27 17:39:55.35088	CA499e863e5b5fa3440465f7d8841f2eb4	\N	\N			0	inbound	+18558645656	136	\N	\N	new lead		15	\N	\N	3008
2016-05-25 14:40:45.841597+00	2017-11-29 18:31:24.092914+00	196	completed	Unknown			+12076682741		292	2016-05-25 14:40:45.840652	2016-05-25 14:45:37.952788	CA6019582a26862259d52d5fc90f520b52	\N	17		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE86e33b85c60f65e076adb2eed33902a9	0	inbound	+18555915788	\N	7.08020997047424316	null	new lead		1	\N	\N	3010
2017-03-07 17:14:01.596274+00	2017-03-07 17:18:10.96427+00	3335	completed				+19174506716		249	2017-03-07 17:14:01.591073	2017-03-07 17:18:10.252952	CA118cd63004ded238e58c493139eb464a	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REa1cdf1aeb7c2357db201deb52c2d021b	0	inbound	+18557240606	49	3.40075302124023438	\N	new lead		1	\N	\N	3011
2017-03-07 17:18:19.326324+00	2017-03-07 17:22:24.845452+00	3336	completed				+19174506716		244	2017-03-07 17:18:19.32467	2017-03-07 17:22:23.338317	CA4c4244691a076eec0a1e5d57301c93d9	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE09c2b5c3f8dff8091f16cd90ca694870	0	inbound	+18557240606	49	3.43133902549743652	\N	new lead		1	\N	\N	3011
2017-12-07 00:57:04.596029+00	2017-12-07 00:57:04.650755+00	7670	missed	Teirra	Pittman	Teirrapittman@gmail.com	+17063803954		\N	2017-12-07 00:57:04.593979	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	3012
2017-12-05 20:19:53.280358+00	2017-12-05 20:19:53.328055+00	7604	missed	Alec	Carpenter	alec.carpenter@playlivenation.com	+13606270357		\N	2017-12-05 20:19:53.278871	\N		243bc1c1-c430-4ccb-b9d9-71662ebbb896	\N			0	outbound	+18558645656	\N	\N	{}	new lead		15	\N	\N	3015
2016-08-11 20:18:49.75166+00	2016-12-20 22:16:06.426494+00	1425	completed				+16103573735		7	2016-08-11 20:18:49.750052	2016-08-11 20:18:56.269808	CA1893663a0310ba90b633829efc8f9c0a	\N	12			0	inbound	+18557343030	\N	1.48068404197692871	null	new lead		3	\N	\N	3017
2016-09-01 20:14:07.581265+00	2016-12-09 17:07:45.331581+00	1847	completed				+16103573735		29	2016-09-01 20:14:07.579874	2016-09-01 20:14:37.043139	CA553513095ca260e2e86ea65666f807fc	\N	55			0	inbound	+18552467810	\N	5.88209009170532227	null	new lead		3	\N	\N	3017
2016-09-27 16:10:22.184974+00	2017-02-11 20:02:12.400333+00	2086	completed				+16103573735		17	2016-09-27 16:10:22.182729	2016-09-27 16:10:38.70002	CAaef2d5a4588be3e4f4e016f19f10c7a4	\N	\N			0	inbound	+18555597024	\N	5.26932692527770996	null	new lead		3	\N	\N	3017
2016-08-18 21:26:06.350461+00	2016-12-10 01:00:22.124025+00	1596	completed				+16103573735		17	2016-08-18 21:26:06.349351	2016-08-18 21:26:23.182023	CA4459cae5bf61c7def71930b4bc5bc09b	\N	56			0	inbound	+18555426998	\N	5.97922992706298828	null	new lead		3	\N	\N	3017
2016-09-02 13:41:19.720485+00	2016-12-09 17:10:17.413376+00	1854	completed				+15702363631		167	2016-09-02 13:41:19.718461	2016-09-02 13:44:06.44879	CA3d7e458ec25a9e1783bb9c6a6c087d58	\N	27			0	inbound	+18552716856	\N	4.8437039852142334	null	new lead		3	\N	\N	3020
2016-07-22 10:45:51.474837+00	2016-07-25 17:45:57.376837+00	918	completed	Paul	Harrison	peharrison5@yahoo.com	+15138785998		\N	2016-07-22 10:45:51.473625	\N		25d0200e-983d-4413-94ae-eb664b99711c	\N			0	outbound	+18556311490	\N	\N	{}	new lead		1	\N	\N	3024
2017-12-13 18:31:41.071168+00	2017-12-13 19:10:27.673679+00	7850	completed				+13038198191		2323	2017-12-13 18:31:41.069476	2017-12-13 19:10:24.531088	CA8c18ef2a4825e08fecc341b223bfb517	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE401116fc70b44ce264b096c6d1ee8c4d	0	inbound	+18558645656	136	2.92209386825561523	\N	new lead		15	\N	\N	3025
2017-10-10 16:58:36.435068+00	2017-10-10 16:59:39.70349+00	6645	completed				+18554310554		63	2017-10-10 16:58:36.432577	2017-10-10 16:59:39.036858	CA07deac9aa5dc476d9776c71dfeb445dd	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REfa8170243645a8268afc45c02724e2e3	0	inbound	+17704009016	132	13.6745250225067139	\N	new lead		13	\N	\N	3026
2017-03-18 22:12:14.69439+00	2017-11-29 18:38:53.212608+00	3498	completed				+19404355926		40	2017-03-18 22:12:14.692028	2017-03-18 22:12:54.859754	CA400f9083edd3c1a526672a7b08d5bca6	\N	105			0	inbound	+12146922088	\N	4.32245492935180664	\N	new lead		9	\N	\N	3027
2016-08-12 16:26:04.563976+00	2016-08-12 16:33:26.804646+00	1438	missed	Joseph Patrick 	Welling	j.casher@me.com	+17603730905		\N	2016-08-12 16:26:04.562613	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - autopay		1	\N	\N	3028
2016-08-04 22:26:07.718836+00	2017-11-29 18:31:37.368668+00	1217	missed				+17603730905		27	2016-08-04 22:26:07.716409	2016-08-04 22:26:34.706087	CA41ae02f7c0dc074ad20b721be6bbdc1d	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE603128970ffba7796908f08380c3282f	0	inbound	+18555472453	\N	\N	null	application submitted - autopay		1	\N	\N	3028
2016-08-05 14:49:34.192506+00	2017-01-27 21:12:23.812715+00	1272	completed				+17603730905		75	2016-08-05 14:49:34.190986	2016-08-05 14:50:49.252885		\N	\N			0	outbound	+18555343978	48	\N	null	application submitted - autopay		1	\N	\N	3028
2017-09-23 16:20:02.40311+00	2017-09-23 16:20:54.020012+00	6465	completed				+17062446842		51	2017-09-23 16:20:02.401415	2017-09-23 16:20:53.313958	CAc049d48367ef83da54816ed11f96c2f5	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REf82a83d875d8f895b784378306dd03b0	0	inbound	+17704009016	132	14.2182941436767578	\N	new lead		13	\N	\N	3029
2017-08-15 14:17:34.907325+00	2017-08-15 14:18:32.596267+00	6033	completed	Kristy	Thomason	Musqsteria@gmail.com	+17064991829		47	2017-08-15 14:17:34.90584	2017-08-15 14:18:32.595335	CA7be1a490e8ad27b4d00ccfa82df46512	0427608a-ae09-4db0-a1e8-374423ee28c3	152			1	outbound	+17704009016	\N	9.55034208297729492	{}	new lead		13	\N	\N	3031
2017-05-11 20:14:06.40598+00	2017-11-29 18:38:49.811168+00	5021	completed				+19723892828		435	2017-05-11 20:14:06.403712	2017-05-11 20:21:20.991514	CAc73c6ca85d5cbfcc7af70c1e8265e972	\N	\N			0	inbound	+12147122250	\N	5.22443890571594238	\N	new lead	firstcom music	9	\N	\N	3033
2016-08-04 19:12:10.855238+00	2017-11-29 18:31:37.368661+00	1212	completed	Steven	Marsh		+16618212410		52	2016-08-04 19:12:10.853333	2016-08-04 19:13:02.578351	CAb21ef49375800558d2ebf392237a68cf	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE92452e08215cf9ab44fcf8ba1cc50186	0	inbound	+18555472453	\N	19.6161971092224121	null	do not contact		1	\N	\N	3038
2016-08-12 21:55:19.052424+00	2017-01-27 21:12:23.813236+00	1468	completed	Steven	Marsh		+16618212410		120	2016-08-12 21:55:19.051386	2016-08-12 21:57:18.802443		\N	\N			0	outbound	+18555343978	48	\N	null	do not contact		1	\N	\N	3038
2016-08-17 16:24:21.132379+00	2017-01-27 21:12:23.813379+00	1555	completed	Steven	Marsh		+16618212410		80	2016-08-17 16:24:21.131262	2016-08-17 16:25:41.618431		\N	\N			0	outbound	+18555343978	48	\N	null	do not contact		1	\N	\N	3038
2016-08-08 13:33:15.734672+00	2017-01-27 21:12:23.81277+00	1314	completed				+16612642346		70	2016-08-08 13:33:15.732398	2016-08-08 13:34:26.061171		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	3039
2016-08-08 20:30:33.58983+00	2017-01-27 21:12:23.812888+00	1341	completed	Aaron	Hyatt		+16612642346		279	2016-08-08 20:30:33.588125	2016-08-08 20:35:12.940408		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	3039
2016-08-07 01:29:17.656185+00	2017-11-29 18:31:37.368733+00	1310	missed				+16612642346		21	2016-08-07 01:29:17.654651	2016-08-07 01:29:38.61285	CAdd932ec0da2765cf14c72c1fbbaf6588	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REa651e4a43d02180fba49ad94931585c7	0	inbound	+18555472453	\N	\N	null	general interest		1	\N	\N	3039
2017-12-23 02:20:05.998758+00	2017-12-23 02:20:06.056653+00	8076	missed	Roshara	Simmons	Simmonsroshara@yahoo.com	+16789332427		\N	2017-12-23 02:20:05.997141	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	3041
2016-08-02 14:58:33.569881+00	2017-11-29 18:31:37.368403+00	1114	completed	Angelina	Brody		+16618745569		58	2016-08-02 14:58:33.568036	2016-08-02 14:59:31.202264		\N	16			0	outbound	+18555472453	\N	\N	null	general interest		1	\N	\N	3045
2016-08-02 14:24:28.250812+00	2017-11-29 18:31:37.368396+00	1113	completed	Angelina	Brody		+16618745569		178	2016-08-02 14:24:28.248295	2016-08-02 14:27:25.866768	CA5de8507545e246274ff7b073491c7bd3	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE8bf7c6fe44eb1036ffbc467bcdb203ba	0	inbound	+18555472453	\N	10.128809928894043	null	general interest		1	\N	\N	3045
2017-11-17 20:53:07.183129+00	2017-11-17 20:53:50.70804+00	7117	completed				+18035462731		44	2017-11-17 20:53:07.180975	2017-11-17 20:53:50.689464	CAfa94d7f3f3f3f20701d8cce32b790bf3	\N	158			0	inbound	+18558645656	136	2.71089506149291992	\N	new lead		15	\N	\N	3046
2017-11-29 21:27:56.181353+00	2017-11-29 21:32:04.229199+00	7402	completed	Steve	Neu	steveneu@live.com	+18035462731		245	2017-11-29 21:27:56.179097	2017-11-29 21:32:04.226371	CAcaadb16da249d9d346420102e3e11dfa	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.29061102867126465	{}	new lead		15	\N	\N	3046
2017-12-12 22:02:30.207254+00	2017-12-12 22:19:01.883484+00	7829	completed				+18134427942		988	2017-12-12 22:02:30.205149	2017-12-12 22:18:58.590298	CA9e74b6a4df7526437e827e6e03d53bd4	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE6d2c061641e47fa1691b14e164aaa7e2	0	inbound	+18558645656	136	2.43086099624633789	\N	new lead		15	\N	\N	3047
2017-06-27 19:58:15.517903+00	2017-06-27 20:00:20.289413+00	5672	completed	REATTE	MILES		+16783683710		123	2017-06-27 19:58:15.515508	2017-06-27 20:00:18.164169	CAa5c4c1df4caa73759c283aaf03d57586	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE3989db5769de16d122ec2fd92e9e6f99	0	inbound	+17704009016	132	9.5259699821472168	\N	new lead		13	\N	\N	3048
2017-06-23 13:05:55.174278+00	2017-06-24 13:45:04.894047+00	5637	completed	Reatte	Miles	rlavernmiles@gmail.com	+16783683710		319	2017-06-23 13:05:55.172997	2017-06-23 13:11:26.367047	CAa1eedb4b75d2bc5b54c780a4d4975154	0427608a-ae09-4db0-a1e8-374423ee28c3	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE6133a624f617d5ca97f0cca0e882133d	1	outbound	+17704009016	\N	11.1455991268157959	{}	new lead		13	\N	\N	3048
2017-06-27 19:56:02.692938+00	2017-06-27 19:57:01.831934+00	5671	completed	REATTE	MILES	rlavernmiles@gmail.com	+16783683710		52	2017-06-27 19:56:02.690736	2017-06-27 19:57:01.307642	CA99c70397d727151d6f34eb61a0163b25	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REc4e7b0ad11fa02421311b9aa9002ff9d	1	outbound	+17704009016	\N	7.27380204200744629	{}	new lead		13	\N	\N	3048
2017-07-01 15:35:39.974394+00	2017-07-01 15:37:57.010324+00	5705	completed	REATTE	MILES		+16783683710		136	2017-07-01 15:35:39.97297	2017-07-01 15:37:56.335	CAd1624d4c183b740b2149dc099e54f9fe	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REfacf5d0fbaa8c16e96bfc29da52ec4b9	0	inbound	+17704009016	132	15.516685962677002	\N	new lead		13	\N	\N	3048
2017-07-01 15:34:03.336568+00	2017-07-01 15:41:12.677517+00	5704	completed	REATTE	MILES		+16783683710		429	2017-07-01 15:34:03.334741	2017-07-01 15:41:12.675101	CA50feff8f667efad5071b9bd355a43ec5	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE6d1687b2af15d82a6e74595c6d529434	0	inbound	+17704009016	132	395.05800986289978	\N	new lead		13	\N	\N	3048
2017-05-22 16:23:43.783096+00	2017-11-29 18:38:49.812586+00	5280	completed				+16129918151		48	2017-05-22 16:23:43.780461	2017-05-22 16:24:32.181187	CA8baba304776bfdab653c4bf77f96b2f7	\N	125			0	inbound	+12147122250	\N	1.12212681770324707	\N	new lead	wireless caller	9	\N	\N	4123
2017-03-17 23:28:55.518455+00	2017-11-29 18:38:53.21258+00	3488	missed				+18304696825		7	2017-03-17 23:28:55.51653	2017-03-17 23:29:02.321635	CA038c8d5b13bdc7aeb7f784a218d8a4c3	\N	\N			0	inbound	+12146922088	\N	\N	\N	new lead		9	\N	\N	2334
2017-08-09 13:37:38.170236+00	2017-08-09 13:38:59.460559+00	5972	completed	REATTE	MILES		+16783683710		80	2017-08-09 13:37:38.168053	2017-08-09 13:38:58.311551	CAc81a702b453b900ff976f056dac6cc3a	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REb9f2c3043558580aa7ecc43b4ebee137	0	inbound	+17704009016	132	26.8337879180908203	\N	new lead		13	\N	\N	3048
2017-08-07 20:40:32.732867+00	2017-11-29 18:29:51.355498+00	5956	completed				+19287831100		29	2017-08-07 20:40:32.730443	2017-08-07 20:41:01.99894	CA7cff801617b767ee9c197f09aa10c16e	\N	143		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE1d3bff4576a887f055831c3788d45b41	0	inbound	+18443015106	\N	3.03507685661315918	\N	new lead		1	\N	\N	3053
2016-11-15 02:10:22.938163+00	2016-11-15 02:10:22.967093+00	2904	missed	Jose	moreno	rayados.jlm@gmail.com	+12147272663		\N	2016-11-15 02:10:22.937193	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	3054
2017-12-11 21:24:39.630929+00	2017-12-11 21:37:44.076193+00	7794	completed				+12392236127		781	2017-12-11 21:24:39.629082	2017-12-11 21:37:40.746885	CA0c40685988026658abcf392a6ef9a316	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE75f0b7162dd6774921e06993fce47908	0	inbound	+18558645656	136	3.74554800987243652	\N	new lead		15	\N	\N	3055
2017-12-13 20:57:12.710171+00	2017-12-13 21:16:26.450154+00	7855	completed	Brandie	Littlejohn	brandielittlejohn@ymail.com	+14704219410		240	2017-12-13 20:57:12.708784	2017-12-13 21:01:29.332313	CA23dca6a12116ae5d616226ef76c5502c	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REf08fdbcd92d8908120fc38a02ec26ee7	1	outbound	+17704009016	\N	16.2366759777069092	{}	select status		13	\N	\N	3056
2016-08-17 17:00:12.300613+00	2016-08-17 17:00:23.535917+00	1557	missed	A	SECURITY     		+17732315081		11	2016-08-17 17:00:12.298657	2016-08-17 17:00:23.533756	CA8eb7a6e84e8d84ffd02c45d593479db8	\N	\N			0	inbound	+17735469660	16	\N	null	new lead		1	\N	\N	3058
2017-04-05 22:29:47.933669+00	2017-11-29 18:38:53.213345+00	3695	completed				+12104880142		286	2017-04-05 22:29:47.931359	2017-04-05 22:34:33.475953	CA37ff3c096a64befd2fe38607ff4541fe	\N	99			0	inbound	+12146922088	\N	7.23150086402893066	\N	new lead	rios bosco	9	\N	\N	3064
2016-05-26 12:38:44.731644+00	2017-11-29 18:31:10.260422+00	242	completed	Unknown			+15132034177		13	2016-05-26 12:38:44.729112	2016-05-26 12:38:57.766081	CA2f3ce27cdccebd1655bde110e4898d48	\N	\N			0	inbound	+18556311490	\N	\N	null	new lead		1	\N	\N	3067
2016-05-26 13:10:14.732701+00	2017-11-29 18:31:10.260438+00	244	completed	Unknown			+15132034177		296	2016-05-26 13:10:14.731332	2016-05-26 13:15:10.355591	CA101971f4a8add5665b51e11df3ea2542	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE368f8ac8b121ef4dd1376333db645aac	0	inbound	+18556311490	\N	6.13731908798217773	null	new lead		1	\N	\N	3067
2016-05-24 13:46:34.082184+00	2016-05-24 13:48:26.754748+00	187	completed	RAYMOND	WRIGHT	RAYCW@TWC.COM	+15132034177		83	2016-05-24 13:46:34.080669	2016-05-24 13:48:26.752885	CA4006de8e24452515367b629ee121fa60	25d0200e-983d-4413-94ae-eb664b99711c	17		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE28bd63199d4d95e87d59caf11e0d6326	1	outbound	+18556311490	\N	25.5196480751037598	{}	new lead		1	\N	\N	3067
2016-05-25 18:09:18.493521+00	2016-05-25 18:10:43.134915+00	221	completed				+15132034177		81	2016-05-25 18:09:18.491847	2016-05-25 18:10:43.133761	CA81a44142f1bc60b78fa4da0197c70069	cd89e433-4bde-4f86-9b22-8f52c2413fcd	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REa948c71b22c92a0ca127594356088d08	1	outbound	+18556311490	\N	1.28407096862792969	{}	new lead		1	\N	\N	3067
2016-05-24 13:23:10.699966+00	2017-11-29 18:31:10.260362+00	186	completed	Unknown			+15132034177		61	2016-05-24 13:23:10.697359	2016-05-24 13:24:11.960825	CA67f4d67102ee5cd3cb6ca0e9c788fec5	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE91af6beb89db170de3382ee4738a08b6	0	inbound	+18556311490	\N	14.9179689884185791	null	new lead		1	\N	\N	3067
2016-05-25 22:21:00.200858+00	2017-11-29 18:31:10.260407+00	237	completed	Unknown			+15132034177		41	2016-05-25 22:21:00.199631	2016-05-25 22:21:41.558832	CA4fa7f2c7cf2c1ce9cf694bab5fb59a40	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REb3d31fb1ca07e060110552443e88fc54	0	inbound	+18556311490	\N	\N	null	new lead		1	\N	\N	3067
2017-12-08 20:36:01.960787+00	2017-12-08 20:56:53.038714+00	7729	completed				+19565999043		1248	2017-12-08 20:36:01.95889	2017-12-08 20:56:50.089367	CA29381e827f5cc6759b0e6adb8bf0e176	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE3df7d182cf320190272298fdccc12397	0	inbound	+18558645656	136	4.00309014320373535	\N	new lead		15	\N	\N	3071
2016-10-19 21:46:30.137831+00	2017-11-29 18:31:37.369168+00	2321	missed				+18185162707		57	2016-10-19 21:46:30.136261	2016-10-19 21:47:27.463685	CAedcdbce9b414f374c7cc8f52cf2b04c7	\N	\N			0	inbound	+18555472453	\N	32.1844191551208496	null	new lead		1	\N	\N	3073
2016-10-19 21:51:45.494416+00	2017-11-29 18:31:37.369175+00	2322	missed				+18185162707		47	2016-10-19 21:51:45.493308	2016-10-19 21:52:32.094877	CA35ebe7b8b2cd5f17bc2defc998d983f2	\N	\N			0	inbound	+18555472453	\N	32.16336989402771	null	new lead		1	\N	\N	3073
2016-10-20 19:48:53.686904+00	2017-11-29 18:31:37.369183+00	2328	missed				+18185162707		57	2016-10-20 19:48:53.685494	2016-10-20 19:49:50.909235	CA3ef8bd6ab2bfb7e1864b3d3c1ff38357	\N	\N			0	inbound	+18555472453	\N	31.8659629821777344	null	new lead		1	\N	\N	3073
2016-10-20 19:54:15.04523+00	2017-11-29 18:31:37.36919+00	2329	missed				+18185162707		55	2016-10-20 19:54:15.043735	2016-10-20 19:55:10.10443	CA95b2fb2cc545195e6be1751e1cfc3d43	\N	\N			0	inbound	+18555472453	\N	31.6959729194641113	null	new lead		1	\N	\N	3073
2016-10-20 21:43:18.004185+00	2017-11-29 18:31:37.369197+00	2332	missed				+18185162707		42	2016-10-20 21:43:18.001915	2016-10-20 21:43:59.790309	CA7843b34da9b27175af722586d1a136ab	\N	\N			0	inbound	+18555472453	\N	32.1176280975341797	null	new lead		1	\N	\N	3073
2016-10-21 20:16:39.274193+00	2017-11-29 18:31:37.369204+00	2334	missed				+18185162707		47	2016-10-21 20:16:39.272306	2016-10-21 20:17:26.48547	CA8724d609b3522ba364d336d267369548	\N	\N			0	inbound	+18555472453	\N	32.0647909641265869	null	new lead		1	\N	\N	3073
2017-05-08 18:57:01.148103+00	2017-11-29 18:38:53.215384+00	4864	completed				+16312651010		85	2017-05-08 18:57:01.145842	2017-05-08 18:58:26.15645	CAf79799ae0dde3c6d8b179c9a08281134	\N	\N			0	inbound	+12146922088	\N	0.832469940185546875	\N	new lead	credit  solutio	9	\N	\N	3074
2017-09-19 16:09:24.98312+00	2017-09-19 16:15:31.270428+00	6400	completed				+14042462080		366	2017-09-19 16:09:24.980993	2017-09-19 16:15:31.239194	CAd0dd2ec23794edc1e18d750e50a1ba85	\N	150			0	inbound	+17707665732	133	16.1568050384521484	\N	new lead		13	\N	\N	3075
2017-08-16 04:10:18.356325+00	2017-08-16 04:10:18.405614+00	6045	missed	Detra	Barnum	detrabarnum257@yahoo.com	+17067137394		\N	2017-08-16 04:10:18.354922	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	3082
2017-08-18 13:06:58.059963+00	2017-08-18 13:10:52.595274+00	6088	completed	Detra	Barnum		+17067137394		235	2017-08-18 13:06:58.057667	2017-08-18 13:10:52.583959	CA68101ea72c00701e752c6cd5da6c9b07	\N	152			0	inbound	+17707665732	133	18.7621309757232666	\N	new lead		13	\N	\N	3082
2017-08-18 12:34:44.69814+00	2017-08-18 12:35:31.579741+00	6087	missed	Detra	Barnum		+17067137394		47	2017-08-18 12:34:44.696088	2017-08-18 12:35:31.571632	CA60c19872628d7346ed09dcdea6d25a65	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE08c13e79be369ce45558fdde48925b99	0	inbound	+17707665732	133	\N	\N	new lead		13	\N	\N	3082
2017-08-19 14:56:26.380362+00	2017-08-19 14:57:36.84643+00	6102	completed	Detra	Barnum		+17067137394		70	2017-08-19 14:56:26.37636	2017-08-19 14:57:36.834608	CA0ff3cfad4570738480a2367c503819ec	\N	152			0	inbound	+17707665732	133	9.75909686088562012	\N	new lead		13	\N	\N	3082
2017-08-21 15:33:07.292112+00	2017-08-21 15:34:57.508448+00	6125	completed	Detra	Barnum		+17067137394		110	2017-08-21 15:33:07.290384	2017-08-21 15:34:57.498391	CAf5bd87718506eb11d7a0fa4f7240c71c	\N	150			0	inbound	+17707665732	133	17.9432439804077148	\N	new lead		13	\N	\N	3082
2016-09-06 15:34:36.781342+00	2016-12-10 01:05:14.588955+00	1893	completed				+12678180148		75	2016-09-06 15:34:36.780052	2016-09-06 15:35:51.796364	CAb77cf96d06e906159f52fdfaefaa348d	\N	23			0	inbound	+18556216819	\N	3.65118193626403809	null	new lead		3	\N	\N	3084
2016-09-06 15:14:08.18335+00	2016-12-10 01:05:18.400909+00	1890	completed				+12678180148		79	2016-09-06 15:14:08.181511	2016-09-06 15:15:27.243232	CAb3d10471965269c2849823528890d6a9	\N	24			0	inbound	+18557088731	\N	2.61878514289855957	null	new lead		3	\N	\N	3084
2016-09-06 15:15:35.384995+00	2016-12-10 01:05:18.400916+00	1891	completed				+12678180148		174	2016-09-06 15:15:35.383926	2016-09-06 15:18:29.199159	CA133e3d312c274aadc56f20ded8ba8b8d	\N	24			0	inbound	+18557088731	\N	2.16752719879150391	null	new lead		3	\N	\N	3084
2016-09-02 18:45:48.073691+00	2016-12-10 01:05:18.400889+00	1865	completed				+12678180148		193	2016-09-02 18:45:48.072072	2016-09-02 18:49:01.33311	CA23be60065c59b94c95d62e936287a71d	\N	24			0	inbound	+18557088731	\N	2.69463014602661133	null	new lead		3	\N	\N	3084
2016-09-02 19:13:08.055099+00	2016-12-10 01:05:18.400896+00	1866	completed				+12678180148		192	2016-09-02 19:13:08.053816	2016-09-02 19:16:20.451968	CA6db355e2005a30ae8bfc4b3c3a71565e	\N	24			0	inbound	+18557088731	\N	2.04339599609375	null	new lead		3	\N	\N	3084
2016-10-10 22:24:00.515471+00	2016-12-10 01:00:18.568504+00	2257	completed				+16192673996		338	2016-10-10 22:24:00.513872	2016-10-10 22:29:38.804882	CAe5b2e7825657ede49afb32b88b948cb6	\N	56			0	inbound	+18556775511	\N	6.61580610275268555	null	new lead		3	\N	\N	3085
2016-08-08 15:03:23.870068+00	2016-08-09 20:22:51.794869+00	1325	completed				+15707356394		49	2016-08-08 15:03:23.86899	2016-08-08 15:04:12.971092		\N	15			0	outbound	+18555343978	48	\N	null	do not contact		1	\N	\N	3087
2016-08-08 15:03:50.08952+00	2017-01-27 21:12:23.812819+00	1326	missed				+15707356394		15	2016-08-08 15:03:50.088472	2016-08-08 15:04:05.410416		\N	\N			0	outbound	+18555343978	48	\N	null	do not contact		1	\N	\N	3087
2016-08-09 20:20:50.167506+00	2017-01-27 21:12:23.813+00	1369	completed				+15707356394		60	2016-08-09 20:20:50.166522	2016-08-09 20:21:50.079016		\N	\N			0	outbound	+18555343978	48	\N	null	do not contact		1	\N	\N	3087
2016-07-18 16:36:37.63592+00	2017-11-29 18:31:56.600132+00	889	missed				+15707356394		5	2016-07-18 16:36:37.634247	2016-07-18 16:36:43.011988	CAa1661299b78cad5ec3880bee72dd418d	\N	\N			0	inbound	+18556311397	\N	\N	null	do not contact		1	\N	\N	3087
2016-07-28 16:06:38.084198+00	2017-11-29 18:31:18.808789+00	1000	completed				+14068714663		38	2016-07-28 16:06:38.083211	2016-07-28 16:07:16.375862		\N	\N			0	outbound	+18556311439	\N	\N	null	general interest		1	\N	\N	3090
2016-07-28 16:39:03.607088+00	2017-11-29 18:31:18.808797+00	1001	completed	Jeff	Statleton		+14068714663		52	2016-07-28 16:39:03.604843	2016-07-28 16:39:55.142086	CA32c05659330eafdae87bc0739e275a46	\N	\N			0	inbound	+18556311439	\N	24.1299188137054443	null	general interest		1	\N	\N	3090
2016-07-28 17:44:05.254184+00	2016-07-28 17:49:20.962076+00	1010	completed	Jeff	Stapleton		+14068714663		203	2016-07-28 17:44:05.252342	2016-07-28 17:47:33.949659	CAf52288adcff3e5decb061878d58e8de9	bacb2c6f-2833-49e2-90e4-7cfcf770bfc6	16			1	outbound	+18556311439	\N	2.29875421524047852	{}	general interest		1	\N	\N	3090
2016-07-28 15:52:26.110911+00	2017-11-29 18:31:18.808782+00	997	completed	Jeff	Statleton		+14068714663		558	2016-07-28 15:52:26.109477	2016-07-28 16:01:43.849585	CAeedde223be70bfa6859d03dd8bc27b28	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REaf93c8f715b1c477791593baefa03d31	0	inbound	+18556311439	\N	8.71091580390930176	null	general interest		1	\N	\N	3090
2016-07-28 16:40:19.60724+00	2017-11-29 18:31:18.808804+00	1002	completed	Jeff	Statleton		+14068714663		302	2016-07-28 16:40:19.605375	2016-07-28 16:45:21.846678		\N	\N			0	outbound	+18556311439	\N	\N	null	general interest		1	\N	\N	3090
2016-07-28 17:38:42.144589+00	2017-11-29 18:31:18.808811+00	1007	completed	Jeff	Stapleton		+14068714663		45	2016-07-28 17:38:42.142755	2016-07-28 17:39:27.398253	CA27594a49bd0e6ce3bf35e91f6e1dfb62	\N	\N			0	inbound	+18556311439	\N	24.5579969882965088	null	general interest		1	\N	\N	3090
2016-07-28 17:40:28.347532+00	2017-11-29 18:31:18.808818+00	1008	completed	Jeff	Stapleton		+14068714663		65	2016-07-28 17:40:28.346407	2016-07-28 17:41:33.341872	CAfef0a91c0756a0413d7dd0c2c2f049b5	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE2f29a7a6c37d3c6fef2df01d4ceaad85	0	inbound	+18556311439	\N	24.1635019779205322	null	general interest		1	\N	\N	3090
2016-11-23 19:28:00.523633+00	2016-12-02 15:58:03.14951+00	2970	missed				+17144824905		46	2016-11-23 19:28:00.521752	2016-11-23 19:28:46.339515	CA4f4804b2014c588b4b37ee471b9d39a9	\N	\N			0	inbound	+18036184545	119	26.5702629089355469	null	general interest		6	\N	\N	3091
2017-05-03 15:49:07.512128+00	2017-11-29 18:38:49.809199+00	4627	completed				+12145386567		76	2017-05-03 15:49:07.509686	2017-05-03 15:50:23.259353	CA64f28795738479b26b4fe81044699041	\N	124			0	inbound	+12147122250	\N	1.36809492111206055	\N	new lead	mattingly jason	9	\N	\N	3095
2017-05-03 15:50:41.773787+00	2017-11-29 18:38:49.809207+00	4628	completed				+12145386567		54	2017-05-03 15:50:41.77172	2017-05-03 15:51:35.390199	CAae8b00d7b5eb859b9b20debe455feca9	\N	125			0	inbound	+12147122250	\N	1.06325292587280273	\N	new lead	mattingly jason	9	\N	\N	3095
2017-05-03 15:51:31.818207+00	2017-11-29 18:38:49.809219+00	4629	completed				+12145386567		101	2017-05-03 15:51:31.816607	2017-05-03 15:53:13.227342	CA6252c60c9e76af85f06ddea0056a0271	\N	107			0	inbound	+12147122250	\N	8.2134859561920166	\N	new lead	mattingly jason	9	\N	\N	3095
2017-12-09 19:29:59.181339+00	2017-12-09 19:31:39.342835+00	7750	completed				+16823195209		99	2017-12-09 19:29:59.179715	2017-12-09 19:31:38.587257	CA413cc87b15901e4b34df38e55de6d1ad	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE06fcffb75dedb02b750f177c1bdec0fc	0	inbound	+18177569010	124	9.12589192390441895	\N	new lead	boyle lindsay	12	\N	\N	3096
2017-11-25 21:56:53.400946+00	2017-11-25 21:58:30.530865+00	7328	completed				+16823195209		96	2017-11-25 21:56:53.398993	2017-11-25 21:58:29.331482	CA5a7a40f086c8bd9e2a145edf5531a920	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REeec9590ac5dacfa2790a80805295e186	0	inbound	+18177569010	124	11.3641769886016846	\N	new lead	boyle lindsay	12	\N	\N	3096
2017-12-08 19:37:26.660058+00	2017-12-08 19:46:34.72091+00	7721	completed	Jimmie	Johnson	jimmieedenise@gmail.com	+16782831087		180	2017-12-08 19:37:26.658709	2017-12-08 19:46:34.084545	CAba63a531dac35e80072cec3c7074500e	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE5f1ec67d54c1c777442aa6672c01ebc3	3	outbound	+17704009016	\N	363.799242973327637	{}	new lead		13	\N	\N	3097
2017-08-25 14:34:59.615857+00	2017-08-25 14:36:24.582155+00	6158	completed	Paige	Lafferty	misspaigelafferty@gmail.com	+17068093212		75	2017-08-25 14:34:59.614625	2017-08-25 14:36:24.552589	CAd565560a9a2d9a0d214968114543145f	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE3cf05eea5749e548120a1a4edb7cb0a3	1	outbound	+17704009016	\N	13.6361320018768311	{}	new lead		13	\N	\N	3099
2017-05-29 15:57:03.047175+00	2017-08-17 14:35:21.04537+00	5481	completed				+14302078447		534	2017-05-29 15:57:03.044232	2017-05-29 16:05:57.417542	CA3c4634c01376c8aa4101b6beb317d2bf	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE85ce197878e6ca0311bc5acae70e9c01	0	inbound	+18177569010	124	353.218868017196655	\N	new lead	wireless caller	12	\N	\N	3104
2016-10-06 13:59:50.357609+00	2016-12-10 01:05:18.401082+00	2211	completed				+14849411274		156	2016-10-06 13:59:50.354425	2016-10-06 14:02:26.507832	CAece5263b701b142202a6972db4c798ad	\N	24			0	inbound	+18557088731	\N	2.64463114738464355	null	new lead		3	\N	\N	3114
2016-10-03 19:01:58.635849+00	2016-12-10 01:05:18.401041+00	2129	completed				+14849411274		231	2016-10-03 19:01:58.634151	2016-10-03 19:05:49.39347	CAa51ecca11650f75014f3468b39b338e6	\N	24			0	inbound	+18557088731	\N	2.39725089073181152	null	new lead		3	\N	\N	3114
2016-09-07 18:23:48.505658+00	2016-12-10 01:04:42.413741+00	1935	missed				+19094193819		0	2016-09-07 18:23:48.504434	2016-09-07 18:23:48.724624	CA7d9225f45bba35e7a6bc054a02859476	\N	\N			0	inbound	+18552187903	\N	\N	null	new lead		3	\N	\N	3115
2016-09-07 18:23:49.184121+00	2016-12-10 01:04:42.413748+00	1936	missed				+19094193819		0	2016-09-07 18:23:49.183225	2016-09-07 18:23:49.379129	CA21a89d2c20557a21af23e259cca9501c	\N	\N			0	inbound	+18552187903	\N	\N	null	new lead		3	\N	\N	3115
2016-11-27 17:27:43.423109+00	2016-11-27 17:27:43.449449+00	2984	missed	Nicholas 	Duchinsky 	aduchinsky15@yahoo.com	+16364487989		\N	2016-11-27 17:27:43.421977	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	3117
2016-12-03 18:15:55.43133+00	2016-12-05 13:18:50.883587+00	3036	missed	Darl	Elsea	dgelsea@sbcglobal.net	+13146160572		\N	2016-12-03 18:15:55.429938	\N		25d0200e-983d-4413-94ae-eb664b99711c	\N			0	outbound	+18556311490	\N	\N	{}	application submitted - autopay		1	\N	\N	3120
2017-10-03 15:49:13.980683+00	2017-10-03 15:50:43.701209+00	6564	completed	jazmine	murry	murry_jazz@yahoo.com	+14702239470		74	2017-10-03 15:49:13.97899	2017-10-03 15:50:43.669663	CAca902a44a3fd243610cfe7ba92f81b7e	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REf3a14a1cf4b23b3792feaf663a166826	1	outbound	+17704009016	\N	14.780311107635498	{}	new lead		13	\N	\N	3121
2017-10-03 17:33:06.706371+00	2017-10-03 17:38:48.085236+00	6566	completed	jazmine	murry		+14702239470		340	2017-10-03 17:33:06.704534	2017-10-03 17:38:46.825631	CAea584f95431485e3c08556a4bb565027	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE74765c1fe4889f6cb2c594c852d91799	0	inbound	+17704009016	132	11.523317813873291	\N	new lead		13	\N	\N	3121
2017-10-03 20:11:45.664684+00	2017-10-03 20:20:59.177754+00	6572	completed	jazmine	murry		+14702239470		550	2017-10-03 20:11:45.661849	2017-10-03 20:20:55.880815	CAaeecbffdec4e3e9f9e32f16673206659	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE7e568775eec0e747306b7558d45b526e	0	inbound	+17704009016	132	19.2861149311065674	\N	new lead		13	\N	\N	3121
2017-10-04 18:17:27.697286+00	2017-10-04 18:18:25.875859+00	6578	completed	jazmine	murry		+14702239470		57	2017-10-04 18:17:27.695342	2017-10-04 18:18:25.138711	CAb0e5b7e3c5786b2c9b7a80a05486b218	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REabdc9fbf6972282509ba6129cca43da3	0	inbound	+17704009016	132	11.145927906036377	\N	new lead		13	\N	\N	3121
2017-10-07 14:30:22.695981+00	2017-10-07 14:31:03.965711+00	6614	completed	jazmine	murry		+14702239470		40	2017-10-07 14:30:22.693411	2017-10-07 14:31:03.111833	CAaa5a1e1a62b0ec2f6b87bfe2bfd65ed1	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE2da672d9bc1062d3100b04113e621a82	0	inbound	+17704009016	132	18.2704029083251953	\N	new lead		13	\N	\N	3121
2017-04-19 21:07:28.312846+00	2017-11-29 18:38:49.805782+00	4103	completed				+12147090101		69	2017-04-19 21:07:28.311233	2017-04-19 21:08:37.762537	CA261a55aaaeeb2c1be2cd365a0b50f2c3	\N	\N			0	inbound	+12147122250	\N	7.3855140209197998	\N	new lead	carlisle telequ	9	\N	\N	3122
2017-04-19 21:19:08.56441+00	2017-11-29 18:38:49.805796+00	4105	completed				+12147090101		144	2017-04-19 21:19:08.561724	2017-04-19 21:21:33.020636	CA18223fa9ad3b9b1abfe3148f2fd4c1d5	\N	\N			0	inbound	+12147122250	\N	3.71008801460266113	\N	new lead	carlisle telequ	9	\N	\N	3122
2017-05-26 23:41:56.902245+00	2017-11-29 18:38:49.813833+00	5462	completed				+12146621680		71	2017-05-26 23:41:56.899717	2017-05-26 23:43:07.563052	CAb3ac0777648825ef780ee75a7caa5ead	\N	107			0	inbound	+12147122250	\N	16.8039851188659668	\N	new lead	lipscomb dan	9	\N	\N	3123
2016-10-14 16:22:14.281552+00	2016-12-09 17:10:17.413635+00	2295	completed				+19083107230		382	2016-10-14 16:22:14.278354	2016-10-14 16:28:36.544238	CA832b78cf420ce4ab3e224af21c9d3fc8	\N	27			0	inbound	+18552716856	\N	5.23388099670410156	null	new lead		3	\N	\N	3124
2017-09-15 20:01:43.254398+00	2017-09-15 20:04:51.453659+00	6370	completed	Canita	Kelley	jaedilia31@gmail.com	+16788303493		171	2017-09-15 20:01:43.252791	2017-09-15 20:04:51.428437	CA68de2061e9218746541ad71df9a72878	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE1ea5eac6bccdc47b2f3d0a1749897b31	1	outbound	+17704009016	\N	11.9117081165313721	{}	new lead		13	\N	\N	3125
2016-10-11 23:31:00.674413+00	2016-10-11 23:31:00.707263+00	2270	missed	Deborah	Merritt	nealmerritt33@gmail.com	+16614505222		\N	2016-10-11 23:31:00.672676	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	new lead		1	\N	\N	3128
2016-11-12 00:07:56.16823+00	2017-11-29 18:31:37.369287+00	2872	missed	Deborah	Merritt		+16614505222		19	2016-11-12 00:07:56.166539	2016-11-12 00:08:14.850134	CAe70516fdcff3fc8f31c755338b50ff62	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE8842ffbb548ce716d270f1527db81b8e	0	inbound	+18555472453	\N	\N	null	new lead		1	\N	\N	3128
2016-11-14 23:27:04.08804+00	2017-11-29 18:31:37.369304+00	2901	missed	Deborah	Merritt		+16614505222		19	2016-11-14 23:27:04.086138	2016-11-14 23:27:23.327554	CAb2c048fb35176e85cfa848014c444959	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE404c96814662243f6522300f733cba0f	0	inbound	+18555472453	\N	\N	null	new lead		1	\N	\N	3128
2017-04-06 19:20:00.309982+00	2017-11-29 18:38:53.21336+00	3707	completed				+19725334319		265	2017-04-06 19:20:00.307182	2017-04-06 19:24:25.7257	CA6b4c048359d86e75bb3a8d7dbb969ee1	\N	\N			0	inbound	+12146922088	\N	6.2685089111328125	\N	new lead	de la torre raf	9	\N	\N	3132
2017-05-22 20:23:52.308911+00	2017-11-29 18:38:49.812714+00	5303	completed				+14697066520		96	2017-05-22 20:23:52.307421	2017-05-22 20:25:28.325518	CAdffb0082e5e8fc1ea8b4f96cc28c23ad	\N	127			0	inbound	+12147122250	\N	1.13549399375915527	\N	new lead	dallas  tx	9	\N	\N	3133
2017-05-25 17:08:13.206165+00	2017-11-29 18:38:49.813409+00	5395	completed				+14697066520		60	2017-05-25 17:08:13.204522	2017-05-25 17:09:12.847925	CA7a041837c8ade4350b1ea1ade7e737a0	\N	125			0	inbound	+12147122250	\N	2.1758420467376709	\N	new lead	dallas  tx	9	\N	\N	3133
2017-05-25 17:09:24.356508+00	2017-11-29 18:38:49.813416+00	5396	completed				+14697066520		96	2017-05-25 17:09:24.355253	2017-05-25 17:11:00.253988	CA694ad2cbbcc9d69752f6fb97175dfcd8	\N	127			0	inbound	+12147122250	\N	5.17669296264648438	\N	new lead	dallas  tx	9	\N	\N	3133
2017-05-26 21:20:46.973805+00	2017-11-29 18:38:49.813782+00	5455	completed				+14697066520		79	2017-05-26 21:20:46.97075	2017-05-26 21:22:05.841886	CA62ff92bd345e91a6dcbca1f9c7f970a9	\N	127			0	inbound	+12147122250	\N	1.0512239933013916	\N	new lead	dallas  tx	9	\N	\N	3133
2017-09-14 13:09:56.982867+00	2017-09-14 13:32:29.708274+00	6347	missed				+18172697439		69	2017-09-14 13:09:56.980586	2017-09-14 13:11:06.002318	CAdd4de37869bf34c06364f219ec3a9dd5	\N	\N			0	inbound	+18177569010	124	\N	\N	new lead	euless  tx	12	\N	\N	3134
2017-08-15 18:44:46.645999+00	2017-08-17 14:35:21.045859+00	6037	completed				+18172697439		134	2017-08-15 18:44:46.643469	2017-08-15 18:47:00.281457	CA2f3865f376ea39ff169b6be0d8180e57	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REe69d3dcb22a89eb34576505e1e30a650	0	inbound	+18177569010	124	8.95621013641357422	\N	new lead	euless  tx	12	\N	\N	3134
2017-10-09 21:40:06.074645+00	2017-10-09 21:40:50.329205+00	6637	completed				+18172697439		43	2017-10-09 21:40:06.072678	2017-10-09 21:40:49.217773	CAd2a3670e9c54d7e8d3ce8feb3225607f	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REe4efa7210b9d5ea5b6462a26868b3b51	0	inbound	+18177569010	124	8.71143102645874023	\N	new lead	euless  tx	12	\N	\N	3134
2017-12-01 22:22:34.036609+00	2017-12-01 22:49:01.853742+00	7457	completed				+18173491766		1584	2017-12-01 22:22:34.034621	2017-12-01 22:48:58.481285	CAbd80f06bbddf523d5175493cc2db0674	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE46bafff03b8e84b1ff0c92eb76ac02fa	0	inbound	+18558645656	136	2.29253888130187988	\N	new lead		15	\N	\N	3136
2016-09-08 16:49:11.15461+00	2016-12-10 00:57:48.461733+00	1963	completed				+18056541060		68	2016-09-08 16:49:11.153204	2016-09-08 16:50:19.505921	CA7c2af124bf0f46c2ae63c0b6ab676aed	\N	30			0	inbound	+18559652184	\N	1.93307209014892578	null	new lead		3	\N	\N	3137
2016-10-10 18:34:09.477417+00	2016-12-10 00:57:48.461803+00	2254	completed				+18057600305		410	2016-10-10 18:34:09.475656	2016-10-10 18:40:59.257703	CAe556eec49056ed708ba1104240a828d8	\N	30			0	inbound	+18559652184	\N	1.97036409378051758	null	new lead		3	\N	\N	3138
2016-07-06 17:05:39.8607+00	2016-12-10 01:05:18.400593+00	774	completed				+16104273810		477	2016-07-06 17:05:39.859164	2016-07-06 17:13:36.570672	CA56ba7499a3f0e81e53e3c31834dfabb9	\N	24			0	inbound	+18557088731	\N	1.72447896003723145	null	new lead		3	\N	\N	3139
2017-05-11 00:50:22.854663+00	2017-11-29 18:38:49.811066+00	4995	completed				+14693281930		86	2017-05-11 00:50:22.85208	2017-05-11 00:51:48.487194	CA10f235a5e9e921763a3a12f9885bca21	\N	127			0	inbound	+12147122250	\N	1.14793586730957031	\N	new lead	rockhill myrand	9	\N	\N	3143
2016-07-25 13:52:54.275295+00	2017-11-29 18:31:10.261459+00	929	missed				+15136283840		19	2016-07-25 13:52:54.273403	2016-07-25 13:53:12.898682	CAdce981e611f5b0913ff6e67e13d71072	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REdb34a31b7f772a51e5135b8d63e3c029	0	inbound	+18556311490	\N	7.76040983200073242	null	general interest		1	\N	\N	3145
2016-08-08 19:38:11.353598+00	2017-01-27 21:12:23.812867+00	1337	completed	Mr. Jackson			+15136283840		1074	2016-08-08 19:38:11.352665	2016-08-08 19:56:05.630406		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	3145
2017-04-27 20:18:19.238428+00	2017-11-29 18:38:53.214674+00	4392	completed				+12149607724		208	2017-04-27 20:18:19.235792	2017-04-27 20:21:46.844909	CA58ebf5fc5182fe4cf2ff1f7c72b7f29f	\N	\N			0	inbound	+12146922088	\N	4.54769396781921387	\N	new lead	arana mari	9	\N	\N	3147
2017-04-20 17:33:35.845274+00	2017-11-29 18:38:53.214312+00	4136	missed				+19122819504		0	2017-04-20 17:33:35.842345	2017-04-20 17:33:36.063873	CAb1670bd1a7c5225ed6d700ef1cf9733c	\N	\N			0	inbound	+12146922088	\N	\N	\N	new lead	wireless caller	9	\N	\N	3149
2016-07-14 15:08:16.514174+00	2016-12-10 00:57:42.908324+00	869	missed				+15137484356		13	2016-07-14 15:08:16.512601	2016-07-14 15:08:29.891414	CAc06ee98add0bebf7e66bd935c46db4d1	\N	\N			0	inbound	+18555435678	\N	1.86844801902770996	null	new lead		3	\N	\N	3151
2017-04-11 15:13:42.514972+00	2017-11-29 18:38:53.213731+00	3781	completed				+16823004455		27	2017-04-11 15:13:42.513612	2017-04-11 15:14:09.939946	CA21122fdec5398c4e5151ca0ee598b7e9	\N	\N			0	inbound	+12146922088	\N	4.5758669376373291	\N	new lead	always negotiat	9	\N	\N	1293
2017-04-11 14:37:07.831368+00	2017-11-29 18:38:53.213717+00	3779	completed				+19188083905		140	2017-04-11 14:37:07.829647	2017-04-11 14:39:27.590447	CAd619dc11717b7c369b2ae29da40051f9	\N	\N			0	inbound	+12146922088	\N	6.9594261646270752	\N	new lead	okyere charles	9	\N	\N	343
2017-04-11 15:26:45.911181+00	2017-11-29 18:38:53.213752+00	3784	completed				+19188083905		43	2017-04-11 15:26:45.910028	2017-04-11 15:27:28.973288	CA5785944f08384d27785674f9e547485f	\N	103			0	inbound	+12146922088	\N	12.6528050899505615	\N	new lead	charles okyere	9	\N	\N	343
2017-04-11 15:29:01.531793+00	2017-11-29 18:38:53.213759+00	3785	completed				+19188083905		54	2017-04-11 15:29:01.529393	2017-04-11 15:29:56.009291	CA357b09f8445a21f23e2bb9cc08e66bcd	\N	\N			0	inbound	+12146922088	\N	2.11701107025146484	\N	new lead	okyere charles	9	\N	\N	343
2017-04-11 14:16:08.934488+00	2017-11-29 18:38:53.213709+00	3778	completed				+14044220000		45	2017-04-11 14:16:08.931411	2017-04-11 14:16:53.662133	CAb0809252770b63afa48a436d0ff78a73	\N	103			0	inbound	+12146922088	\N	4.52492403984069824	\N	new lead	norcross  ga	9	\N	\N	528
2016-07-14 15:08:48.409316+00	2016-12-10 00:57:42.908354+00	870	missed				+15137484356		9	2016-07-14 15:08:48.408043	2016-07-14 15:08:57.499097	CA191a596be5eaee6e25e62f2717e2b670	\N	\N			0	inbound	+18555435678	\N	2.48067903518676758	null	new lead		3	\N	\N	3151
2017-11-22 14:13:04.666369+00	2017-11-22 16:16:31.399601+00	7172	completed				+14044824323		192	2017-11-22 14:13:04.664483	2017-11-22 14:16:16.17485	CA11cebf82f139b752f498b4613d1101af	\N	153			0	inbound	+17707665732	133	10.8930017948150635	\N	select status		13	\N	\N	3153
2017-11-22 15:02:45.823113+00	2017-11-22 16:16:31.420997+00	7173	completed				+14044824323		118	2017-11-22 15:02:45.820852	2017-11-22 15:04:43.70771	CA09796b66e02273537926285d5c391f40	\N	150			0	inbound	+17707665732	133	10.2203600406646729	\N	select status		13	\N	\N	3153
2017-11-17 18:42:43.236675+00	2017-11-17 18:45:37.088721+00	7109	completed				+16782830920		174	2017-11-17 18:42:43.234855	2017-11-17 18:45:37.074523	CA15dc481329bfc76169456516b57e3272	\N	153			0	inbound	+17707665732	133	8.11433005332946777	\N	new lead		13	\N	\N	3156
2016-10-12 14:34:09.853969+00	2017-02-11 20:02:07.779641+00	2276	completed				+12032418900		157	2016-10-12 14:34:09.851218	2016-10-12 14:36:46.775555	CAdd1d38fd291937ae5ddcc18875a9db44	\N	\N			0	inbound	+18559763286	\N	2.12485790252685547	null	new lead		3	\N	\N	3157
2017-04-25 20:48:43.411862+00	2017-11-29 18:38:49.806689+00	4307	completed				+18179259955		125	2017-04-25 20:48:43.408274	2017-04-25 20:50:47.920916	CA0746d0c341758ae0d6d7e8a7d02e7d2f	\N	107			0	inbound	+12147122250	\N	4.83677411079406738	\N	new lead	fidelity remark	9	\N	\N	3158
2017-04-25 19:00:18.305691+00	2017-05-17 15:41:07.224378+00	4294	completed				+18179322751		173	2017-04-25 19:00:18.302566	2017-04-25 19:03:11.434416	CAacf342546e50b15e852830aca456643a	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REeeefafc840b6cd027a24913a5e1839df	0	inbound	+18177569010	124	9.78385114669799805	\N	new lead	villanueva juan	12	\N	\N	3159
2017-05-29 23:08:19.264427+00	2017-05-29 23:09:31.433371+00	5485	completed				+18176898904		71	2017-05-29 23:08:19.26195	2017-05-29 23:09:30.642605	CA93090242265f79340a61677ddab1250a	\N	132		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REae2e6804e39c7714bad31af405fc6c19	0	inbound	+18172104002	126	7.55138111114501953	\N	new lead	jeffreys iris  	12	\N	\N	3160
2016-05-25 16:20:48.154696+00	2017-11-29 18:31:14.61641+00	202	completed	Unknown			+19206640201		3	2016-05-25 16:20:48.153679	2016-05-25 16:20:51.417528	CA7d7415fd0956003be14d9f12f2222cea	\N	\N			0	inbound	+18556311541	\N	1.21737194061279297	null	new lead		1	\N	\N	3166
2016-05-25 16:19:47.249488+00	2017-11-29 18:31:14.616361+00	200	completed	Unknown			+19206640201		25	2016-05-25 16:19:47.248306	2016-05-25 16:20:11.968957	CAbc39c160bfcc01ca05c1e0ed580b8db8	\N	17		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REbe5d8ce9181e984640daaa4e993f00aa	0	inbound	+18556311541	\N	1.73149895668029785	null	new lead		1	\N	\N	3166
2016-06-01 19:30:31.950673+00	2017-11-29 18:31:14.616425+00	328	completed	Unknown			+19206640201		69	2016-06-01 19:30:31.949419	2016-06-01 19:31:41.094639	CA9bafa6f2e25549b9475c30f7582d0faa	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE765832fc1d966611bed02444a53ad895	0	inbound	+18556311541	\N	13.941521167755127	null	new lead		1	\N	\N	3166
2016-05-27 13:28:13.416766+00	2016-05-27 13:29:23.470624+00	255	completed				+19206640201		66	2016-05-27 13:28:13.414319	2016-05-27 13:29:23.469176	CA31912a77f3d1b35712088c6aa6ec6376	cb653cf7-f9fc-426a-847f-037ba278f4df	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE3de52218e8e0c211880862d79d64086e	1	outbound	+18556311541	\N	1.56401705741882324	{}	new lead		1	\N	\N	3166
2016-06-01 19:41:27.667595+00	2016-06-01 19:42:36.71122+00	329	completed				+19206640201		64	2016-06-01 19:41:27.666127	2016-06-01 19:42:36.710082	CA65b9ab6393828360e51fafd420218aa8	cb653cf7-f9fc-426a-847f-037ba278f4df	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REd159a13f10408c637234eaaa7e168a85	1	outbound	+18556311541	\N	1.92848110198974609	{}	new lead		1	\N	\N	3166
2016-06-02 14:19:49.94326+00	2016-06-02 14:23:03.803417+00	344	completed				+19206640201		189	2016-06-02 14:19:49.941885	2016-06-02 14:23:03.80241	CAc1ad9c397e5512cfdcbea61c87711c67	cb653cf7-f9fc-426a-847f-037ba278f4df	16			1	outbound	+18556311541	\N	1.44773983955383301	{}	new lead		1	\N	\N	3166
2016-06-01 22:16:55.647028+00	2017-11-29 18:31:14.616439+00	335	completed	Lois	Mills		+19206640201		30	2016-06-01 22:16:55.644446	2016-06-01 22:17:25.688479	CA3c4321b0ad1f0c51e244160f381078af	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REdb224b482943a9fda100f3834a4e22c0	0	inbound	+18556311541	\N	\N	null	new lead		1	\N	\N	3166
2016-05-25 16:21:08.59788+00	2017-11-29 18:31:14.616417+00	203	completed	Unknown			+19206640201		51	2016-05-25 16:21:08.596866	2016-05-25 16:22:00.003287	CA62d99b5e6227c989537db98295e64b0a	\N	17		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE0861089c3d7cf59f3ac490b841064cad	0	inbound	+18556311541	\N	1.16534519195556641	null	new lead		1	\N	\N	3166
2016-05-25 16:20:44.736261+00	2017-11-29 18:31:14.616401+00	201	completed	Unknown			+19206640201		2	2016-05-25 16:20:44.734137	2016-05-25 16:20:47.1417	CAaffcc6fbc3c6115565cdadd0cb4220c2	\N	\N			0	inbound	+18556311541	\N	\N	null	new lead		1	\N	\N	3166
2017-08-15 22:25:31.855144+00	2017-08-15 22:32:48.829374+00	6041	completed	Sharia	Johnson	J.sharia@yahoo.com	+14049020230		425	2017-08-15 22:25:31.853637	2017-08-15 22:32:48.803241	CA2aaed84288c1c40087d0769341fc67f3	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REb6fe98c9da19b44c9b5b3fddd3112ce3	1	outbound	+17704009016	\N	9.375762939453125	{}	new lead		13	\N	\N	3167
2017-10-30 23:12:22.461367+00	2017-10-30 23:15:30.337476+00	6877	completed				+18172700443		187	2017-10-30 23:12:22.459407	2017-10-30 23:15:29.274975	CA53ce3ac49900f96dceb6eeda267d724a	\N	155		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REad9a225ecc18b6d29b4dc871d6faf5f9	0	inbound	+18177569010	124	15.1161530017852783	\N	new lead	henderson james	12	\N	\N	3168
2017-12-11 20:57:44.558938+00	2017-12-11 21:05:07.291466+00	7793	completed	Christopher	Sudduth	christophersudduth87@gmail.com	+17063293332		279	2017-12-11 20:57:44.557541	2017-12-11 21:02:37.744803	CAf8aab214fb09b54c9e9b8e364bf10e51	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE25f94e6ece95e217d11e5a15281fba92	1	outbound	+17704009016	\N	11.5228140354156494	{}	select status		13	\N	\N	3171
2017-12-15 20:28:02.985788+00	2017-12-15 20:29:33.93585+00	7902	completed	Christopher 	Sudduth	Christophersudduth87@gmail.com	+17063293332		69	2017-12-15 20:28:02.984395	2017-12-15 20:29:33.315545	CAbfb5ca8e2930c15635b6790011f98886	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE0fba6de667889fb7a972248c01bbdafb	1	outbound	+17704009016	\N	17.5701789855957031	{}	select status		13	\N	\N	3171
2017-11-24 13:22:16.766053+00	2017-11-24 14:14:00.266487+00	7185	missed	Kaylie	Wilbanks	kayliewilbanks2121@gmail.com	+16782839698		\N	2017-11-24 13:22:16.764419	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	3172
2017-03-13 19:48:35.076233+00	2017-11-29 18:47:25.067722+00	3404	completed				+12149860661		405	2017-03-13 19:48:35.074552	2017-03-13 19:55:20.147901	CA3a05ae1a545e1c3970844b43b0963b25	\N	83		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REd62d2a55e0a3b0876198e63a1885e71e	0	inbound	+19728330116	\N	326.189601898193359	\N	new lead	smith ryan     	8	\N	\N	3173
2017-02-23 23:20:49.349452+00	2017-11-29 18:47:25.067443+00	3254	completed				+12149860661		349	2017-02-23 23:20:49.346379	2017-02-23 23:26:38.237424	CA27e004c8c209617023af7abae0797bca	\N	84			0	inbound	+19728330116	\N	\N	\N	new lead		8	\N	\N	3173
2017-12-09 15:28:20.931704+00	2017-12-09 22:25:44.605622+00	7742	completed	John	Kennedy	Jhkennedy2013@gmail.com	+17702271417		55	2017-12-09 15:28:20.930641	2017-12-09 15:35:49.201735	CAccd8b557619e9434392e296dd5f947c8	0427608a-ae09-4db0-a1e8-374423ee28c3	153			3	outbound	+17704009016	\N	395.732532024383545	{}	select status		13	\N	\N	3176
2016-06-28 17:14:09.951103+00	2017-11-29 18:32:13.820781+00	600	completed	Unknown			+13302068838		183	2016-06-28 17:14:09.950199	2016-06-28 17:17:12.767039	CAdd9d7d9116a0a633c7fb2adfb19a44f7	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE5ccc5cff63db8c0b791b218d40555dd9	0	inbound	+18555983683	\N	3.18969297409057617	null	new lead		1	\N	\N	3178
2016-06-28 17:13:34.278416+00	2016-06-28 17:18:19.722291+00	598	completed				+13302068838		16	2016-06-28 17:13:34.277481	2016-06-28 17:13:55.244742	CA269f83292f6aaca117a17741d53d0ff6	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	\N			1	outbound	+18555983683	\N	2.1538689136505127	{}	new lead		1	\N	\N	3178
2016-06-28 16:04:14.62108+00	2017-11-29 18:32:13.820738+00	589	completed	Unknown			+13302068838		24	2016-06-28 16:04:14.61957	2016-06-28 16:04:38.193025	CAf5e9e3ad5f8c0bf69716740602a3368a	\N	\N			0	inbound	+18555983683	\N	13.4804410934448242	null	new lead		1	\N	\N	3178
2017-12-04 14:21:46.299133+00	2017-12-04 14:24:04.623972+00	7526	completed	NATTASHA	FOX	sam9ravenel@gmail.com	+13476416674		94	2017-12-04 14:21:46.296716	2017-12-04 14:23:20.409135		\N	150			0	outbound	+17704009016	132	\N	\N	select status		13	\N	\N	3179
2017-12-03 15:45:47.171107+00	2017-12-04 14:24:04.642802+00	7509	missed	NATTASHA	FOX	sam9ravenel@gmail.com	+13476416674		\N	2017-12-03 15:45:47.169411	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	3179
2017-12-04 15:25:14.519707+00	2017-12-04 15:26:07.735905+00	7530	completed	NATTASHA	FOX		+13476416674		52	2017-12-04 15:25:14.51686	2017-12-04 15:26:06.498229	CA193e46c8533f3f3c6228d81ca7b6bcf2	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE2f400bc9de85b334fde2b60736f80ecd	0	inbound	+17704009016	132	10.9169480800628662	\N	select status	fox natasha	13	\N	\N	3179
2016-11-21 22:03:36.648542+00	2016-11-21 22:07:41.968024+00	2962	completed				+18138432569		245	2016-11-21 22:03:36.647228	2016-11-21 22:07:41.489814	CA60024749376ef2e11746fffc1eb3fe5b	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE66ee2339599a4eb6b79a1e29e9f5d7a5	0	inbound	+18557240606	49	2.5166618824005127	null	new lead		1	\N	\N	3180
2017-05-03 23:33:20.734451+00	2017-05-03 23:34:29.379509+00	4690	completed				+19409231448		68	2017-05-03 23:33:20.732017	2017-05-03 23:34:28.701314	CA80ad308984a681b67a5b3608efe9f8a8	\N	132		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REa99b747db5ca1090c30093b6f48d7696	0	inbound	+18172104002	126	5.46625685691833496	\N	new lead	chandra	12	\N	\N	3181
2017-08-17 17:35:01.501838+00	2017-08-17 17:38:35.490494+00	6070	completed				+16784376324		213	2017-08-17 17:35:01.499942	2017-08-17 17:38:34.232017	CA084ddcdf60f43e42f29fed5853e1f4dd	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE78a893fda68f0f8c66415fc28721f748	0	inbound	+17704009016	132	5.68726801872253418	\N	new lead		13	\N	\N	3182
2017-03-03 20:03:02.415997+00	2017-11-29 18:47:25.067573+00	3321	completed				+14693248972		303	2017-03-03 20:03:02.413844	2017-03-03 20:08:05.615163	CA58d364626f6abb4337fddd41de2ed251	\N	81		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REfe10542747be4d0867a4f0a62cc7e5cc	0	inbound	+19728330116	\N	15.3997390270233154	\N	new lead	cierra mcclendo	8	\N	\N	3183
2016-11-02 19:21:16.215212+00	2016-11-02 19:21:16.24201+00	2586	missed	Nhi	Van	tracy_nhi@yahoo.com.hk	+19194551975		\N	2016-11-02 19:21:16.21398	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	3185
2016-10-05 14:50:57.900692+00	2017-02-11 20:02:07.779566+00	2166	completed				+19084640425		195	2016-10-05 14:50:57.89945	2016-10-05 14:54:12.891833	CA4e5d7b87097e89177fa2fb770c6b5624	\N	\N			0	inbound	+18559763286	\N	1.81001019477844238	null	new lead		3	\N	\N	3186
2017-07-31 19:06:17.917293+00	2017-07-31 19:12:00.149787+00	5905	missed				+17707663947		13	2017-07-31 19:06:17.914641	2017-07-31 19:06:30.591265	CA7922f9c0bf603e845461a10758dcb80f	\N	\N			0	inbound	+17707665732	133	323.412315130233765	\N	new lead		13	\N	\N	3187
2017-08-22 21:11:08.117205+00	2017-08-22 21:17:52.402172+00	6139	completed				+18177564726		404	2017-08-22 21:11:08.114805	2017-08-22 21:17:52.400142	CA3cea6c18bea641babd3a712fed303ee7	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE57a2c458bb88e7b2cae13dae95fcfcc0	0	inbound	+18177569010	124	358.476503133773804	\N	new lead	gc - easytel hu	12	\N	\N	3188
2016-08-10 23:07:37.437143+00	2017-11-29 18:32:01.935487+00	1404	missed				+12564793982		8	2016-08-10 23:07:37.435594	2016-08-10 23:07:45.807457	CAa63cb77aef4c78fca361e50a27e39b0d	\N	\N			0	inbound	+18556311513	\N	\N	null	new lead		1	\N	\N	3190
2017-09-29 19:11:03.310903+00	2017-09-29 19:17:40.560049+00	6542	completed				+18177568455		396	2017-09-29 19:11:03.308718	2017-09-29 19:17:39.329006	CA8fbab71d365096e06e811f20379d74c0	\N	155		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REd5d819b0d02f1a5c41aa290af7753c19	0	inbound	+18177569010	124	360.815275907516479	\N	new lead	dallas  tx	12	\N	\N	3192
2017-03-25 14:07:30.787483+00	2017-11-29 18:47:25.067919+00	3577	missed				+12142873626		15	2017-03-25 14:07:30.785593	2017-03-25 14:07:45.310703	CA1b85b9853405fe5e09b11f8896b2aac2	\N	\N			0	inbound	+19728330116	\N	351.454578876495361	\N	new lead	lapolla industr	8	\N	\N	3194
2017-12-08 14:06:04.754307+00	2017-12-08 14:06:29.807327+00	7706	missed				+16785221986		25	2017-12-08 14:06:04.752109	2017-12-08 14:06:29.787111	CA7d3774603aabda5ee0bd791917fa80ca	\N	\N			0	inbound	+17706597466	137	\N	\N	new lead		14	\N	\N	3197
2017-12-08 14:06:34.124719+00	2017-12-08 14:06:58.550962+00	7707	missed				+16785221986		24	2017-12-08 14:06:34.122803	2017-12-08 14:06:58.539552	CAdf1b9cc3d95112e78a0c75cf98f6907d	\N	\N			0	inbound	+17706597466	137	\N	\N	new lead		14	\N	\N	3197
2017-10-15 16:27:32.816735+00	2017-10-15 16:33:25.603204+00	6716	missed	Michael	Sanders	Sandersm714@gmail.com	+16789282324		0	2017-10-15 16:27:32.815176	2017-10-15 16:33:25.600999	CA7bcf289830bf3b9ab4c89d82cb5db949	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			3	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	3198
2016-07-11 12:25:14.208378+00	2016-12-10 01:05:18.400658+00	842	missed				+16107683300		9	2016-07-11 12:25:14.207036	2016-07-11 12:25:23.119519	CAf2737308dcb0441d5127ed391fdc11a0	\N	\N			0	inbound	+18557088731	\N	\N	null	new lead		3	\N	\N	3278
2017-09-29 17:46:39.184196+00	2017-11-29 18:31:37.369357+00	6535	missed				+13179360056		317	2017-09-29 17:46:39.182228	2017-09-29 17:51:55.964144	CA8457ee5701a3aa691d5019d7a1070126	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE839911c9bf52ae175711754fc6839517	0	inbound	+18555472453	\N	\N	\N	new lead		1	\N	\N	3201
2016-06-25 19:11:00.194683+00	2017-11-29 18:32:13.820455+00	462	completed	Unknown			+13303836443		19	2016-06-25 19:11:00.19326	2016-06-25 19:11:19.340823	CA40918479caaa1aa1d8a8631368777514	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE61631cb9739bd2e7728c40cbde41e8a1	0	inbound	+18555983683	\N	\N	null	new lead		1	\N	\N	3202
2016-06-27 14:42:54.321485+00	2016-06-27 14:43:50.6239+00	498	completed				+13303836443		52	2016-06-27 14:42:54.319912	2016-06-27 14:43:50.622751	CA30fbb3d788de11b7d327927bd59c2334	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.40245604515075684	{}	new lead		1	\N	\N	3202
2016-06-26 17:45:52.471645+00	2017-11-29 18:32:13.820469+00	472	completed	Unknown			+13303836443		18	2016-06-26 17:45:52.469679	2016-06-26 17:46:10.33982	CA04e9cc0fde763055189532cc87f80896	\N	\N			0	inbound	+18555983683	\N	\N	null	new lead		1	\N	\N	3202
2017-08-29 22:36:30.716828+00	2017-08-29 22:58:56.298723+00	6200	completed				+18178410168		1344	2017-08-29 22:36:30.715056	2017-08-29 22:58:55.190583	CAc2ee500c722583c337367d8cb43874e3	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REfa9fdc1f47f28973c13241669f36f23d	0	inbound	+18177569010	124	1312.51344513893127	\N	new lead	cortez anthony	12	\N	\N	3203
2016-09-08 20:53:56.027378+00	2016-12-10 01:01:51.440898+00	1971	completed				+16195121294		222	2016-09-08 20:53:56.025659	2016-09-08 20:57:38.473687	CAfb9efcc6450008635080176cbbcb8ba3	\N	50			0	inbound	+18559693782	\N	2.26708579063415527	null	new lead		3	\N	\N	3204
2017-09-07 18:34:45.074943+00	2017-09-07 18:36:19.093845+00	6285	completed				+13046160131		93	2017-09-07 18:34:45.072813	2017-09-07 18:36:18.331562	CA4878c7968cbd100ccc6b8a7797437ce7	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REf5cf281f34b4bd41234fa5d36df67379	0	inbound	+18177569010	124	19.330502986907959	\N	new lead	grace brenda	12	\N	\N	3205
2017-03-26 23:03:08.701776+00	2017-11-29 18:38:53.212937+00	3581	completed				+14162008047		33	2017-03-26 23:03:08.698484	2017-03-26 23:03:41.657195	CAeef2c678f4dbee34f45fcfb4df68053c	\N	\N			0	inbound	+12146922088	\N	24.6346659660339355	\N	new lead	etobicoke   on	9	\N	\N	3206
2016-10-05 19:41:15.427483+00	2016-12-10 01:01:00.200294+00	2197	completed				+18587752232		237	2016-10-05 19:41:15.426451	2016-10-05 19:45:12.23915	CAef9f1c0b1a05fc9e07a47d2ce2fcb14b	\N	57			0	inbound	+18557860909	\N	6.39840412139892578	null	new lead		3	\N	\N	3208
2018-03-20 00:08:09.675241+00	2018-03-20 00:08:54.545355+00	8213	completed				+12248758574		45	2018-03-20 00:08:09.673042	2018-03-20 00:08:54.541487	CA0dde9e11e941bcb2c3bc43c7ce9ab7fb	\N	164			0	inbound	+13367394103	148	11.8806540966033936	\N	new lead	chicago  il	4	\N	\N	3210
2018-03-20 00:16:31.053225+00	2018-03-20 00:17:11.648767+00	8214	missed				+12248758574		41	2018-03-20 00:16:31.051865	2018-03-20 00:17:11.64597	CA25a5b8706f4b002ef4c1c10b086b9b50	\N	\N			0	inbound	+13367394103	148	\N	\N	new lead	chicago  il	4	\N	\N	3210
2018-03-20 00:17:47.79066+00	2018-03-20 00:18:28.496104+00	8215	missed				+12248758574		41	2018-03-20 00:17:47.789487	2018-03-20 00:18:28.493294	CAfaedad5bb45023e32157b2f08167c427	\N	\N			0	inbound	+13367394103	148	\N	\N	new lead	chicago  il	4	\N	\N	3210
2018-03-20 02:52:19.793511+00	2018-03-20 02:52:46.003417+00	8221	completed				+12248758574		22	2018-03-20 02:52:19.790916	2018-03-20 02:52:42.006778	CA06b77ba0a5756ea41acbf52220f86e61	\N	15		https://buyercall-test-recordings.s3.amazonaws.com/Testing%20Group_4/8221_recording_4c54bb26b4074c6f9940ba17939bbb98	0	inbound	+13367394103	150	11.8647220134735107	\N	new lead	chicago  il	4	\N	\N	3210
2016-08-01 16:42:23.034395+00	2016-12-10 01:05:18.400736+00	1076	completed				+16102091234		81	2016-08-01 16:42:23.032387	2016-08-01 16:43:44.262178	CAd82c53708c74ad0eedfe8b4f80fb46a9	\N	24			0	inbound	+18557088731	\N	21.2368171215057373	null	new lead		3	\N	\N	3211
2016-09-08 16:30:22.126655+00	2016-12-09 17:06:53.905907+00	1962	completed				+12675668629		116	2016-09-08 16:30:22.125552	2016-09-08 16:32:18.257186	CAdbd16637b10b2984b32408cb1ed2f2ff	\N	21			0	inbound	+18558021330	\N	3.95565104484558105	null	new lead		3	\N	\N	3213
2016-07-30 13:50:56.008967+00	2017-11-29 18:31:05.368903+00	1057	completed	John	Kilfoil	jkilfoil@mail.com	+19379999230		41	2016-07-30 13:50:56.006618	2016-07-30 13:51:36.744854		\N	16			0	outbound	+18557824539	\N	\N	null	application submitted - credit union		1	\N	\N	3216
2016-07-25 17:24:06.147358+00	2016-07-30 14:05:53.528365+00	935	completed	John	Kilfoil	jkilfoil@mail.com	+19379999230		91	2016-07-25 17:24:06.144832	2016-07-25 17:26:04.212731	CA477e226dca936e26322835372020858b	253cd8e5-09ac-4056-92ec-7e351aa19233	17		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE2090240bbc48c295af4c526404eef1b0	1	outbound	+18557824539	\N	23.8956749439239502	{}	application submitted - credit union		1	\N	\N	3216
2016-07-30 13:52:04.945956+00	2017-11-29 18:31:05.368917+00	1059	completed	John	Kilfoil	jkilfoil@mail.com	+19379999230		137	2016-07-30 13:52:04.944879	2016-07-30 13:54:21.798972		\N	16			0	outbound	+18557824539	\N	\N	null	application submitted - credit union		1	\N	\N	3216
2016-07-29 22:19:16.606089+00	2017-11-29 18:31:05.368896+00	1051	missed	John	Kilfoil		+19379999230		20	2016-07-29 22:19:16.604405	2016-07-29 22:19:36.150633	CA45494f77766cd8a7ee0ab206a273b2be	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE5aa4d59a9ed6e2ce29d6bc0e2c291970	0	inbound	+18557824539	\N	\N	null	application submitted - credit union		1	\N	\N	3216
2016-07-30 13:51:15.615675+00	2017-11-29 18:31:05.36891+00	1058	completed	John	Kilfoil	jkilfoil@mail.com	+19379999230		32	2016-07-30 13:51:15.614762	2016-07-30 13:51:47.777701		\N	16			0	outbound	+18557824539	\N	\N	null	application submitted - credit union		1	\N	\N	3216
2016-08-19 17:01:56.878708+00	2016-12-10 01:05:18.400812+00	1612	completed				+12154367269		23	2016-08-19 17:01:56.877573	2016-08-19 17:02:20.014427	CA82e6091a27de30faaa055a8af842532a	\N	24			0	inbound	+18557088731	\N	5.72538590431213379	null	new lead		3	\N	\N	3218
2016-10-05 00:09:48.590337+00	2016-12-10 01:01:51.441009+00	2154	missed				+16198635025		0	2016-10-05 00:09:48.589086	2016-10-05 00:09:48.845034	CA175df1ccef87a5679bce478f8ebea5db	\N	\N			0	inbound	+18559693782	\N	\N	null	new lead		3	\N	\N	3222
2016-10-05 00:09:49.317983+00	2016-12-10 01:01:51.441016+00	2155	missed				+16198635025		0	2016-10-05 00:09:49.317042	2016-10-05 00:09:49.627865	CAf069355b7c1e67deaa77a89906c1c0a8	\N	\N			0	inbound	+18559693782	\N	\N	null	new lead		3	\N	\N	3222
2017-03-23 18:39:42.954444+00	2017-11-29 18:32:01.935509+00	3558	missed				+12022482988		52	2017-03-23 18:39:42.952608	2017-03-23 18:40:35.229938	CA05fa96ed9a89ff0a3202c5fe78c9ec2c	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE19ad0185b8f4a66b8fabdfe9bad3c901	0	inbound	+18556311513	\N	\N	\N	new lead		1	\N	\N	3225
2017-08-14 14:58:29.026925+00	2017-08-17 14:35:21.04583+00	6019	completed				+18178408597		120	2017-08-14 14:58:29.025054	2017-08-14 15:00:28.872694	CAbaf278a81ed0f7247d46dce9c6c596b3	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REd153ee728367276265f89dbcf7522d7c	0	inbound	+18177569010	124	7.34654021263122559	\N	new lead	cruz rigoberto	12	\N	\N	3226
2017-10-03 22:15:40.195377+00	2017-10-03 22:18:53.464762+00	6573	completed				+18177244008		192	2017-10-03 22:15:40.192883	2017-10-03 22:18:52.383441	CA0d0a2f13c65fb50d76ddff4606d65c91	\N	155		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE1622db4f631b8065c12377ef19087a5b	0	inbound	+18177569010	124	9.52726006507873535	\N	new lead	boyd rhonda	12	\N	\N	3227
2016-10-30 18:59:41.393827+00	2016-10-30 18:59:41.423246+00	2375	missed	Frankie	Lucas	teffrank@yahoo.com	+14698105563		\N	2016-10-30 18:59:41.392762	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	3228
2016-09-29 17:08:40.02607+00	2016-11-09 15:46:28.724969+00	2106	completed				+18473416910		90	2016-09-29 17:08:40.02465	2016-09-29 17:10:09.987144	CAd2ae01d4ccfb0915fbbcd889f3c7795d	\N	40			0	inbound	+18555571474	\N	1.96361494064331055	null	new lead		3	\N	\N	3229
2016-09-29 17:12:38.806843+00	2016-11-09 15:46:28.724977+00	2107	completed				+18473416910		53	2016-09-29 17:12:38.805912	2016-09-29 17:13:31.848557	CA6577a989876e022f4c9c2688fec96777	\N	40			0	inbound	+18555571474	\N	2.02105307579040527	null	new lead		3	\N	\N	3229
2016-09-29 17:13:44.494737+00	2016-11-09 15:46:28.724983+00	2108	completed				+18473416910		195	2016-09-29 17:13:44.493863	2016-09-29 17:16:59.314878	CA3458c716b0418af45f1d066c81985bd1	\N	40			0	inbound	+18555571474	\N	1.90156722068786621	null	new lead		3	\N	\N	3229
2017-07-12 01:54:09.25838+00	2017-07-12 01:54:17.397396+00	5761	missed				+18082865990		8	2017-07-12 01:54:09.256467	2017-07-12 01:54:17.387545	CA825afe3e1123712b4f80f93fa8baee0c	\N	\N			0	inbound	+18555343978	48	\N	\N	new lead		1	\N	\N	3231
2016-08-29 17:46:15.328964+00	2016-12-10 00:57:42.908371+00	1811	completed				+15134774132		12	2016-08-29 17:46:15.32716	2016-08-29 17:46:27.481886	CA1a8d6fc7929b0ac095dc57e14552804b	\N	31			0	inbound	+18555435678	\N	1.68577098846435547	null	new lead		3	\N	\N	3235
2017-03-22 16:08:11.835657+00	2017-11-29 18:47:25.067891+00	3538	completed				+18176086079		127	2017-03-22 16:08:11.833562	2017-03-22 16:10:18.711948	CA8a4335a915c471fe55ac08dd35575229	\N	83		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REae0cb4c83081a87f588c46789e3c386e	0	inbound	+19728330116	\N	11.1603169441223145	\N	new lead	rojas jose     	8	\N	\N	3237
2017-03-22 18:07:12.488934+00	2017-11-29 18:47:25.067898+00	3543	completed				+18176086079		520	2017-03-22 18:07:12.486428	2017-03-22 18:15:52.179378	CA31c53f89787e5ea09966a990b1c05a0d	\N	115		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE894323a6e5e87773dc5ca5fb142f1c47	0	inbound	+19728330116	\N	413.214751005172729	\N	new lead	rojas jose     	8	\N	\N	3237
2017-05-08 22:26:08.664479+00	2017-11-29 18:38:53.21542+00	4885	completed				+12145800261		43	2017-05-08 22:26:08.661675	2017-05-08 22:26:51.68641	CAc9173431e70ae5157f8564ecf9cfefec	\N	\N			0	inbound	+12146922088	\N	1.13622379302978516	\N	new lead	bayon rick	9	\N	\N	3238
2017-05-08 22:27:19.668413+00	2017-11-29 18:38:53.215427+00	4888	completed				+12145800261		39	2017-05-08 22:27:19.667112	2017-05-08 22:27:59.134312	CA4489c2cf5922d4a19ee65e097b0a71ef	\N	\N			0	inbound	+12146922088	\N	1.59879493713378906	\N	new lead	bayon rick	9	\N	\N	3238
2017-05-08 22:30:13.994714+00	2017-11-29 18:38:53.215434+00	4889	completed				+12145800261		31	2017-05-08 22:30:13.992386	2017-05-08 22:30:44.603004	CA597a33c71bca257c4d238aca506f1dc2	\N	\N			0	inbound	+12146922088	\N	0.620537996292114258	\N	new lead	bayon rick	9	\N	\N	3238
2017-05-08 22:31:33.145327+00	2017-11-29 18:38:53.215441+00	4890	completed				+12145800261		22	2017-05-08 22:31:33.14328	2017-05-08 22:31:54.769445	CA306e386d8497b21fe2c452fd7be3284c	\N	\N			0	inbound	+12146922088	\N	2.3679649829864502	\N	new lead	bayon rick	9	\N	\N	3238
2017-03-14 21:38:59.381606+00	2017-11-29 18:38:53.212289+00	3432	completed				+12145800261		32	2017-03-14 21:38:59.379683	2017-03-14 21:39:31.77447	CAbdd02530dd2129e4b8a754f3da26f965	\N	\N			0	inbound	+12146922088	\N	12.5735571384429932	\N	new lead	bayon rick	9	\N	\N	3238
2017-04-08 21:41:17.624349+00	2017-11-29 18:38:53.213526+00	3748	completed				+12145800261		17	2017-04-08 21:41:17.622252	2017-04-08 21:41:34.748715	CA561aec9efdfd2ec53986d0f0700c9bab	\N	107			0	inbound	+12146922088	\N	6.85733890533447266	\N	new lead	bayon rick	9	\N	\N	3238
2017-11-28 20:20:37.974799+00	2017-11-28 20:25:37.213854+00	7367	completed				+17069731461		299	2017-11-28 20:20:37.97281	2017-11-28 20:25:37.193655	CAdc77c3ce1b73659a73fe172007f0375e	\N	150			0	inbound	+17707665732	133	10.928339958190918	\N	new lead	cell phone   ga	13	\N	\N	3240
2017-04-13 19:55:37.425058+00	2017-11-29 18:38:53.213858+00	3894	completed				+12142235055		224	2017-04-13 19:55:37.421959	2017-04-13 19:59:20.928299	CAde1b1938abb5b1a201eca6e58ec07adf	\N	\N			0	inbound	+12146922088	\N	4.76994609832763672	\N	new lead	odom kayla	9	\N	\N	3241
2017-12-17 17:48:07.443366+00	2017-12-18 14:01:08.374051+00	7956	missed	Jessica	Peek	Peekjessica28@gmail.com	+14043601794		\N	2017-12-17 17:48:07.441787	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	3242
2017-09-09 23:28:50.659646+00	2017-09-09 23:28:50.714834+00	6310	missed	Mario	Cornejo	Mariocornejo2505@yahoo.com	+16787324712		\N	2017-09-09 23:28:50.658028	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	3243
2017-05-02 22:59:30.263472+00	2017-11-29 18:38:49.808914+00	4606	completed				+16825214335		53	2017-05-02 22:59:30.261451	2017-05-02 23:00:23.548679	CA5b485ae6e1c98c6a49ac3473eb9be55f	\N	\N			0	inbound	+12147122250	\N	2.40608787536621094	\N	new lead	lenear don	9	\N	\N	3246
2017-12-18 16:35:49.545597+00	2017-12-18 16:44:25.048433+00	7969	completed	Tyranie	Reid	tyranier@gmail.com	+14045872057		261	2017-12-18 16:35:49.544211	2017-12-18 16:40:22.737817	CA1ba4ca1a07f61b32bb4a02364c03bb45	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REbc14f99e3bf16bf82b2c19828fa7d495	1	outbound	+17704009016	\N	18.5855998992919922	{}	select status		13	\N	\N	3247
2016-08-27 23:14:29.293355+00	2016-08-29 12:41:22.365045+00	1800	missed	Joshua	Rogers	jmrrogers@yahoo.com	+14196062982		\N	2016-08-27 23:14:29.292038	\N		46af3dca-b597-465f-a167-682b8fc62d0a	\N			0	outbound	+18556311513	\N	\N	{}	application submitted - credit union		1	\N	\N	3249
2017-05-08 21:34:07.735511+00	2017-11-29 18:38:49.810491+00	4881	completed				+17322595053		280	2017-05-08 21:34:07.733709	2017-05-08 21:38:47.340346	CA9d7cc9d04edc7f0307daf370a1ed0b23	\N	\N			0	inbound	+12147122250	\N	1.9486849308013916	\N	new lead	cell phone   nj	9	\N	\N	3250
2016-11-02 16:16:11.029666+00	2016-11-02 16:16:53.000129+00	2564	completed				+17132915941		41	2016-11-02 16:16:11.027996	2016-11-02 16:16:52.13732	CA170bf1d0bc3ddcfb7fb01267020035e4	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE762aac9971dc1af2668756d404263f5e	0	inbound	+18557240606	49	1.71012997627258301	null	new lead		1	\N	\N	3253
2016-11-02 18:03:15.228569+00	2016-11-02 18:03:15.260954+00	2579	missed	Carlos	Ruiz	carlos_ppp@yahoo.com.mx	+17132915941		\N	2016-11-02 18:03:15.226893	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	3253
2016-08-29 21:06:27.089479+00	2016-12-10 01:04:42.413585+00	1815	completed				+17037792057		33	2016-08-29 21:06:27.08759	2016-08-29 21:06:59.741213	CA8b57419892a7f2f427a44e670a158a70	\N	58			0	inbound	+18552187903	\N	1.10504794120788574	null	new lead		3	\N	\N	3255
2016-08-13 17:45:48.493442+00	2016-08-25 16:47:09.538071+00	1474	missed	Cheyenne	Hamilton	cheyennehamilton50@yahoo.com	+15134187491		\N	2016-08-13 17:45:48.49231	\N		25d0200e-983d-4413-94ae-eb664b99711c	\N			0	outbound	+18556311490	\N	\N	{}	application submitted - autopay		1	\N	\N	3257
2016-06-06 17:48:28.020024+00	2017-11-29 18:31:56.600111+00	385	completed	Unknown			+17725810686		46	2016-06-06 17:48:28.018257	2016-06-06 17:49:14.461095	CAc886e5031b3b9576ad0e78391b2749d1	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE5199dbae8be204423591f2e3651a5484	0	inbound	+18556311397	\N	14.6183068752288818	null	new lead		1	\N	\N	3261
2016-06-06 18:29:54.343034+00	2016-06-06 18:31:11.834224+00	386	completed				+17725810686		74	2016-06-06 18:29:54.341588	2016-06-06 18:31:11.833358	CA2e5ed09f1b71094638e4c3e99ddc0e15	c6c46e91-97c9-404c-92ba-454008d80db7	16			1	outbound	+18556311397	\N	1.59415292739868164	{}	new lead		1	\N	\N	3261
2016-11-12 20:06:04.739511+00	2016-11-12 20:33:11.711112+00	2880	completed				+18324396041		1621	2016-11-12 20:06:04.737457	2016-11-12 20:33:06.167579	CA8b52da0835368a402baaf9dd6d967616	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE9132ed9aed7ed8d08fedb08ce93c5a05	0	inbound	+18557240606	49	1.84104800224304199	null	new lead		1	\N	\N	3266
2016-08-15 17:19:44.963984+00	2017-11-29 18:31:10.262217+00	1499	missed	Sonia	Bauer		+15136301505		101	2016-08-15 17:19:44.962452	2016-08-15 17:21:25.84843	CA71591abd9f326d3d8644d95a7dcd2f40	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE83c2975615299f1034d61d876da25804	0	inbound	+18556311490	\N	31.6887059211730957	null	application submitted - credit union		1	\N	\N	3267
2016-08-15 18:23:16.200396+00	2017-11-29 18:31:10.262232+00	1503	completed				+15136301505		827	2016-08-15 18:23:16.198838	2016-08-15 18:37:03.307891		\N	16			0	outbound	+18556311490	\N	\N	null	application submitted - credit union		1	\N	\N	3267
2016-09-21 19:52:06.63087+00	2017-11-29 18:31:10.262603+00	2070	missed	Sonia	Bauer		+15136301505		64	2016-09-21 19:52:06.628625	2016-09-21 19:53:11.06342	CAd36bdf31181aafc09b749b64f287dcc1	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REb9d42441d9f11b48ca1c0806821e7f56	0	inbound	+18556311490	\N	33.2507948875427246	null	application submitted - credit union		1	\N	\N	3267
2017-03-14 20:57:26.003421+00	2017-11-29 18:38:53.212261+00	3425	completed				+13376543417		25	2017-03-14 20:57:26.001567	2017-03-14 20:57:50.721718	CA08120052d6028be8423fe9b33140e7bd	\N	\N			0	inbound	+12146922088	\N	8.04413104057312012	\N	new lead	reed keith     	9	\N	\N	3268
2016-11-16 16:52:17.86051+00	2016-12-09 17:08:31.908901+00	2921	completed				+16097770872		67	2016-11-16 16:52:17.859151	2016-11-16 16:53:24.713211	CA6ec32ffa984b02eea51515e22b1c7614	\N	67			0	inbound	+18552576059	\N	1.97487902641296387	null	new lead		3	\N	\N	3271
2017-10-18 18:10:35.601654+00	2017-10-18 18:19:03.286898+00	6741	completed	Ronnie 			+14044287186		495	2017-10-18 18:10:35.599325	2017-10-18 18:19:03.283562	CA533b94daa25c35a8c49483c2982cd873	53da9e33-88fb-4b04-baca-339193fd55f7	79			1	outbound	+17735469660	\N	12.4100639820098877	{}	new lead		1	\N	\N	3273
2017-05-01 22:32:13.614563+00	2017-11-29 18:38:53.214902+00	4555	completed				+14699695230		168	2017-05-01 22:32:13.611231	2017-05-01 22:35:01.444209	CA9dfa716a149bb67d2694af70977bcbc7	\N	107			0	inbound	+12146922088	\N	7.45790195465087891	\N	new lead	smith thompson 	9	\N	\N	3275
2017-11-18 14:32:32.603253+00	2017-11-18 14:36:04.185227+00	7123	completed				+16785313827		212	2017-11-18 14:32:32.60142	2017-11-18 14:36:04.171522	CAfe234e683cfd49a3fda658023306dcb1	\N	153			0	inbound	+17707665732	133	9.83146095275878906	\N	new lead		13	\N	\N	3276
2016-07-11 16:20:09.492451+00	2016-12-10 01:05:18.400672+00	848	completed				+16107683300		135	2016-07-11 16:20:09.49068	2016-07-11 16:22:24.326558	CA59704ba4c3cb40426269dd96ac69ebe5	\N	24			0	inbound	+18557088731	\N	2.16967415809631348	null	new lead		3	\N	\N	3278
2016-07-11 12:25:36.798387+00	2016-12-10 01:05:18.400665+00	843	missed				+16107683300		10	2016-07-11 12:25:36.797387	2016-07-11 12:25:46.649011	CA421adf446090199bb9513d6462ed9bd4	\N	\N			0	inbound	+18557088731	\N	\N	null	new lead		3	\N	\N	3278
2017-04-14 15:01:57.929214+00	2017-11-29 18:38:53.213887+00	3913	completed				+19034452749		93	2017-04-14 15:01:57.927185	2017-04-14 15:03:31.191668	CA171f1ba8c6d7dfe20de485de3e9b28cc	\N	103			0	inbound	+12146922088	\N	8.18272495269775391	\N	new lead	l martinez	9	\N	\N	3279
2016-05-20 21:40:53.815553+00	2017-11-29 18:31:37.368122+00	146	completed	Unknown			+16614000461		17	2016-05-20 21:40:53.813679	2016-05-20 21:41:10.974853	CA12609ee1a1b29822b8e8720f09363fd8	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE818cada3070eb23e695b91aaa413e653	0	inbound	+18555472453	\N	\N	null	new lead		1	\N	\N	3281
2016-05-25 18:29:18.483294+00	2016-05-25 18:30:55.231741+00	228	completed				+16614000461		92	2016-05-25 18:29:18.482256	2016-05-25 18:30:55.230632	CA8f4e2a845168d44d2ee89da36f709cfc	8f30d55b-8601-40b9-9d7f-11bfe29c5449	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE3ef944b90d41b22ed630d68f66b9e3b2	1	outbound	+18555472453	\N	1.53674507141113281	{}	new lead		1	\N	\N	3281
2016-10-05 14:43:24.944117+00	2016-12-10 01:03:26.835864+00	2164	completed				+19733328762		582	2016-10-05 14:43:24.942895	2016-10-05 14:53:07.193822	CAb2caf1cd4409efd5bb6ed7dd7a96c8e5	\N	68			0	inbound	+18553793442	\N	0.419292926788330078	null	new lead		3	\N	\N	3282
2017-08-07 16:06:34.763206+00	2017-08-07 16:13:06.404249+00	5952	completed	Tony	Hair	Hairatldog@gmail.com	+17063670017		52	2017-08-07 16:06:34.761664	2017-08-07 16:13:06.383085	CA4f7eb465b6e0f2b3577c7e69dc4b70a5	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE8ac7f46f925fe4cbfecb29669938a49d	3	outbound	+17704009016	\N	338.565256118774414	{}	new lead		13	\N	\N	3287
2017-09-08 15:14:37.325089+00	2017-09-08 15:19:19.895167+00	6290	completed				+14705590714		283	2017-09-08 15:14:37.323202	2017-09-08 15:19:19.88466	CA492abb0fb71aa1b15272273e96a67ca8	\N	154			0	inbound	+17707665699	134	1.50949311256408691	\N	new lead		13	\N	\N	3289
2017-07-27 15:44:38.524704+00	2017-07-27 15:47:35.742607+00	5860	completed				+14705590714		176	2017-07-27 15:44:38.522974	2017-07-27 15:47:34.541969	CA2117b6dedfc05378ee9a4e15dc1028b3	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE78ee2b10cbeac6c5b5e15856e82a1628	0	inbound	+17704009016	132	18.1231298446655273	\N	new lead		13	\N	\N	3289
2017-08-30 21:06:36.844877+00	2017-08-30 21:07:49.454847+00	6206	completed				+14705590714		73	2017-08-30 21:06:36.842923	2017-08-30 21:07:49.444334	CA11c9172695ec265f25f7a55c5c1fb373	\N	154			0	inbound	+17707665699	134	3.04459595680236816	\N	new lead		13	\N	\N	3289
2017-08-30 21:11:28.006768+00	2017-08-30 21:13:27.314401+00	6208	completed				+14705590714		119	2017-08-30 21:11:28.004168	2017-08-30 21:13:27.296795	CA87f720d5444f91f90c1d9567de269cf4	\N	154			0	inbound	+17707665699	134	0.793748140335083008	\N	new lead		13	\N	\N	3289
2017-03-28 16:48:01.496442+00	2017-11-29 18:38:53.213105+00	3609	completed				+12144128192		512	2017-03-28 16:48:01.49441	2017-03-28 16:56:33.19978	CAfc4821ba02cacd87212d8c22c97c6de0	\N	\N			0	inbound	+12146922088	\N	3.92102694511413574	\N	new lead	cell phone   tx	9	\N	\N	3290
2017-12-19 14:32:52.655731+00	2017-12-19 14:32:56.641933+00	7991	completed				+17579028868		4	2017-12-19 14:32:52.652305	2017-12-19 14:32:56.631404	CAa3a14b51ccc14a23ec9fb038e7564629	\N	120			0	inbound	+18036184106	123	2.30901384353637695	\N	new lead		10	\N	\N	3293
2017-09-13 07:25:56.615676+00	2017-09-13 07:25:56.666875+00	6328	missed	Emma	Passmore	profepassmore@gmail.com	+16786975381		\N	2017-09-13 07:25:56.614217	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	3297
2016-11-04 11:47:56.313879+00	2016-11-04 11:47:56.345712+00	2682	missed	Amanda	Edwards	Aedwards31391@gmail.com	+18162558416		\N	2016-11-04 11:47:56.31263	\N		25d0200e-983d-4413-94ae-eb664b99711c	\N			0	outbound	+18556311490	\N	\N	{}	new lead		1	\N	\N	3298
2016-05-25 16:29:38.503173+00	2016-05-25 18:26:05.395703+00	205	completed				+13303010551		0	2016-05-25 16:29:38.502258	2016-05-25 16:29:43.059177	CAfa27bb0e379495b276a39d523e7dc925	a75d788e-40a6-4b7b-bb41-ca24aa98e7d9	\N			1	outbound	+18556313454	\N	1.6725468635559082	{}	new lead		1	\N	\N	3302
2016-05-25 16:29:59.122789+00	2016-05-25 16:30:55.329593+00	206	completed				+13303010551		51	2016-05-25 16:29:59.121916	2016-05-25 16:30:55.328472	CA35c15b5db917bb9f28a78b12c7ffed3a	a75d788e-40a6-4b7b-bb41-ca24aa98e7d9	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE8ba4f3e9958d5d50883bfdd01d6a1b75	1	outbound	+18556313454	\N	1.91430187225341797	{}	new lead		1	\N	\N	3302
2016-05-21 14:53:09.704391+00	2017-11-29 18:31:01.155526+00	155	completed	Unknown			+13303010551		84	2016-05-21 14:53:09.703378	2016-05-21 14:54:33.822291	CA42557aa44a480ef900fb104747e49912	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE5e2893cda8a00016352bcd7f5849a764	0	inbound	+18556313454	\N	\N	null	new lead		1	\N	\N	3302
2016-05-25 17:01:46.684174+00	2017-11-29 18:31:01.155591+00	213	completed	Unknown			+13303010551		18	2016-05-25 17:01:46.682984	2016-05-25 17:02:04.752916	CA8d193012a15bf0a76f6c0ac543ccdb08	\N	17		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE1f6f6867edd738b8ecb789ad70fea7cf	0	inbound	+18556313454	\N	1.21409893035888672	null	new lead		1	\N	\N	3302
2017-10-13 17:09:42.796671+00	2017-10-13 17:10:24.266095+00	6694	completed				+17175529667		41	2017-10-13 17:09:42.79482	2017-10-13 17:10:23.428845	CA99c4e1c935b0ef9f64775ebcaad4025a	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REb7fb73f08174ffe14e9dffa4b06529b5	0	inbound	+17704009016	132	16.2149920463562012	\N	new lead		13	\N	\N	3304
2016-09-09 20:48:09.323758+00	2016-12-10 01:01:00.200046+00	1984	completed				+15852676461		307	2016-09-09 20:48:09.321446	2016-09-09 20:53:16.729112	CAe08ede74ea04616dac328acde8af5f29	\N	57			0	inbound	+18557860909	\N	3.26373291015625	null	new lead		3	\N	\N	3305
2017-05-04 14:20:07.274908+00	2017-08-17 14:35:21.045119+00	4703	completed				+16016678633		182	2017-05-04 14:20:07.271818	2017-05-04 14:23:09.021759	CA35188fe3b52dca5965689649edb356a7	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REbdbbc2d9b1acb6e6e3314adcf016afcb	0	inbound	+18177569010	124	10.7422118186950684	\N	new lead	john warfield	12	\N	\N	3308
2017-10-22 13:48:13.700707+00	2017-10-23 13:14:24.769968+00	6780	missed	Mark	Justice	Sherryborja43@gmail.com	+17066104643		0	2017-10-22 13:48:13.698866	2017-10-22 13:54:07.92011	CAbcea817328ed7e2f4716443a12be3064	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			3	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	3309
2017-10-26 16:38:33.577251+00	2017-10-26 16:41:13.175985+00	6818	completed	Mark	Justice		+17066104643		160	2017-10-26 16:38:33.57497	2017-10-26 16:41:13.163173	CAe502931973ce52f746d8d41f0f88ae8f	\N	153			0	inbound	+17707665732	133	8.63366103172302246	\N	select status		13	\N	\N	3309
2016-10-01 12:59:50.137557+00	2016-12-10 01:05:11.337125+00	2120	completed				+16102873904		350	2016-10-01 12:59:50.13533	2016-10-01 13:05:40.146128	CA831df61b6d6e4a2134616db875fd3fab	\N	25			0	inbound	+18555693686	\N	1.32085609436035156	null	new lead		3	\N	\N	3311
2017-09-13 18:21:51.634224+00	2017-09-13 18:24:19.495731+00	6333	completed				+12108461221		148	2017-09-13 18:21:51.631878	2017-09-13 18:24:19.470738	CA55a3113709a26a8d3a6dcf66f3a8d9c0	\N	153			0	inbound	+17707665732	133	8.77175092697143555	\N	new lead		13	\N	\N	3312
2016-12-24 15:51:16.109676+00	2016-12-24 15:51:32.446595+00	3094	completed				+14194745840		16	2016-12-24 15:51:16.108042	2016-12-24 15:51:31.973712	CA056dbb67ad5761ad11fe3f2b996942cb	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REd766401090fb013e2ef8257857e069b6	0	inbound	+18557240606	49	2.02598404884338379	null	new lead		1	\N	\N	3315
2016-06-16 16:28:02.091227+00	2017-11-29 18:32:13.820411+00	427	completed	Unknown			+13307192810		28	2016-06-16 16:28:02.089602	2016-06-16 16:28:30.551044	CA6fdf0800268ff46b2c0d7bd9f3d00485	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REbc837ee4b3a958be15614023d4284344	0	inbound	+18555983683	\N	14.1747610569000244	null	new lead		1	\N	\N	3318
2016-06-15 15:18:16.307244+00	2016-06-15 15:19:09.385222+00	420	completed				+13307192810		48	2016-06-15 15:18:16.305791	2016-06-15 15:19:09.383498	CA7f97b0ce33525c8f489a02053a11316e	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	0.84416508674621582	{}	new lead		1	\N	\N	3318
2016-06-15 15:39:40.445454+00	2016-06-15 15:40:28.782728+00	421	completed				+13307192810		44	2016-06-15 15:39:40.444377	2016-06-15 15:40:28.781644	CA6c059a245f604c5e0370fc693683e023	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.46949601173400879	{}	new lead		1	\N	\N	3318
2016-06-08 16:59:46.408525+00	2016-06-08 17:01:08.936878+00	397	completed	Dale	Hinzman	drhinzman@gmail.com	+13307192810		53	2016-06-08 16:59:46.407226	2016-06-08 17:01:08.93586	CA9524adab1fd0c01ff95808cc62a478c0	ee869226-e246-4ab4-aaaa-e9403e2ddd39	17			1	outbound	+18555983683	\N	28.0850510597229004	{}	new lead		1	\N	\N	3318
2016-06-15 19:08:45.757268+00	2016-06-15 19:09:31.460409+00	423	completed				+13307192810		41	2016-06-15 19:08:45.755612	2016-06-15 19:09:31.459411	CA4973d891945ef2eae89d005165840a8c	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.32555699348449707	{}	new lead		1	\N	\N	3318
2016-06-16 16:37:03.158635+00	2016-06-16 17:11:51.515374+00	428	completed				+13307192810		0	2016-06-16 16:37:03.157387	2016-06-16 16:37:07.180512	CA1ffb229870c7ee25f96b4602c4f447ef	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	\N			1	outbound	+18555983683	\N	1.41199707984924316	{}	new lead		1	\N	\N	3318
2016-06-16 16:37:25.293217+00	2016-06-16 16:40:04.710718+00	429	completed				+13307192810		154	2016-06-16 16:37:25.292285	2016-06-16 16:40:04.709465	CAbced7b849b0e1dc5a3f270e0c612391f	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.954833984375	{}	new lead		1	\N	\N	3318
2017-04-27 13:40:58.702992+00	2017-11-29 18:38:49.806858+00	4354	completed				+12145573785		175	2017-04-27 13:40:58.701222	2017-04-27 13:43:53.248372	CAe538ad7c59426f25106f5efc746f7e60	\N	133			0	inbound	+12147122250	\N	7.60768699645996094	\N	new lead	cell phone   tx	9	\N	\N	3319
2017-06-26 15:53:24.529044+00	2017-06-26 15:54:36.716495+00	5658	completed	camille	brown	sunday83ful@gmail.com	+14782343180		54	2017-06-26 15:53:24.527596	2017-06-26 15:54:36.694118	CAd6721200c5860690a879578c8e086668	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REc0463457fdeb43793b7f2b090f6aee41	1	outbound	+17704009016	\N	16.5502879619598389	{}	new lead		13	\N	\N	3320
2017-06-26 16:03:12.000267+00	2017-06-26 16:03:22.134331+00	5659	missed	camille	brown		+14782343180		10	2017-06-26 16:03:11.998392	2017-06-26 16:03:22.12614	CA7ac80f08d410b69392c28d39f7bf6615	\N	\N			0	inbound	+17704009016	132	\N	\N	new lead		13	\N	\N	3320
2017-06-26 16:30:59.714355+00	2017-06-26 16:31:21.765815+00	5660	missed	camille	brown		+14782343180		22	2017-06-26 16:30:59.71254	2017-06-26 16:31:21.752858	CAdc0ceb27bfb62cc5cf728c44a20ce42f	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REfcd28ade6bc21bc4956527f1812cccff	0	inbound	+17704009016	132	\N	\N	new lead		13	\N	\N	3320
2016-08-05 18:14:58.485651+00	2016-08-05 19:07:43.659199+00	1281	missed	Gerald	Collins	nutfor3@aol.com	+16617142378		\N	2016-08-05 18:14:58.484447	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - credit union		1	\N	\N	3322
2017-12-14 20:04:51.079242+00	2017-12-14 20:12:01.078889+00	7875	completed	Salathiel	McKinney	calebmckinney26@gmail.com	+14787727517		254	2017-12-14 20:04:51.077767	2017-12-14 20:09:12.991054	CA5e3298c3ee9fd8fa570f1864bc595c45	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE4bfe8cbcf76443a0fa7bafc992f85704	1	outbound	+17704009016	\N	7.42600202560424805	{}	select status		13	\N	\N	3323
2017-03-27 17:08:55.61222+00	2017-11-29 18:38:53.212993+00	3591	completed				+16095297176		89	2017-03-27 17:08:55.610399	2017-03-27 17:10:24.437001	CA0eaec541a4dfd6a23bf56721cf81806f	\N	107			0	inbound	+12146922088	\N	8.44176316261291504	\N	new lead	nam stanislav  	9	\N	\N	3327
2016-10-13 20:19:00.781488+00	2016-12-10 01:01:51.441114+00	2291	completed				+14154541460		24	2016-10-13 20:19:00.779642	2016-10-13 20:19:24.38758	CA7b2d6e769a8dc8b2004aa374b2c6046e	\N	50			0	inbound	+18559693782	\N	2.15694904327392578	null	new lead		3	\N	\N	3329
2016-10-07 17:46:20.939797+00	2016-12-10 01:01:51.441072+00	2229	completed				+14154541460		28	2016-10-07 17:46:20.938087	2016-10-07 17:46:48.843159	CA34e35bd65282df49e338669f27b342e5	\N	50			0	inbound	+18559693782	\N	1.75252890586853027	null	new lead		3	\N	\N	3329
2016-08-19 14:08:02.382674+00	2016-12-09 17:06:53.905801+00	1599	completed				+12159691520		274	2016-08-19 14:08:02.380728	2016-08-19 14:12:36.81387	CAda0226e60adb80b36787d61ffd58c9b2	\N	21			0	inbound	+18558021330	\N	3.19824314117431641	null	new lead		3	\N	\N	3332
2017-06-20 19:00:54.751242+00	2017-06-20 19:02:20.374998+00	5616	completed	Jeff	Grindle	Mistygrindle99@gmail.com	+17068786101		54	2017-06-20 19:00:54.748019	2017-06-20 19:02:20.343954	CAf7d3deb6d8b573de09da31a56a6dd0e4	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REa81cd8ef08d1d9ab96a8719a93607c12	1	outbound	+17704009016	\N	23.0210549831390381	{}	new lead		13	\N	\N	3333
2016-11-03 00:24:43.744414+00	2016-11-03 00:24:43.768148+00	2607	missed	Navneet	Mishra	nav.1985@gmail.com	+17137258486		\N	2016-11-03 00:24:43.743273	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	3336
2017-04-04 00:50:59.232429+00	2017-11-29 18:38:53.213309+00	3680	completed				+12128833811		17	2017-04-04 00:50:59.230529	2017-04-04 00:51:16.22089	CAd79d030010b60d11c898d620ab1d0aa1	\N	\N			0	inbound	+12146922088	\N	4.79398107528686523	\N	new lead	moelis and co	9	\N	\N	3337
2016-08-19 14:25:27.858634+00	2017-11-29 18:31:10.262462+00	1600	missed	Sonia	Bauer		+15133993080		94	2016-08-19 14:25:27.856999	2016-08-19 14:27:01.518338	CA27d9e26b22e90383cf27972f4b40602a	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE17cea1b681f992a5f9ad4e855beb75e0	0	inbound	+18556311490	\N	31.6693871021270752	null	application submitted - autopay		1	\N	\N	3338
2017-12-16 21:48:19.8642+00	2017-12-16 21:49:41.786791+00	7941	completed				+16022288435		81	2017-12-16 21:48:19.862361	2017-12-16 21:49:41.081515	CAc4c234bf7eac34d67c9eec87d40d8cec	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE77246e4d5122c08baeabbbecdd95de68	0	inbound	+18558645656	136	2.27158808708190918	\N	new lead		15	\N	\N	3341
2017-12-16 21:50:35.002296+00	2017-12-16 21:51:51.072714+00	7944	completed				+16022288435		75	2017-12-16 21:50:35.000475	2017-12-16 21:51:50.298838	CA112284e9e13a347dbeececbf04bd43ed	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE3949921b214857f100f5c17db6e8651d	0	inbound	+18558645656	136	2.27689313888549805	\N	new lead		15	\N	\N	3341
2017-12-16 21:52:51.963317+00	2017-12-16 21:54:08.206756+00	7946	completed				+16022288435		75	2017-12-16 21:52:51.96144	2017-12-16 21:54:07.083686	CA55875a68f487bad7e729ff2b30d63fb6	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE28e06d504b4720249c5846fb406860fe	0	inbound	+18558645656	136	2.37889289855957031	\N	new lead		15	\N	\N	3341
2017-12-16 21:54:18.669643+00	2017-12-16 21:55:41.493319+00	7947	completed				+16022288435		82	2017-12-16 21:54:18.667876	2017-12-16 21:55:40.285678	CA422999d25543b8d8b0f5cf00e75736e5	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE71b5f71afb598b291b8e68b0daaedd00	0	inbound	+18558645656	136	2.70598220825195312	\N	new lead		15	\N	\N	3341
2017-12-16 21:55:53.628555+00	2017-12-16 21:57:15.165105+00	7948	completed				+16022288435		81	2017-12-16 21:55:53.626976	2017-12-16 21:57:14.480936	CAf59417a602dcf31d6da880d83a19ee55	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE4d3ac5e5f9d503d0c6c22e040eef1a96	0	inbound	+18558645656	136	2.34167289733886719	\N	new lead		15	\N	\N	3341
2017-11-20 19:14:28.843619+00	2017-11-20 20:09:36.73581+00	7146	completed	Jacquez	Dunn	tscoleman2@gmail.com	+17063405331		401	2017-11-20 19:14:28.842233	2017-11-20 19:21:19.361849	CA794573d54d6c01d8ffbdd7ec18877f2b	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE0386e0d74f5c6316118e262f1a6b03d7	1	outbound	+17704009016	\N	10.7567880153656006	{}	select status		13	\N	\N	3344
2017-05-04 21:14:23.57885+00	2017-11-29 18:38:53.215121+00	4729	completed				+19727054501		61	2017-05-04 21:14:23.576975	2017-05-04 21:15:24.463673	CAfb6e71ef4552c94f7184b2f249847d7b	\N	\N			0	inbound	+12146922088	\N	2.09172201156616211	\N	new lead	bbvacompass	9	\N	\N	3345
2017-05-04 21:17:24.172336+00	2017-11-29 18:38:49.809714+00	4731	completed				+19727054501		80	2017-05-04 21:17:24.170882	2017-05-04 21:18:44.277846	CA805c3b28a8b4c963ab497c8e07e9ac39	\N	\N			0	inbound	+12147122250	\N	1.63353204727172852	\N	new lead	bbvacompass	9	\N	\N	3345
2017-05-04 21:25:28.856441+00	2017-11-29 18:38:49.809722+00	4732	missed				+19727054501		53	2017-05-04 21:25:28.854324	2017-05-04 21:26:21.798521	CA3521824acbad63f2d1cd7a87092e1d55	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	bbvacompass	9	\N	\N	3345
2017-05-22 16:24:27.908715+00	2017-11-29 18:38:49.812594+00	5281	completed				+16129918151		89	2017-05-22 16:24:27.907378	2017-05-22 16:25:56.505258	CAb5e249bbfe98951d2af4864164f91a34	\N	99			0	inbound	+12147122250	\N	8.16309285163879395	\N	new lead	wireless caller	9	\N	\N	4123
2017-10-14 14:12:20.893699+00	2017-10-14 14:13:55.961342+00	6710	completed				+18176579151		94	2017-10-14 14:12:20.891839	2017-10-14 14:13:55.151093	CA5f97cdd937ae7b6e65d7039973994677	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE1bef28e9ac6a50d4f94731e73d12339e	0	inbound	+18177569010	124	8.78386592864990234	\N	new lead	donna scott	12	\N	\N	3347
2016-11-03 15:27:05.409671+00	2016-11-03 15:27:57.651536+00	2626	completed				+17046434498		52	2016-11-03 15:27:05.408445	2016-11-03 15:27:57.061585	CAa2da359c14615dff0c136a4e8c3fd1d0	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REc9c6ef5385e604be255c4e46a9e278b0	0	inbound	+18557240606	49	2.19463706016540527	null	new lead		1	\N	\N	3348
2016-11-03 19:57:12.997465+00	2016-11-03 20:16:31.096148+00	2655	completed				+17046434498		1155	2016-11-03 19:57:12.996266	2016-11-03 20:16:27.793423	CA80da90166baee5c1f958ef0dc8d00c34	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REa7c51e7d3373f58ff606260c20c65cbc	0	inbound	+18557240606	49	2.07794690132141113	null	new lead		1	\N	\N	3348
2017-06-28 19:10:13.551101+00	2017-06-28 19:16:27.983607+00	5677	completed				+18173501785		373	2017-06-28 19:10:13.549216	2017-06-28 19:16:26.791034	CA67e1186f55640ad52a314d695fd45297	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE7322ee418cd9bc046351a523635ec1a6	0	inbound	+18177569010	124	8.43043780326843262	\N	new lead	caranza manuela	12	\N	\N	3349
2017-06-28 22:02:09.315599+00	2017-06-28 22:02:50.9488+00	5680	completed				+18173501785		41	2017-06-28 22:02:09.312207	2017-06-28 22:02:50.127762	CA81a52bd5c76bdf673df8407179aab750	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE5c1436f2d93d3b3371ff5c80baa88f4b	0	inbound	+18177569010	124	7.14496111869812012	\N	new lead	caranza manuela	12	\N	\N	3349
2017-06-28 23:34:57.512935+00	2017-06-28 23:37:33.20511+00	5682	completed				+18173501785		155	2017-06-28 23:34:57.509883	2017-06-28 23:37:32.109188	CA782cb20a86ec3f63dbffae0767e6c990	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE8a9b983175eab023b209775d56eb3d2f	0	inbound	+18177569010	124	7.50710511207580566	\N	new lead	caranza manuela	12	\N	\N	3349
2017-06-28 20:35:53.025311+00	2017-08-17 14:35:21.0455+00	5679	completed				+18173501785		97	2017-06-28 20:35:53.022358	2017-06-28 20:37:29.695573	CA6f73cf2df6a94a80e2e2d6ab9a43fc21	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE0e00843c1f10fe7803667c01f55af65f	0	inbound	+18177569010	124	39.7438998222351074	\N	new lead	caranza manuela	12	\N	\N	3349
2017-06-28 23:20:20.095705+00	2017-08-17 14:35:21.045507+00	5681	completed				+18173501785		91	2017-06-28 23:20:20.094018	2017-06-28 23:21:51.383058	CA7824feb4693ce1530ffca255d1a5ed45	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REbb83ad3b4c979269cd17a13b2d894888	0	inbound	+18177569010	124	5.93906712532043457	\N	new lead	caranza manuela	12	\N	\N	3349
2017-05-31 18:12:22.673756+00	2017-08-17 14:35:21.045406+00	5531	completed				+18175008018		75	2017-05-31 18:12:22.6718	2017-05-31 18:13:37.745887	CA92a440575a5b71754ce48cd738ffe51f	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE46b9223946be2d6545b6268ffe8c4523	0	inbound	+18177569010	124	10.3218839168548584	\N	new lead	phone c	12	\N	\N	3350
2017-05-31 19:11:10.634556+00	2017-08-17 14:35:21.045413+00	5534	completed				+18175008018		23	2017-05-31 19:11:10.63281	2017-05-31 19:11:33.24935	CAd6621421c8216b53dd798b27841f11a1	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE52d0bb852471740e209c5c4f688354cd	0	inbound	+18177569010	124	7.19591808319091797	\N	new lead	phone c	12	\N	\N	3350
2017-10-27 18:01:18.757597+00	2017-10-27 18:04:23.116655+00	6842	completed	Brenda	Davidson 	davidsin30533@gmail.com	+17065250368		166	2017-10-27 18:01:18.756236	2017-10-27 18:04:22.750604	CAcf89d4132c0dab553d35dc160b8a0cb2	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REb3c4f286d0cd6dc6118e4a45adce8221	1	outbound	+17704009016	\N	16.9075500965118408	{}	new lead		13	\N	\N	3351
2016-07-12 16:20:50.441111+00	2016-12-10 01:05:18.400686+00	855	completed				+16104620156		353	2016-07-12 16:20:50.439599	2016-07-12 16:26:43.642949	CAcbfd3f0865296c036253fd9504508911	\N	24			0	inbound	+18557088731	\N	2.51825785636901855	null	new lead		3	\N	\N	3353
2016-07-12 21:06:46.658591+00	2016-12-10 01:05:18.400693+00	863	completed				+16104620156		15	2016-07-12 21:06:46.657308	2016-07-12 21:07:01.479163	CA501d09458f1a66db5b464e4966d8e732	\N	24			0	inbound	+18557088731	\N	1.93459415435791016	null	new lead		3	\N	\N	3353
2017-03-23 15:39:05.962673+00	2017-11-29 18:47:25.067905+00	3553	completed				+19725278888		348	2017-03-23 15:39:05.958073	2017-03-23 15:44:54.192137	CA16a528eccc41e6cdca8e17d06e52b131	\N	82		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE9ea8642bfeddba5abad2214a119db5fe	0	inbound	+19728330116	\N	8.9973909854888916	\N	new lead	excel realty	8	\N	\N	3354
2017-04-19 23:31:42.577604+00	2017-11-29 18:47:25.068144+00	4119	completed				+18703510561		81	2017-04-19 23:31:42.575915	2017-04-19 23:33:03.348594	CA2ceae03992b2f80ac8ca6fecd3037a69	\N	83		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE6f5488c721c8586d14357f36476963f9	0	inbound	+19728330116	\N	11.1597440242767334	\N	new lead	owens kyle	8	\N	\N	3355
2017-10-10 20:49:15.451518+00	2017-10-10 20:54:25.413428+00	6653	completed	April	Kelly	April.l.kelly11@gmail.com	+17062449636		47	2017-10-10 20:49:15.44984	2017-10-10 20:50:22.914614	CAcf7f728f2024b7c8494dc89b8e5c117b	0427608a-ae09-4db0-a1e8-374423ee28c3	152			1	outbound	+17704009016	\N	20.2357239723205566	{}	new lead		13	\N	\N	3356
2016-08-05 21:25:34.342244+00	2017-11-29 18:32:13.821678+00	1290	missed				+13306102326		47	2016-08-05 21:25:34.340949	2016-08-05 21:26:20.950413	CAff8c5aef10317d50f7aa15c5bb7395de	\N	\N			0	inbound	+18555983683	\N	21.0454390048980713	null	new lead		1	\N	\N	3359
2016-11-03 13:28:34.226807+00	2016-11-03 13:28:34.24949+00	2619	missed	SAMIK	SAHA	SAHA.SAMIK@GMAIL.COM	+14122250286		\N	2016-11-03 13:28:34.225712	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	3360
2016-10-14 22:04:39.960369+00	2016-12-10 01:01:00.200424+00	2298	completed				+16192452350		662	2016-10-14 22:04:39.958632	2016-10-14 22:15:42.252462	CA6d9c778823af0b974a7d6440a76b6938	\N	57			0	inbound	+18557860909	\N	9.69105005264282227	null	new lead		3	\N	\N	3926
2017-05-30 13:18:02.818746+00	2017-11-29 18:38:49.813968+00	5486	completed				+17703353184		118	2017-05-30 13:18:02.816484	2017-05-30 13:20:00.421611	CAe814c1329ecac5fcc8849639da050f1d	\N	103			0	inbound	+12147122250	\N	12.0085079669952393	\N	new lead	lopez jr e     	9	\N	\N	3361
2017-09-15 16:40:48.232226+00	2017-09-15 16:44:48.515671+00	6367	completed	RODNEY	PRATHER	prather.rodney25@yahoo.com	+14042072786		229	2017-09-15 16:40:48.230864	2017-09-15 16:44:48.09636	CA5155a46b747f0127a694ddf65af0ae46	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE0433c5d7da309383c36b5604109eabe3	1	outbound	+17704009016	\N	10.2984099388122559	{}	new lead		13	\N	\N	3362
2017-09-26 13:55:16.703968+00	2017-09-26 13:56:42.251982+00	6488	completed	RODNEY	PRATHER		+14042072786		86	2017-09-26 13:55:16.701835	2017-09-26 13:56:42.239203	CA75aeaa0c2c33a722c227c91d8d2fc71c	\N	150			0	inbound	+17707665732	133	9.89268112182617188	\N	new lead		13	\N	\N	3362
2016-10-31 20:22:55.810672+00	2016-10-31 20:25:23.297161+00	2422	completed				+14043810668		147	2016-10-31 20:22:55.809632	2016-10-31 20:25:22.376704	CAe147b4d5da3481b738e0cc7bb95a88ff	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE4875144005e500f10425c596e5baf783	0	inbound	+18557240606	49	2.19239211082458496	null	new lead		1	\N	\N	3364
2017-08-15 00:54:21.857141+00	2017-08-15 00:54:21.916107+00	6029	missed	Michelle	Ayers	elleayers29@gmail.com	+17068094562		\N	2017-08-15 00:54:21.854133	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	3365
2017-08-11 17:45:35.103923+00	2017-08-11 17:46:21.836916+00	5990	completed	Michelle	Ayers	elleayers29@gmail.com	+17068094562		29	2017-08-11 17:45:35.102432	2017-08-11 17:46:20.804765	CAbe971415edbbc6fe608975410fc27192	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE56325a8669f63d9e21b27bbd0577d4ef	1	outbound	+17704009016	\N	13.1189479827880859	{}	new lead		13	\N	\N	3365
2017-08-18 20:52:36.455442+00	2017-08-18 20:55:13.850871+00	6096	completed	Michelle	Ayers		+17068094562		157	2017-08-18 20:52:36.453365	2017-08-18 20:55:13.828958	CA62eb3e0a519ae7e812dc7d55628855a4	\N	150			0	inbound	+17707665732	133	23.378532886505127	\N	new lead		13	\N	\N	3365
2017-09-27 13:26:40.57077+00	2017-09-27 13:29:54.338315+00	6494	completed	Michelle	Ayers		+17068094562		194	2017-09-27 13:26:40.568528	2017-09-27 13:29:54.324092	CAa8e6f56e57b09f7c7fdcc3a6aeece540	\N	154			0	inbound	+17707665699	134	0.71839594841003418	\N	new lead		13	\N	\N	3365
2016-10-11 00:51:39.100387+00	2016-12-10 00:57:48.461811+00	2259	completed				+18058322309		77	2016-10-11 00:51:39.098781	2016-10-11 00:52:55.699488	CA178fb72f65e1268a1f190c7aa8e57c03	\N	30			0	inbound	+18559652184	\N	3.25802087783813477	null	new lead		3	\N	\N	3371
2016-10-19 23:58:53.050005+00	2016-12-10 00:57:48.461852+00	2323	completed				+18058322309		206	2016-10-19 23:58:53.048267	2016-10-20 00:02:19.26783	CA4413c169feb2b908f8422e25add7444c	\N	30			0	inbound	+18559652184	\N	3.62314391136169434	null	new lead		3	\N	\N	3371
2016-10-20 00:02:36.268241+00	2016-12-10 00:57:48.461859+00	2324	completed				+18058322309		119	2016-10-20 00:02:36.266588	2016-10-20 00:04:35.051558	CAbac4b92e4549cfb0e3cc2f0ae8acd77c	\N	30			0	inbound	+18559652184	\N	3.37945795059204102	null	new lead		3	\N	\N	3371
2016-10-20 20:06:41.437731+00	2016-12-10 00:57:48.461866+00	2330	completed				+18058322309		351	2016-10-20 20:06:41.436717	2016-10-20 20:12:32.080883	CA3ae763eafeed0a6127574aede10f48c4	\N	30			0	inbound	+18559652184	\N	2.5684349536895752	null	new lead		3	\N	\N	3371
2016-11-01 03:27:22.778835+00	2016-12-10 00:57:48.461894+00	2449	completed				+18058322309		6	2016-11-01 03:27:22.776399	2016-11-01 03:27:28.32126	CAa7b17d44e57e5a716c1ab5a48bdc7a81	\N	30			0	inbound	+18559652184	\N	1.85306596755981445	null	new lead		3	\N	\N	3371
2017-12-19 13:15:03.411425+00	2017-12-19 13:25:37.2943+00	7987	completed				+14193415345		631	2017-12-19 13:15:03.409723	2017-12-19 13:25:34.0739	CAf5d71ebaed39d93f20ac063845789474	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE076404f9db87857eccd1cfd5ef6e87e5	0	inbound	+18558645656	136	2.51372194290161133	\N	new lead		15	\N	\N	3372
2017-12-19 13:35:25.982282+00	2017-12-19 13:38:52.686996+00	7988	completed				+14193415345		206	2017-12-19 13:35:25.980447	2017-12-19 13:38:51.512792	CA8858f4be3a8bbc4d0156b1e2c9420f18	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE921b3a61cde49e03fc40cacc45c15db7	0	inbound	+18558645656	136	1.91252708435058594	\N	new lead		15	\N	\N	3372
2017-12-15 22:26:28.798121+00	2017-12-15 22:27:12.577135+00	7910	completed				+17378742833		43	2017-12-15 22:26:28.796118	2017-12-15 22:27:11.387698	CAf4765cbcbabbc84f118a5bb383872197	\N	154		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE8e888d3c85ae063ccf23e5b0830ccf55	0	inbound	+17707665699	134	1.29182600975036621	\N	new lead	name unavailabl	13	\N	\N	3376
2017-12-15 22:31:26.300141+00	2017-12-15 22:35:09.02382+00	7911	completed				+17378742833		222	2017-12-15 22:31:26.298167	2017-12-15 22:35:07.811572	CA37e42b546a1a083af710469cdd366e6e	\N	154		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REdaa25667ee1fdb48a9778160e42f93ad	0	inbound	+17707665699	134	1.30115604400634766	\N	new lead	name unavailabl	13	\N	\N	3376
2017-12-15 23:06:44.157538+00	2017-12-15 23:11:33.488286+00	7917	completed				+17378742833		288	2017-12-15 23:06:44.155769	2017-12-15 23:11:32.26079	CAb8960b85fecb70f850d0b158ea1a1286	\N	154		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE3d881338016a670bbe3e1e49428ed48b	0	inbound	+17707665699	134	1.29726696014404297	\N	new lead	name unavailabl	13	\N	\N	3376
2017-12-15 23:12:25.546652+00	2017-12-15 23:14:22.457324+00	7918	completed				+17378742833		116	2017-12-15 23:12:25.544757	2017-12-15 23:14:21.706892	CAed681552cdc3855447259d4045eff9d7	\N	154		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE59151d0752eb8aa647ea9bcad110ed33	0	inbound	+17707665699	134	0.88788604736328125	\N	new lead	name unavailabl	13	\N	\N	3376
2017-04-20 17:50:37.980381+00	2017-11-29 18:38:49.805989+00	4142	completed				+13086721159		58	2017-04-20 17:50:37.978556	2017-04-20 17:51:35.588298	CA662431b3ea72d6ec89848db11db8115a	\N	107			0	inbound	+12147122250	\N	5.6363677978515625	\N	new lead	elkins tiffany 	9	\N	\N	3379
2017-04-20 17:52:45.311185+00	2017-11-29 18:38:49.805996+00	4143	completed				+13086721159		109	2017-04-20 17:52:45.308859	2017-04-20 17:54:34.707144	CAe5cfdf7361a10b3fe3783e7a5243ab31	\N	\N			0	inbound	+12147122250	\N	8.96557784080505371	\N	new lead	elkins tiffany 	9	\N	\N	3379
2017-04-20 21:03:53.730659+00	2017-11-29 18:38:49.806089+00	4163	completed				+13086721159		69	2017-04-20 21:03:53.72912	2017-04-20 21:05:02.938231	CA7487e736728feb88aa3db48d4a2713a0	\N	99			0	inbound	+12147122250	\N	10.1777942180633545	\N	new lead	elkins tiffany 	9	\N	\N	3379
2017-04-20 21:05:21.117521+00	2017-11-29 18:38:49.806096+00	4164	completed				+13086721159		101	2017-04-20 21:05:21.11609	2017-04-20 21:07:01.877083	CA9fe7817ffc7f7a1ce22ad0ef9efef4f9	\N	105			0	inbound	+12147122250	\N	3.00929498672485352	\N	new lead	elkins tiffany 	9	\N	\N	3379
2017-03-14 21:28:52.042338+00	2017-11-29 18:47:25.06775+00	3428	completed				+19407351247		145	2017-03-14 21:28:52.040526	2017-03-14 21:31:17.513462	CAab5698525dcb129f7a5e914aa074b81c	\N	84		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE0b119642217bff54243e9289e9b9bc9b	0	inbound	+19728330116	\N	9.93182992935180664	\N	new lead	phillip thomas	8	\N	\N	3381
2017-11-20 16:54:29.639686+00	2017-11-20 17:00:46.366489+00	7141	completed				+17063086687		376	2017-11-20 16:54:29.636338	2017-11-20 17:00:45.947471	CAb9fb86dc0740de39995be2f58180cea9	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE2410adbba1308bd195630939e278a691	0	inbound	+17704009016	132	327.938179969787598	\N	new lead		13	\N	\N	3383
2017-11-20 16:58:53.592157+00	2017-11-20 17:03:46.596075+00	7142	completed				+17063086687		292	2017-11-20 16:58:53.590111	2017-11-20 17:03:45.40213	CA8c35f8d7921926d467cf6bf44911c3c8	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE1b436d96beb0a828abe96679b264bcfc	0	inbound	+17704009016	132	12.1696529388427734	\N	new lead		13	\N	\N	3383
2017-11-25 14:13:53.649204+00	2017-11-25 14:14:58.149343+00	7261	completed				+17063086687		64	2017-11-25 14:13:53.647122	2017-11-25 14:14:58.118986	CA4051884bed052e87055319eb60eaab4d	\N	150			0	inbound	+17707665732	133	17.0482079982757568	\N	new lead		13	\N	\N	3383
2017-12-06 15:42:57.477418+00	2017-12-06 15:45:01.268592+00	7630	completed				+15614418015		123	2017-12-06 15:42:57.475375	2017-12-06 15:45:00.073214	CA20c7806a88cf5635f5c8cf7ec1bb2ed6	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE48d0e6905e0c50f46a7aa024565c6525	0	inbound	+18558645656	136	2.46994996070861816	\N	new lead		15	\N	\N	3384
2017-12-06 15:45:08.353082+00	2017-12-06 15:58:23.707562+00	7631	completed				+15614418015		792	2017-12-06 15:45:08.351701	2017-12-06 15:58:20.543034	CAe085e89350ed48de5f664eeb7e9eaa3c	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE1e536257d289a571da84031058278664	0	inbound	+18558645656	136	2.21705198287963867	\N	new lead		15	\N	\N	3384
2017-12-05 20:19:22.30146+00	2017-12-05 20:19:22.343664+00	7603	missed	Mary	Stanton	robbymendy7018@att.net	+12105693714		\N	2017-12-05 20:19:22.299231	\N		243bc1c1-c430-4ccb-b9d9-71662ebbb896	\N			0	outbound	+18558645656	\N	\N	{}	new lead		15	\N	\N	3385
2016-11-18 22:32:06.553407+00	2017-11-29 18:31:56.600232+00	2947	missed				+15709910489		9	2016-11-18 22:32:06.551731	2016-11-18 22:32:15.689606	CAd6d054e2269d5a1cfea8dccc93896264	\N	\N			0	inbound	+18556311397	\N	\N	null	new lead		1	\N	\N	3387
2017-08-19 19:30:07.133811+00	2017-08-19 19:36:13.818189+00	6105	completed				+17707667886		367	2017-08-19 19:30:07.131969	2017-08-19 19:36:13.814366	CA30293f60361b7179a4640531e1ba069f	\N	150			0	inbound	+17707665732	133	326.212228059768677	\N	new lead		13	\N	\N	3391
2017-05-08 00:16:46.05397+00	2017-05-08 00:17:16.312641+00	4822	missed				+17864634898		30	2017-05-08 00:16:46.052111	2017-05-08 00:17:16.303643	CA62a477b63c12a3221bdb0429ab6f6c15	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACafc5b14e320f72bf4ed973f9ab19c98d/Recordings/REc7cab28d4386a9f4fc5bf65554e58712	0	inbound	+17735469660	16	\N	\N	new lead	barberousse  a	1	\N	\N	3392
2017-10-20 13:58:58.119089+00	2017-10-20 14:02:05.157956+00	6762	completed	Susan	Manus	susanmanus30@gmail.com	+14044533353		171	2017-10-20 13:58:58.117265	2017-10-20 14:02:05.125427	CAcd4a2c3c7f612d8db5ab2da3fd739afa	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE4f32bc953d52175771fdafe06d15bb8e	1	outbound	+17704009016	\N	14.4983317852020264	{}	new lead		13	\N	\N	3394
2017-10-14 14:52:37.400787+00	2017-10-14 14:56:54.69614+00	6711	completed	Brantley	Scuffham	scuffhamlaw@gmail.com	+17708992092		243	2017-10-14 14:52:37.397965	2017-10-14 14:56:53.463138	CA52d2ebe98a0e0eed9707c4170be408ce	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE5df9655aeeaa2d51f1e3d9ea3cecbf34	1	outbound	+17704009016	\N	11.1810300350189209	{}	new lead		13	\N	\N	3398
2017-10-19 18:23:16.914479+00	2017-10-19 18:24:38.463855+00	6757	completed	JOSHUA	VISBAL	j.visbal80@gmail.com	+19548601527		47	2017-10-19 18:23:16.911732	2017-10-19 18:24:21.320259	CAc49035dc12919c36212b6db32475f369	0427608a-ae09-4db0-a1e8-374423ee28c3	150			1	outbound	+17704009016	\N	16.7692821025848389	{}	new lead		13	\N	\N	3399
2016-11-03 19:25:02.833079+00	2016-11-03 19:28:30.033456+00	2651	completed				+17132318989		206	2016-11-03 19:25:02.830671	2016-11-03 19:28:29.239521	CA7734929b05ca3af5da3010d3248684ce	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REa5d1654115ede042611caeeea0e43072	0	inbound	+18557240606	49	2.13576507568359375	null	new lead		1	\N	\N	3401
2016-11-14 20:08:18.298997+00	2016-11-14 20:11:24.342076+00	2893	completed				+13462129394		186	2016-11-14 20:08:18.29767	2016-11-14 20:11:24.017472	CA084b09499bfeae201ab05d52ec9b526f	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE8e78126adfbfe431ec624dce870db767	0	inbound	+18557240606	49	2.00002098083496094	null	new lead		1	\N	\N	3405
2017-12-16 20:06:37.216678+00	2017-12-16 20:07:59.237835+00	7938	completed				+18065594898		81	2017-12-16 20:06:37.211341	2017-12-16 20:07:58.493416	CAe6f5278fb1226c7e8eca6c1d58be180c	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REa0f8ab6718b389538309532f5c0a3d2f	0	inbound	+18558645656	136	2.34737801551818848	\N	new lead		15	\N	\N	3406
2017-12-16 20:08:17.869235+00	2017-12-16 20:09:40.227298+00	7939	completed				+18065594898		82	2017-12-16 20:08:17.867613	2017-12-16 20:09:39.493515	CA8e69296d1ff178d5cdd743bfe0cef80a	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE6a78973d1006465b319fde2a708ee4de	0	inbound	+18558645656	136	2.92781209945678711	\N	new lead		15	\N	\N	3406
2017-12-16 21:48:43.230175+00	2017-12-16 21:50:04.45381+00	7942	completed				+18065594898		80	2017-12-16 21:48:43.228556	2017-12-16 21:50:03.123572	CAa1dc62a1bef1393ad7354c3e3a1f7769	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REc85fe2c286a22ebd7472f0604b96419c	0	inbound	+18558645656	136	2.54789900779724121	\N	new lead		15	\N	\N	3406
2017-12-16 21:50:17.012921+00	2017-12-16 21:51:39.114386+00	7943	completed				+18065594898		81	2017-12-16 21:50:17.011142	2017-12-16 21:51:38.417638	CAc625b114b5e95d214812904b70b5ba99	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE11afeb69b44016bc6acd01777ad85b02	0	inbound	+18558645656	136	2.53377199172973633	\N	new lead		15	\N	\N	3406
2017-12-16 21:51:50.593374+00	2017-12-16 21:53:12.338863+00	7945	completed				+18065594898		81	2017-12-16 21:51:50.591066	2017-12-16 21:53:11.146614	CAcf896fc5f686c2c0ddeac54ac7e83543	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE693cda03fed64b134989795c32843a16	0	inbound	+18558645656	136	2.12302780151367188	\N	new lead		15	\N	\N	3406
2017-12-23 15:36:52.999949+00	2017-12-23 16:05:07.959494+00	8080	completed				+18065594898		1692	2017-12-23 15:36:52.99824	2017-12-23 16:05:05.451644	CAa6ffdc9765e08720bd74e63950e53656	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE059de9de9ea5ff3792202d887a6f9e2f	0	inbound	+18558645656	136	2.79396390914916992	\N	new lead		15	\N	\N	3406
2017-06-23 21:24:00.272823+00	2017-06-24 13:44:45.085842+00	5649	completed				+17067687561		75	2017-06-23 21:24:00.270802	2017-06-23 21:25:14.94745	CA2e82cc9bdec5d7c26ac73b270446404c	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE79c5f3303e9a0f2bdab0adad1ebbcac3	0	inbound	+17704009016	132	17.3435499668121338	\N	new lead		13	\N	\N	3408
2017-01-20 22:11:32.05666+00	2017-01-20 22:12:55.764872+00	3128	completed				+16788878685		82	2017-01-20 22:11:32.054838	2017-01-20 22:12:54.404595	CA4fa9f380958b2400fd8d7dbdb2a231f3	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE216e0061e142f64d56cb83580d1237e0	0	inbound	+18557240606	49	1.83771109580993652	null	new lead		1	\N	\N	3409
2017-07-14 19:59:11.827587+00	2017-11-29 18:31:41.49087+00	5779	missed				+13058490245		21	2017-07-14 19:59:11.82565	2017-07-14 19:59:32.631112	CAd76ff6332fe015514e96b8e58005a230	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE09f4a5c4745085c555b91bf0a4fbb334	0	inbound	+18552959002	\N	\N	\N	new lead		1	\N	\N	3412
2017-04-26 17:29:11.335901+00	2017-11-29 18:38:53.214589+00	4329	completed				+12533206781		264	2017-04-26 17:29:11.334087	2017-04-26 17:33:35.303917	CAb63396dbf4f61fa684750399c8260e0e	\N	\N			0	inbound	+12146922088	\N	4.34926486015319824	\N	new lead	latif abdul	9	\N	\N	3413
2017-12-28 01:00:40.00483+00	2017-12-28 01:01:56.224877+00	8133	completed	Juan	Castro	juandcast@gmail.com	+13059876401		72	2017-12-28 01:00:40.003301	2017-12-28 01:01:56.223444	CA9b41cde043f737738993abb312d5ef8b	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.2975761890411377	{}	new lead		15	\N	\N	3415
2017-09-18 14:30:46.026354+00	2017-09-18 14:32:00.747984+00	6387	completed				+17064988523		75	2017-09-18 14:30:46.024432	2017-09-18 14:32:00.729224	CA5077f7fc4192d887d0c0d9a0deaaae9f	\N	150			0	inbound	+17707665732	133	13.0888509750366211	\N	new lead		13	\N	\N	3416
2017-04-27 16:48:16.722263+00	2017-11-29 18:38:49.806966+00	4369	completed				+12147970210		81	2017-04-27 16:48:16.720455	2017-04-27 16:49:38.028004	CAdbc0da658225afeb1e8a4ead9b4518e9	\N	127			0	inbound	+12147122250	\N	1.06760096549987793	\N	new lead	levin adam     	9	\N	\N	3417
2016-11-25 12:45:03.427846+00	2016-12-09 17:10:17.413692+00	2975	completed				+19083035005		72	2016-11-25 12:45:03.424519	2016-11-25 12:46:14.966034	CAa7fa7d7321a25fe27c4cea1aeadabecf	\N	27			0	inbound	+18552716856	\N	6.68997693061828613	null	new lead		3	\N	\N	3418
2016-11-25 12:46:50.526882+00	2016-12-09 17:10:17.413699+00	2976	completed				+19083035005		43	2016-11-25 12:46:50.525878	2016-11-25 12:47:33.524288	CA3273f1184383a150cb822e336b25aef1	\N	27			0	inbound	+18552716856	\N	6.47885012626647949	null	new lead		3	\N	\N	3418
2016-11-25 12:47:20.549209+00	2016-12-09 17:10:17.413706+00	2977	completed				+19083035005		736	2016-11-25 12:47:20.548224	2016-11-25 12:59:36.870023	CA716e1cc9044edf071e1bfcf3a2517181	\N	27			0	inbound	+18552716856	\N	6.13157892227172852	null	new lead		3	\N	\N	3418
2016-12-06 16:57:06.458385+00	2016-12-09 17:06:53.906161+00	3053	completed				+12673125924		295	2016-12-06 16:57:06.457167	2016-12-06 17:02:01.845306	CAaef4f86eec8e49e93eda07861b8ceebc	\N	21			0	inbound	+18558021330	\N	2.08315110206604004	null	new lead		3	\N	\N	3420
2016-12-06 16:52:28.995186+00	2016-12-09 17:06:53.906154+00	3052	completed				+12673125924		267	2016-12-06 16:52:28.993021	2016-12-06 16:56:55.665486	CAb79aa2b74e6f4ad0b4865539d5d6af7a	\N	21			0	inbound	+18558021330	\N	2.4491579532623291	null	new lead		3	\N	\N	3420
2017-12-15 22:22:15.910185+00	2017-12-15 22:23:30.206888+00	7909	completed	Saquesha	Bell	Tyteria23@gmail.com	+14702761124		46	2017-12-15 22:22:15.908527	2017-12-15 22:23:16.806467	CAcb057f09b84f8791cadf0b2707805302	0427608a-ae09-4db0-a1e8-374423ee28c3	150			1	outbound	+17704009016	\N	14.2775771617889404	{}	new lead		13	\N	\N	3421
2017-04-26 19:03:30.048167+00	2017-11-29 18:38:53.21461+00	4336	completed				+18129892512		336	2017-04-26 19:03:30.044694	2017-04-26 19:09:06.168964	CA91e472e72f290b4d9959d4f5170830e7	\N	\N			0	inbound	+12146922088	\N	5.18540501594543457	\N	new lead	cell michael   	9	\N	\N	3423
2017-12-13 00:06:16.680719+00	2017-12-13 00:20:44.142528+00	7834	completed	frederick	anderson	freddanderson671@gmail.com	+12162407126		865	2017-12-13 00:06:16.67929	2017-12-13 00:20:44.140098	CA031f8a699b4f941e83115dba058ddc57	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.36723995208740234	{}	new lead		15	\N	\N	3425
2017-12-04 16:13:16.63782+00	2017-12-04 16:13:18.103371+00	7532	missed				+14708787505		1	2017-12-04 16:13:16.635201	2017-12-04 16:13:18.092109	CAd7c7a8f8aa64be7cedd6bf36289ff9cd	\N	\N			0	inbound	+17706597466	137	\N	\N	new lead		14	\N	\N	3427
2016-11-15 15:01:53.582613+00	2016-11-15 15:35:55.940263+00	2909	completed				+16786833674		2038	2016-11-15 15:01:53.580658	2016-11-15 15:35:51.229707	CAcd9e946b41e7fe094ad9a27bde32042b	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE6a22e975b60194b65d70a952a935b4d4	0	inbound	+18557240606	49	2.37449002265930176	null	new lead		1	\N	\N	3428
2017-04-24 18:00:17.570318+00	2017-11-29 18:38:49.806448+00	4255	completed				+12293755003		107	2017-04-24 18:00:17.568398	2017-04-24 18:02:04.204848	CA795bdcf3d72f6e67741b7a3c3df3d7be	\N	105			0	inbound	+12147122250	\N	3.24721002578735352	\N	new lead	kellyn odom	9	\N	\N	3430
2017-10-28 02:40:00.914381+00	2017-11-29 18:31:37.369382+00	6849	missed				+12054843165		8	2017-10-28 02:40:00.912241	2017-10-28 02:40:09.410774	CA9b6b6b0c05a9c530e8b684732d5ac402	\N	\N			0	inbound	+18555472453	\N	\N	\N	new lead		1	\N	\N	3438
2017-10-19 17:43:21.575154+00	2017-11-29 18:38:49.814503+00	6756	missed				+12146767311		3	2017-10-19 17:43:21.568247	2017-10-19 17:43:24.717569	CA018b7f0be57ae4fe57aaf951b7bf8686	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	heverly linh	9	\N	\N	3481
2016-08-04 06:17:04.687372+00	2016-08-04 13:18:12.327946+00	1198	missed	Calvin	Brookins	Brookins.calvin@yahoo.com	+16614339319		\N	2016-08-04 06:17:04.686203	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - credit union		1	\N	\N	3439
2016-06-26 13:29:09.355353+00	2016-06-27 12:26:03.010353+00	470	completed	william	poole	poolewilliam50@yahoo.com	+13303076485		\N	2016-06-26 13:29:09.353985	\N		ee869226-e246-4ab4-aaaa-e9403e2ddd39	\N			0	outbound	+18555983683	\N	\N	{}	new lead		1	\N	\N	3440
2016-06-29 12:05:18.352596+00	2017-11-29 18:32:13.82082+00	627	completed	Unknown			+13303076485		54	2016-06-29 12:05:18.351205	2016-06-29 12:06:12.101887	CA0534c34e2dc6b9db92691fc5e917a2ea	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE82b0fd37511dc0f6c5f9ad55223175e2	0	inbound	+18555983683	\N	0.513337850570678711	null	new lead		1	\N	\N	3440
2016-06-29 12:06:22.256208+00	2017-11-29 18:32:13.820827+00	628	completed	Unknown			+13303076485		28	2016-06-29 12:06:22.255136	2016-06-29 12:06:50.525814	CAb37b4d4ab095157aa02aed1cbe139630	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE7fc703ff15aecc0a3b83b5245c263573	0	inbound	+18555983683	\N	0.606013059616088867	null	new lead		1	\N	\N	3440
2016-06-29 15:18:21.763237+00	2016-06-29 15:26:29.640101+00	643	completed				+13303076485		46	2016-06-29 15:18:21.762022	2016-06-29 15:19:13.514132	CA867554e04c43dc21f5ba059d8b682e77	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	\N			1	outbound	+18555983683	\N	2.09744715690612793	{}	new lead		1	\N	\N	3440
2016-06-29 02:45:51.529077+00	2017-11-29 18:32:13.820813+00	625	completed	Unknown			+13303076485		38	2016-06-29 02:45:51.525973	2016-06-29 02:46:29.61879	CA30702c871600d6601ac6ed46fea76546	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REaf108fc8fb8c97a89e2d2d521775a83a	0	inbound	+18555983683	\N	\N	null	new lead		1	\N	\N	3440
2016-06-29 13:44:08.263692+00	2017-11-29 18:32:13.820835+00	630	completed	Unknown			+13303076485		198	2016-06-29 13:44:08.261872	2016-06-29 13:47:26.55001	CA0bef26aeaca82aa12195d5f8a588611e	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REa257e10fd1d498b05466c8fd3bbd87d7	0	inbound	+18555983683	\N	0.601394176483154297	null	new lead		1	\N	\N	3440
2016-06-29 15:04:45.175741+00	2017-11-29 18:32:13.8209+00	640	completed	Unknown			+13303076485		27	2016-06-29 15:04:45.174596	2016-06-29 15:05:11.748301	CAba55958573586785fcf45da75beabc16	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REaf8f942508849c5178014a730d4b952e	0	inbound	+18555983683	\N	14.3135309219360352	null	new lead		1	\N	\N	3440
2016-06-29 15:19:18.110416+00	2017-11-29 18:32:13.820914+00	644	completed	Unknown			+13303076485		71	2016-06-29 15:19:18.109473	2016-06-29 15:20:28.679742	CAd1bb1603733a353050959ad2a8c6d72c	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE9da100fc0c4ee83f8ac58df09a6df65d	0	inbound	+18555983683	\N	5.80739092826843262	null	new lead		1	\N	\N	3440
2016-02-04 00:38:00.905805+00	2016-02-04 00:38:58.92162+00	25	completed	Mike	Jones		+17739699892		\N	2016-02-04 00:38:00.903366	\N	CA35fe4221e21b73faadcbd97a50124132	5544043e-a40f-4084-a2ef-ee0d0a6c5c76	4			0	inbound		\N	\N	\N	new lead		2	\N	\N	3443
2016-02-04 00:44:23.703883+00	2016-02-04 00:45:02.956044+00	26	completed	Ryan	Trump		+17739699892		\N	2016-02-04 00:44:23.702637	\N	CA4c016db7ed3e15c00e63033667cd2849	5544043e-a40f-4084-a2ef-ee0d0a6c5c76	4			0	inbound		\N	\N	\N	new lead		2	\N	\N	3443
2016-02-04 19:19:06.195339+00	2016-02-04 19:19:50.168875+00	28	completed	Mike	Jones	jones@mike.co	+17739699892	How much does it cost?	\N	2016-02-04 19:19:06.193511	\N	CAba02e367258fdf178929aec92e91e593	5544043e-a40f-4084-a2ef-ee0d0a6c5c76	4			0	inbound		\N	\N	\N	new lead		2	\N	\N	3443
2016-02-07 21:52:23.837434+00	2016-02-07 21:53:09.455648+00	43	completed	Van			+17739699892		\N	2016-02-07 21:52:23.836329	\N	CA091cf691212f69672b2a5fce2de8751a	\N	4			1	inbound		\N	\N	\N	new lead		2	\N	\N	3443
2016-02-07 22:00:40.464974+00	2016-02-07 22:01:21.87122+00	44	completed	Barry		White	+17739699892	I want a red car	\N	\N	\N	CAfa8d43bb42ee8dc81ed415f21e24a983	5544043e-a40f-4084-a2ef-ee0d0a6c5c76	4			2	inbound		\N	\N	\N	new lead		2	\N	\N	3443
2016-04-01 01:58:45.21494+00	2016-04-21 22:09:51.282006+00	65	completed	Unknown			+17739699892		29	2016-04-01 01:58:45.213486	2016-04-01 01:59:14.487928	CAc60202dddf951a8af05bac66bfa2c78d	\N	\N			0	inbound	+17735707582	\N	\N	\N	new lead		2	\N	\N	3443
2016-04-01 12:36:57.187394+00	2016-04-21 22:09:51.282016+00	69	completed	Unknown			+17739699892		38	2016-04-01 12:36:57.184988	2016-04-01 12:37:35.346572	CAde5a2771e4aac46a477a60bc026eb7cf	\N	3			0	inbound	+17735707582	\N	\N	\N	new lead		2	\N	\N	3443
2016-01-31 16:01:59.369099+00	2016-01-31 16:51:42.17128+00	13	completed	Macy	Jones	macy@steelers.co	+17739699892		46	2016-01-31 16:02:14	2016-01-31 16:03:00	CA935c47c1c0e349382ba8654f1d412ca8	\N	\N			0	inbound		\N	\N	\N	new lead		2	\N	\N	3443
2016-01-31 17:10:17.765092+00	2016-01-31 17:11:19.69683+00	16	completed	Sally	Jones		+17739699892		\N	2016-01-31 17:10:17.764124	\N	CA8c771921c8c6a92f17a49dadd6a1a022	\N	4			0	inbound		\N	\N	\N	new lead		2	\N	\N	3443
2016-01-31 17:11:34.093319+00	2016-01-31 17:12:19.638679+00	17	completed	Sally	Jones		+17739699892		\N	2016-01-31 17:11:34.092342	\N	CA2f51a6c622d699826d57a68b6d44e2c9	\N	4			0	inbound		\N	\N	\N	new lead		2	\N	\N	3443
2016-02-01 03:39:26.428562+00	2016-02-02 19:06:04.034984+00	18	completed	Helen	Mcgrey		+17739699892		56	2016-02-01 03:39:49	2016-02-01 03:40:45	CA9cbaf6a2218a133cc3613894c53f936d	\N	\N			0	inbound		\N	\N	\N	new lead		2	\N	\N	3443
2016-04-01 01:48:30.47375+00	2016-04-01 01:48:31.790245+00	62	missed	Ryan			+17739699892		\N	2016-04-01 01:48:30.471884	\N		5544043e-a40f-4084-a2ef-ee0d0a6c5c76	\N			1	outbound	+17735707582	\N	\N	\N	new lead		2	\N	\N	3443
2016-04-01 01:50:39.407382+00	2016-04-01 01:50:40.307876+00	63	missed	Ryan			+17739699892		\N	2016-04-01 01:50:39.405372	\N		5544043e-a40f-4084-a2ef-ee0d0a6c5c76	\N			1	outbound	+17735707582	\N	\N	\N	new lead		2	\N	\N	3443
2016-04-01 01:55:24.944415+00	2016-04-01 01:55:25.910078+00	64	missed	Mark			+17739699892		\N	2016-04-01 01:55:24.943348	\N		5544043e-a40f-4084-a2ef-ee0d0a6c5c76	\N			1	outbound	+17735707582	\N	\N	\N	new lead		2	\N	\N	3443
2016-04-01 12:42:26.091024+00	2016-04-01 12:43:08.139593+00	70	completed	Sally Jones			+17739699892		32	2016-04-01 12:42:26.088727	2016-04-01 12:43:08.137831	CAbecb8b015730db34498757645d5bd933	5544043e-a40f-4084-a2ef-ee0d0a6c5c76	3			1	outbound	+17735707582	\N	\N	\N	new lead		2	\N	\N	3443
2016-04-26 14:43:01.962652+00	2016-04-26 14:43:01.962676+00	77	ringing	Larry	Lewis	sweet@testing.te	+17739699892		\N	2016-04-26 14:43:01.961783	\N		9b21a638-88bc-4cb5-b742-7449f686c42c	\N			0	outbound	+17735707582	\N	\N	\N	new lead		2	\N	\N	3443
2016-04-26 14:44:07.49571+00	2016-04-26 14:44:07.495795+00	78	ringing	Larry	Lewis	sweet@testing.te	+17739699892		\N	2016-04-26 14:44:07.493721	\N		9b21a638-88bc-4cb5-b742-7449f686c42c	\N			0	outbound	+17735707582	\N	\N	\N	new lead		2	\N	\N	3443
2016-04-26 17:45:57.873779+00	2016-04-26 17:45:57.873806+00	79	ringing	Mike	Jones	mike@tester.co	+17739699892		\N	2016-04-26 17:45:57.872508	\N		9b21a638-88bc-4cb5-b742-7449f686c42c	\N			0	outbound	+17735707582	\N	\N	\N	new lead		2	\N	\N	3443
2016-04-27 16:42:28.526406+00	2016-04-27 16:43:20.602549+00	81	completed	Sally	Mcsaw	sally@testing.co	+17739699892		40	2016-04-27 16:42:28.522215	2016-04-27 16:43:20.601356	CA9463e0f6baa54cff9262382905eddadd	9b21a638-88bc-4cb5-b742-7449f686c42c	3			1	outbound	+17735707582	\N	\N	\N	new lead		2	\N	\N	3443
2017-12-29 21:03:57.166251+00	2017-12-29 21:04:44.16846+00	8157	completed				+17063716278		46	2017-12-29 21:03:57.164255	2017-12-29 21:04:42.984587	CAe440d5990ec044713a5344d6e1e74885	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE4d3a20a1ac58d3a77967963a79681dc5	0	inbound	+17707665732	133	15.7680079936981201	\N	new lead	cell phone   ga	13	\N	\N	3444
2017-04-13 17:02:59.756139+00	2017-08-17 14:35:21.044981+00	3878	completed				+16822070614		143	2017-04-13 17:02:59.753465	2017-04-13 17:05:22.822233	CA5ea6a25a2fb4f8b064a08ef07da803f5	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE7f2beb26108bacc1aa69d520ed2f6d4e	0	inbound	+18177569010	124	35.348146915435791	\N	new lead	conner john	12	\N	\N	3446
2017-04-15 18:46:25.03235+00	2017-08-17 14:35:21.044995+00	3967	completed				+16822070614		81	2017-04-15 18:46:25.030368	2017-04-15 18:47:46.263945	CAa2e695ed7ba91b6a75303014a284cfe7	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE2c65e01dbaf58dc0141feda2f2335a55	0	inbound	+18177569010	124	46.7242598533630371	\N	new lead	conner john	12	\N	\N	3446
2017-05-05 15:19:48.257428+00	2017-11-29 18:38:49.80979+00	4741	completed				+19723421059		87	2017-05-05 15:19:48.255981	2017-05-05 15:21:15.603108	CA52c747216f7c28269287ba23572ac599	\N	125			0	inbound	+12147122250	\N	1.00142002105712891	\N	new lead	adams david    	9	\N	\N	3447
2017-05-05 15:21:12.67516+00	2017-11-29 18:38:49.809811+00	4744	completed				+19723421059		111	2017-05-05 15:21:12.67379	2017-05-05 15:23:04.12339	CA2ad58a1b16b7da3fb528b3fe34f71fb7	\N	\N			0	inbound	+12147122250	\N	1.40744996070861816	\N	new lead	adams david    	9	\N	\N	3447
2017-05-05 15:23:02.769232+00	2017-11-29 18:38:49.809826+00	4746	completed				+19723421059		97	2017-05-05 15:23:02.76692	2017-05-05 15:24:40.017912	CA69e608295447ce5dd369814cf1a19c04	\N	127			0	inbound	+12147122250	\N	1.62220597267150879	\N	new lead	adams david    	9	\N	\N	3447
2017-05-05 15:29:28.831768+00	2017-11-29 18:38:49.809854+00	4750	completed				+19723421059		57	2017-05-05 15:29:28.82934	2017-05-05 15:30:26.142472	CA6b221c7c9d95196117f24c72fdc7497e	\N	127			0	inbound	+12147122250	\N	1.22490787506103516	\N	new lead	adams david    	9	\N	\N	3447
2017-05-05 15:38:47.359707+00	2017-11-29 18:38:49.809861+00	4751	completed				+19723421059		90	2017-05-05 15:38:47.357757	2017-05-05 15:40:17.470329	CA5db7c9e412e0ecb14ee433648657248f	\N	124			0	inbound	+12147122250	\N	0.859805107116699219	\N	new lead	adams david    	9	\N	\N	3447
2017-05-05 15:43:09.419854+00	2017-11-29 18:38:49.809868+00	4752	completed				+19723421059		60	2017-05-05 15:43:09.416617	2017-05-05 15:44:09.478819	CA9050a2ef6f4b322ab005fd09fd85e410	\N	125			0	inbound	+12147122250	\N	1.85789299011230469	\N	new lead	adams david    	9	\N	\N	3447
2017-05-05 16:00:27.548552+00	2017-11-29 18:38:49.809875+00	4754	completed				+19723421059		75	2017-05-05 16:00:27.544189	2017-05-05 16:01:42.319461	CAca516a3e3f2e73266ffcd0712b7a10b9	\N	126			0	inbound	+12147122250	\N	1.26602816581726074	\N	new lead	adams david    	9	\N	\N	3447
2017-05-05 16:09:02.697595+00	2017-11-29 18:38:49.809917+00	4760	completed				+19723421059		397	2017-05-05 16:09:02.695305	2017-05-05 16:15:40.111574	CA517dc0f7618457f0c7c27f550e103e9c	\N	\N			0	inbound	+12147122250	\N	0.97830510139465332	\N	new lead	adams david    	9	\N	\N	3447
2017-05-25 21:29:33.308002+00	2017-11-29 18:38:49.81354+00	5420	completed				+19723421059		70	2017-05-25 21:29:33.305414	2017-05-25 21:30:42.863411	CAe661ff7257b14115ab857ed1f38723da	\N	125			0	inbound	+12147122250	\N	1.20201802253723145	\N	new lead	adams david    	9	\N	\N	3447
2017-05-25 21:30:50.454281+00	2017-11-29 18:38:49.813549+00	5421	completed				+19723421059		264	2017-05-25 21:30:50.452874	2017-05-25 21:35:14.92233	CAf426c27dd4b8b279cf012699c93ab0a6	\N	99			0	inbound	+12147122250	\N	5.88010597229003906	\N	new lead	adams david    	9	\N	\N	3447
2017-03-03 23:28:42.875736+00	2017-11-29 18:47:25.06758+00	3322	completed				+13184172164		53	2017-03-03 23:28:42.873193	2017-03-03 23:29:35.714367	CA8c4f02d9dce49fc9cd33d51af5b9fb2e	\N	81		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE1e1e2e0073388eef408f7ea02ab4ecfe	0	inbound	+19728330116	\N	16.1028881072998047	\N	new lead	cell phone   la	8	\N	\N	3448
2017-05-05 16:12:15.511029+00	2017-11-29 18:38:49.809931+00	4762	completed				+17313439505		532	2017-05-05 16:12:15.509493	2017-05-05 16:21:07.561839	CAd41b745b3b7be3bdb988c33f7f8eb9b1	\N	\N			0	inbound	+12147122250	\N	1.73101687431335449	\N	new lead	hatter william 	9	\N	\N	3453
2017-11-28 17:50:57.592383+00	2017-11-28 17:52:32.498948+00	7362	completed				+13475754617		94	2017-11-28 17:50:57.590072	2017-11-28 17:52:31.298441	CA3b07d173b1d9b55d78f2f46f40a902ce	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE5b05d60ae23a08da61d3c56fca9ae8b0	0	inbound	+18177569010	124	10.2250030040740967	\N	new lead	thapa ranjan	12	\N	\N	3455
2017-11-01 15:59:42.787859+00	2017-11-01 16:01:42.918097+00	6889	completed				+16826676580		120	2017-11-01 15:59:42.785556	2017-11-01 16:01:42.915207	CAebb83e25a14a804862323bde2388d7d3	\N	146			0	inbound	+18177569010	124	73.5328540802001953	\N	new lead	fort worth  tx	12	\N	\N	3458
2017-06-23 21:06:45.465062+00	2017-06-24 13:44:45.085815+00	5647	completed				+14042274110		58	2017-06-23 21:06:45.461933	2017-06-23 21:07:43.884152	CA8213feea2f8acf787ad70f5b7cd3a969	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REa652b67ad3a40bf9a9fa30c250a1babc	0	inbound	+17704009016	132	8.31685209274291992	\N	new lead		13	\N	\N	3462
2017-06-23 21:12:24.356836+00	2017-06-24 13:44:45.085823+00	5648	completed				+14042274110		67	2017-06-23 21:12:24.354996	2017-06-23 21:13:31.222425	CA0cf617c1f39f4d4f3e9f96839e51d6b3	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE190138c567cf802d042cfbf63674b94d	0	inbound	+17704009016	132	9.96139287948608398	\N	new lead		13	\N	\N	3462
2017-07-07 17:42:32.746529+00	2017-07-07 17:44:04.327283+00	5729	completed				+14042274110		91	2017-07-07 17:42:32.742874	2017-07-07 17:44:03.833755	CA48aa53abcd19b068601d4bcd3086c934	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE15c561653eb54d123a6801cfbfccd500	0	inbound	+17704009016	132	10.4198510646820068	\N	new lead		13	\N	\N	3462
2017-05-09 15:43:48.730232+00	2017-11-29 18:47:25.068425+00	4899	completed				+12147106013		379	2017-05-09 15:43:48.728187	2017-05-09 15:50:07.527482	CA468f327be0acd7804eed4c821aa04f3b	\N	115		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE79d3c594228a03f14eef7969e8fd6350	0	inbound	+19728330116	\N	9.92122983932495117	\N	new lead	matthews ervi	8	\N	\N	3465
2017-12-14 16:35:19.059782+00	2017-12-14 16:36:22.278124+00	7868	completed				+12142930000		63	2017-12-14 16:35:19.057524	2017-12-14 16:36:21.730004	CA19c6b833139ebff000de893cc5a8bff9	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REb7fb726448b38468c173562694543b15	0	inbound	+18177569010	124	11.2880611419677734	\N	new lead	dunbar darius	12	\N	\N	3466
2017-09-22 16:23:21.272041+00	2017-09-22 16:24:57.333319+00	6434	completed				+19723307057		96	2017-09-22 16:23:21.270197	2017-09-22 16:24:57.049393	CA5f92f4e10f11c250570227044b1f84ab	\N	155			0	inbound	+18177569010	124	64.0136611461639404	\N	new lead	oaks cierra a	12	\N	\N	3469
2017-09-22 16:33:45.571731+00	2017-09-22 16:40:47.929817+00	6435	completed				+19723307057		419	2017-09-22 16:33:45.568836	2017-09-22 16:40:44.826042	CA08d90b10218b55b707216f618b6a2bfd	\N	155		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REa72f1cb351e2483b343f0945e0427054	0	inbound	+18177569010	124	10.7456138134002686	\N	new lead	oaks cierra a	12	\N	\N	3469
2016-08-12 16:32:53.047195+00	2016-08-12 19:38:54.449185+00	1440	missed	tyler	duncan	lisajennings380@gmail.com	+13309841111		\N	2016-08-12 16:32:53.046298	\N		ee869226-e246-4ab4-aaaa-e9403e2ddd39	\N			0	outbound	+18555983683	\N	\N	{}	application submitted - autopay		1	\N	\N	3471
2016-08-12 16:37:36.752615+00	2017-11-29 18:32:13.821721+00	1441	completed	tyler	duncan	lisajennings380@gmail.com	+13309841111		82	2016-08-12 16:37:36.751724	2016-08-12 16:38:59.141536		\N	16			0	outbound	+18555983683	\N	\N	null	application submitted - autopay		1	\N	\N	3471
2016-08-12 19:06:55.339394+00	2017-11-29 18:32:13.821757+00	1455	missed	tyler	duncan		+13309841111		8	2016-08-12 19:06:55.338091	2016-08-12 19:07:03.316397	CA48b7ca6a8667c9947d7873a1187677e6	\N	\N			0	inbound	+18555983683	\N	\N	null	application submitted - autopay		1	\N	\N	3471
2016-08-12 19:12:27.747855+00	2017-11-29 18:32:13.821764+00	1456	completed	tyler	duncan		+13309841111		59	2016-08-12 19:12:27.746781	2016-08-12 19:13:27.167105		\N	16			0	outbound	+18555983683	\N	\N	null	application submitted - autopay		1	\N	\N	3471
2016-08-12 19:14:05.800302+00	2017-11-29 18:32:13.821771+00	1457	completed	tyler	duncan		+13309841111		79	2016-08-12 19:14:05.798662	2016-08-12 19:15:25.120482		\N	16			0	outbound	+18555983683	\N	\N	null	application submitted - autopay		1	\N	\N	3471
2016-09-07 23:45:42.825987+00	2016-12-10 01:01:51.44087+00	1956	completed				+16192539474		161	2016-09-07 23:45:42.824435	2016-09-07 23:48:23.612619	CA78deedab7b880345f10f791e7edd1c98	\N	50			0	inbound	+18559693782	\N	1.9266350269317627	null	new lead		3	\N	\N	3473
2017-12-19 19:35:17.699882+00	2017-12-19 19:47:31.972403+00	8009	completed	David	Kouzmanoff	dkouzmanoff@gmail.com	+18168069928		731	2017-12-19 19:35:17.698402	2017-12-19 19:47:31.969905	CA50950dc654c88d861783b0a08361f6d6	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.74172520637512207	{}	new lead		15	\N	\N	3474
2017-10-26 14:03:54.547497+00	2017-10-26 14:06:51.946314+00	6813	completed				+14705774657		177	2017-10-26 14:03:54.545764	2017-10-26 14:06:51.931183	CAc683fde9d16e85840b853ae6ae8e7f78	\N	150			0	inbound	+17707665732	133	47.0513339042663574	\N	new lead		13	\N	\N	3476
2016-11-03 18:36:09.995149+00	2016-11-03 18:38:48.939329+00	2649	completed				+13146032477		158	2016-11-03 18:36:09.993986	2016-11-03 18:38:48.246939	CAebf25053b6e7d4bba44c15feb257fe4b	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REc025cb2efabf63ca0531f333e93265cb	0	inbound	+18557240606	49	2.46622610092163086	null	new lead		1	\N	\N	3477
2016-08-15 19:46:33.977787+00	2016-08-23 19:19:02.402776+00	1513	missed	Jared	Preston	Jared_preston@yahoo.com	+14063704230		\N	2016-08-15 19:46:33.976828	\N		07cfd785-7aef-47fb-8d17-7f38ec833934	\N			0	outbound	+18556311439	\N	\N	{}	application submitted - autopay		1	\N	\N	3480
2017-05-17 21:02:43.124224+00	2017-11-29 18:38:49.812104+00	5175	missed				+12146767311		2	2017-05-17 21:02:43.122812	2017-05-17 21:02:44.882505	CAebb364f3a72511c12a32687574425e33	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	heverly linh   	9	\N	\N	3481
2017-05-08 15:12:47.338221+00	2017-11-29 18:38:53.215341+00	4840	completed				+12146767311		21	2017-05-08 15:12:47.336077	2017-05-08 15:13:08.599376	CAca4acf812dfd0e49288bfb5c3d44cd0a	\N	\N			0	inbound	+12146922088	\N	1.09181904792785645	\N	new lead	heverly linh   	9	\N	\N	3481
2017-05-08 15:34:24.73796+00	2017-11-29 18:38:53.215355+00	4842	completed				+12146767311		27	2017-05-08 15:34:24.735907	2017-05-08 15:34:52.135101	CA763e405cda4d04e8ff6ed4cb1dd66ec5	\N	\N			0	inbound	+12146922088	\N	1.40861010551452637	\N	new lead	heverly linh   	9	\N	\N	3481
2017-05-09 17:15:17.267834+00	2017-11-29 18:38:49.810605+00	4909	missed				+12146767311		4	2017-05-09 17:15:17.266164	2017-05-09 17:15:20.843726	CAa41c72efbfec1c85a01ad8c41e44c84f	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	heverly linh   	9	\N	\N	3481
2017-08-13 21:41:20.064599+00	2017-11-29 18:38:53.215653+00	6014	completed				+12146767311		415	2017-08-13 21:41:20.062826	2017-08-13 21:48:14.835834	CA9e4d330938ef2909e2fa269ea32b79f7	\N	133			0	inbound	+12146922088	\N	323.551394939422607	\N	new lead	heverly linh	9	\N	\N	3481
2017-08-13 21:41:38.309092+00	2017-11-29 18:38:53.215661+00	6015	completed				+12146767311		335	2017-08-13 21:41:38.307376	2017-08-13 21:47:12.908908	CA6aaf1d59103c23b1137ea848ebdbaa54	\N	133			0	inbound	+12146922088	\N	322.597738027572632	\N	new lead	heverly linh	9	\N	\N	3481
2017-05-09 18:04:18.746596+00	2017-11-29 18:38:53.215492+00	4914	missed				+12146767311		0	2017-05-09 18:04:18.74542	2017-05-09 18:04:18.893857	CAe3d118a5c6d3f075b323b70d14d1bba3	\N	\N			0	inbound	+12146922088	\N	\N	\N	new lead	heverly linh   	9	\N	\N	3481
2017-05-03 17:53:11.496296+00	2017-11-29 18:38:49.809332+00	4646	missed				+12146767311		5	2017-05-03 17:53:11.495287	2017-05-03 17:53:16.505399	CA250102f9dc8cdb909e9e1225e45a0a80	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	heverly linh   	9	\N	\N	3481
2017-04-28 01:05:22.983781+00	2017-11-29 18:38:53.214731+00	4416	completed				+14053969705		36	2017-04-28 01:05:22.981645	2017-04-28 01:05:59.155282	CA2de8121638875d19099c7dcc23998a2a	\N	133			0	inbound	+12146922088	\N	16.9363670349121094	\N	new lead	arcadia  ok	9	\N	\N	3482
2016-11-03 13:47:34.897756+00	2016-11-03 13:47:34.926611+00	2620	missed	Rosemary	Bonelli Fischer	heal2@me.com	+16787590940		\N	2016-11-03 13:47:34.89563	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	3484
2016-11-02 20:38:00.469874+00	2016-11-02 20:40:33.163248+00	2591	completed				+19724156732		152	2016-11-02 20:38:00.467786	2016-11-02 20:40:32.803621	CAf95d23d30d1187cc2d90e33b5db4d9ee	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE7087e22c448c2b34b8e65603b2fc56c1	0	inbound	+18557240606	49	1.32899308204650879	null	new lead		1	\N	\N	3486
2017-05-11 18:20:40.792841+00	2017-11-29 18:47:25.068495+00	5012	completed				+12253154182		38	2017-05-11 18:20:40.790809	2017-05-11 18:21:18.416799	CAd75103ff4cf56391e0b4c4afe3b2b030	\N	84		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE47153a7808f970df9eaaae0486c2d47b	0	inbound	+19728330116	\N	7.3955380916595459	\N	new lead	asah m j       	8	\N	\N	3487
2017-08-21 12:39:03.948734+00	2017-08-21 12:39:04.380153+00	6120	missed				+17066211632		0	2017-08-21 12:39:03.945508	2017-08-21 12:39:04.371149	CAf4edd60f372cf16d3d6056cb9b19f9e0	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	3488
2017-10-23 22:07:36.290594+00	2017-10-23 22:08:34.600656+00	6789	completed				+16822031306		57	2017-10-23 22:07:36.288541	2017-10-23 22:08:33.478307	CAf5a77a774527284b8f1083b3fb3670b4	\N	155		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE77418b84e1508d372eb56577e93ee64c	0	inbound	+18177569010	124	10.0205490589141846	\N	new lead	kirkpatrick mik	12	\N	\N	3492
2017-04-24 18:53:21.559817+00	2017-11-29 18:38:53.214496+00	4256	completed				+16825617348		327	2017-04-24 18:53:21.557705	2017-04-24 18:58:48.317243	CA583a553898d18ba61dbcd4fd75a48195	\N	99			0	inbound	+12146922088	\N	7.6486518383026123	\N	new lead	harvey bryan	9	\N	\N	3495
2016-10-05 16:11:26.32378+00	2016-12-09 17:10:17.413535+00	2184	completed				+14845038001		116	2016-10-05 16:11:26.322824	2016-10-05 16:13:22.680846	CAc9760dfd9bfa6fcd00745f240b21e886	\N	27			0	inbound	+18552716856	\N	2.94013595581054688	null	new lead		3	\N	\N	3496
2016-09-07 19:40:01.139031+00	2016-12-10 01:01:51.440842+00	1944	completed				+18583618661		402	2016-09-07 19:40:01.137338	2016-09-07 19:46:42.664155	CAed9f030ed24dc85a8806f7ca33b950ec	\N	50			0	inbound	+18559693782	\N	2.09508419036865234	null	new lead		3	\N	\N	3498
2016-09-08 19:25:09.710238+00	2016-12-10 01:01:51.440877+00	1968	completed				+18583618661		243	2016-09-08 19:25:09.707341	2016-09-08 19:29:12.398936	CA530c16e1e5b3791902a3dd04d103661c	\N	50			0	inbound	+18559693782	\N	2.27329182624816895	null	new lead		3	\N	\N	3498
2016-05-28 02:12:56.724488+00	2016-05-31 12:48:42.357478+00	267	completed	Marbeth	Carmack	mcarmack@fuse.net	+15139311167		\N	2016-05-28 02:12:56.722961	\N		25d0200e-983d-4413-94ae-eb664b99711c	\N			0	outbound	+18556311490	\N	\N	{}	new lead		1	\N	\N	3500
2016-06-02 17:47:13.419317+00	2016-06-02 17:48:18.891649+00	346	completed				+15139311167		60	2016-06-02 17:47:13.416878	2016-06-02 17:48:18.890519	CA6127799b4ed32467cda92e664314a9e7	cd89e433-4bde-4f86-9b22-8f52c2413fcd	16			1	outbound	+18556311490	\N	1.62362504005432129	{}	new lead		1	\N	\N	3500
2016-06-03 13:11:35.335684+00	2016-06-03 13:12:34.370166+00	361	completed				+15139311167		54	2016-06-03 13:11:35.333918	2016-06-03 13:12:34.368594	CAca1e2eb024003081a28bf680dfe915a2	cd89e433-4bde-4f86-9b22-8f52c2413fcd	16			1	outbound	+18556311490	\N	1.43262290954589844	{}	new lead		1	\N	\N	3500
2016-06-02 21:56:19.278854+00	2017-11-29 18:31:10.260919+00	359	completed	Marbeth	Car		+15139311167		68	2016-06-02 21:56:19.277576	2016-06-02 21:57:27.030347	CA38d7b6b2d9c9c4d6ace7906b87d87540	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE34418e508ff1bae6a34d4a8d2a1e060a	0	inbound	+18556311490	\N	\N	null	new lead		1	\N	\N	3500
2017-12-02 13:56:26.427121+00	2017-12-02 18:16:00.700754+00	7467	missed				+17066523562		23	2017-12-02 13:56:26.424452	2017-12-02 13:56:48.948047	CAc7bc4e771605dbf7560363ba125eb5fb	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE3697bb0b1c5a960b60d7ebec9c31b495	0	inbound	+17707665732	133	\N	\N	select status	williams elaine	13	\N	\N	3501
2017-12-02 14:04:57.952417+00	2017-12-02 18:16:00.678028+00	7473	completed				+17066523562		75	2017-12-02 14:04:57.950018	2017-12-02 14:06:13.119051	CA626c9fdccac8439ec648b2e3ed6498fc	\N	153			0	inbound	+17707665732	133	13.9984409809112549	\N	select status	williams elaine	13	\N	\N	3501
2017-12-02 13:57:22.680612+00	2017-12-02 18:16:00.700783+00	7468	missed				+17066523562		17	2017-12-02 13:57:22.678218	2017-12-02 13:57:39.919768	CA488e09d7b1613d44e9051f56ad93300f	\N	\N			0	inbound	+17707665732	133	\N	\N	select status	williams elaine	13	\N	\N	3501
2017-12-02 13:58:03.277898+00	2017-12-02 18:16:00.700795+00	7469	missed				+17066523562		19	2017-12-02 13:58:03.275999	2017-12-02 13:58:22.351005	CAdf3d05e281375363e965ecd4250d5c00	\N	\N			0	inbound	+17707665732	133	\N	\N	select status	williams elaine	13	\N	\N	3501
2017-12-02 13:58:30.214417+00	2017-12-02 18:16:00.700806+00	7470	missed				+17066523562		16	2017-12-02 13:58:30.212815	2017-12-02 13:58:45.768028	CAde24e50c1dd60f2f831fbd867c18782e	\N	\N			0	inbound	+17707665732	133	\N	\N	select status	williams elaine	13	\N	\N	3501
2017-12-02 13:58:52.47952+00	2017-12-02 18:16:00.700816+00	7471	missed				+17066523562		16	2017-12-02 13:58:52.477919	2017-12-02 13:59:08.716152	CA692ad54a535e0dc6e175be1adb1a51b4	\N	\N			0	inbound	+17707665732	133	\N	\N	select status	williams elaine	13	\N	\N	3501
2017-12-02 13:59:14.427656+00	2017-12-02 18:16:00.700826+00	7472	missed				+17066523562		18	2017-12-02 13:59:14.426385	2017-12-02 13:59:32.795726	CA2f4019058e084afab66d43514408bcb3	\N	\N			0	inbound	+17707665732	133	\N	\N	select status	williams elaine	13	\N	\N	3501
2017-11-29 16:28:53.909953+00	2017-11-29 16:30:02.551797+00	7392	completed				+14705057514		45	2017-11-29 16:28:53.907672	2017-11-29 16:29:38.765191	CA90e993edd547bba20fdc88e6cc36b0a4	\N	152			0	inbound	+17707665732	133	19.4712071418762207	\N	select status	nancis ando	13	\N	\N	3502
2017-11-29 14:30:56.79842+00	2017-11-29 16:30:02.575063+00	7387	missed				+14705057514		41	2017-11-29 14:30:56.79508	2017-11-29 14:31:37.511069	CAa5bf847583fa9a99f2e7b9656a7d3cc6	\N	\N			0	inbound	+17707665732	133	350.997431039810181	\N	select status	nancis ando	13	\N	\N	3502
2017-05-23 18:59:39.343108+00	2017-11-29 18:38:49.812876+00	5330	completed				+18178072384		275	2017-05-23 18:59:39.340922	2017-05-23 19:04:14.567086	CA8a077395126c7b617d0e6a2be4bbcfac	\N	107			0	inbound	+12147122250	\N	7.59305787086486816	\N	new lead	cell phone   tx	9	\N	\N	3503
2017-05-18 16:24:07.854367+00	2017-05-18 16:24:21.629275+00	5193	completed				+16825599330		14	2017-05-18 16:24:07.852983	2017-05-18 16:24:21.615202	CA7b94280cf09f2b8bb35371a9d29f3493	\N	129			0	inbound	+18172104002	126	4.44450187683105469	\N	new lead	cox timothy    	12	\N	\N	3505
2017-05-18 16:24:49.977737+00	2017-05-18 16:28:28.767192+00	5194	completed				+16825599330		218	2017-05-18 16:24:49.976369	2017-05-18 16:28:28.059053	CAab5ffe324002129876fd9bcfa8efb318	\N	129		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE51592bf4e27d7ae3a1bc4f1066c5bb50	0	inbound	+18172104002	126	3.51283907890319824	\N	new lead	cox timothy    	12	\N	\N	3505
2017-12-15 17:05:19.813343+00	2017-12-15 17:09:14.386909+00	7893	completed				+17706052383		233	2017-12-15 17:05:19.811323	2017-12-15 17:09:13.173512	CA87c853c6296b2e127925ad0d78ca55f3	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REa5d83eaff93ecd884dab66d861ea3cfb	0	inbound	+17707665732	133	15.8862180709838867	\N	new lead	cain michael	13	\N	\N	3513
2017-12-26 16:22:54.551845+00	2017-12-26 16:26:36.336668+00	8100	completed				+17706052383		221	2017-12-26 16:22:54.549826	2017-12-26 16:26:36.048465	CAc8d27cb2e295cd083a4464be846bc631	\N	154		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REcdb2e23f458a61948ce960498940e49a	0	inbound	+17707665699	134	1.60388517379760742	\N	new lead	cain michael	13	\N	\N	3513
2017-09-14 15:59:30.014104+00	2017-09-14 16:05:19.658814+00	6350	completed	Miranda	Gragg	Mhgragg1214@gmail.com	+17067162026		338	2017-09-14 15:59:30.012479	2017-09-14 16:05:19.035082	CAd88b3a6c0c6587a85f32cf960cb59920	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE10ffab5c370b9613c64d30b468b2b02b	1	outbound	+17704009016	\N	10.7848570346832275	{}	new lead		13	\N	\N	3519
2017-10-12 03:13:07.845489+00	2017-10-12 03:13:07.900638+00	6672	missed	Miranda	Gragg	Mhgragg1214@gmail.com	+17067162026		\N	2017-10-12 03:13:07.843913	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	3519
2017-01-13 17:33:55.013075+00	2017-01-13 18:01:17.699471+00	3119	completed				+14049324070		1639	2017-01-13 17:33:55.00894	2017-01-13 18:01:14.291012	CAb86254dde9cbac7fad919756d7b955d1	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REd12712a3e5506699ccd35eb9dea12413	0	inbound	+18557240606	49	2.58455109596252441	null	new lead		1	\N	\N	3521
2017-05-08 14:25:07.164878+00	2017-11-29 18:38:53.215327+00	4835	completed				+19567408638		26	2017-05-08 14:25:07.163362	2017-05-08 14:25:32.885772	CAe06f21c5d2118a94dad7024308fa0f88	\N	\N			0	inbound	+12146922088	\N	3.04238200187683105	\N	new lead	alvarez alejand	9	\N	\N	3522
2017-05-08 17:22:54.483786+00	2017-11-29 18:38:53.215369+00	4856	completed				+19567408638		170	2017-05-08 17:22:54.482312	2017-05-08 17:25:44.258437	CA2a975fa09873ac985e8dc5ac61355a3b	\N	\N			0	inbound	+12146922088	\N	0.992913007736206055	\N	new lead	alvarez alejand	9	\N	\N	3522
2017-05-08 14:24:33.398685+00	2017-11-29 18:38:53.21532+00	4834	completed				+19567408638		29	2017-05-08 14:24:33.396158	2017-05-08 14:25:02.411503	CAc77e24be7da11aac344dfa1e3226155b	\N	\N			0	inbound	+12146922088	\N	2.85964083671569824	\N	new lead	alvarez alejand	9	\N	\N	3522
2016-10-28 18:04:01.819943+00	2016-12-10 01:00:22.124032+00	2365	completed				+12158133883		131	2016-10-28 18:04:01.818103	2016-10-28 18:06:12.995892	CAb29d455e82a10444ffb500d07780e978	\N	56			0	inbound	+18555426998	\N	4.23336386680603027	null	new lead		3	\N	\N	3524
2017-12-03 21:11:33.819317+00	2017-12-03 21:12:55.361919+00	7518	completed	Allan	McBee	dlynns@aol.com	+12145209122		78	2017-12-03 21:11:33.817629	2017-12-03 21:12:55.359704	CA3b4d83e568d82f9e88ae61824c92bbb1	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	3.10803389549255371	{}	new lead		15	\N	\N	3528
2017-09-07 00:52:45.945614+00	2017-09-07 01:14:42.844925+00	6281	missed				+18177567042		11	2017-09-07 00:52:45.943097	2017-09-07 00:52:57.2602	CA71327916b0ff75aac1a7ebbae9a3bc60	\N	\N			0	inbound	+18177569010	124	1294.82388997077942	\N	new lead	dallas  tx	12	\N	\N	3530
2017-03-05 15:53:17.731875+00	2017-11-29 18:47:25.067616+00	3328	missed				+14174890514		32	2017-03-05 15:53:17.728612	2017-03-05 15:53:49.539527	CAe0b35968b2bbf8db9592924156506488	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE51b0b0a0627099ee0f0ed70d8cbef5dd	0	inbound	+19728330116	\N	\N	\N	new lead	wireless caller	8	\N	\N	3533
2017-10-20 20:37:10.682924+00	2017-10-20 20:40:12.128734+00	6770	completed				+14045489462		181	2017-10-20 20:37:10.680941	2017-10-20 20:40:12.118418	CA3ecd3596e38963a92d91ea05648e0bed	\N	154			0	inbound	+17707665699	134	1.20628213882446289	\N	new lead		13	\N	\N	3534
2016-07-27 20:20:11.158025+00	2016-08-01 18:24:34.262009+00	974	completed	Dave	Ekman		+16616182198		263	2016-07-27 20:20:11.156648	2016-07-27 20:24:40.12231	CAdd74d158b21df92e242518e17a2a1e2a	8f30d55b-8601-40b9-9d7f-11bfe29c5449	16			1	outbound	+18555472453	\N	2.42132401466369629	{}	general interest		1	\N	\N	3540
2016-07-27 20:28:29.169859+00	2016-08-01 18:24:34.262016+00	975	completed	Dave	Ekman		+16616182198		490	2016-07-27 20:28:29.168393	2016-07-27 20:36:44.857612	CAd4efa110720dbcd5ae07f854087f4fd9	8f30d55b-8601-40b9-9d7f-11bfe29c5449	16			1	outbound	+18555472453	\N	2.54317998886108398	{}	general interest		1	\N	\N	3540
2016-05-23 18:41:25.046122+00	2017-11-29 18:31:37.368161+00	177	completed	Unknown			+16616182198		281	2016-05-23 18:41:25.044088	2016-05-23 18:46:06.176683	CA2a329557d66f91ade2fb197f4a0154de	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE0ce14d282c80d28123957fc762729dd5	0	inbound	+18555472453	\N	10.9517219066619873	null	general interest		1	\N	\N	3540
2016-07-27 20:06:44.56036+00	2016-08-01 18:24:34.262002+00	973	completed	Dave	Ekman		+16616182198		300	2016-07-27 20:06:44.558546	2016-07-27 20:11:51.593902	CA064ae6af9b653d55ad9b2b91282dfff2	8f30d55b-8601-40b9-9d7f-11bfe29c5449	16			1	outbound	+18555472453	\N	3.44719409942626953	{}	general interest		1	\N	\N	3540
2016-08-01 18:53:42.570188+00	2016-08-01 19:00:07.372707+00	1090	completed	Dave	Ekman		+16616182198		381	2016-08-01 18:53:42.569206	2016-08-01 19:00:07.370425	CA3e21df73df5c08fc93878d9680d13e7c	8f30d55b-8601-40b9-9d7f-11bfe29c5449	16			1	outbound	+18555472453	\N	3.27942991256713867	{}	general interest		1	\N	\N	3540
2016-08-01 18:03:57.986291+00	2017-11-29 18:31:37.368269+00	1083	completed	Dave	Ekman		+16616182198		76	2016-08-01 18:03:57.984659	2016-08-01 18:05:13.931341		\N	16			0	outbound	+18555472453	\N	\N	null	general interest		1	\N	\N	3540
2016-07-01 22:54:23.346571+00	2017-11-29 18:31:37.368262+00	735	completed	Unknown			+16616182198		21	2016-07-01 22:54:23.345032	2016-07-01 22:54:44.769888	CA7fc7bef700b902e77c3147088331730c	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE4e91b0d302328674374a7bda0be74b8c	0	inbound	+18555472453	\N	\N	null	general interest		1	\N	\N	3540
2016-06-01 02:00:17.799852+00	2016-08-01 18:24:34.261978+00	301	completed	Dave	Ekman	ekmand@yahoo.com	+16616182198		\N	2016-06-01 02:00:17.798495	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	general interest		1	\N	\N	3540
2016-07-21 01:20:38.48735+00	2016-08-01 18:24:34.261994+00	910	completed	Dave	Ekman	ekmand@yahoo.com	+16616182198		\N	2016-07-21 01:20:38.485923	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	general interest		1	\N	\N	3540
2017-10-13 15:47:42.58404+00	2017-10-13 15:49:15.145186+00	6689	completed				+18174134000		91	2017-10-13 15:47:42.582127	2017-10-13 15:49:14.074297	CAb8b48cbb815b73a5095980b08ffcbc85	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REe8ee34b7cac71c23b941cd4202920db8	0	inbound	+18177569010	124	7.53509902954101562	\N	new lead	tc workforce	12	\N	\N	3541
2017-12-04 20:48:47.75778+00	2017-12-04 21:06:27.530677+00	7559	completed				+19413503912		1057	2017-12-04 20:48:47.756151	2017-12-04 21:06:24.321672	CA50179b93042f6571408414bfd8deb88f	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REf9fd07ca96b2d31b5eff4750c3df12af	0	inbound	+18558645656	136	2.83005499839782715	\N	new lead		15	\N	\N	3542
2017-03-21 17:57:57.798173+00	2017-11-29 18:38:53.212721+00	3520	completed				+12707236290		20	2017-03-21 17:57:57.795656	2017-03-21 17:58:17.58619	CA45983b8ee64c7942a8d5a698cb5ee6e7	\N	107			0	inbound	+12146922088	\N	5.29369282722473145	\N	new lead		9	\N	\N	3543
2017-04-28 22:51:37.021772+00	2017-11-29 18:38:49.807393+00	4455	completed				+12148616140		79	2017-04-28 22:51:37.019807	2017-04-28 22:52:55.709951	CAf284927cd58fa82cddc7504b1d15f5d6	\N	124			0	inbound	+12147122250	\N	1.25287413597106934	\N	new lead	hampton mark	9	\N	\N	3544
2017-12-08 20:00:45.502411+00	2017-12-11 20:48:18.338885+00	7722	completed				+16785365996		308	2017-12-08 20:00:45.500467	2017-12-08 20:05:53.224853	CAacac239dd4de60b8c4968548acee637d	\N	152			0	inbound	+17707665732	133	16.3849067687988281	\N	select status	roswell  ga	13	\N	\N	3545
2017-12-11 20:43:30.011203+00	2017-12-11 20:48:18.324165+00	7792	completed	Deanthony	Thomas		+16785365996		195	2017-12-11 20:43:30.009325	2017-12-11 20:46:44.542396	CA6d1681d1462ee15fe25ad369cedb25ab	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE3d3011416e951a2916c2dafe8f366d29	0	inbound	+17707665732	133	11.7036240100860596	\N	select status	roswell  ga	13	\N	\N	3545
2016-02-05 17:43:04.408678+00	2016-02-05 17:43:04.408704+00	32	missed	Gary		Bone	+17732909650	Hello from the otherside	\N	\N	\N		5544043e-a40f-4084-a2ef-ee0d0a6c5c76	\N			0	inbound		\N	\N	\N	new lead		2	\N	\N	3586
2017-12-12 18:43:43.949412+00	2017-12-12 18:45:23.998814+00	7818	completed	Deanthony	Thomas		+16785365996		99	2017-12-12 18:43:43.947531	2017-12-12 18:45:22.805878	CA5dc24157cc4ea29bca6740c0bfd95180	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REc984d95f937f67e9c194895391682c5a	0	inbound	+17707665732	133	12.7865228652954102	\N	select status	roswell  ga	13	\N	\N	3545
2017-12-12 21:06:15.284665+00	2017-12-12 21:06:50.368751+00	7825	completed	Deanthony	Thomas		+16785365996		34	2017-12-12 21:06:15.282495	2017-12-12 21:06:49.174935	CA7b41adbdd7a37ef2d64a7970374c4b2e	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE23e492dcaeb326d36e918268bfc4da5b	0	inbound	+17707665732	133	16.8769159317016602	\N	select status	roswell  ga	13	\N	\N	3545
2017-12-12 21:07:05.181338+00	2017-12-12 21:07:46.665587+00	7826	completed	Deanthony	Thomas		+16785365996		40	2017-12-12 21:07:05.179933	2017-12-12 21:07:45.499184	CAeff0b1d0a859ad114fee8070340bc45e	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REf60e50c86623d757c9976020233621bf	0	inbound	+17707665732	133	24.211432933807373	\N	select status	roswell  ga	13	\N	\N	3545
2017-12-12 21:07:57.501955+00	2017-12-12 21:09:04.465778+00	7827	completed	Deanthony	Thomas		+16785365996		66	2017-12-12 21:07:57.500626	2017-12-12 21:09:03.827151	CA39a49c0aa86737293b5a3b6ab17834b5	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE5f87d4a2d61708ad98aef2cce5c5ccb5	0	inbound	+17707665732	133	14.9750409126281738	\N	select status	roswell  ga	13	\N	\N	3545
2017-12-12 23:18:56.003639+00	2017-12-12 23:25:41.809619+00	7832	completed	danthony	thomas	moneybag371@gmail.com	+16785365996		67	2017-12-12 23:18:56.001474	2017-12-12 23:25:41.784004	CA75e09dc8a64250f5afd487afd41eb723	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE8e834ad6ee258d5061b9e3a105295dc3	3	outbound	+17704009016	\N	336.418452978134155	{}	select status		13	\N	\N	3545
2017-12-13 15:40:16.841559+00	2017-12-13 15:42:15.696539+00	7842	completed	danthony	thomas		+16785365996		118	2017-12-13 15:40:16.839364	2017-12-13 15:42:15.007595	CAb93e15a42b798788cf630592e34489f0	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REa915d16cd22cff6371e687f6e4d10738	0	inbound	+17707665732	133	10.2344291210174561	\N	select status	roswell  ga	13	\N	\N	3545
2016-05-22 23:43:44.332824+00	2016-05-25 17:05:16.64576+00	163	completed	donna	castelluccio	gbe4113@yahoo.com	+15133400711		\N	2016-05-22 23:43:44.331344	\N		25d0200e-983d-4413-94ae-eb664b99711c	\N			0	outbound	+18556311490	\N	\N	{}	new lead		1	\N	\N	3546
2016-09-01 17:02:45.926844+00	2016-12-10 01:01:00.199834+00	1837	completed				+16192792751		65	2016-09-01 17:02:45.925189	2016-09-01 17:03:50.95913	CA287f906089a83f1f891fa50edf42c330	\N	57			0	inbound	+18557860909	\N	6.58845996856689453	null	new lead		3	\N	\N	3547
2017-03-06 20:05:32.708897+00	2017-03-06 20:08:14.842469+00	3330	completed				+12149158341		161	2017-03-06 20:05:32.706499	2017-03-06 20:08:13.562177	CA392f65694bb48e3944346249e8bdff45	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE620b863d74e1d09556ed9b68b60f0bbf	0	inbound	+18557240606	49	3.19609308242797852	\N	new lead		1	\N	\N	3551
2017-03-07 19:52:01.097568+00	2017-03-07 20:06:38.197003+00	3337	completed				+12149158341		875	2017-03-07 19:52:01.095138	2017-03-07 20:06:36.480698	CAde2b616325c0e0639c0345bb2cc3fe84	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REddf2bc467c865b781295a5a835ca704f	0	inbound	+18557240606	49	3.17526102066040039	\N	new lead		1	\N	\N	3551
2016-02-02 02:44:27.326905+00	2016-02-02 02:44:42.945821+00	22	completed	Piet Pompies			+15555555555		\N	2016-02-02 02:44:27.326011	\N	CAc0c915201fc9105defcadb03ac451f25	\N	1			0	inbound		\N	\N	\N	new lead		1	\N	\N	3552
2016-02-02 02:45:27.77465+00	2016-02-02 02:45:41.451835+00	23	completed	Piet Pompies			+15555555555		\N	2016-02-02 02:45:27.773561	\N	CA1d96d1185e68a84c029317f61bbef6d6	\N	1			0	inbound		\N	\N	\N	new lead		1	\N	\N	3552
2017-09-12 21:15:02.841582+00	2017-09-12 21:19:25.493962+00	6325	completed				+12544856944		262	2017-09-12 21:15:02.839405	2017-09-12 21:19:24.501298	CA1fb6e9dbe30f2055640926ef4c5c462b	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REa50f794c1c8ee86852b58e544e58af6c	0	inbound	+18177569010	124	8.77729487419128418	\N	new lead	euless  tx	12	\N	\N	3553
2017-09-11 19:34:46.300011+00	2017-09-11 19:35:55.379883+00	6316	completed				+12544856944		69	2017-09-11 19:34:46.296525	2017-09-11 19:35:55.376667	CA1629f545a5bb72ecd43fdfdd0914245a	\N	146			0	inbound	+18177569010	124	8.92219305038452148	\N	new lead	euless  tx	12	\N	\N	3553
2017-10-09 20:32:08.78369+00	2017-10-09 20:39:01.597837+00	6636	completed				+18176554215		409	2017-10-09 20:32:08.780795	2017-10-09 20:38:58.22664	CAdc7497893db1e32ccbdf63cdbe820fb6	\N	155		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE5c5dcb4fb694afed0c0683ae3d4d5386	0	inbound	+18177569010	124	13.4175159931182861	\N	new lead	powell harold	12	\N	\N	3555
2017-11-01 22:30:18.57542+00	2017-11-01 22:31:13.365217+00	6897	completed				+18177709792		54	2017-11-01 22:30:18.572896	2017-11-01 22:31:12.637195	CAe89c719a61a084181251238073e88539	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE54cac1d55fed43d39835c919f6f004ec	0	inbound	+18177569010	124	16.7091128826141357	\N	new lead	esquivel veness	12	\N	\N	3556
2016-08-22 21:45:18.401394+00	2016-08-22 21:54:05.186121+00	1656	missed	Darlene 	Maxim	Dmaxim51@me.com	+13305186408		\N	2016-08-22 21:45:18.399217	\N		ee869226-e246-4ab4-aaaa-e9403e2ddd39	\N			0	outbound	+18555983683	\N	\N	{}	application submitted - autopay		1	\N	\N	3558
2017-05-15 22:41:19.557896+00	2017-11-29 18:38:49.811636+00	5090	completed				+19098387792		172	2017-05-15 22:41:19.555846	2017-05-15 22:44:11.275387	CA92a73e7f35244d3c9db9a9ffe4b0802d	\N	\N			0	inbound	+12147122250	\N	6.46126699447631836	\N	new lead	davis victoria	9	\N	\N	3560
2017-05-15 22:44:27.421358+00	2017-11-29 18:38:49.811643+00	5092	completed				+19098387792		77	2017-05-15 22:44:27.420131	2017-05-15 22:45:43.978145	CA22ac7925b1340c7f00fc12cc95675453	\N	125			0	inbound	+12147122250	\N	1.05275487899780273	\N	new lead	davis victoria 	9	\N	\N	3560
2017-05-15 22:45:40.187549+00	2017-11-29 18:38:49.81165+00	5093	completed				+19098387792		79	2017-05-15 22:45:40.185447	2017-05-15 22:46:58.906167	CAf44329de59b5795d549f41a92fcd6f94	\N	124			0	inbound	+12147122250	\N	1.96511602401733398	\N	new lead	davis victoria	9	\N	\N	3560
2017-05-15 22:47:06.859039+00	2017-11-29 18:38:49.811657+00	5094	missed				+19098387792		42	2017-05-15 22:47:06.85778	2017-05-15 22:47:48.450665	CAf6b61032a0eb0344d632c80d980fbd2d	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	davis victoria	9	\N	\N	3560
2016-11-23 15:32:04.122755+00	2016-11-23 15:32:04.147742+00	2969	missed	Marshall	Hilliard	marshall.hilliard@gmail.com	+17046342610		\N	2016-11-23 15:32:04.12161	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	3561
2016-11-10 15:43:05.688915+00	2016-11-10 15:43:05.714215+00	2830	missed	Jeffrey	Jackson	jeffj1@comcast.net	+17134948562		\N	2016-11-10 15:43:05.687829	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	3562
2017-05-12 17:55:05.302785+00	2017-11-29 18:38:49.811344+00	5038	completed				+12148157183		72	2017-05-12 17:55:05.299918	2017-05-12 17:56:17.091054	CA2185e9924033278fced9e73aff945d5f	\N	124			0	inbound	+12147122250	\N	1.10269713401794434	\N	new lead	consulting j	9	\N	\N	3568
2017-10-27 17:34:10.172043+00	2017-10-27 17:36:20.885963+00	6839	completed				+16789978883		131	2017-10-27 17:34:10.170419	2017-10-27 17:36:20.872096	CA2a21678b2f2b47ae3ec90cfc6a944aa6	\N	154			0	inbound	+17707665699	134	1.05169105529785156	\N	new lead		13	\N	\N	3573
2017-10-31 18:58:03.982887+00	2017-10-31 19:00:08.358181+00	6881	completed				+16789978883		124	2017-10-31 18:58:03.981099	2017-10-31 19:00:08.344895	CA869e37e373d1d27f1428db8be77cfc1b	\N	154			0	inbound	+17707665699	134	1.4121100902557373	\N	new lead		13	\N	\N	3573
2017-10-31 21:15:57.216347+00	2017-10-31 21:25:16.672744+00	6886	completed				+16789978883		559	2017-10-31 21:15:57.213381	2017-10-31 21:25:16.656629	CAb3146c50026d59f46a2142a0009aaef5	\N	154			0	inbound	+17707665699	134	1.26416707038879395	\N	new lead		13	\N	\N	3573
2017-10-28 16:33:14.888105+00	2017-10-28 16:36:38.086269+00	6852	completed				+16789978883		203	2017-10-28 16:33:14.886022	2017-10-28 16:36:38.063136	CA4384c0cb6ed2952c3d83a103b99784df	\N	154			0	inbound	+17707665699	134	1.41541290283203125	\N	new lead		13	\N	\N	3573
2017-04-18 16:32:20.174617+00	2017-11-29 18:38:53.214156+00	4040	completed				+18069282146		94	2017-04-18 16:32:20.172977	2017-04-18 16:33:54.599097	CA7aecee35304b038b9a8ada8515d01d7c	\N	\N			0	inbound	+12146922088	\N	5.93449282646179199	\N	new lead	munos jose     	9	\N	\N	3574
2016-09-07 20:50:35.131915+00	2016-11-09 15:43:50.981615+00	1949	completed				+12062049801		10	2016-09-07 20:50:35.130449	2016-09-07 20:50:45.130362	CA33e3c1f90074c752a08c0270c264ba07	\N	33			0	inbound	+18554186369	\N	2.7025909423828125	null	new lead		3	\N	\N	3575
2016-08-02 01:34:01.271947+00	2016-08-02 13:48:47.128308+00	1109	missed	Walter	Erickson	walerickson1@gmail.com	+16612308400		\N	2016-08-02 01:34:01.270955	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - credit union		1	\N	\N	3581
2017-04-13 22:57:52.318782+00	2017-04-13 23:02:53.4175+00	3903	completed				+12546519197		300	2017-04-13 22:57:52.317045	2017-04-13 23:02:52.250546	CA810e23b9c0724917abbc617f3ba069cf	\N	131		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REf3f65382a7d84ab3fa6f2ad7f8697ae1	0	inbound	+18172104002	126	11.6255929470062256	\N	new lead		12	\N	\N	3583
2016-02-04 02:22:44.140974+00	2016-04-21 21:55:13.252712+00	27	completed	Ryan			+17732909650		60	2016-02-04 02:22:55	2016-02-04 02:23:55	CA35772fed673319aab986c692e51e33e5	5544043e-a40f-4084-a2ef-ee0d0a6c5c76	\N			0	inbound		\N	\N	\N	new lead		2	\N	\N	3586
2016-02-05 17:45:10.582046+00	2016-02-05 17:45:10.582074+00	35	missed	Manny		Many@many.co	+17732909650	Hello from the otherside	\N	\N	\N		5544043e-a40f-4084-a2ef-ee0d0a6c5c76	\N			0	inbound		\N	\N	\N	new lead		2	\N	\N	3586
2016-02-05 16:40:34.205917+00	2016-02-05 16:40:35.280816+00	30	missed	Mike	Jones		+17732909650		\N	2016-02-05 16:40:34.204625	\N	CAa8fe4039834acf5a72b216628ddbc7ac	5544043e-a40f-4084-a2ef-ee0d0a6c5c76	\N			0	inbound		\N	\N	\N	new lead		2	\N	\N	3586
2016-02-05 17:45:18.75539+00	2016-02-05 17:45:18.755415+00	36	missed	Manny		Many@many.co	+17732909650	Hello from the otherside	\N	\N	\N		5544043e-a40f-4084-a2ef-ee0d0a6c5c76	\N			0	inbound		\N	\N	\N	new lead		2	\N	\N	3586
2016-02-05 17:43:13.228983+00	2016-02-05 17:43:13.229011+00	33	missed	Gary		Bone	+17732909650	Hello from the otherside	\N	\N	\N		5544043e-a40f-4084-a2ef-ee0d0a6c5c76	\N			0	inbound		\N	\N	\N	new lead		2	\N	\N	3586
2016-02-05 17:43:40.447531+00	2016-02-05 17:43:40.447558+00	34	missed	Gary		Bone	+17732909650	Hello from the otherside	\N	\N	\N		5544043e-a40f-4084-a2ef-ee0d0a6c5c76	\N			0	inbound		\N	\N	\N	new lead		2	\N	\N	3586
2016-02-05 16:42:12.693798+00	2016-02-05 16:43:29.323227+00	31	completed	Mike	Jones		+17732909650		32	2016-02-05 16:42:22	2016-02-05 16:42:54	CA087bc10c3fbf5f217e7db200b9807076	5544043e-a40f-4084-a2ef-ee0d0a6c5c76	\N			0	inbound		\N	\N	\N	new lead		2	\N	\N	3586
2016-01-31 17:08:14.56661+00	2016-02-04 18:28:20.434823+00	15	missed	Sally	Jones		+17732909650		20	2016-01-31 17:08:27	2016-01-31 17:08:47	CA86db50ef2af151f31d741ebcc7f58359	\N	\N			0	inbound		\N	\N	\N	new lead		2	\N	\N	3586
2016-02-05 17:54:14.273993+00	2016-02-05 17:58:54.278801+00	37	completed	Mike	Jones		+17732909650		\N	2016-02-05 17:54:14.272674	\N	CA97a13786d94d8c165e00bc5a94ba418d	5544043e-a40f-4084-a2ef-ee0d0a6c5c76	4			0	inbound		\N	\N	\N	new lead		2	\N	\N	3586
2016-03-31 20:30:46.360832+00	2016-04-21 22:09:51.281964+00	61	completed	Unknown			+17732909650		26	2016-03-31 20:30:46.358785	2016-03-31 20:31:11.931126	CA94309f1daf296162e76842abe8be281e	\N	\N			0	inbound	+17735707582	\N	\N	\N	new lead		2	\N	\N	3586
2016-02-17 16:04:21.069871+00	2016-02-17 16:05:05.00424+00	58	completed	Mike 	Jones		+17732909650		\N	2016-02-17 16:04:21.067872	\N	CA989ae1b5129cc6e1e047ed970c45fd12	5544043e-a40f-4084-a2ef-ee0d0a6c5c76	10			1	inbound		\N	\N	\N	new lead		2	\N	\N	3586
2016-02-04 23:07:12.023353+00	2016-04-01 12:40:38.777257+00	29	completed	Mike	Jones		+17732909650		\N	2016-02-04 23:07:12.020861	\N	CAccfc9b803c3694a406f37ddf86078bbd	5544043e-a40f-4084-a2ef-ee0d0a6c5c76	\N			0	inbound		\N	\N	\N	new lead		2	\N	\N	3586
2016-04-01 14:49:28.569241+00	2016-04-01 14:50:19.354862+00	71	completed	Harry	Jones		+17732909650		39	2016-04-01 14:49:28.56766	2016-04-01 14:50:19.353641	CA2073a22c29b771b5e5ee9be789c53f12	5544043e-a40f-4084-a2ef-ee0d0a6c5c76	11			1	outbound	+17735707582	\N	\N	\N	new lead		2	\N	\N	3586
2017-04-11 15:48:44.349089+00	2017-11-29 18:38:53.213766+00	3786	completed				+18174953830		254	2017-04-11 15:48:44.346627	2017-04-11 15:52:57.995256	CA6e8ed43ee0f2c6cce2d7aff7ee051139	\N	\N			0	inbound	+12146922088	\N	3.01133990287780762	\N	new lead	william paul	9	\N	\N	3590
2017-04-11 15:13:28.175072+00	2017-11-29 18:38:53.213724+00	3780	completed				+18174953830		36	2017-04-11 15:13:28.17267	2017-04-11 15:14:03.812321	CA69474afe875823bb2101592e1f406d5b	\N	105			0	inbound	+12146922088	\N	6.5173029899597168	\N	new lead	william paul	9	\N	\N	3590
2017-06-20 20:48:48.613835+00	2017-08-17 14:35:21.045479+00	5618	completed				+18175007998		40	2017-06-20 20:48:48.611496	2017-06-20 20:49:28.475691	CA2c2c2efb898b0cb9be917c97599f02ef	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REfcacd45f4e5ccd2a8e5702382734fa5e	0	inbound	+18177569010	124	5.35930204391479492	\N	new lead	mayberry y	12	\N	\N	3591
2017-07-14 15:11:17.584325+00	2017-07-14 15:17:14.657711+00	5775	completed				+16788626987		357	2017-07-14 15:11:17.582206	2017-07-14 15:17:14.417203	CAfcd2d322480c5604bb2d28b2b610ce8c	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE042d47959187d43edc26e2adc7910f52	0	inbound	+17704009016	132	317.376229047775269	\N	new lead		13	\N	\N	3592
2017-02-28 15:10:57.467009+00	2017-11-29 18:32:13.82198+00	3261	missed				+12604757534		328	2017-02-28 15:10:57.464027	2017-02-28 15:16:25.580329	CA30659add3960ac15e385e036675d846d	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE061e7a99b788bae3f352661d8cc07dfc	0	inbound	+18555983683	\N	14.0244338512420654	\N	new lead		1	\N	\N	3599
2017-03-07 13:45:18.996024+00	2017-11-29 18:31:56.600288+00	3334	missed				+15707353495		6	2017-03-07 13:45:18.993734	2017-03-07 13:45:25.487666	CA76eabfefd319560fab305ba5591198f6	\N	\N			0	inbound	+18556311397	\N	\N	\N	new lead		1	\N	\N	3601
2017-05-11 00:32:00.104814+00	2017-11-29 18:47:25.068446+00	4994	completed				+12542663109		366	2017-05-11 00:32:00.102439	2017-05-11 00:38:05.678065	CA347110c85003650c784afd7890fe6a11	\N	115			0	inbound	+19728330116	\N	328.979190111160278	\N	new lead	brown fredia   	8	\N	\N	3603
2017-12-13 17:04:38.783635+00	2017-12-13 17:06:30.575015+00	7847	completed				+18177241323		111	2017-12-13 17:04:38.782381	2017-12-13 17:06:29.511973	CA6bd216275dc7eeeb36aeafaf94b130ec	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE0bc88929c1e5d6493904cb163bac2f88	0	inbound	+18177569010	124	6.70175504684448242	\N	new lead	ross patrick	12	\N	\N	3605
2017-10-13 20:11:12.406968+00	2017-11-29 18:31:05.369003+00	6702	missed				+15124524224		8	2017-10-13 20:11:12.405826	2017-10-13 20:11:20.304548	CAf79fc948082e9a8126c5d2ac25ed4053	\N	\N			0	inbound	+18557824539	\N	\N	\N	new lead		1	\N	\N	3610
2017-10-13 20:10:49.404478+00	2017-11-29 18:31:05.368996+00	6701	missed				+15124524224		11	2017-10-13 20:10:49.402284	2017-10-13 20:11:00.486051	CAd42ca94d7e060ef9b6d92bd181bc9e66	\N	\N			0	inbound	+18557824539	\N	\N	\N	new lead		1	\N	\N	3610
2017-04-29 14:24:05.64271+00	2017-04-29 14:27:49.787111+00	4458	completed				+16019664674		223	2017-04-29 14:24:05.639726	2017-04-29 14:27:49.057986	CA9fd0d4985d005a0f90e27abb42f5b728	\N	131		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE797c81849fe768becfd2323d26aafc23	0	inbound	+18172104002	126	23.9140350818634033	\N	new lead	baaree gloria  	12	\N	\N	3611
2017-04-29 15:44:09.725606+00	2017-04-29 15:44:54.299867+00	4459	completed				+16019664674		44	2017-04-29 15:44:09.723121	2017-04-29 15:44:53.236965	CA9cdee56eedb3fbdd6b03e8b5e7285e3d	\N	132		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REbc2908cb94b2866abb443a4ea649ea65	0	inbound	+18172104002	126	12.9564809799194336	\N	new lead	baaree gloria  	12	\N	\N	3611
2017-04-29 15:54:50.815743+00	2017-04-29 15:55:20.003376+00	4462	completed				+16019664674		27	2017-04-29 15:54:50.813773	2017-04-29 15:55:17.838414	CAcbe71146abf82b01ef27ea1f695a46a6	\N	132		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE0353dcb1431ba446cc43506ee391900a	0	inbound	+18172104002	126	10.0297110080718994	\N	new lead	baaree gloria  	12	\N	\N	3611
2017-04-29 15:55:38.038645+00	2017-04-29 15:58:15.649719+00	4463	completed				+16019664674		157	2017-04-29 15:55:38.03697	2017-04-29 15:58:14.601038	CAc00d34486cf2fc563ddd8418dbe968e5	\N	132		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE07838763f26272709579af8f4fc56816	0	inbound	+18172104002	126	6.56606197357177734	\N	new lead	baaree gloria  	12	\N	\N	3611
2017-04-29 15:52:26.167999+00	2017-04-29 16:12:22.86299+00	4460	completed				+16019664674		1195	2017-04-29 15:52:26.166471	2017-04-29 16:12:20.816185	CAbb7c55f9c9f4edb2d6a3fa118a5cf839	\N	131		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REa9e48d8b1825e5082a86254dd0be221d	0	inbound	+18172104002	126	416.060014963150024	\N	new lead	baaree gloria  	12	\N	\N	3611
2017-04-29 15:53:42.20509+00	2017-04-29 16:16:55.455315+00	4461	missed				+16019664674		51	2017-04-29 15:53:42.202056	2017-04-29 15:54:32.953264	CA65b7be0e32af369f2dca8d13209ca801	\N	\N			0	inbound	+18172104002	126	1371.92575407028198	\N	new lead	baaree gloria  	12	\N	\N	3611
2017-05-12 15:39:30.23009+00	2017-08-17 14:35:21.045183+00	5031	completed				+12148696957		190	2017-05-12 15:39:30.22808	2017-05-12 15:42:39.986898	CAed92a4d316469c8921269f32d94e07e8	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE3787d0eb691c0c278e30e4666e04fcf8	0	inbound	+18177569010	124	16.3756229877471924	\N	new lead	walker bob     	12	\N	\N	3613
2017-12-05 17:40:14.191224+00	2017-12-05 17:40:14.631516+00	7591	missed				+17633254565		0	2017-12-05 17:40:14.189391	2017-12-05 17:40:14.620959	CAc38183f7214f19d89f6ad29d2b4c0f74	\N	\N			0	inbound	+18558645656	136	\N	\N	new lead		15	\N	\N	3614
2017-04-13 22:44:10.705101+00	2017-11-29 18:38:53.21388+00	3901	completed				+12148761534		620	2017-04-13 22:44:10.701599	2017-04-13 22:54:31.197113	CAa223b73c17117042c69b2e7f4e7dfdb5	\N	99			0	inbound	+12146922088	\N	8.57860088348388672	\N	new lead	mitchell henry 	9	\N	\N	3615
2017-12-14 13:04:00.209828+00	2017-12-14 15:14:41.468027+00	7860	missed	 Hailey	Solomon	Hmsolomon1@hmail.com	+17702874180		\N	2017-12-14 13:04:00.208029	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	3617
2017-12-14 15:12:17.30034+00	2017-12-14 15:14:41.457929+00	7864	completed	 Hailey	Solomon	Hmsolomon1@hmail.com	+17702874180		85	2017-12-14 15:12:17.298634	2017-12-14 15:13:42.489171		\N	150			0	outbound	+17704009016	132	\N	\N	select status		13	\N	\N	3617
2017-12-20 14:11:04.392973+00	2017-12-20 14:16:24.239458+00	8022	completed	 Hailey	Solomon		+17702874180		319	2017-12-20 14:11:04.390749	2017-12-20 14:16:23.551416	CA6cf7b12ac3f01cd2c0766fd0f60da56e	\N	154		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE2d9fb315ebe3739dec59de1f528a81e2	0	inbound	+17707665699	134	1.14533901214599609	\N	select status	solomon hailey	13	\N	\N	3617
2016-11-07 15:46:32.651987+00	2016-11-07 15:46:32.682727+00	2787	missed	lucas	heck	lauke98@yahoo.com	+14704246172		\N	2016-11-07 15:46:32.650016	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	3621
2017-05-01 21:23:54.256954+00	2017-11-29 18:38:49.808387+00	4549	missed				+14698373031		36	2017-05-01 21:23:54.25229	2017-05-01 21:24:30.016316	CAf4642103b5baea020eab40ae856cb3e7	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	dallas  tx	9	\N	\N	3623
2017-11-25 20:35:06.821207+00	2017-11-25 20:53:54.088143+00	7325	completed	TRESSA	CLEGARN		+17065250790		257	2017-11-25 20:35:06.818545	2017-11-25 20:39:23.637384	CAf9f13ea4336341cf2d4c10c47cdd8e9e	\N	153			0	inbound	+17707665732	133	19.0381360054016113	\N	select status	cell phone   ga	13	\N	\N	3624
2016-11-04 17:16:28.837534+00	2016-11-04 17:51:43.736445+00	2710	completed				+12142449978		2107	2016-11-04 17:16:28.836077	2016-11-04 17:51:35.987319	CA51d1c2673ca1f74ad1846a25bf1d6fac	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE321f2af7a8201ff9057b2688381d8c3d	0	inbound	+18557240606	49	2.00060915946960449	null	new lead		1	\N	\N	3626
2016-08-10 16:30:02.462056+00	2016-12-09 17:07:47.979185+00	1390	completed				+14164479984		24	2016-08-10 16:30:02.460407	2016-08-10 16:30:26.935285	CA3ed42cb1444b935b83218f06e65bd06f	\N	55			0	inbound	+18556708891	\N	2.08938884735107422	null	new lead		3	\N	\N	3627
2017-04-27 14:44:10.838413+00	2017-11-29 18:38:49.806894+00	4359	completed				+18554752729		83	2017-04-27 14:44:10.836313	2017-04-27 14:45:34.119894	CAca2a5921f338a67d75491706b22fbf13	\N	127			0	inbound	+12147122250	\N	1.1981198787689209	\N	new lead	800 service	9	\N	\N	3629
2017-04-27 19:20:56.863498+00	2017-11-29 18:38:49.807045+00	4381	completed				+18554752729		82	2017-04-27 19:20:56.862288	2017-04-27 19:22:18.696576	CA955338cbfc5dd0d205a77e431cc39e9c	\N	127			0	inbound	+12147122250	\N	1.02953314781188965	\N	new lead	800 service	9	\N	\N	3629
2017-07-28 21:09:03.356343+00	2017-07-28 21:12:48.569712+00	5871	completed	Joseph	Hudgins	Hudginsgscon@gmail.com	+14045280988		210	2017-07-28 21:09:03.354861	2017-07-28 21:12:47.263817	CAa62840074201728c893f58087b14cd86	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REa1da68a9d15f4ee7f814e67962c23bec	1	outbound	+17704009016	\N	15.8746070861816406	{}	new lead		13	\N	\N	3631
2017-04-27 21:28:18.015432+00	2017-08-17 14:35:21.045059+00	4404	completed				+12146056687		177	2017-04-27 21:28:18.014219	2017-04-27 21:31:14.756531	CA2b241a41e768e9b354ce302cda518518	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REfa458fe2286b77eb9d72608596cba066	0	inbound	+18177569010	124	33.6631350517272949	\N	new lead	dallas  tx	12	\N	\N	3636
2016-12-08 15:43:38.672026+00	2016-12-09 17:08:22.273139+00	3064	completed				+16095613090		32	2016-12-08 15:43:38.669879	2016-12-08 15:44:10.447921	CAef840ab970625f323585a98c69456906	\N	67			0	inbound	+18552255158	\N	1.97344803810119629	null	new lead		3	\N	\N	3637
2017-09-04 18:43:34.16555+00	2017-09-04 18:49:36.510125+00	6252	missed	Raymond	Morrison	ray.morrison78@gmail.com	+16036615789		0	2017-09-04 18:43:34.164064	2017-09-04 18:49:36.507834	CAacf33c1626142c1c9aa62927d2d51775	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			3	outbound	+17704009016	\N	6.57906603813171387	{}	new lead		13	\N	\N	3640
2017-05-11 19:38:17.897004+00	2017-11-29 18:38:49.811161+00	5018	completed				+18025407352		115	2017-05-11 19:38:17.894779	2017-05-11 19:40:12.823714	CA3e4df6d94e485d550310a418335bfe7e	\N	124			0	inbound	+12147122250	\N	1.18911385536193848	\N	new lead	burlington  vt	9	\N	\N	3641
2017-07-29 16:38:47.950182+00	2017-07-29 16:39:52.105805+00	5878	completed				+17069494617		63	2017-07-29 16:38:47.948097	2017-07-29 16:39:50.910868	CA208e60383d29f8b0bdf2ec1082426e3a	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE542283ab57b9d4effff6c93023f84153	0	inbound	+17704009016	132	12.9953951835632324	\N	new lead		13	\N	\N	3644
2016-11-10 16:49:52.10377+00	2016-11-10 16:49:52.135522+00	2834	missed	Toya	Embras	toya.embras@gmail.com	+15127539312		\N	2016-11-10 16:49:52.102621	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	3646
2017-04-20 20:12:23.686056+00	2017-11-29 18:38:49.806068+00	4156	completed				+12142800129		87	2017-04-20 20:12:23.684015	2017-04-20 20:13:51.04737	CA899dcf7d42bd6aeae26b4a6475e2f382	\N	127			0	inbound	+12147122250	\N	1.2924799919128418	\N	new lead	prince marish	9	\N	\N	3648
2016-11-05 19:02:48.540273+00	2016-11-05 19:02:48.56286+00	2751	missed	Jacqueline 	Spencer	jackiespencer19@gmail.com	+18164011481		\N	2016-11-05 19:02:48.539239	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	new lead		1	\N	\N	3650
2017-08-16 16:06:11.32982+00	2017-08-16 16:10:28.845355+00	6048	completed				+17708733763		256	2017-08-16 16:06:11.32769	2017-08-16 16:10:27.687212	CA81f6609030f86c0cf6ba4a1e101e68ce	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE332464b0bc13da73359cc3a991aedcc7	0	inbound	+17704009016	132	11.9444320201873779	\N	new lead		13	\N	\N	3653
2017-08-16 19:40:18.631662+00	2017-08-16 19:46:42.557985+00	6053	missed				+17708733763		54	2017-08-16 19:40:18.629886	2017-08-16 19:41:12.199988	CAbde7de5be6ffeaca880d83f7bab691c7	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE1600655d6c776af2856a15860647044d	0	inbound	+17704009016	132	3.16129589080810547	\N	new lead		13	\N	\N	3653
2017-08-16 19:51:32.907789+00	2017-08-16 19:53:23.847806+00	6054	completed	Walter	Bennett	Walterbennett2972@gmail.com	+17708733763		101	2017-08-16 19:51:32.906423	2017-08-16 19:53:23.778991	CAaf7b874503b5e78e4d040df880faef4b	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REd621b5e04efd0ea57f5a4334fc0bfa8a	1	outbound	+17704009016	\N	8.91702604293823242	{}	new lead		13	\N	\N	3653
2017-08-16 21:31:00.867921+00	2017-08-16 21:37:12.369406+00	6061	missed	Walter	Bennett		+17708733763		41	2017-08-16 21:31:00.865827	2017-08-16 21:31:42.182621	CA0806858dc857481d6ce571d62af71b02	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE6dda8223278f18534bf07bd8142c064f	0	inbound	+17704009016	132	\N	\N	new lead		13	\N	\N	3653
2017-08-16 16:19:25.6723+00	2017-08-16 16:25:46.468877+00	6049	completed				+17708733763		380	2017-08-16 16:19:25.670508	2017-08-16 16:25:45.92712	CAa097cfbb01796335f5f2962ee1548652	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE789f1479bd4b471e9f43e472a6a3f753	0	inbound	+17704009016	132	313.397952079772949	\N	new lead		13	\N	\N	3653
2016-07-11 01:08:19.105363+00	2016-07-11 12:10:56.421238+00	839	completed	curt	albrecht	curtalbrecht88@gmail.com	+16147747165		\N	2016-07-11 01:08:19.104114	\N		d33a481e-e0af-47ac-9f90-260f20b69de5	\N			0	outbound	+18552959002	\N	\N	{}	new lead		1	\N	\N	3655
2017-05-22 18:44:57.352918+00	2017-11-29 18:38:49.812628+00	5289	completed				+16129918151		114	2017-05-22 18:44:57.351029	2017-05-22 18:46:50.912064	CAa549b9cb0ebf2ef377943e3151767e4b	\N	107			0	inbound	+12147122250	\N	6.47060418128967285	\N	new lead	wireless caller	9	\N	\N	4123
2017-12-20 17:32:13.290463+00	2017-12-20 17:54:33.789263+00	8027	missed				+18179995335		52	2017-12-20 17:32:13.28845	2017-12-20 17:33:05.472177	CAe5eeb0473e2900c558497aee9ba31bd2	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE8916a097f53888232e798e2cacb9bff3	0	inbound	+18177569010	124	389.032150030136108	\N	new lead	euless  tx	12	\N	\N	3659
2016-10-30 03:26:17.795721+00	2016-10-30 03:26:17.831726+00	2373	missed	DELWIN	SIMMS	DELWINSIMMS@YAHOO.COM	+12142749009		\N	2016-10-30 03:26:17.794487	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	3661
2017-05-01 19:40:03.702136+00	2017-11-29 18:38:53.21488+00	4540	completed				+14697090550		183	2017-05-01 19:40:03.699797	2017-05-01 19:43:06.802434	CAb68ab602ccc1f60e28d0ca79a8d5c0ec	\N	107			0	inbound	+12146922088	\N	7.12331986427307129	\N	new lead	roberts eyen	9	\N	\N	3663
2016-07-29 19:29:32.821465+00	2017-11-29 18:31:10.261777+00	1046	completed				+14136958757		13	2016-07-29 19:29:32.819635	2016-07-29 19:29:45.445536	CA8f46eff559dc08bb382f665a58b78eb6	\N	18			0	inbound	+18556311490	\N	10.4047830104827881	null	do not contact		1	\N	\N	3666
2016-07-29 19:30:08.454159+00	2017-11-29 18:31:10.261796+00	1047	completed				+14136958757		86	2016-07-29 19:30:08.452851	2016-07-29 19:31:34.257605	CAfbc82a135a5c937a7d833e515fec5c9e	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE054d80dc37019560e604f22d053c4f45	0	inbound	+18556311490	\N	8.20189595222473145	null	do not contact		1	\N	\N	3666
2017-12-02 17:42:42.845629+00	2017-12-02 17:56:21.336553+00	7489	completed				+14076142191		816	2017-12-02 17:42:42.843538	2017-12-02 17:56:18.47992	CA638191e20742e8d33240d0e9f6e71346	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE188909b5bc87c3a2c835ee1b4edf147e	0	inbound	+18558645656	136	2.43331217765808105	\N	new lead		15	\N	\N	3667
2017-12-02 16:54:30.322644+00	2017-12-02 16:55:01.654036+00	7482	completed				+14076142191		30	2017-12-02 16:54:30.320834	2017-12-02 16:55:00.376584	CA10c0d3accfde410c29ec65d54120e624	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE45d2325b7cef3b69f47b91d707c7c30d	0	inbound	+18558645656	136	3.00000905990600586	\N	new lead		15	\N	\N	3667
2017-12-16 00:40:13.910955+00	2017-12-16 17:33:08.916345+00	7920	missed	Sara	Bryson	sarabryson1983@gmail.com	+17063513862		\N	2017-12-16 00:40:13.909466	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	3668
2017-07-15 21:23:41.758709+00	2017-07-15 21:24:25.297179+00	5785	completed	Holly	Davis	SapphireAngel412@gmail.com	+17069731012		38	2017-07-15 21:23:41.757281	2017-07-15 21:24:25.249517	CA4a291f9fed93c0500fb01ab9e9b57f87	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE496009125b81c421cc469c25b55da966	1	outbound	+17704009016	\N	5.37433314323425293	{}	new lead		13	\N	\N	3670
2016-10-21 15:14:15.18906+00	2016-12-10 01:04:28.706435+00	2333	completed				+19512588798		104	2016-10-21 15:14:15.187525	2016-10-21 15:15:59.658579	CA1d8a0eadc8140a2e9e54bdc20e7838da	\N	61			0	inbound	+18557579140	\N	0.834969043731689453	null	new lead		3	\N	\N	3671
2017-10-26 13:09:05.25162+00	2017-10-26 13:13:16.347263+00	6809	completed	Cindi	Walker	shortstuff5051@yahoo.com	+14709555213		240	2017-10-26 13:09:05.249864	2017-10-26 13:13:15.027042	CA2079f9109e4966650a0d0e071110e4c8	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REbabad285fe99ecb17bdccc44aee10a58	1	outbound	+17704009016	\N	10.0009641647338867	{}	new lead		13	\N	\N	3673
2017-11-06 18:18:26.705996+00	2017-11-06 18:19:03.306697+00	6947	completed	Cindi	Walker		+14709555213		37	2017-11-06 18:18:26.703002	2017-11-06 18:19:03.29608	CA2e0df7d1f33252e98ad9fb0485d75fc3	\N	150			0	inbound	+17707665732	133	22.9941661357879639	\N	new lead		13	\N	\N	3673
2017-11-06 18:21:05.628065+00	2017-11-06 18:22:25.652088+00	6948	completed	Cindi	Walker		+14709555213		80	2017-11-06 18:21:05.626195	2017-11-06 18:22:25.639924	CA26867c741cd43a16a14ddcda9c0c139d	\N	153			0	inbound	+17707665732	133	9.81406307220458984	\N	new lead		13	\N	\N	3673
2016-11-01 18:51:58.511082+00	2016-11-01 19:32:04.220735+00	2489	completed				+17048277649		2400	2016-11-01 18:51:58.509761	2016-11-01 19:31:58.335168	CA5f81900211f23dae4883ea074c3fd2c3	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REeca2770adb7f895eb7ca9797a498b1ec	0	inbound	+18557240606	49	1.96853184700012207	null	new lead		1	\N	\N	3676
2016-11-30 21:07:51.08623+00	2017-11-29 18:32:13.821965+00	3010	missed				+12166442191		64	2016-11-30 21:07:51.083741	2016-11-30 21:08:55.497587	CAa131ba5d380d6305e11dc85145220760	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REc872562aede8a8eaedbebc51707ed64c	0	inbound	+18555983683	\N	31.980241060256958	null	new lead		1	\N	\N	3677
2016-12-01 14:32:19.924788+00	2017-11-29 18:32:13.821973+00	3012	missed				+12166442191		55	2016-12-01 14:32:19.922986	2016-12-01 14:33:15.079311	CA8830ba37918bba1619fa5510d2f0d55c	\N	\N			0	inbound	+18555983683	\N	31.9767539501190186	null	new lead		1	\N	\N	3677
2016-11-28 22:07:11.361348+00	2017-11-29 18:32:13.821958+00	2992	missed				+12166442191		57	2016-11-28 22:07:11.359256	2016-11-28 22:08:08.82675	CA5cf9e6f4f71be1103ae5bb1eb2a4bbc0	\N	\N			0	inbound	+18555983683	\N	31.6576480865478516	null	new lead		1	\N	\N	3677
2017-05-12 18:49:55.092648+00	2017-11-29 18:38:49.811352+00	5039	completed				+15055772223		371	2017-05-12 18:49:55.090531	2017-05-12 18:56:06.046902	CAfb03bd1687aee7408de8bb5db6ae5094	\N	133			0	inbound	+12147122250	\N	2.26981711387634277	\N	new lead	cell phone   nm	9	\N	\N	3678
2017-08-22 05:35:00.797259+00	2017-08-22 05:35:00.859671+00	6130	missed	Rachelle 	Vaughan 	Ray_bad@yahoo.com	+16788583510		\N	2017-08-22 05:35:00.795632	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	3679
2017-03-24 00:44:36.052006+00	2017-11-29 18:38:53.212902+00	3570	completed				+12107883318		416	2017-03-24 00:44:36.050038	2017-03-24 00:51:31.894027	CAdd1476730e3f3c2064782c8f3eeeff7c	\N	\N			0	inbound	+12146922088	\N	3.89282608032226562	\N	new lead	angel rabago	9	\N	\N	3682
2017-10-12 20:19:54.750102+00	2017-10-12 20:21:00.278651+00	6682	completed	William	Rotton	Btk33@hotmail.com	+17703774758		56	2017-10-12 20:19:54.748607	2017-10-12 20:20:58.983653	CAc2686a3931e0217a81db7d7561071a9c	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REdbe5821dfd47e38768dc982562e1c2b2	1	outbound	+17704009016	\N	8.23340702056884766	{}	new lead		13	\N	\N	3683
2017-10-13 16:47:40.92142+00	2017-10-13 16:53:21.657813+00	6692	missed	William	Rotton		+17703774758		7	2017-10-13 16:47:40.919119	2017-10-13 16:47:48.23946	CA750f98c89b13c054d8aa56b44103a5bf	\N	\N			0	inbound	+17704009016	132	\N	\N	new lead		13	\N	\N	3683
2017-10-14 16:55:16.816714+00	2017-10-14 17:01:00.893767+00	6714	missed	William	Rotton		+17703774758		9	2017-10-14 16:55:16.814496	2017-10-14 16:55:25.506164	CA7691fc625cad1d58a1d1ea2962948321	\N	\N			0	inbound	+17704009016	132	322.585650205612183	\N	new lead		13	\N	\N	3683
2017-05-26 18:41:47.379049+00	2017-11-29 18:38:49.813685+00	5443	completed				+14699200031		76	2017-05-26 18:41:47.377035	2017-05-26 18:43:03.518639	CA06122c8ccdd8a076746beea938f11476	\N	124			0	inbound	+12147122250	\N	2.20831894874572754	\N	new lead	estes antonio	9	\N	\N	3684
2017-04-15 21:49:52.573365+00	2017-11-29 18:38:49.805182+00	3979	missed				+14699200031		32	2017-04-15 21:49:52.571712	2017-04-15 21:50:24.480463	CAdad06a1e37dc7e4341f9b2f7bc51280b	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	estes antonio	9	\N	\N	3684
2017-05-10 18:43:44.516439+00	2017-11-29 18:38:49.810853+00	4967	completed				+19732400205		79	2017-05-10 18:43:44.514343	2017-05-10 18:45:03.643338	CA89b4d01505e5d8d2957a11e46ac56572	\N	107			0	inbound	+12147122250	\N	3.02360701560974121	\N	new lead	halen brands	9	\N	\N	3693
2017-08-20 23:05:58.729622+00	2017-11-17 17:57:25.894468+00	6114	missed	tina	holder	tinaholder2003@gmail.com	+17066128918		\N	2017-08-20 23:05:58.728149	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	3697
2017-11-16 21:39:05.078108+00	2017-11-17 17:57:25.880829+00	7082	completed	Tina	holder	tinaholder2003@gmail.com	+17066128918		158	2017-11-16 21:39:05.076367	2017-11-16 21:41:51.983392	CA6fa2afe6ff067c81109e5c75fa18f2eb	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REb239636a5c62de80a99ca9a001d3e7c7	1	outbound	+17704009016	\N	10.6325240135192871	{}	select status		13	\N	\N	3697
2016-10-05 21:25:41.722668+00	2016-12-09 17:10:17.413563+00	2202	completed				+19732869611		99	2016-10-05 21:25:41.721589	2016-10-05 21:27:20.892564	CAb16e5474a3848e03bae016e6224d332c	\N	27			0	inbound	+18552716856	\N	7.11977791786193848	null	new lead		3	\N	\N	3702
2016-12-02 23:14:42.568473+00	2016-12-02 23:14:42.596822+00	3031	missed	William	Stern	wjstern@windstream.net	+12812654851		\N	2016-12-02 23:14:42.567358	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	3703
2016-06-30 15:31:30.941422+00	2016-06-30 15:32:56.44583+00	673	completed				+16143908212		81	2016-06-30 15:31:30.940397	2016-06-30 15:32:56.444797	CAf864ded28fdc96537ce582d9f8c5d6d9	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	1.85499715805053711	{}	new lead		1	\N	\N	3704
2016-06-30 13:31:57.170904+00	2016-06-30 15:33:02.446075+00	669	completed	MARGARET	HURLEY	HURLEY.42@OSU.EDU	+16143908212	Submitted application two days ago haven't heard anything was my application received?	\N	2016-06-30 13:31:57.169038	\N		7538e8eb-28e3-4fa9-91c1-949630f89eac	\N			0	outbound	+18556311439	\N	\N	{}	new lead		1	\N	\N	3704
2016-06-30 15:29:47.202555+00	2016-06-30 15:33:16.024662+00	672	completed				+16143908212		17	2016-06-30 15:29:47.201608	2016-06-30 15:30:09.587471	CA9986500fe0068ebbe5c86c7e363ecc60	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	\N			1	outbound	+18552959002	\N	2.4224860668182373	{}	new lead		1	\N	\N	3704
2016-06-30 15:58:48.749918+00	2016-06-30 18:06:08.496227+00	674	completed	MARGARET BETH	HURLEY	Hurley.42@osu.edu	+16143908212		9	2016-06-30 15:58:48.748738	2016-06-30 15:59:11.709994	CA81e4eddd0168fa933d578006f5ad9a46	d33a481e-e0af-47ac-9f90-260f20b69de5	\N			1	outbound	+18552959002	\N	8.41535782814025879	{}	new lead		1	\N	\N	3704
2016-06-30 15:59:47.213079+00	2016-06-30 16:00:47.836919+00	675	completed				+16143908212		56	2016-06-30 15:59:47.212142	2016-06-30 16:00:47.835924	CA604a5eb4ecced78851f470802c250a4e	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	1.65968990325927734	{}	new lead		1	\N	\N	3704
2016-06-30 16:06:56.024586+00	2016-06-30 16:08:35.400172+00	676	completed				+16143908212		95	2016-06-30 16:06:56.023155	2016-06-30 16:08:35.398872	CA21da34bb5a88345123359a89c2803f5e	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	1.3294830322265625	{}	new lead		1	\N	\N	3704
2017-05-08 19:03:13.050682+00	2017-11-29 18:38:53.215391+00	4866	completed				+16312654000		74	2017-05-08 19:03:13.048393	2017-05-08 19:04:26.94515	CA909f1d7e8493672e8e37e6d314e805e9	\N	\N			0	inbound	+12146922088	\N	1.30738210678100586	\N	new lead	credit solution	9	\N	\N	3705
2017-10-24 21:45:55.428771+00	2017-10-24 21:48:11.313295+00	6794	completed				+18303251538		136	2017-10-24 21:45:55.426758	2017-10-24 21:48:11.310509	CA7fe629c6630f3ede90c1c0024dd0767b	\N	155			0	inbound	+18177569010	124	55.4160609245300293	\N	new lead	san antonio  tx	12	\N	\N	3706
2016-11-04 15:14:02.939622+00	2016-11-04 15:15:27.388168+00	2689	completed				+13145226529		84	2016-11-04 15:14:02.936795	2016-11-04 15:15:27.001621	CA9a5cc5c13a7383d9a56c7a3f946f3801	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE577e751739b5f01ef648a28ed843b06d	0	inbound	+18557240606	49	2.62837600708007812	null	new lead		1	\N	\N	3708
2016-11-04 15:14:35.866304+00	2016-11-04 15:50:51.986253+00	2690	completed				+13145226529		2171	2016-11-04 15:14:35.865232	2016-11-04 15:50:47.242341	CAd6739e58a295befa19796e2f0ce63f3b	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REbe9e7355875dea1356b44479f7c7745e	0	inbound	+18557240606	49	1.78429484367370605	null	new lead		1	\N	\N	3708
2016-11-04 19:20:45.501046+00	2016-11-04 19:34:16.336065+00	2721	completed				+13145226529		809	2016-11-04 19:20:45.498921	2016-11-04 19:34:14.59461	CAcf74eac7b4df84b340dc107297cc4f10	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE1909edf1ee7d3c6bed6015d98313e6b3	0	inbound	+18557240606	49	5.78052592277526855	null	new lead		1	\N	\N	3708
2016-08-09 18:24:00.118766+00	2016-12-10 00:55:45.165212+00	1361	completed				+12152555410		314	2016-08-09 18:24:00.117172	2016-08-09 18:29:13.749238	CA655a289f9f277f0490fc74363e039035	\N	24			0	inbound	+18557129406	\N	1.1988670825958252	null	new lead		3	\N	\N	3710
2017-03-28 17:43:19.439687+00	2017-11-29 18:32:13.82199+00	3611	missed				+13307579080		30	2017-03-28 17:43:19.437989	2017-03-28 17:43:49.533336	CA7dfbf92212cd6919f7c0748106ccb69b	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE9cdd9a19ad6464dfe9bf844cccef88b8	0	inbound	+18555983683	\N	\N	\N	general interest		1	\N	\N	3712
2017-12-04 01:09:47.673853+00	2017-12-04 01:11:08.44434+00	7519	completed	Kimberly	Thompson	mohtmik@yahoo.com	+13053042872		78	2017-12-04 01:09:47.671769	2017-12-04 01:11:08.441844	CAbd4ae4fb70fe45a45b2fb191575b14f1	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.15628194808959961	{}	new lead		15	\N	\N	3713
2017-12-19 00:43:18.761265+00	2017-12-19 01:05:35.525143+00	7982	missed				+14699717799		43	2017-12-19 00:43:18.759504	2017-12-19 00:44:01.384262	CA84506d242103e90d27332a912d75c46b	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE077c10993b54fd371a53d4a5d30dcf7b	0	inbound	+18177569010	124	1315.35765504837036	\N	new lead	kenyette king	12	\N	\N	3714
2017-12-19 00:44:06.598509+00	2017-12-19 01:06:05.200459+00	7983	missed				+14699717799		33	2017-12-19 00:44:06.597317	2017-12-19 00:44:39.538515	CA3873f0571e8bf6778ec5df8faee9f4c1	\N	\N			0	inbound	+18177569010	124	1297.43751907348633	\N	new lead	kenyette king	12	\N	\N	3714
2017-12-19 21:13:28.978641+00	2017-12-19 21:21:13.415941+00	8015	completed				+14699717799		464	2017-12-19 21:13:28.976378	2017-12-19 21:21:13.414	CA9392986214d88a4bffda990370328f1f	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REab361788116e02ce7fc22e4d70874947	0	inbound	+18177569010	124	431.937273025512695	\N	new lead	kenyette king	12	\N	\N	3714
2017-06-30 16:38:01.479755+00	2017-06-30 16:48:58.860364+00	5692	completed				+14049404890		657	2017-06-30 16:38:01.477766	2017-06-30 16:48:58.857639	CA793d1f029e8dc2d9fb8eba5ff2a94f3a	\N	153			0	inbound	+17704009016	132	351.379920959472656	\N	new lead		13	\N	\N	3715
2017-12-12 16:18:06.510188+00	2017-12-12 16:29:45.243315+00	7814	completed	sterling	wooldridge	store@partnernet.com	+15754911471		694	2017-12-12 16:18:06.508006	2017-12-12 16:29:45.241362	CA6948958630906b5315abf26433a7c5a6	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	3.85977602005004883	{}	new lead		15	\N	\N	3718
2016-12-01 17:04:47.014225+00	2016-12-10 01:01:00.200628+00	3015	completed				+16194450349		318	2016-12-01 17:04:47.01284	2016-12-01 17:10:05.340445	CAcc49c129c50e318fb0e8b859e50ed369	\N	57			0	inbound	+18557860909	\N	14.8360049724578857	null	new lead		3	\N	\N	3721
2016-11-02 16:16:14.955556+00	2016-12-10 01:01:00.200563+00	2565	missed				+16194450349		38	2016-11-02 16:16:14.954408	2016-11-02 16:16:52.724412	CA6437188ab2d9e0c26e5b5892a4121b18	\N	\N			0	inbound	+18557860909	\N	\N	null	new lead		3	\N	\N	3721
2017-12-02 20:08:04.028403+00	2017-12-02 20:25:11.021297+00	7499	completed	Steven P	DesRoches	spdesroches56@gmail.com	+13125195350		1024	2017-12-02 20:08:04.026901	2017-12-02 20:25:11.018997	CAcdd1bc28eac5193a702f0b94a62ecd62	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.80642294883728027	{}	new lead		15	\N	\N	3722
2016-07-26 18:24:33.869611+00	2016-12-09 17:06:53.905744+00	953	completed				+13024529836		121	2016-07-26 18:24:33.868282	2016-07-26 18:26:35.330804	CA5d66be893cf235318faba175cfaac6ff	\N	21			0	inbound	+18558021330	\N	2.71689701080322266	null	new lead		3	\N	\N	3724
2017-05-05 18:09:14.497749+00	2017-11-29 18:38:49.810013+00	4772	completed				+19724785200		81	2017-05-05 18:09:14.495164	2017-05-05 18:10:35.371577	CA5f169dd54ecb872a603acb518812eaf2	\N	125			0	inbound	+12147122250	\N	1.87960195541381836	\N	new lead	state of tx dmv	9	\N	\N	3725
2017-05-05 18:10:29.959126+00	2017-11-29 18:38:49.810029+00	4773	completed				+19724785200		85	2017-05-05 18:10:29.956825	2017-05-05 18:11:54.482145	CAb2dbe172ce19153cabb39018facb50d8	\N	127			0	inbound	+12147122250	\N	1.97896289825439453	\N	new lead	state of tx dmv	9	\N	\N	3725
2017-05-05 18:47:13.883024+00	2017-11-29 18:38:49.810052+00	4776	completed				+19724785200		69	2017-05-05 18:47:13.881892	2017-05-05 18:48:22.729693	CAfefb799ee8e36594f7024ae78d1a1f82	\N	124			0	inbound	+12147122250	\N	1.14425301551818848	\N	new lead	state of tx dmv	9	\N	\N	3725
2017-05-05 18:48:13.42481+00	2017-11-29 18:38:49.810059+00	4777	completed				+19724785200		54	2017-05-05 18:48:13.42343	2017-05-05 18:49:07.81925	CA826c7e3cd3addef44e7ffeb0704a2450	\N	124			0	inbound	+12147122250	\N	2.08900904655456543	\N	new lead	state of tx dmv	9	\N	\N	3725
2017-05-05 18:48:58.215658+00	2017-11-29 18:38:49.810066+00	4778	completed				+19724785200		63	2017-05-05 18:48:58.214256	2017-05-05 18:50:01.442885	CA167082a90a1203609913f40e7a3a12e6	\N	125			0	inbound	+12147122250	\N	0.982758998870849609	\N	new lead	state of tx dmv	9	\N	\N	3725
2017-05-05 18:49:52.101105+00	2017-11-29 18:38:49.810073+00	4779	completed				+19724785200		687	2017-05-05 18:49:52.099376	2017-05-05 19:01:19.017893	CA6f16b4ec1e43cc6866de9591c73bd125	\N	\N			0	inbound	+12147122250	\N	0.995862007141113281	\N	new lead	state of tx dmv	9	\N	\N	3725
2017-01-07 20:24:02.149878+00	2017-02-08 14:11:45.181051+00	3112	missed	Chie Woong	Ha	twomoments@hanmail.net	+14697748655		\N	2017-01-07 20:24:02.147699	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	application submitted - autopay		1	\N	\N	3726
2017-01-07 20:08:46.756764+00	2017-02-08 14:11:45.192502+00	3111	completed				+14697748655		136	2017-01-07 20:08:46.753716	2017-01-07 20:11:02.983913	CA738c3d0668cc33e35d4dc983174db099	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE98e7d71ce44072b40b3860fe170c1e64	0	inbound	+18557240606	49	1.84736084938049316	null	application submitted - autopay		1	\N	\N	3726
2017-05-13 15:01:39.676709+00	2017-11-29 18:38:49.811444+00	5055	completed				+18177061390		117	2017-05-13 15:01:39.673171	2017-05-13 15:03:37.153066	CAf0e32e82a34296ed81343f4acf13b9dd	\N	\N			0	inbound	+12147122250	\N	4.18105101585388184	\N	new lead	john shue      	9	\N	\N	3727
2017-08-17 15:04:44.078989+00	2017-08-17 15:05:36.077512+00	6065	completed	Knesha	Thomas	neshathomas825@gmail.com	+17063512586		21	2017-08-17 15:04:44.077493	2017-08-17 15:05:15.206793	CAc288cbbcc4405eb926710d3a5b152391	0427608a-ae09-4db0-a1e8-374423ee28c3	153			1	outbound	+17704009016	\N	13.3524758815765381	{}	new lead		13	\N	\N	3733
2016-08-05 00:21:13.621631+00	2016-08-16 19:29:55.405347+00	1255	missed	Steven 	Puzio	Sbplaya19@icloud.com	+16613495232		\N	2016-08-05 00:21:13.620244	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - autopay		1	\N	\N	3735
2017-08-17 15:13:41.921277+00	2017-08-17 15:21:31.929985+00	6066	completed				+14322888145		470	2017-08-17 15:13:41.919032	2017-08-17 15:21:31.927357	CAafd26f12e61e5132e56d1de3fab2b854	\N	146			0	inbound	+18177569010	124	88.0787060260772705	\N	new lead	andrade jose	12	\N	\N	3736
2017-08-17 15:24:19.999289+00	2017-08-17 15:30:47.783552+00	6067	completed				+14322888145		387	2017-08-17 15:24:19.99699	2017-08-17 15:30:46.697943	CA8e12b290bbbb4f79866dc72c53322535	\N	146			0	inbound	+18177569010	124	354.023400068283081	\N	new lead	andrade jose	12	\N	\N	3736
2017-08-17 17:50:09.92355+00	2017-08-17 18:13:08.199305+00	6071	missed				+14322888145		52	2017-08-17 17:50:09.921595	2017-08-17 17:51:01.792324	CA02029fc180a9b66ff739c3d1498f8c28	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE20b499fb596e52dc11b30a47f89c63db	0	inbound	+18177569010	124	1356.37975096702576	\N	new lead	andrade jose	12	\N	\N	3736
2017-08-17 18:39:14.22283+00	2017-08-17 18:39:52.935802+00	6073	completed				+14322888145		38	2017-08-17 18:39:14.220237	2017-08-17 18:39:51.871785	CAba5e07f6c8666ef7b4ab102fdbd12470	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REac0b31398bed4a703280a17a97c9b1ce	0	inbound	+18177569010	124	14.9191069602966309	\N	new lead	andrade jose	12	\N	\N	3736
2017-08-17 18:40:37.511712+00	2017-08-17 18:41:12.835278+00	6075	completed				+14322888145		34	2017-08-17 18:40:37.510221	2017-08-17 18:41:11.75762	CA05c4940d0d849aaaaf0161fa31021e73	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REcbf5ee7525119d07f89335b5c2455b8a	0	inbound	+18177569010	124	11.5816969871520996	\N	new lead	andrade jose	12	\N	\N	3736
2017-08-17 18:40:12.86458+00	2017-08-17 18:47:29.596917+00	6074	completed				+14322888145		436	2017-08-17 18:40:12.862729	2017-08-17 18:47:29.352151	CAf6a2fdfc7785ec88774699de65a6cacb	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE7f1d3229d8c349154e947575725b033c	0	inbound	+18177569010	124	352.915454864501953	\N	new lead	andrade jose	12	\N	\N	3736
2017-08-17 20:06:05.517382+00	2017-08-17 20:09:05.226394+00	6078	completed				+14322888145		179	2017-08-17 20:06:05.514507	2017-08-17 20:09:04.110482	CAcf14d7724c365b5917554d4f34370f7f	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE1c46a2f7edbcda2a47c6c862916915d8	0	inbound	+18177569010	124	9.77676606178283691	\N	new lead	andrade jose	12	\N	\N	3736
2017-08-17 22:08:55.170646+00	2017-08-17 22:16:01.79526+00	6084	completed				+14322888145		427	2017-08-17 22:08:55.168807	2017-08-17 22:16:01.791943	CAcbc4ba71b01cc6eaec84a30ca66fe3c9	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REc1c1ff3c511ab9d9a25d0c8d2dcc8498	0	inbound	+18177569010	124	372.889446020126343	\N	new lead	andrade jose	12	\N	\N	3736
2016-07-05 13:26:10.16434+00	2017-11-29 18:32:13.821303+00	750	completed	Dan	Petrello		+13305074822		28	2016-07-05 13:26:10.163209	2016-07-05 13:26:38.210301	CA58ac69446da7eb06e986b0a1a75348c0	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE0bcb3d1bfc291b83f0265e99a7b3bc0f	0	inbound	+18555983683	\N	14.2300848960876465	null	new lead		1	\N	\N	3737
2016-06-27 22:20:19.635516+00	2017-11-29 18:32:13.820667+00	560	completed	Dan 	Petrello		+13305074822		20	2016-06-27 22:20:19.633951	2016-06-27 22:20:39.814643	CAb7362cbc2ae6ecba2a6c98c94b0f4b2d	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE8a552553a5c208b34de95af963e11de6	0	inbound	+18555983683	\N	\N	null	new lead		1	\N	\N	3737
2016-06-28 12:36:57.122613+00	2016-06-28 12:47:06.795602+00	567	completed				+13305074822		604	2016-06-28 12:36:57.121332	2016-06-28 12:47:06.794246	CA48828c253e4ccddff0318fb918da8f3e	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.99667716026306152	{}	new lead		1	\N	\N	3737
2016-06-28 12:45:43.423261+00	2016-06-28 12:57:01.75281+00	568	completed	Dan	Petrello	dan9919@neo.rr.com	+13305074822		0	2016-06-28 12:45:43.422246	2016-06-28 12:46:09.767874	CA1b5e3df77ebef5c0c4b1e5aa3b60449d	ee869226-e246-4ab4-aaaa-e9403e2ddd39	\N			1	outbound	+18555983683	\N	\N	{}	new lead		1	\N	\N	3737
2016-06-28 19:13:44.228129+00	2016-06-28 19:18:14.182486+00	618	completed				+13305074822		265	2016-06-28 19:13:44.226776	2016-06-28 19:18:14.181208	CA96964f9eaa83bef43a0befdad24b7d31	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	2.06395196914672852	{}	new lead		1	\N	\N	3737
2016-07-05 13:29:33.209266+00	2017-11-29 18:32:13.82131+00	751	completed	Dan	Petrello		+13305074822		38	2016-07-05 13:29:33.208429	2016-07-05 13:30:11.362657	CA91f2c9fed35c386e74629e3cfd097d55	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE76bc969afe7e2b98f57876e88e5a833c	0	inbound	+18555983683	\N	14.2644219398498535	null	new lead		1	\N	\N	3737
2016-07-05 16:59:51.226984+00	2016-07-05 17:00:56.391373+00	755	completed	Dan	Petrello		+13305074822		61	2016-07-05 16:59:51.22592	2016-07-05 17:00:56.390099	CA57658ecbf030cb82f565f0c2c422ad16	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	16			1	outbound	+18555983683	\N	1.28772282600402832	{}	new lead		1	\N	\N	3737
2016-08-13 19:51:37.104607+00	2016-08-15 12:15:41.589285+00	1475	missed	peter	montcalm	petemontcalm@sbcglobal.net	+19206387044		\N	2016-08-13 19:51:37.103391	\N		4b51c6b2-49f9-4108-8fdf-a8671e497256	\N			0	outbound	+18556311541	\N	\N	{}	application submitted - autopay		1	\N	\N	3739
2016-06-25 19:19:13.132503+00	2017-11-29 18:31:41.490005+00	463	completed	Unknown			+17404092393		35	2016-06-25 19:19:13.130518	2016-06-25 19:19:48.023954	CA38377be400b0f1423914695f374014ed	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE056b01322d7ab596b9a37afb468824bb	0	inbound	+18552959002	\N	\N	null	new lead		1	\N	\N	3740
2016-06-27 15:48:21.185136+00	2016-06-27 15:49:42.790464+00	516	completed				+17404092393		74	2016-06-27 15:48:21.183713	2016-06-27 15:49:42.789395	CA4be240b3c67d97b74c1694caf51f5a29	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	4.06123900413513184	{}	new lead		1	\N	\N	3740
2016-06-27 15:00:16.196774+00	2016-06-27 15:48:40.693493+00	501	completed				+17404092393		45	2016-06-27 15:00:16.195855	2016-06-27 15:01:06.130033	CA74b8c6b633b7c825b4b5f2c9e6e22a85	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	\N			1	outbound	+18552959002	\N	1.67233681678771973	{}	new lead		1	\N	\N	3740
2016-08-02 20:18:13.043519+00	2017-11-29 18:31:37.368439+00	1141	completed	Ronald	Rosselli		+16612729791		500	2016-08-02 20:18:13.042406	2016-08-02 20:26:32.753226		\N	16			0	outbound	+18555472453	\N	\N	null	application submitted - autopay		1	\N	\N	3741
2016-08-02 20:26:20.022681+00	2016-08-05 12:49:09.59752+00	1143	completed	Ronald	Rosselli	NA@noemail.com	+16612729791		59	2016-08-02 20:26:20.021564	2016-08-02 20:27:42.714871	CA253aa96f2705a63bf556057ae54cf04d	99186475-9344-4e80-b3b1-0ed2e7856585	17		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE1aea7e0b610a8ea9034832b10403c555	1	outbound	+18555472453	\N	23.5974922180175781	{}	application submitted - autopay		1	\N	\N	3741
2016-08-02 20:08:10.698331+00	2017-11-29 18:31:37.368432+00	1139	completed	Ronald	Rosselli		+16612729791		144	2016-08-02 20:08:10.697251	2016-08-02 20:10:35.103767	CAcd44105fcc1c79467c6f2eaae88f6b7c	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REe31733e35a025a61dfac08ef06a7917e	0	inbound	+18555472453	\N	10.7602739334106445	null	application submitted - autopay		1	\N	\N	3741
2017-04-01 00:35:48.88454+00	2017-11-29 18:47:25.06794+00	3650	missed				+12145461628		66	2017-04-01 00:35:48.882644	2017-04-01 00:36:55.087638	CA3881dd71285ec5dc73d3456bbd0b6027	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE773ee6010ea4f117b9c21f0def308fc3	0	inbound	+19728330116	\N	395.057192087173462	\N	new lead	contreras esmer	8	\N	\N	3743
2016-10-10 19:56:40.343913+00	2016-10-10 19:57:36.878418+00	2255	missed				+14199577575		57	2016-10-10 19:56:40.342129	2016-10-10 19:57:36.876828	CAcfd51d98200e409fbf233ebfa47a265f	\N	\N			0	inbound	+18557240606	49	33.057852029800415	null	new lead		1	\N	\N	3744
2016-09-30 23:13:10.324558+00	2016-12-10 01:04:42.413818+00	2119	completed				+13233696350		212	2016-09-30 23:13:10.32212	2016-09-30 23:16:42.351978	CAde76885ec2c63e1a62a5cc33caad6823	\N	58			0	inbound	+18552187903	\N	1.06798410415649414	null	new lead		3	\N	\N	3745
2017-10-25 11:44:53.369294+00	2017-10-25 14:59:10.760027+00	6799	missed	Fredrico	Purnell	Purnell.rico52@gmail.com	+17067137314		\N	2017-10-25 11:44:53.36777	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	3746
2016-05-20 21:07:25.1992+00	2017-11-29 18:32:01.935453+00	144	completed	Unknown			+14196512795		12	2016-05-20 21:07:25.197741	2016-05-20 21:07:36.972964	CAcbf595d97101fa204d0622edaf340da5	\N	\N			0	inbound	+18556311513	\N	\N	null	new lead		1	\N	\N	3747
2016-05-21 14:36:32.48011+00	2017-11-29 18:32:01.935464+00	154	completed	Unknown			+14196512795		36	2016-05-21 14:36:32.478581	2016-05-21 14:37:08.083416	CAcc68141e724c2f91921010665902d861	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REae7c89b848e8ccf268aa459b030b79c6	0	inbound	+18556311513	\N	\N	null	new lead		1	\N	\N	3747
2016-05-23 17:41:29.414347+00	2017-11-29 18:32:01.935472+00	174	completed	Unknown			+14196512795		222	2016-05-23 17:41:29.411785	2016-05-23 17:45:11.200677	CA8c21a3ec8c6b33a61b5f1583695a931b	\N	18		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REefee44817b50bfcb2dbb7fea217cc6ef	0	inbound	+18556311513	\N	9.21502089500427246	null	new lead		1	\N	\N	3747
2016-05-25 16:25:42.119099+00	2016-05-25 16:26:55.600599+00	204	completed				+14196512795		68	2016-05-25 16:25:42.116079	2016-05-25 16:26:55.59894	CA6a1733373ad0148000fe328a2324d4c4	0b3fcee2-9b4c-4fe5-aa13-4a6db33f4d45	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE05cb16e7536a18072c55e22f655b7074	1	outbound	+18556311513	\N	1.62255382537841797	{}	new lead		1	\N	\N	3747
2016-05-25 16:33:29.040002+00	2016-05-25 16:35:02.733025+00	207	completed				+14196512795		88	2016-05-25 16:33:29.038918	2016-05-25 16:35:02.731463	CA92f88c3841c18d745ecc5915da6cdb65	0b3fcee2-9b4c-4fe5-aa13-4a6db33f4d45	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE2a867c4f65b98ed1d07b66220bc93340	1	outbound	+18556311513	\N	1.77831101417541504	{}	new lead		1	\N	\N	3747
2016-05-23 15:27:26.043783+00	2016-05-25 17:15:20.517931+00	169	completed				+14196512795		8	2016-05-23 15:27:26.04265	2016-05-23 15:27:42.445059	CAde5312e219bbb1ccb8b7703f31207a23	0b3fcee2-9b4c-4fe5-aa13-4a6db33f4d45	\N			1	outbound	+18556311513	\N	7.4056251049041748	{}	new lead		1	\N	\N	3747
2016-05-23 15:24:36.09921+00	2016-05-25 17:14:58.354506+00	168	completed				+14196512795		7	2016-05-23 15:24:36.09542	2016-05-23 15:24:56.452575	CA287c6cb3d3b3466f55cf7e7805603e2f	0b3fcee2-9b4c-4fe5-aa13-4a6db33f4d45	\N			1	outbound	+18556311513	\N	12.7752261161804199	{}	new lead		1	\N	\N	3747
2017-04-29 21:44:05.803632+00	2017-11-29 18:38:53.214845+00	4481	completed				+16209625289		26	2017-04-29 21:44:05.801082	2017-04-29 21:44:31.975148	CA0f04a48fee57072ca66b3de19818594f	\N	\N			0	inbound	+12146922088	\N	5.31525421142578125	\N	new lead	drouhard sam	9	\N	\N	3751
2017-07-30 16:21:05.486497+00	2017-07-30 16:21:23.289572+00	5893	missed				+12145274485		18	2017-07-30 16:21:05.484306	2017-07-30 16:21:23.279429	CA8ba116525203e7bb87d23376ad729c7a	\N	\N			0	inbound	+18177569010	124	\N	\N	new lead	tieman kay	12	\N	\N	3752
2016-11-14 21:12:58.148988+00	2016-11-14 21:12:58.171298+00	2897	missed	Dharanidhar	Bapathu	ddr_905@hotmail.com	+17329832493		\N	2016-11-14 21:12:58.147988	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	3755
2017-04-26 23:13:14.661497+00	2017-11-29 18:38:49.806844+00	4348	completed				+12145334286		81	2017-04-26 23:13:14.659631	2017-04-26 23:14:35.166976	CA77b5508c830e4c4451b62d12c8ac2080	\N	127			0	inbound	+12147122250	\N	1.08226418495178223	\N	new lead	courtney kevin 	9	\N	\N	3756
2017-04-26 23:14:33.452137+00	2017-11-29 18:38:49.806851+00	4349	completed				+12145334286		86	2017-04-26 23:14:33.450361	2017-04-26 23:15:59.678155	CA28a9686782be7d850697200b78583adc	\N	107			0	inbound	+12147122250	\N	4.50052499771118164	\N	new lead	courtney kevin 	9	\N	\N	3756
2017-03-15 13:28:15.787674+00	2017-11-29 18:38:53.212332+00	3441	completed				+13193896035		47	2017-03-15 13:28:15.785453	2017-03-15 13:29:03.205683	CA2ed063cf95ce4d3fd146de4ce7eb8259	\N	\N			0	inbound	+12146922088	\N	23.5183629989624023	\N	new lead	herder sean    	9	\N	\N	3757
2017-12-06 17:53:47.483192+00	2017-12-06 17:53:52.383973+00	7645	completed				+18032131488		5	2017-12-06 17:53:47.481275	2017-12-06 17:53:52.376213	CAcfa586fd799ed5bf610380da31107bb6	\N	120			0	inbound	+18036184106	123	3.05416083335876465	\N	new lead		10	\N	\N	3758
2016-09-11 20:51:12.38538+00	2017-11-29 18:31:56.600189+00	1991	missed				+15706750737		8	2016-09-11 20:51:12.383756	2016-09-11 20:51:20.210551	CA353f30adb646deb1ceba190c8ef091da	\N	\N			0	inbound	+18556311397	\N	\N	null	new lead		1	\N	\N	3759
2016-09-11 22:20:24.99891+00	2017-01-27 21:12:23.813883+00	1993	completed				+15706750737		59	2016-09-11 22:20:24.997321	2016-09-11 22:21:24.008101		\N	\N			0	outbound	+18555343978	48	\N	null	new lead		1	\N	\N	3759
2016-09-07 20:48:36.366139+00	2017-11-29 18:31:56.600182+00	1948	missed				+15706750737		9	2016-09-07 20:48:36.364539	2016-09-07 20:48:45.272072	CA8a63362613ba6de88ebb628be4371419	\N	\N			0	inbound	+18556311397	\N	\N	null	new lead		1	\N	\N	3759
2016-09-11 22:07:30.120944+00	2017-01-27 21:12:23.813876+00	1992	completed				+15706750737		95	2016-09-11 22:07:30.119492	2016-09-11 22:09:04.725767		\N	\N			0	outbound	+18555343978	48	\N	null	new lead		1	\N	\N	3759
2017-08-25 16:34:09.789961+00	2017-08-25 16:37:06.897816+00	6161	completed				+14702482069		177	2017-08-25 16:34:09.788326	2017-08-25 16:37:06.884091	CAe1e71147ca559dbadf25b0967582ccc6	\N	152			0	inbound	+17707665732	133	21.0857908725738525	\N	new lead		13	\N	\N	3760
2016-12-05 20:49:39.426609+00	2016-12-05 20:52:58.080358+00	3044	completed				+16026921377		198	2016-12-05 20:49:39.425564	2016-12-05 20:52:57.278841	CAf02233527a649e1e5bf14a425f7b8a37	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE68528adcf509d242018613f7e1e72abb	0	inbound	+18557240606	49	2.32617712020874023	null	new lead		1	\N	\N	3765
2017-07-20 12:56:38.677229+00	2017-07-20 13:02:21.500507+00	5817	completed				+16789898526		341	2017-07-20 12:56:38.675246	2017-07-20 13:02:20.156911	CA958601e6942ee894be8b0dbbd6e2480c	\N	152			0	inbound	+17704009016	132	320.584000110626221	\N	new lead		13	\N	\N	3766
2016-11-02 21:45:14.142085+00	2016-11-02 21:48:04.857108+00	2594	completed				+17706854634		170	2016-11-02 21:45:14.140416	2016-11-02 21:48:04.239692	CA76bb19f9c1379e45d19ef0758dfaae67	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE68278d88f9f5cc91cd56131d6093f360	0	inbound	+18557240606	49	2.05426502227783203	null	new lead		1	\N	\N	3768
2017-12-01 19:16:39.728203+00	2017-12-01 19:18:56.355825+00	7443	completed				+18172109624		136	2017-12-01 19:16:39.726119	2017-12-01 19:18:55.57462	CAc780fb4b63bcd673e511cd4256fae5d9	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REb9cbe0424449aaf1f4c3cd95159f0872	0	inbound	+18177569010	124	11.589622974395752	\N	new lead	williams aljie	12	\N	\N	3769
2016-11-09 14:14:02.343386+00	2016-11-09 14:23:39.440511+00	2817	completed				+18162772949		576	2016-11-09 14:14:02.341829	2016-11-09 14:23:37.993473	CAacb5024690eb75e224bd211577a19ece	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REc4340a9b72cc4875b398a54ad49badd1	0	inbound	+18557240606	49	2.56755399703979492	null	new lead		1	\N	\N	3771
2016-09-07 18:24:35.33396+00	2016-09-07 18:56:15.403471+00	1938	missed	emily	simmons	eacsimmons@gmail.com	+12164090260		\N	2016-09-07 18:24:35.333037	\N		d33a481e-e0af-47ac-9f90-260f20b69de5	\N			0	outbound	+18552959002	\N	\N	{}	application submitted - autopay		1	\N	\N	3773
2017-04-14 18:16:13.437827+00	2017-11-29 18:47:25.068038+00	3933	completed				+18177098495		705	2017-04-14 18:16:13.43477	2017-04-14 18:27:58.109382	CA02f039b5ba2c0a9a531cbeffde990a3e	\N	84		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REe9d67fd9fc9cd63cda6831bdee34b695	0	inbound	+19728330116	\N	325.00492000579834	\N	new lead		8	\N	\N	3776
2017-04-06 21:24:45.77229+00	2017-05-17 15:41:07.224305+00	3712	completed				+19096649000		84	2017-04-06 21:24:45.770782	2017-04-06 21:26:10.114033	CAead0ee4bcd9ad70ca332189fb1bbe8e5	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE30d7b1b4d2c3a0da64d4b2f7dbcee371	0	inbound	+18177569010	124	7.30491995811462402	\N	new lead	american honda	12	\N	\N	3777
2016-10-24 19:44:33.244074+00	2016-10-24 19:44:39.362083+00	2344	missed				+17035438003		6	2016-10-24 19:44:33.242251	2016-10-24 19:44:39.36023	CAc358a16ed37f90b4ab8917aee1a1a453	\N	\N			0	inbound	+18557240606	49	\N	null	new lead		1	\N	\N	3828
2017-04-06 17:26:27.754946+00	2017-08-17 14:35:21.044959+00	3705	completed				+19096649000		78	2017-04-06 17:26:27.75267	2017-04-06 17:27:45.314925	CA24bfddf90ee8d37b546fe308cd7c6b86	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE6864cf798339cc627af335734de12674	0	inbound	+18177569010	124	4.97871685028076172	\N	new lead	american honda	12	\N	\N	3777
2017-05-23 16:33:22.864841+00	2017-11-29 18:38:49.812813+00	5320	completed				+14692307020		79	2017-05-23 16:33:22.863009	2017-05-23 16:34:41.741192	CA02a033a2707b98a41b51583b431d46d1	\N	127			0	inbound	+12147122250	\N	1.08543801307678223	\N	new lead	martinez domini	9	\N	\N	3778
2017-12-15 21:55:24.313387+00	2017-12-15 21:57:20.41452+00	7907	completed	Brad 	Boren	dambreaker0@gmail.com	+19036906263		112	2017-12-15 21:55:24.31213	2017-12-15 21:57:20.412903	CAe7c9dcb0ea8ab2ed26bb16802c8bf20b	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.52507400512695312	{}	new lead		15	\N	\N	3781
2017-12-15 21:57:44.062651+00	2017-12-15 22:16:34.219012+00	7908	completed	Brad 	Boren		+19036906263		1127	2017-12-15 21:57:44.061006	2017-12-15 22:16:30.940983	CA6d93e52cc1ccd08fa0286067089692e7	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REa9f94b0b2725bb0e4e79cf4023c7cd8b	0	inbound	+18558645656	136	2.67523288726806641	\N	new lead		15	\N	\N	3781
2016-08-02 20:32:21.528116+00	2017-11-29 18:31:37.368461+00	1145	completed				+18186202142		27	2016-08-02 20:32:21.52688	2016-08-02 20:32:48.513117	CA695043250d50342c5bec8c66bbcfda61	\N	18			0	inbound	+18555472453	\N	34.3626089096069336	null	application submitted - autopay		1	\N	\N	3783
2016-08-02 21:43:27.516545+00	2016-08-02 21:49:09.177397+00	1157	missed	Raquel	Sheldon	Ofcrsheldon@aol.com	+18186202142		\N	2016-08-02 21:43:27.515671	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - autopay		1	\N	\N	3783
2016-08-02 20:31:13.876539+00	2017-11-29 18:31:37.368454+00	1144	completed				+18186202142		38	2016-08-02 20:31:13.87539	2016-08-02 20:31:52.011761	CA6fb97ad3f55b4235430c06b66fea96d4	\N	17		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE6a8167bcedcceaf856c8a5f6dd84ee03	0	inbound	+18555472453	\N	24.2122828960418701	null	application submitted - autopay		1	\N	\N	3783
2016-08-02 20:33:03.386352+00	2017-11-29 18:31:37.368469+00	1146	completed				+18186202142		39	2016-08-02 20:33:03.385223	2016-08-02 20:33:42.681114	CAed65491639339520e5fbb2c045d0a1d2	\N	17		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE64a02e4b615be7a99779aab9e20466a1	0	inbound	+18555472453	\N	23.2592980861663818	null	application submitted - autopay		1	\N	\N	3783
2016-08-02 20:43:38.383807+00	2017-11-29 18:31:37.368476+00	1151	completed				+18186202142		61	2016-08-02 20:43:38.38273	2016-08-02 20:44:39.200642		\N	17			0	outbound	+18555472453	\N	\N	null	application submitted - autopay		1	\N	\N	3783
2016-08-02 20:41:40.140502+00	2017-01-27 21:12:23.812483+00	1148	completed				+18186202142		27	2016-08-02 20:41:40.139307	2016-08-02 20:42:11.341663	CA33fe076dca59935392c84a336a18c4ea	166fb1b8-fa66-4b09-b1f4-71002358dd06	\N			1	outbound	+18555343978	\N	4.19252896308898926	{}	application submitted - autopay		1	\N	\N	3783
2016-08-02 21:35:18.311698+00	2017-11-29 18:31:37.368483+00	1156	completed	Raquel	Sheldon		+18186202142		166	2016-08-02 21:35:18.309558	2016-08-02 21:38:04.517179	CAca63284978172b824b58cccd4c52278e	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE59f89f711115ad8d82e3216dc33efe2d	0	inbound	+18555472453	\N	13.1225371360778809	null	application submitted - autopay		1	\N	\N	3783
2016-11-20 16:53:49.505083+00	2016-11-20 16:53:49.530585+00	2951	missed	SANDRA	HAIRELL	sandra.hairell@yahoo.com	+17134432346		\N	2016-11-20 16:53:49.503747	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	3784
2016-07-11 13:03:53.42319+00	2017-11-29 18:32:13.821466+00	845	completed				+13302243021		25	2016-07-11 13:03:53.422238	2016-07-11 13:04:18.804655	CA6ebaa2b4f6f8a8c375f8c4cea2e881dc	\N	17		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE886cab5f77ad040c886e708173c2a206	0	inbound	+18555983683	\N	8.0218958854675293	null	new lead		1	\N	\N	3788
2016-07-29 14:57:30.529464+00	2017-01-27 21:12:23.812298+00	1025	completed	Christina	Binius	cbinius29@yahoo.com	+13302243021		48	2016-07-29 14:57:30.528209	2016-07-29 14:58:33.845797	CAd1dd42010e649ef4f90bed4ebec51bc7	ee869226-e246-4ab4-aaaa-e9403e2ddd39	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE498bb2700fbc2f19e25cdf553836c4db	1	outbound	+18555983683	\N	10.8621299266815186	{}	new lead		1	\N	\N	3788
2017-04-17 17:24:52.875539+00	2017-11-29 18:47:25.068073+00	3994	completed				+12145544292		410	2017-04-17 17:24:52.873839	2017-04-17 17:31:42.78046	CA68b4cb7f6bf28446b1fb7c9325fba744	\N	117		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE36ad7699c769933debcd1a6dccabb7ff	0	inbound	+19728330116	\N	355.822380065917969	\N	new lead	moore winifred 	8	\N	\N	3789
2017-04-17 17:33:30.64053+00	2017-11-29 18:47:25.06808+00	3995	completed				+12145544292		167	2017-04-17 17:33:30.637499	2017-04-17 17:36:17.171313	CAd56c272a1788ec9b46a75520cd81b5aa	\N	117		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REa571b30709564432f0fb43941e7b87dd	0	inbound	+19728330116	\N	25.6351451873779297	\N	new lead	moore winifred 	8	\N	\N	3789
2017-04-08 15:48:20.688715+00	2017-04-08 15:48:50.684219+00	3740	completed				+18174958621		29	2017-04-08 15:48:20.687295	2017-04-08 15:48:49.363952	CA2d3c06b5f0e67a6db2bd04de2a6054e8	\N	132		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REba8aa5c978992f988fe7e01a5cde42ad	0	inbound	+18172104002	126	7.94203805923461914	\N	new lead		12	\N	\N	3791
2017-04-10 21:44:19.289887+00	2017-04-10 21:44:49.843062+00	3773	completed				+18174958621		30	2017-04-10 21:44:19.287852	2017-04-10 21:44:49.005364	CA7bd2dd0fc4a61c49f712c43ebaea9ef3	\N	132		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE44e53b4c7ce8452c4ee3384039ca5200	0	inbound	+18172104002	126	6.79583406448364258	\N	new lead	whitaker mya	12	\N	\N	3791
2017-04-10 21:45:12.423652+00	2017-04-10 21:46:00.48304+00	3774	completed				+18174958621		47	2017-04-10 21:45:12.421663	2017-04-10 21:45:59.71663	CAb812ecc605c2d1e989dd7b21d155b4f1	\N	132		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE236c7a7ade4b187f5ec0c167f93b1c7b	0	inbound	+18172104002	126	6.50975298881530762	\N	new lead	whitaker mya	12	\N	\N	3791
2017-04-24 21:29:42.422624+00	2017-04-24 21:30:36.331408+00	4267	completed				+18174958621		53	2017-04-24 21:29:42.419917	2017-04-24 21:30:35.211302	CAc01dd1c1f52262c8dd40859cdfcd76bc	\N	132		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE8f00c65729ac1590d216612098397386	0	inbound	+18172104002	126	10.2445471286773682	\N	new lead	texas call	12	\N	\N	3791
2017-04-25 19:08:43.132811+00	2017-04-25 19:31:35.618595+00	4295	completed				+18174958621		1371	2017-04-25 19:08:43.130643	2017-04-25 19:31:34.335063	CA1855e7aaae38dbaa03dbedec217e9235	\N	131			0	inbound	+18172104002	126	1327.58748602867126	\N	new lead	whitaker mya	12	\N	\N	3791
2017-04-28 19:26:48.650361+00	2017-04-28 19:50:29.392728+00	4438	missed				+18174958621		77	2017-04-28 19:26:48.649057	2017-04-28 19:28:06.138483	CAa4e561f118d602b67c3c4f2a07f1cef8	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REb4bed085a00b33e8c40c61d4a73e5f1e	0	inbound	+18172104002	126	1398.93356108665466	\N	new lead	whitaker mya	12	\N	\N	3791
2017-05-17 18:29:55.605466+00	2017-05-17 18:52:43.449594+00	5164	missed				+18174958621		44	2017-05-17 18:29:55.603922	2017-05-17 18:30:39.26592	CA6116a11ba3998fcc1232f07c4cffe74b	\N	\N			0	inbound	+18172104002	126	1346.28993511199951	\N	new lead	whitaker mya	12	\N	\N	3791
2017-05-22 20:01:16.936682+00	2017-05-22 20:23:29.587229+00	5300	missed				+18174958621		20	2017-05-22 20:01:16.934892	2017-05-22 20:01:36.450947	CA5cfecbc63c341c32d7dcfaa4f1ac5f37	\N	\N			0	inbound	+18172104002	126	1306.38642406463623	\N	new lead	whitaker mya	12	\N	\N	3791
2017-05-25 18:24:52.520289+00	2017-05-25 18:47:17.211504+00	5407	missed				+18174958621		52	2017-05-25 18:24:52.518838	2017-05-25 18:25:44.069429	CAc5cb42d921505327c9758a5c1079df28	\N	\N			0	inbound	+18172104002	126	1322.54315686225891	\N	new lead	whitaker mya	12	\N	\N	3791
2017-11-15 21:21:03.639774+00	2017-11-15 21:21:03.801331+00	7070	missed				+18174958621		0	2017-11-15 21:21:03.637955	2017-11-15 21:21:03.792717	CA6fbc9c0594f9fd3bf5b6287b47951dcc	\N	\N			0	inbound	+18172104002	126	\N	\N	new lead	whitaker evelyn	12	\N	\N	3791
2017-04-14 16:20:07.885471+00	2017-04-14 16:20:49.654256+00	3918	completed				+18174958621		41	2017-04-14 16:20:07.883199	2017-04-14 16:20:48.497226	CA48414691d2e6f5406aeefc95f4268600	\N	131		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REedd53526eb36c2befda5311fb8864849	0	inbound	+18172104002	126	15.1032288074493408	\N	new lead	whitaker mya	12	\N	\N	3791
2016-11-05 01:09:44.165801+00	2016-11-05 01:09:44.200035+00	2737	missed	aaron	bennett	aaron3113@live.com	+19405978545		\N	2016-11-05 01:09:44.163525	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	3793
2017-03-16 17:33:58.915636+00	2017-11-29 18:38:53.21246+00	3466	completed				+12148610451		29	2017-03-16 17:33:58.914185	2017-03-16 17:34:27.552067	CAfb9c19bb5ee6259fdc938dff06787c8a	\N	107			0	inbound	+12146922088	\N	5.80974793434143066	\N	new lead		9	\N	\N	3794
2017-03-14 19:36:25.857999+00	2017-11-29 18:38:53.212239+00	3422	completed				+12148610451		76	2017-03-14 19:36:25.854261	2017-03-14 19:37:41.499341	CAd69e00375b69f6afad8f5816e20cc259	\N	105			0	inbound	+12146922088	\N	6.06835699081420898	\N	new lead	urango michael 	9	\N	\N	3794
2017-03-09 17:30:57.746468+00	2017-11-29 18:47:25.067658+00	3358	completed				+18179051430		812	2017-03-09 17:30:57.744108	2017-03-09 17:44:30.126692	CA41986a04aab04e7998a892acdb81d440	\N	84		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REc619606208c138e93b821b75e604f4a9	0	inbound	+19728330116	\N	434.939949035644531	\N	new lead	pham hung	8	\N	\N	3796
2017-12-19 15:25:04.576376+00	2017-12-19 15:25:44.147597+00	7995	completed	Andrew 	Thompson 		+17062978753		39	2017-12-19 15:25:04.573834	2017-12-19 15:25:43.476275	CA9b2a2270e204c700dd7f311419e49c23	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE9b60be36016fc3efc91f17b9f4ad0266	0	inbound	+17707665732	133	11.6233301162719727	\N	select status	norcross  ga	13	\N	\N	3800
2017-11-14 23:10:51.245648+00	2017-11-14 23:57:24.31314+00	7061	missed	Andrew 	Thompson 	Andrewthompson978@gmail.com	+17062978753		\N	2017-11-14 23:10:51.244092	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	3800
2017-11-14 23:51:57.716814+00	2017-11-14 23:57:24.325261+00	7062	completed	Andrew 	Thompson 	Andrewthompson978@gmail.com	+17062978753		280	2017-11-14 23:51:57.714613	2017-11-14 23:56:38.17877		\N	150			0	outbound	+17704009016	132	\N	\N	select status		13	\N	\N	3800
2017-12-15 21:12:11.978529+00	2017-12-15 21:13:41.292451+00	7904	completed				+13184239889		88	2017-12-15 21:12:11.976544	2017-12-15 21:13:40.031507	CA19908fb359496b565c145190a3411f1a	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE94ca55bf8b752280ae75c7ff42a13825	0	inbound	+18177569010	124	12.2546000480651855	\N	new lead	cell phone   la	12	\N	\N	3807
2017-12-15 21:09:46.037646+00	2017-12-15 21:16:47.82066+00	7903	completed				+13184239889		422	2017-12-15 21:09:46.035937	2017-12-15 21:16:47.818057	CA79753fe1efc2b0d9e437d038440b9d01	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE945a9af8102d4763b3ea2db4cda64742	0	inbound	+18177569010	124	137.053702116012573	\N	new lead	cell phone   la	12	\N	\N	3807
2017-12-15 21:13:57.457006+00	2017-12-15 21:36:06.951874+00	7905	completed				+13184239889		1329	2017-12-15 21:13:57.45579	2017-12-15 21:36:06.947753	CA9adc64cdeb9fab80c8f4fb0c97623f67	\N	146			0	inbound	+18177569010	124	408.095118045806885	\N	new lead	cell phone   la	12	\N	\N	3807
2017-12-15 21:36:58.163093+00	2017-12-15 21:44:08.664881+00	7906	completed				+13184239889		430	2017-12-15 21:36:58.161001	2017-12-15 21:44:07.910397	CA177d8c0760ee40e2b4d4ecc6b2cb1ec3	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE23941415156b9ec4a60bdabb6e6d587e	0	inbound	+18177569010	124	9.58122682571411133	\N	new lead	cell phone   la	12	\N	\N	3807
2017-04-17 19:43:25.218892+00	2017-11-29 18:38:53.214093+00	4000	completed				+18174302256		182	2017-04-17 19:43:25.215316	2017-04-17 19:46:27.2523	CAd130f1784d8f6659956235bcfeb81aab	\N	\N			0	inbound	+12146922088	\N	6.02005505561828613	\N	new lead	staton anneva	9	\N	\N	3808
2017-04-13 00:05:49.428954+00	2017-11-29 18:38:49.804707+00	3851	completed				+18176851267		292	2017-04-13 00:05:49.426805	2017-04-13 00:10:41.407476	CAb739d83ff45be1ae4c1d59bf58992379	\N	\N			0	inbound	+12147122250	\N	10.0750072002410889	\N	new lead		9	\N	\N	3809
2017-04-17 20:11:35.559211+00	2017-11-29 18:38:49.805283+00	4005	completed				+18176851267		428	2017-04-17 20:11:35.555742	2017-04-17 20:18:43.741722	CAe2b6d953ca8ef895bcbc36925c42784c	\N	\N			0	inbound	+12147122250	\N	4.3361670970916748	\N	new lead	scherff brad   	9	\N	\N	3809
2016-11-09 18:09:03.113606+00	2016-12-10 00:59:34.177794+00	2821	completed				+15402507428		172	2016-11-09 18:09:03.11038	2016-11-09 18:11:55.512968	CA6d330d4185f00e08c9473397b403591e	\N	59			0	inbound	+18559710973	\N	1.2003319263458252	null	new lead		3	\N	\N	3811
2016-11-09 18:12:04.865828+00	2016-12-10 00:59:34.177849+00	2822	completed				+15402507428		166	2016-11-09 18:12:04.864698	2016-11-09 18:14:50.392643	CAdd5a86ac36c658aa97c734dea415c3d0	\N	59			0	inbound	+18559710973	\N	1.22926712036132812	null	new lead		3	\N	\N	3811
2017-03-17 21:08:40.273253+00	2017-11-29 18:47:25.067806+00	3480	completed				+14698535529		140	2017-03-17 21:08:40.271495	2017-03-17 21:11:00.351643	CA847ced404c03fda8e6bc55c8ab4b6a89	\N	84		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REfa381384a8dce90b059192d07cf8335f	0	inbound	+19728330116	\N	6.39680004119873047	\N	new lead	leon davenport	8	\N	\N	3813
2017-04-21 19:12:07.007503+00	2017-11-29 18:38:53.21439+00	4199	completed				+15015809956		262	2017-04-21 19:12:07.004713	2017-04-21 19:16:29.269451	CA39e6ce83eba2c2b2edf352fed4c85f64	\N	\N			0	inbound	+12146922088	\N	16.8519670963287354	\N	new lead	zimmerman john	9	\N	\N	3815
2016-11-11 03:33:33.881859+00	2016-11-11 03:33:33.912355+00	2859	missed	Cherie	Wagner	cherries188@yahoo.com	+14803169511		\N	2016-11-11 03:33:33.880478	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	3817
2017-12-20 20:27:23.207572+00	2017-12-20 20:34:28.972674+00	8041	completed	Jermaine 	Bess	Bessjermaine@yahoo.com	+16784646322		74	2017-12-20 20:27:23.20373	2017-12-20 20:34:28.944864	CA29838ecf94f0fd8dbb2948e0dc390e1d	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE7c389622ef96d2ae711cbc5acc014048	3	outbound	+17704009016	\N	349.166064977645874	{}	select status		13	\N	\N	3818
2017-12-06 16:57:04.16364+00	2017-12-06 17:03:03.197872+00	7639	missed	Abrasha	Oliphant	Oliphantabrasha@yahoo.com	+18037614553		0	2017-12-06 16:57:04.161982	2017-12-06 17:03:03.196274	CAe0b30a0552ca9543620e3eb1d14d49f4	0427608a-ae09-4db0-a1e8-374423ee28c3	\N			3	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	3819
2017-04-16 13:50:33.56685+00	2017-11-29 18:38:53.21405+00	3980	completed				+13166315083		330	2017-04-16 13:50:33.562318	2017-04-16 13:56:03.496434	CA70dbcd4330275589ebbe03bbe9d110f4	\N	103			0	inbound	+12146922088	\N	12.5371460914611816	\N	new lead	terry cannon	9	\N	\N	3820
2016-08-15 18:36:58.408476+00	2016-08-15 18:49:06.218997+00	1504	missed	Sonia	Bauer	jackandsonia@msn.com	+15136301055		\N	2016-08-15 18:36:58.407207	\N		25d0200e-983d-4413-94ae-eb664b99711c	\N			0	outbound	+18556311490	\N	\N	{}	application submitted - credit union		1	\N	\N	3823
2016-11-02 20:51:08.682928+00	2016-11-02 21:05:50.824376+00	2593	completed				+19032163786		880	2016-11-02 20:51:08.68192	2016-11-02 21:05:48.376951	CA4cf7b5d3afab4f08a3b68be336e44b7f	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE45eea22f661bd057622345eab8aac808	0	inbound	+18557240606	49	1.88772797584533691	null	new lead		1	\N	\N	3824
2017-06-02 16:06:36.335789+00	2017-08-17 14:35:21.04542+00	5568	completed				+18176579481		152	2017-06-02 16:06:36.333744	2017-06-02 16:09:08.653748	CAb8a3381a969dcb2acb0be113c0cfd029	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE971e2a3efbf1bf9b055ebd43b35d50d0	0	inbound	+18177569010	124	7.20728397369384766	\N	new lead	fort worth  tx	12	\N	\N	3825
2016-10-11 18:54:25.939857+00	2016-12-10 01:04:28.706428+00	2267	completed				+19092840296		254	2016-10-11 18:54:25.938343	2016-10-11 18:58:40.153223	CAd2d7a4f213deb9e6929c394868677080	\N	61			0	inbound	+18557579140	\N	0.906506061553955078	null	new lead		3	\N	\N	3826
2016-11-01 13:42:18.206628+00	2016-11-01 14:11:17.473828+00	2459	completed				+19198342175		1736	2016-11-01 13:42:18.205588	2016-11-01 14:11:13.959812	CA20cc7362f7852869cb4731bfa41beecb	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE2e9f9e69c8ff4d42deeac0029c59b6b1	0	inbound	+18557240606	49	2.05289101600646973	null	new lead		1	\N	\N	3829
2017-04-18 21:03:02.363467+00	2017-11-29 18:38:49.805514+00	4060	completed				+12144367508		40	2017-04-18 21:03:02.360865	2017-04-18 21:03:42.661733	CA9ec9404f63f9fb4ca05ebc50095b55a9	\N	126			0	inbound	+12147122250	\N	1.14977312088012695	\N	new lead	dallas  tx	9	\N	\N	3830
2017-04-18 21:03:55.669274+00	2017-11-29 18:38:49.805521+00	4061	completed				+12144367508		73	2017-04-18 21:03:55.668114	2017-04-18 21:05:08.474727	CA803990d6a913c46e616cb908550d529b	\N	124			0	inbound	+12147122250	\N	1.92537403106689453	\N	new lead	dallas  tx	9	\N	\N	3830
2017-04-18 21:05:14.807905+00	2017-11-29 18:38:49.805528+00	4062	completed				+12144367508		72	2017-04-18 21:05:14.806178	2017-04-18 21:06:26.520022	CAdbe8de184db942cd1b9285110d024b4c	\N	126			0	inbound	+12147122250	\N	1.3197939395904541	\N	new lead	dallas  tx	9	\N	\N	3830
2017-04-18 21:07:26.446036+00	2017-11-29 18:38:49.805571+00	4063	completed				+12144367508		89	2017-04-18 21:07:26.443371	2017-04-18 21:08:55.771	CA21f4e5816e654f4e7b91692f35154e2b	\N	125			0	inbound	+12147122250	\N	1.93863797187805176	\N	new lead	dallas  tx	9	\N	\N	3830
2017-04-18 22:45:03.025379+00	2017-11-29 18:38:49.805638+00	4074	completed				+12144367508		115	2017-04-18 22:45:03.02095	2017-04-18 22:46:58.146034	CAd0b7294966b3456a4cbf317c4006b380	\N	127			0	inbound	+12147122250	\N	1.15011906623840332	\N	new lead	dallas  tx	9	\N	\N	3830
2017-04-18 22:48:37.925444+00	2017-11-29 18:38:49.805646+00	4075	completed				+12144367508		149	2017-04-18 22:48:37.922835	2017-04-18 22:51:07.314235	CA034c2a540ae6ea65c7b99d285a61a5ca	\N	\N			0	inbound	+12147122250	\N	4.07014799118041992	\N	new lead	dallas  tx	9	\N	\N	3830
2017-04-22 15:43:00.616934+00	2017-11-29 18:38:53.214419+00	4217	completed				+18322935851		100	2017-04-22 15:43:00.615097	2017-04-22 15:44:40.442399	CAe7757799904e9f53c46d13ffe323fdcc	\N	107			0	inbound	+12146922088	\N	5.17773699760437012	\N	new lead	nguyen tai     	9	\N	\N	3832
2017-04-22 15:36:08.960571+00	2017-11-29 18:38:49.806326+00	4211	completed				+18322935851		83	2017-04-22 15:36:08.958346	2017-04-22 15:37:31.711171	CA5e1fde6487bdb760fa54e5b1b3903a1e	\N	127			0	inbound	+12147122250	\N	2.05828309059143066	\N	new lead	nguyen tai     	9	\N	\N	3832
2017-04-22 15:37:30.107923+00	2017-11-29 18:38:49.806333+00	4212	completed				+18322935851		60	2017-04-22 15:37:30.106776	2017-04-22 15:38:29.869679	CA7a763f921b1ed0b4b7cfb89d030d9338	\N	125			0	inbound	+12147122250	\N	1.15666294097900391	\N	new lead	nguyen tai     	9	\N	\N	3832
2017-04-22 15:38:52.172407+00	2017-11-29 18:38:49.806341+00	4214	completed				+18322935851		96	2017-04-22 15:38:52.170785	2017-04-22 15:40:28.323014	CAbd3a6e90e3ac712aaba803fa2363aa0b	\N	126			0	inbound	+12147122250	\N	2.24630904197692871	\N	new lead	nguyen tai     	9	\N	\N	3832
2016-11-25 20:18:26.659104+00	2016-11-25 20:18:26.687048+00	2980	missed	Kristina	Phelps	davidandjoy@comcast.net	+14045094465		\N	2016-11-25 20:18:26.657946	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	3834
2017-08-02 21:32:18.220355+00	2017-08-02 21:37:58.002488+00	5921	completed	Anthony	Clark	trent387@gmail.com	+16789084940		315	2017-08-02 21:32:18.218897	2017-08-02 21:37:57.173818	CA2b0a9f37be29e4b040cee7adfc0d7d7d	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE49ea1541a3a8baaf22fa5a1d3698d4a7	1	outbound	+17704009016	\N	23.616426944732666	{}	new lead		13	\N	\N	3838
2017-11-11 13:05:51.875933+00	2017-11-11 13:05:51.93954+00	7015	missed	Sheena	Hayman	sheenahay2015@gmail.com	+17063417123		\N	2017-11-11 13:05:51.874016	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	3839
2016-08-08 20:03:04.927676+00	2017-01-27 21:12:23.812874+00	1338	completed	Michael	Moore		+15134414136		253	2016-08-08 20:03:04.925116	2016-08-08 20:07:17.937285		\N	\N			0	outbound	+18555343978	48	\N	null	do not contact		1	\N	\N	3840
2016-08-09 16:55:47.065808+00	2017-01-27 21:12:23.812958+00	1360	completed	Michael	Moore		+15134414136		56	2016-08-09 16:55:47.06476	2016-08-09 16:56:43.440212		\N	\N			0	outbound	+18555343978	48	\N	null	do not contact		1	\N	\N	3840
2016-07-23 21:56:24.047008+00	2017-11-29 18:31:10.261439+00	924	missed				+15134414136		15	2016-07-23 21:56:24.044496	2016-07-23 21:56:39.122163	CA4f8252a47a76be529398b777c7cd5150	\N	\N			0	inbound	+18556311490	\N	\N	null	do not contact		1	\N	\N	3840
2016-08-09 16:54:00.682662+00	2017-01-27 21:12:23.812944+00	1358	completed	Michael	Moore		+15134414136		81	2016-08-09 16:54:00.681299	2016-08-09 16:55:21.450098		\N	\N			0	outbound	+18555343978	48	\N	null	do not contact		1	\N	\N	3840
2016-08-09 16:55:39.250549+00	2017-01-27 21:12:23.812951+00	1359	completed	Michael	Moore		+15134414136		125	2016-08-09 16:55:39.249062	2016-08-09 16:57:44.006583		\N	\N			0	outbound	+18555343978	48	\N	null	do not contact		1	\N	\N	3840
2017-07-30 16:11:49.177384+00	2017-07-30 16:12:20.834921+00	5892	missed				+17703147752		32	2017-07-30 16:11:49.175534	2017-07-30 16:12:20.820087	CA7f4985b935848569216c76b0e32087a0	\N	\N		https://api.twilio.com/2010-04-01/Accounts/AC1be71aee3e39993d976d8e40687ea2b3/Recordings/RE314d09dc6964046799e99423db7bdfe4	0	inbound	+17707669297	131	\N	\N	new lead		6	\N	\N	3841
2017-06-01 18:04:27.947982+00	2017-11-29 18:38:49.814403+00	5556	completed				+17138220288		75	2017-06-01 18:04:27.946166	2017-06-01 18:05:42.706528	CAf5a194e90cdd81614e50f7515b346970	\N	125			0	inbound	+12147122250	\N	1.10870194435119629	\N	new lead	jimenez santiag	9	\N	\N	3842
2016-10-11 20:59:53.16956+00	2016-12-20 22:16:06.426529+00	2269	completed				+19168010826		602	2016-10-11 20:59:53.168003	2016-10-11 21:09:54.99598	CAb91e65a467b7b9d17960f9a6651b10ac	\N	12		https://api.twilio.com/2010-04-01/Accounts/AC0c010b259762ed5fecf508ef97abf3c6/Recordings/RE9f8ac07d4d30ebb85a5ddcf933aed7da	0	inbound	+18557343030	\N	19.3254179954528809	null	new lead		3	\N	\N	3843
2016-10-11 17:10:33.019499+00	2016-12-20 22:16:06.426522+00	2265	completed				+19168010826		365	2016-10-11 17:10:33.018259	2016-10-11 17:16:38.133383	CA352076ce4a012822af1b6d71aaf2630c	\N	12		https://api.twilio.com/2010-04-01/Accounts/AC0c010b259762ed5fecf508ef97abf3c6/Recordings/REf5464dba7e676891607aebc05ec0ecda	0	inbound	+18557343030	\N	14.0630910396575928	null	new lead		3	\N	\N	3843
2017-08-23 17:17:54.698855+00	2017-08-23 17:24:10.857191+00	6146	completed				+18177142085		375	2017-08-23 17:17:54.696647	2017-08-23 17:24:09.739454	CAb72b0631365a9408d8ec750ec56349bf	\N	146			0	inbound	+18177569010	124	347.252278804779053	\N	new lead	beblowski carl	12	\N	\N	3845
2017-05-05 15:51:49.747173+00	2017-11-29 18:38:53.215135+00	4753	completed				+1811111111		104	2017-05-05 15:51:49.744919	2017-05-05 15:53:33.720215	CAa3727b9905e98d8e80019d462dfaebe0	\N	\N			0	inbound	+12146922088	\N	0.941731929779052734	\N	new lead		9	\N	\N	3846
2016-11-02 18:17:08.376823+00	2016-11-02 18:43:49.695988+00	2581	completed				+19088873443		1597	2016-11-02 18:17:08.373891	2016-11-02 18:43:45.868728	CA62f50af7c83d48b6dd7dd0bb9b76bcb1	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE37dabcaa152b38e0cf894f586df03e81	0	inbound	+18557240606	49	1.9880530834197998	null	new lead		1	\N	\N	3848
2017-12-17 18:37:10.382322+00	2017-12-18 14:03:47.224769+00	7957	missed	christy	pressley	christypressley121574@gmail.com	+17063084072		\N	2017-12-17 18:37:10.380887	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	3849
2017-12-17 19:50:44.54659+00	2017-12-18 14:03:47.235235+00	7959	missed	christy	pressley	christypressley121574@gmail.com	+17063084072		\N	2017-12-17 19:50:44.544562	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	3849
2017-07-15 15:21:27.555309+00	2017-12-18 14:03:47.235217+00	5782	completed				+17063084072		66	2017-07-15 15:21:27.552181	2017-07-15 15:22:33.663321	CAbae22f1fc9c1dda95687f27a45a33a81	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE0e7add8b87d07344aa33b9ff0dbad721	0	inbound	+17704009016	132	8.21637392044067383	\N	select status		13	\N	\N	3849
2017-08-22 21:30:42.447763+00	2017-08-22 21:32:48.400859+00	6140	completed				+18176966619		125	2017-08-22 21:30:42.446144	2017-08-22 21:32:47.282474	CA6836b6fb26e6389bdfb80805c7e459db	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE5736e50c88aaa1d5dc31868eae7ff913	0	inbound	+18177569010	124	13.9810659885406494	\N	new lead	garza martha	12	\N	\N	3850
2017-08-23 14:21:47.628231+00	2017-08-23 14:24:42.555606+00	6143	completed				+18176966619		174	2017-08-23 14:21:47.626123	2017-08-23 14:24:41.481788	CA88e5c97b418da61d19433ef8a520fe54	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE35f105bcf5067657dfc5d09b5677a0a3	0	inbound	+18177569010	124	7.83987808227539062	\N	new lead	garza martha	12	\N	\N	3850
2017-03-31 19:52:38.695697+00	2017-11-29 18:38:53.213206+00	3646	completed				+19034982433		212	2017-03-31 19:52:38.693987	2017-03-31 19:56:10.738088	CA2d195f7eea48104de083bbf6590f5d40	\N	107			0	inbound	+12146922088	\N	7.62795090675354004	\N	new lead	kemp tx	9	\N	\N	3851
2017-12-23 17:32:17.477705+00	2017-12-23 17:44:20.739772+00	8086	completed	KREG	Johnson	kreg_johnson@hotmail.com	+12144026354		720	2017-12-23 17:32:17.475978	2017-12-23 17:44:20.738681	CAa698621ea9a886a4e2104f3046ec377a	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.55983591079711914	{}	new lead		15	\N	\N	3855
2017-04-14 18:01:58.097077+00	2017-11-29 18:38:53.21393+00	3931	completed				+18172477740		125	2017-04-14 18:01:58.095918	2017-04-14 18:04:03.262931	CAe10274273c45db70f1c6eecb065842f9	\N	\N			0	inbound	+12146922088	\N	3.33928394317626953	\N	new lead		9	\N	\N	3857
2017-04-14 18:01:27.989192+00	2017-11-29 18:38:53.213922+00	3930	completed				+18172477740		30	2017-04-14 18:01:27.987232	2017-04-14 18:01:58.038944	CAceb88f21f6ee60d464f770121f1cb053	\N	99			0	inbound	+12146922088	\N	3.5854179859161377	\N	new lead	thornton t     	9	\N	\N	3857
2017-03-24 22:19:10.719384+00	2017-11-29 18:38:53.212916+00	3576	completed				+13375467977		42	2017-03-24 22:19:10.716785	2017-03-24 22:19:52.472478	CA38c9deab2f4239395761de4e3a8b0206	\N	103			0	inbound	+12146922088	\N	1.49795699119567871	\N	new lead	frye triston   	9	\N	\N	3859
2017-03-25 16:16:56.550079+00	2017-11-29 18:38:53.21293+00	3579	completed				+13375467977		124	2017-03-25 16:16:56.548203	2017-03-25 16:19:00.814784	CAbc705c6ddb33a2445327fba08441acd5	\N	105			0	inbound	+12146922088	\N	4.81473493576049805	\N	new lead	frye triston   	9	\N	\N	3859
2016-10-05 15:03:14.464709+00	2016-11-09 15:46:59.235319+00	2167	completed				+13028982266		824	2016-10-05 15:03:14.462761	2016-10-05 15:16:58.74464	CA50e3e62883169a72373de0ed7229bba9	\N	43			0	inbound	+18556279610	\N	2.36604619026184082	null	new lead		3	\N	\N	3860
2017-05-19 21:55:35.683143+00	2017-05-19 22:18:02.885845+00	5242	missed				+16822219682		10	2017-05-19 21:55:35.680944	2017-05-19 21:55:45.390305	CAadfec97b4939a4e16b1eb7c8551970c9	\N	\N			0	inbound	+18172104002	126	1325.30956196784973	\N	new lead	alston ashle	12	\N	\N	3862
2017-08-26 15:31:25.172787+00	2017-08-26 15:38:04.125683+00	6177	completed				+16822219682		399	2017-08-26 15:31:25.170953	2017-08-26 15:38:04.110838	CAb792b79c959c41bede6555ed24b95108	\N	132			0	inbound	+18172104002	126	367.586274147033691	\N	new lead	alston ashle	12	\N	\N	3862
2016-09-21 14:57:09.296493+00	2016-12-09 17:10:17.41347+00	2064	completed				+19082317000		109	2016-09-21 14:57:09.29433	2016-09-21 14:58:58.10084	CA3cf60db845c9c9cbde2e1145e1092a62	\N	27			0	inbound	+18552716856	\N	6.35697698593139648	null	new lead		3	\N	\N	3863
2016-10-11 14:21:32.679077+00	2016-11-09 15:46:59.235354+00	2260	completed				+16104701086		225	2016-10-11 14:21:32.677447	2016-10-11 14:25:17.527031	CAbe11cfdbecdcbce5694e45d729fdeb1b	\N	43			0	inbound	+18556279610	\N	1.63099813461303711	null	new lead		3	\N	\N	3865
2016-11-01 00:06:30.32334+00	2016-11-01 00:15:27.846236+00	2443	completed				+19195381985		536	2016-11-01 00:06:30.321471	2016-11-01 00:15:26.714681	CAd0230b3345728c429fbf8d3ef207c07a	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE2cfd6de813f5718f2463b8de66962ad8	0	inbound	+18557240606	49	1.65403890609741211	null	new lead		1	\N	\N	3871
2016-11-01 00:15:32.710532+00	2016-11-01 00:27:55.188281+00	2444	completed				+19195381985		741	2016-11-01 00:15:32.708576	2016-11-01 00:27:53.515197	CA11cf775395b65ca4800e725d5cc04453	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REeb8e22581b9e12a1b78725855028dcea	0	inbound	+18557240606	49	1.99384617805480957	null	new lead		1	\N	\N	3871
2017-12-29 22:11:55.080391+00	2017-12-29 22:41:52.651973+00	8160	completed				+17087852826		1794	2017-12-29 22:11:55.07874	2017-12-29 22:41:49.338284	CAae052a1c655f739fb381e6352ad5e17e	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/REda03e861860be804e0c8d81c5a02e0f5	0	inbound	+18558645656	136	2.54478192329406738	\N	new lead		15	\N	\N	3872
2017-12-08 18:05:33.605255+00	2017-12-08 18:23:36.396644+00	7719	completed	la	WAWM	lawawm@gmail.com	+12142568400		1078	2017-12-08 18:05:33.603595	2017-12-08 18:23:36.39518	CA9c0cb9f38cf975a5660f929d1f409482	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	3.09643006324768066	{}	new lead		15	\N	\N	3874
2017-04-18 15:10:03.161507+00	2017-11-29 18:38:49.805413+00	4034	completed				+19048856239		81	2017-04-18 15:10:03.158212	2017-04-18 15:11:23.94532	CA2060c529ea44ef660ba3d95b7e879b43	\N	127			0	inbound	+12147122250	\N	1.33034300804138184	\N	new lead	olga nekrasoya	9	\N	\N	3875
2016-11-03 16:26:47.193358+00	2016-11-03 16:30:54.037831+00	2638	completed				+19369336236		247	2016-11-03 16:26:47.192057	2016-11-03 16:30:54.036853	CAeeb2540b9049758578e918f651c43f46	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REdb5cd94e449f5e8441075e6bca941b16	0	inbound	+18557240606	49	1.67250704765319824	null	new lead		1	\N	\N	3877
2017-05-02 15:23:00.120377+00	2017-11-29 18:38:49.808529+00	4564	completed				+14193043212		126	2017-05-02 15:23:00.116944	2017-05-02 15:25:05.709162	CA74b038682bc559c0c50166c225657e74	\N	126			0	inbound	+12147122250	\N	1.80385589599609375	\N	new lead	lewis jeromy r 	9	\N	\N	3878
2017-05-12 15:06:25.6865+00	2017-11-29 18:38:49.811242+00	5028	completed				+14193043212		89	2017-05-12 15:06:25.684239	2017-05-12 15:07:54.226327	CA798df0f079ad997baeeb256e50bd98c2	\N	127			0	inbound	+12147122250	\N	2.17122602462768555	\N	new lead	lewis jeromy r	9	\N	\N	3878
2017-05-12 15:07:46.420562+00	2017-11-29 18:38:49.811258+00	5029	completed				+14193043212		65	2017-05-12 15:07:46.419335	2017-05-12 15:08:51.837456	CA346efede706576cac2661044bad00dcc	\N	99			0	inbound	+12147122250	\N	8.45055484771728516	\N	new lead	lewis jeromy r 	9	\N	\N	3878
2017-12-14 20:22:18.931096+00	2017-12-14 20:34:02.280423+00	7876	completed				+14405362066		700	2017-12-14 20:22:18.929362	2017-12-14 20:33:59.189103	CA69a79809851035bdce8a1311d8608cb2	\N	158		https://api.twilio.com/2010-04-01/Accounts/AC3ce1d3ffee57732695c4880c88c10d69/Recordings/RE3089a4e00c805e882df48de68db0eb96	0	inbound	+18558645656	136	2.36904597282409668	\N	new lead		15	\N	\N	3880
2016-11-03 03:57:32.390013+00	2016-11-03 03:57:32.419494+00	2615	missed	Cory	Simpson	cory.simpson@gmail.com	+18327362766		\N	2016-11-03 03:57:32.388726	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	3885
2017-11-28 17:28:11.101447+00	2017-11-28 17:29:41.046516+00	7361	completed	Carley	Loner	Smilerainorshine00@gmail.com	+14704183876		29	2017-11-28 17:28:11.099587	2017-11-28 17:28:51.590528	CAafeb839ff7998971283f65f53779281f	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE49b5de84409834ae6625f17936962257	1	outbound	+17704009016	\N	12.3894209861755371	{}	select status		13	\N	\N	3886
2016-11-16 19:38:21.809659+00	2016-11-16 19:40:52.566192+00	2925	completed				+13148753206		150	2016-11-16 19:38:21.807725	2016-11-16 19:40:52.018698	CAc4add7c5e0bacad68c889e87197e5719	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REcf0d90c6e6ffaac4d43e3ddb63f798dd	0	inbound	+18557240606	49	2.10894107818603516	null	new lead		1	\N	\N	3889
2017-03-20 15:04:43.925998+00	2017-11-29 18:31:56.600295+00	3504	missed				+15708254154		10	2017-03-20 15:04:43.923836	2017-03-20 15:04:53.425462	CAe91e7c969862c747b43f7c734034635d	\N	\N			0	inbound	+18556311397	\N	\N	\N	new lead		1	\N	\N	3890
2017-09-18 18:52:59.912104+00	2017-09-18 19:00:02.662409+00	6390	completed				+17063728282		423	2017-09-18 18:52:59.909457	2017-09-18 19:00:02.640258	CA38d689d8e02dbada1b9910fcd553f34a	\N	150			0	inbound	+17707665732	133	19.6738989353179932	\N	new lead		13	\N	\N	3892
2017-05-16 16:54:22.275898+00	2017-11-29 18:38:49.811767+00	5111	completed				+16825608017		87	2017-05-16 16:54:22.274003	2017-05-16 16:55:49.372405	CAc05a73441d40277f807d50808424e28d	\N	125			0	inbound	+12147122250	\N	2.23091316223144531	\N	new lead	nguyen thao	9	\N	\N	3893
2016-09-06 17:50:54.51283+00	2016-12-09 17:06:57.830395+00	1894	completed				+13146145277		12	2016-09-06 17:50:54.51013	2016-09-06 17:51:06.74357	CA375c98c796bdf9ddbda7d913dcbebef5	\N	20			0	inbound	+18552000227	\N	1.94088482856750488	null	new lead		3	\N	\N	3895
2017-08-26 10:23:44.016544+00	2017-08-26 10:23:44.073069+00	6171	missed	FMaeshea	Holloway	g_peach_2010@yahoo.com	+17069639386		\N	2017-08-26 10:23:44.014901	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	3896
2017-08-26 13:55:50.185971+00	2017-08-26 14:07:00.081824+00	6172	completed	FMaeshea	Holloway		+17069639386		670	2017-08-26 13:55:50.18401	2017-08-26 14:07:00.078381	CA7ed2189ac34cc4d99b81f7cbbc87476d	\N	150			0	inbound	+17707665732	133	330.92608380317688	\N	new lead		13	\N	\N	3896
2017-08-28 14:02:08.346783+00	2017-08-28 14:05:27.984109+00	6184	completed	FMaeshea	Holloway	g_peach_2010@yahoo.com	+17069639386		191	2017-08-28 14:02:08.345254	2017-08-28 14:05:27.483191	CA2008984f797b0f27f709f54ccb80b76a	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE40c43d6169bff15a8e68cf98beca08fe	1	outbound	+17704009016	\N	18.3724479675292969	{}	new lead		13	\N	\N	3896
2017-09-06 19:40:32.084126+00	2017-09-06 19:41:27.743059+00	6276	completed				+18179185382		54	2017-09-06 19:40:32.081874	2017-09-06 19:41:26.547957	CA9b57f0b392236d4d71bd7a53cf3c40c7	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE1115186796645bdda981f927b7f9d7ab	0	inbound	+18177569010	124	8.06807994842529297	\N	new lead	dupont amber	12	\N	\N	3897
2016-09-19 22:41:11.332317+00	2016-12-10 00:57:48.461754+00	2056	completed				+18173082983		177	2016-09-19 22:41:11.331261	2016-09-19 22:44:08.265077	CA044ba80373bf6c86f3a7ef34e0573fc0	\N	30			0	inbound	+18559652184	\N	6.4241328239440918	null	new lead		3	\N	\N	3902
2017-12-12 00:52:41.690256+00	2017-12-12 16:02:54.851275+00	7801	missed	robert	jett	lou5269@gmail.com	+17706917049		\N	2017-12-12 00:52:41.687543	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	3903
2017-12-12 15:59:11.978885+00	2017-12-12 16:02:54.84024+00	7812	missed	robert	jett	lou5269@gmail.com	+17706917049		80	2017-12-12 15:59:11.977378	2017-12-12 16:00:31.531498		\N	150			0	outbound	+17704009016	132	\N	\N	select status		13	\N	\N	3903
2017-12-13 16:47:50.069633+00	2017-12-13 16:53:34.788383+00	7845	completed	robert	jett		+17706917049		345	2017-12-13 16:47:50.067603	2017-12-13 16:53:34.78548		\N	150			0	outbound	+17704009016	132	\N	\N	select status		13	\N	\N	3903
2017-12-13 16:46:27.030235+00	2017-12-13 16:52:42.590938+00	7844	missed	robert	jett		+17706917049		42	2017-12-13 16:46:27.027987	2017-12-13 16:47:09.030252	CA33c0788f6bc29087daf67a452386ee62	\N	\N			0	inbound	+17704009016	132	23.8921940326690674	\N	select status	jett robert	13	\N	\N	3903
2017-12-16 19:18:40.674065+00	2017-12-16 19:19:15.67874+00	7935	completed	robert	jett		+17706917049		34	2017-12-16 19:18:40.671751	2017-12-16 19:19:14.532551	CA00f919f8ff4070147e560c439897a9ef	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REe05447c46b7efb323455e36667c4a99c	0	inbound	+17707665732	133	11.5612788200378418	\N	select status	jett robert	13	\N	\N	3903
2017-12-17 19:01:44.127558+00	2017-12-18 14:25:13.872696+00	7958	missed	Nathan	Day	Nathan.joe.day@gmail.com	+16783538472		\N	2017-12-17 19:01:44.125066	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	3904
2017-12-19 15:38:07.34998+00	2017-12-19 15:42:48.93605+00	7996	completed	Nathan	Day		+16783538472		281	2017-12-19 15:38:07.348217	2017-12-19 15:42:48.218574	CAe6b28fd148bd4a3540869f0a00b17c0d	\N	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE78a62e807206eed89aeecda347204baa	0	inbound	+17704009016	132	14.0276839733123779	\N	select status	dan nathan	13	\N	\N	3904
2017-12-27 21:07:17.013086+00	2017-12-27 21:08:37.432449+00	8127	completed	Nathan	Day	nathan.joe.day@gmail.com	+16783538472		58	2017-12-27 21:07:17.011076	2017-12-27 21:08:36.185835	CAaa5ccd0c40838d3e4077d59e5e023061	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REe4ba3e09caea1302f9a5e2934bb6df02	1	outbound	+17704009016	\N	20.267812967300415	{}	select status		13	\N	\N	3904
2017-12-27 21:08:09.654052+00	2017-12-27 21:09:08.497864+00	8128	completed	Nathan	Day		+16783538472		57	2017-12-27 21:08:09.652567	2017-12-27 21:09:07.148848	CA52af0130b5bf8ba8d6c960d461118afd	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REf4a14ae65f6a57bccdc3c4ba426d20d6	0	inbound	+17704009016	132	9.55796504020690918	\N	select status	dan nathan	13	\N	\N	3904
2017-09-20 15:12:23.908351+00	2017-09-20 15:17:48.032215+00	6403	completed	PrincessJavon	Porter	porter.javon@ymail.com	+19512230646		303	2017-09-20 15:12:23.906914	2017-09-20 15:17:46.698746	CAd52cd4d61f9a0e0e610c33afdff8da08	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE536f51c8aa9a028f8ec51c45458a27c3	1	outbound	+17704009016	\N	18.2181410789489746	{}	new lead		13	\N	\N	3905
2016-08-22 20:31:41.877907+00	2016-12-10 00:55:45.165413+00	1648	completed				+12156610121		14	2016-08-22 20:31:41.876868	2016-08-22 20:31:56.131955	CA8893321854028c9689152a0631e30ef6	\N	24			0	inbound	+18557129406	\N	1.14381003379821777	null	new lead		3	\N	\N	3906
2016-11-02 16:18:00.383764+00	2016-11-02 16:39:09.015391+00	2566	completed				+19363720044		1266	2016-11-02 16:18:00.382689	2016-11-02 16:39:06.626491	CA7256a10b3dc6e8f88d6b27fc4dff3b72	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE4b1c31635f6159c2c98fa028a7dd07e5	0	inbound	+18557240606	49	2.35366678237915039	null	new lead		1	\N	\N	3907
2016-07-19 13:15:39.504568+00	2016-08-09 20:50:28.866634+00	895	missed				+16147622324		0	2016-07-19 13:15:39.502907	2016-07-19 13:16:05.649913	CA8b335eb567bb4022666618c618c3e9a8	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	\N			1	outbound	+18552959002	\N	\N	{}	general interest		1	\N	\N	3912
2016-07-19 13:16:31.222271+00	2016-08-09 20:50:28.866642+00	896	missed				+16147622324		0	2016-07-19 13:16:31.220395	2016-07-19 13:16:57.361713	CAbf45742c08faf42f79e8e989b6fe7168	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	\N			1	outbound	+18552959002	\N	\N	{}	general interest		1	\N	\N	3912
2016-07-19 12:57:07.736952+00	2017-11-29 18:31:41.490496+00	891	missed				+16147622324		19	2016-07-19 12:57:07.733922	2016-07-19 12:57:27.130082	CA7af0bb22ff0a265480a660598d6c550f	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REc22c54685b7ad98fff379b55eecb6fb5	0	inbound	+18552959002	\N	\N	null	general interest		1	\N	\N	3912
2016-07-19 13:02:38.532909+00	2017-11-29 18:31:41.490503+00	892	missed				+16147622324		24	2016-07-19 13:02:38.530621	2016-07-19 13:03:02.894374	CA8a45ac782b2988a0b5dfe3bfbb7126b0	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE3e4b08887d0b60594868298085de5762	0	inbound	+18552959002	\N	9.87476301193237305	null	general interest		1	\N	\N	3912
2016-07-26 19:51:01.066812+00	2017-11-29 18:31:41.490561+00	956	completed				+16147622324		119	2016-07-26 19:51:01.065379	2016-07-26 19:53:00.247784	CA6b6f794b2f42cc2ca3e0849cd4e2f0c6	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE9f955a491ebd676dac2bc265e10056ad	0	inbound	+18552959002	\N	10.6965541839599609	null	general interest		1	\N	\N	3912
2016-08-01 11:45:57.254747+00	2016-08-01 13:23:08.357769+00	1064	missed	jeffrey	gerlach	jeffro13072@yahoo.com	+19378300428		\N	2016-08-01 11:45:57.253701	\N		253cd8e5-09ac-4056-92ec-7e351aa19233	\N			0	outbound	+18557824539	\N	\N	{}	application submitted - credit union		1	\N	\N	3913
2016-08-15 15:28:15.118882+00	2017-11-29 18:31:05.368961+00	1493	completed	jeffrey	gerlach	jeffro13072@yahoo.com	+19378300428		286	2016-08-15 15:28:15.117555	2016-08-15 15:33:01.13094		\N	16			0	outbound	+18557824539	\N	\N	null	application submitted - credit union		1	\N	\N	3913
2017-09-29 17:43:57.757669+00	2017-09-29 17:54:51.193874+00	6534	completed				+17068092216		653	2017-09-29 17:43:57.754617	2017-09-29 17:54:51.177991	CA09744cac23cd0d1b56889624ab14eb54	\N	154			0	inbound	+17707665699	134	2.12927007675170898	\N	new lead		13	\N	\N	3915
2017-09-29 17:56:17.546298+00	2017-09-29 17:57:29.757382+00	6536	completed				+17068092216		72	2017-09-29 17:56:17.544542	2017-09-29 17:57:29.742195	CAea93fd20cf61e09fc8279bddce1bfc14	\N	152			0	inbound	+17707665732	133	17.5111191272735596	\N	new lead		13	\N	\N	3915
2017-05-22 18:20:09.410243+00	2017-05-22 18:26:43.579109+00	5287	completed				+19892134417		393	2017-05-22 18:20:09.407749	2017-05-22 18:26:42.889518	CAcce6486bca89fcc2cd202a71214c7727	\N	129		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE5c000c6ca6692a9e4c3403df8fd83aa2	0	inbound	+18172104002	126	7.34802818298339844	\N	new lead	saginaw  mi	12	\N	\N	3921
2017-10-19 16:42:11.633859+00	2017-10-19 16:45:21.095312+00	6750	completed				+18177191085		188	2017-10-19 16:42:11.631126	2017-10-19 16:45:19.942122	CA30644c06e9f9fc64cd79572a65efb19f	\N	155		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE7732763d08306c7536075aaf63b9ff0d	0	inbound	+18177569010	124	8.7586219310760498	\N	new lead	reeves david	12	\N	\N	3922
2017-04-18 22:16:49.748572+00	2017-11-29 18:38:49.805616+00	4070	completed				+18324559952		182	2017-04-18 22:16:49.74686	2017-04-18 22:19:51.574431	CA5678b615935f6607529c7fa54c2855ed	\N	\N			0	inbound	+12147122250	\N	8.30210089683532715	\N	new lead	pourmoghaddam a	9	\N	\N	3924
2016-10-17 19:09:40.034315+00	2016-12-10 01:00:18.568518+00	2308	completed				+18085518172		154	2016-10-17 19:09:40.032748	2016-10-17 19:12:14.21654	CA445fdf66997e5b5dd5ef6952d3294f7e	\N	56			0	inbound	+18556775511	\N	4.36150813102722168	null	new lead		3	\N	\N	3927
2016-10-05 14:33:38.313461+00	2016-12-10 01:03:26.835835+00	2162	completed				+12128664417		112	2016-10-05 14:33:38.31252	2016-10-05 14:35:30.297966	CAb8d03d4c513fc8eab3c66641fc21e9cd	\N	68			0	inbound	+18553793442	\N	0.436267852783203125	null	new lead		3	\N	\N	3928
2017-10-27 13:30:27.692606+00	2017-10-27 13:34:55.31262+00	6832	completed				+17062465315		268	2017-10-27 13:30:27.690075	2017-10-27 13:34:55.302406	CA368fb1d8f22e8aeb8009cc444a3c9e2b	\N	150			0	inbound	+17707665732	133	47.7462558746337891	\N	new lead		13	\N	\N	3931
2017-05-03 20:30:53.428398+00	2017-11-29 18:38:49.809451+00	4662	completed				+12143259750		181	2017-05-03 20:30:53.426828	2017-05-03 20:33:54.894026	CA605b089652c1c374e17ae0783e1bd3d4	\N	133			0	inbound	+12147122250	\N	5.69952201843261719	\N	new lead	abundant gracec	9	\N	\N	3932
2017-04-01 22:40:03.799154+00	2017-04-01 23:03:28.238792+00	3663	missed				+18177792807		119	2017-04-01 22:40:03.795821	2017-04-01 22:42:03.278567	CAaff28b66a6ec85b79ac25282415a464d	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE655604f2e381f823d347571b3271145a	0	inbound	+18177569010	124	1382.5552089214325	\N	new lead	wireless caller	12	\N	\N	3933
2016-12-02 12:40:22.632147+00	2016-12-09 17:06:53.906147+00	3023	completed				+18567788080		83	2016-12-02 12:40:22.629931	2016-12-02 12:41:45.401721	CA065f60ee09ce770f57348b5d6efb09dd	\N	21			0	inbound	+18558021330	\N	2.47531914710998535	null	new lead		3	\N	\N	3934
2017-05-22 14:12:01.850379+00	2017-11-29 18:38:49.812486+00	5265	completed				+17702373200		56	2017-05-22 14:12:01.848148	2017-05-22 14:12:57.676659	CA364711818ddc5e73844c11942bcbc274	\N	105			0	inbound	+12147122250	\N	3.07422304153442383	\N	new lead	myles truck repair	9	\N	\N	3938
2016-06-29 14:48:54.231344+00	2017-11-29 18:31:41.490241+00	631	completed	Unknown			+16144409823		16	2016-06-29 14:48:54.229481	2016-06-29 14:49:09.904852	CA5f25fc33c0e37d5581e4192a0d88c149	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE91eb6f07ca1552a3f9a9fd0fceab7b43	0	inbound	+18552959002	\N	0.530347108840942383	null	new lead		1	\N	\N	3941
2016-06-29 15:21:18.31192+00	2016-06-29 15:22:36.692881+00	645	completed				+16144409823		74	2016-06-29 15:21:18.310881	2016-06-29 15:22:36.69034	CA49c3ff2d8b701494a1ae7714cc992b87	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	16			1	outbound	+18552959002	\N	1.58519101142883301	{}	new lead		1	\N	\N	3941
2017-09-16 15:16:22.524834+00	2017-09-16 15:21:42.197364+00	6377	completed	Capria	Powe	capriapowe@gmail.com	+16464031787		296	2017-09-16 15:16:22.523367	2017-09-16 15:21:41.437085	CA2fa74d1ff653b44dfa60994c4c9391c0	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE1f1d57358e4a43f948cae64507fd8078	1	outbound	+17704009016	\N	22.1699759960174561	{}	new lead		13	\N	\N	3942
2017-03-16 18:41:17.178362+00	2017-11-29 18:38:53.212467+00	3467	completed				+18179070986		465	2017-03-16 18:41:17.175764	2017-03-16 18:49:01.715042	CAd422c5d77ec809bc4b7a426cb8ab3b9c	\N	\N			0	inbound	+12146922088	\N	7.58984112739562988	\N	new lead		9	\N	\N	3948
2016-11-19 00:16:17.293242+00	2016-11-19 00:25:09.117663+00	2949	completed				+14693091957		530	2016-11-19 00:16:17.29166	2016-11-19 00:25:07.486571	CA44d2517984a79938250caf74435f8329	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE1d6d41e9a6d1edf1e476875130fc4951	0	inbound	+18557240606	49	2.19553709030151367	null	new lead		1	\N	\N	3949
2017-07-29 19:51:54.958892+00	2017-07-29 19:52:32.096736+00	5887	completed				+16788583691		36	2017-07-29 19:51:54.956924	2017-07-29 19:52:31.416774	CA6fc873db8036342f7ccf82cd2ed478a2	\N	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REd97ed11223032a992a10023215bfb299	0	inbound	+17704009016	132	9.01537609100341797	\N	new lead		13	\N	\N	3953
2017-10-06 18:06:11.433138+00	2017-10-06 18:12:34.467925+00	6601	completed	Donald	Powell	Powelldonald20@yahoo.com	+18646238350		15	2017-10-06 18:06:11.431413	2017-10-06 18:12:28.410664	CAaebe0d065538e380ad2f3df8f53eaf1e	0427608a-ae09-4db0-a1e8-374423ee28c3	153			3	outbound	+17704009016	\N	359.562552928924561	{}	new lead		13	\N	\N	3955
2017-12-09 19:14:29.658264+00	2017-12-09 22:23:56.980026+00	7749	completed	LARRY	HOLLAND		+12396722168		185	2017-12-09 19:14:29.656587	2017-12-09 19:17:34.329412	CA2f4d0c23183f6f04910c6ed7a56ce909	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE517bf0bf277ff479f9698ad21ef284aa	0	inbound	+17704009016	132	8.63025808334350586	\N	select status	fort myers  fl	13	\N	\N	3958
2017-12-15 17:36:47.050977+00	2017-12-15 17:40:18.867293+00	7896	completed	Larry	Holland	Sonnyholland0@gmail.com	+12396722168		186	2017-12-15 17:36:47.049288	2017-12-15 17:40:18.846202	CA1c4061d8e4cc49032ec822523f7541cc	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE88d19fac3f17d9be5f755ac059840be2	1	outbound	+17704009016	\N	25.422339916229248	{}	select status		13	\N	\N	3958
2016-08-03 17:37:21.025247+00	2016-08-16 19:29:29.725565+00	1180	missed	Santiago	C Benavente	cbenaventesantiago@yahoo.com	+16618355333		\N	2016-08-03 17:37:21.024126	\N		99186475-9344-4e80-b3b1-0ed2e7856585	\N			0	outbound	+18555472453	\N	\N	{}	application submitted - autopay		1	\N	\N	3963
2016-08-05 15:18:12.270147+00	2016-12-10 00:55:45.165091+00	1273	completed				+14846788940		400	2016-08-05 15:18:12.267888	2016-08-05 15:24:51.949689	CAef69a29bc525c9c7d6a4d0b0f6f88d74	\N	24			0	inbound	+18557129406	\N	2.03842306137084961	null	new lead		3	\N	\N	3964
2016-10-11 19:27:00.230221+00	2016-12-10 01:05:18.401152+00	2268	completed				+14847160203		250	2016-10-11 19:27:00.227572	2016-10-11 19:31:09.966847	CA2ec84f1b61329167ae2af10dc0fcbc3e	\N	24			0	inbound	+18557088731	\N	1.20571708679199219	null	new lead		3	\N	\N	3967
2017-11-20 19:54:34.812508+00	2017-11-20 20:08:39.58812+00	7147	completed	AUSTIN			+16789975520		337	2017-11-20 19:54:34.810355	2017-11-20 20:00:11.617406	CAea17728314b2076f2b9e22a0eadb1cb3	\N	153			0	inbound	+17707665732	133	10.5486361980438232	\N	select status		13	\N	\N	3968
2016-05-25 16:43:35.172701+00	2016-05-25 16:44:18.99417+00	209	completed				+13523686052		38	2016-05-25 16:43:35.171316	2016-05-25 16:44:18.993048	CAb097159d71650be16483b81da3030098	1b57cdfb-d740-4953-b96e-8faa81f78a40	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REa25a7afa42fcca891920ea0b90cd0779	1	outbound	+18557824539	\N	1.63690018653869629	{}	new lead		1	\N	\N	3969
2016-05-21 11:29:48.311016+00	2017-11-29 18:31:05.3688+00	153	completed	Unknown			+13523686052		319	2016-05-21 11:29:48.309255	2016-05-21 11:35:06.985051	CA9ceafe1db6c7e1f6550ecf109bd06748	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE74a6ec9c6a6307c97574032f9097d986	0	inbound	+18557824539	\N	\N	null	new lead		1	\N	\N	3969
2017-03-13 17:44:58.984374+00	2017-11-29 18:38:53.212118+00	3397	completed				+19292582608		357	2017-03-13 17:44:58.981686	2017-03-13 17:50:55.694054	CA746a16a616fc076cdbc5fc9ddaecac56	\N	\N			0	inbound	+12146922088	\N	10.2633500099182129	\N	new lead	manhattan  ny	9	\N	\N	3970
2016-08-02 23:41:55.352845+00	2017-11-29 18:31:37.368511+00	1161	missed				+16614005554		15	2016-08-02 23:41:55.350775	2016-08-02 23:42:10.81031	CA19b631b878449a49ad90ab3d744135d1	\N	\N			0	inbound	+18555472453	\N	\N	null	general interest		1	\N	\N	3971
2016-08-12 20:27:48.416186+00	2017-01-27 21:12:23.813179+00	1460	completed	Kurt	Ryan		+16614005554		96	2016-08-12 20:27:48.41491	2016-08-12 20:29:24.43407		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	3971
2016-08-03 18:00:36.177255+00	2017-11-29 18:31:37.368582+00	1181	completed	Kurt	Ryan		+16614005554		179	2016-08-03 18:00:36.175102	2016-08-03 18:03:35.247767	CA2412acc893b8994ed53d13a0df93407f	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE4140edbc040ac94748030dec2c68422b	0	inbound	+18555472453	\N	19.7479920387268066	null	general interest		1	\N	\N	3971
2017-05-16 17:11:41.826612+00	2017-11-29 18:38:49.811775+00	5112	completed				+12142368746		72	2017-05-16 17:11:41.823672	2017-05-16 17:12:53.672794	CA95b9d14b704616c155d84f927faa0339	\N	126			0	inbound	+12147122250	\N	2.17558598518371582	\N	new lead	sltc inc	9	\N	\N	3972
2017-05-16 17:13:04.947752+00	2017-11-29 18:38:49.811782+00	5113	completed				+12142368746		70	2017-05-16 17:13:04.946458	2017-05-16 17:14:15.335152	CAc2f74ccbde80eaa6f22a39ea09c13448	\N	127			0	inbound	+12147122250	\N	1.20819687843322754	\N	new lead	sltc inc	9	\N	\N	3972
2017-05-16 17:26:19.356495+00	2017-11-29 18:38:49.811789+00	5114	completed				+12142368746		73	2017-05-16 17:26:19.354621	2017-05-16 17:27:32.549991	CA37b04034b3d40179b5ff735cecb32bb4	\N	126			0	inbound	+12147122250	\N	1.1816859245300293	\N	new lead	sltc inc	9	\N	\N	3972
2017-05-16 18:09:44.881617+00	2017-11-29 18:38:49.811804+00	5117	completed				+12142368746		71	2017-05-16 18:09:44.879234	2017-05-16 18:10:55.97748	CA280824f6251ffb411f151e45d732aa8f	\N	126			0	inbound	+12147122250	\N	1.17521500587463379	\N	new lead	sltc inc	9	\N	\N	3972
2017-05-16 19:52:27.025645+00	2017-11-29 18:38:49.811818+00	5119	completed				+12142368746		71	2017-05-16 19:52:27.023746	2017-05-16 19:53:38.224824	CA88ae4c299f783f53ccc1b97cc67d71d7	\N	126			0	inbound	+12147122250	\N	1.47644805908203125	\N	new lead	sltc inc	9	\N	\N	3972
2017-05-16 19:53:50.273001+00	2017-11-29 18:38:49.811825+00	5120	completed				+12142368746		152	2017-05-16 19:53:50.271821	2017-05-16 19:56:21.946343	CAce68b1a38220910018a0768966e9c42f	\N	99			0	inbound	+12147122250	\N	10.4054760932922363	\N	new lead	sltc inc	9	\N	\N	3972
2017-05-16 20:20:25.597709+00	2017-11-29 18:38:49.811861+00	5125	completed				+12142368746		69	2017-05-16 20:20:25.595712	2017-05-16 20:21:34.692164	CA9328d7d9eabf7943cd57475f568d5986	\N	126			0	inbound	+12147122250	\N	1.1085200309753418	\N	new lead	sltc inc	9	\N	\N	3972
2017-05-16 21:16:59.307108+00	2017-11-29 18:38:49.811876+00	5128	completed				+12142368746		72	2017-05-16 21:16:59.305502	2017-05-16 21:18:11.477941	CA14cedafbf92de32a21ed10787a1035da	\N	127			0	inbound	+12147122250	\N	1.34349584579467773	\N	new lead	sltc inc	9	\N	\N	3972
2017-05-16 21:18:19.396073+00	2017-11-29 18:38:49.811883+00	5129	completed				+12142368746		67	2017-05-16 21:18:19.394623	2017-05-16 21:19:26.396162	CAfbea83d0fa79267f8456d024b4a0268b	\N	126			0	inbound	+12147122250	\N	1.03214383125305176	\N	new lead	sltc inc	9	\N	\N	3972
2017-12-02 19:51:01.425328+00	2017-12-02 20:07:12.749975+00	7497	completed	Carolina	Laxson	krlaxson@msn.com	+19282317220		969	2017-12-02 19:51:01.423941	2017-12-02 20:07:12.748266	CA6eeb6d1e07ec4dc6d4d820a1b0a1ded6	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.81231808662414551	{}	new lead		15	\N	\N	3977
2017-05-04 19:18:33.233283+00	2017-11-29 18:47:25.068376+00	4719	completed				+18168033343		678	2017-05-04 19:18:33.231383	2017-05-04 19:29:50.89341	CAade1c0e01578c95611487fc88cb08068	\N	118			0	inbound	+19728330116	\N	331.607030868530273	\N	new lead	pham simone    	8	\N	\N	3979
2017-04-26 20:48:05.348446+00	2017-11-29 18:38:53.214617+00	4340	completed				+16176698710		151	2017-04-26 20:48:05.344913	2017-04-26 20:50:36.572854	CA4d71bd15c3f931bc7b085416c180fe0f	\N	99			0	inbound	+12146922088	\N	5.03757119178771973	\N	new lead	ahmed mohammed	9	\N	\N	3982
2017-11-11 19:48:47.878932+00	2017-11-11 19:50:20.620959+00	7024	completed				+14042769697		93	2017-11-11 19:48:47.876774	2017-11-11 19:50:20.600713	CA66308f34d0d9bcac7367d039875c321d	\N	154			0	inbound	+17707665699	134	0.883596897125244141	\N	new lead		13	\N	\N	3983
2016-11-03 04:12:32.751033+00	2016-11-03 04:12:32.774157+00	2616	missed	Raana	Syed	zaheersyed@yahoo.com	+12814981908		\N	2016-11-03 04:12:32.750029	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	3984
2017-11-10 18:54:46.953199+00	2017-11-10 18:58:22.27147+00	7005	completed				+12144976689		215	2017-11-10 18:54:46.951791	2017-11-10 18:58:21.931456	CA369f4c654db15d4418930a2e348c5ea4	\N	146		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/REd442d5ece62bb499757ef1be8b268f4d	0	inbound	+18177569010	124	45.1279821395874023	\N	new lead	varner charles	12	\N	\N	3985
2017-04-20 15:29:31.740677+00	2017-11-29 18:47:25.068158+00	4130	completed				+12142999268		111	2017-04-20 15:29:31.739401	2017-04-20 15:31:22.450097	CA93242fd5a08a878785de9ce5f8d3cf55	\N	117		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE7bd5cd700f30a47b689e0b0e4c43aa9b	0	inbound	+19728330116	\N	8.33441686630249023	\N	new lead	mclennan robert	8	\N	\N	3989
2017-04-20 15:41:18.507263+00	2017-11-29 18:47:25.068165+00	4132	completed				+12142999268		75	2017-04-20 15:41:18.505248	2017-04-20 15:42:34.001177	CAd728830d5e768f9ae663fb656a4bea61	\N	117		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/REd864faa7f96fa9cf93fa533fb968dc6b	0	inbound	+19728330116	\N	24.9115538597106934	\N	new lead	mclennan robert	8	\N	\N	3989
2016-11-03 16:02:09.096813+00	2016-11-03 16:02:09.135621+00	2632	missed	Ernest	Kobs	eckobs@airmail.net	+12919557332		\N	2016-11-03 16:02:09.095139	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	3990
2017-06-30 13:19:13.854806+00	2017-06-30 13:22:37.883524+00	5689	completed	Artillious 	King	akinggap88@gmail.com	+16785989373		186	2017-06-30 13:19:13.853415	2017-06-30 13:22:36.534431	CAa8fa11fb8d09da5a50e91cbe1b7674b0	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE7c30d6a6e73bf533d852c66613cda8a2	1	outbound	+17704009016	\N	12.6081678867340088	{}	new lead		13	\N	\N	3993
2016-12-06 16:01:53.354725+00	2016-12-10 01:01:51.441198+00	3051	completed				+16194791202		441	2016-12-06 16:01:53.353107	2016-12-06 16:09:14.602605	CA6834e75dca24a48ed66ecf4aa53ae65f	\N	50			0	inbound	+18559693782	\N	3.47127389907836914	null	new lead		3	\N	\N	3994
2017-08-30 08:04:22.439121+00	2017-10-11 13:48:44.654752+00	6202	missed	Christy	Pass	Pass.christy0414@gmail.com	+17063805180		\N	2017-08-30 08:04:22.437441	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	3995
2017-10-10 06:17:18.240543+00	2017-10-11 13:48:44.644006+00	6642	missed	James	Craft	Pass.christy0414@gmail.com	+17063805180		\N	2017-10-10 06:17:18.239155	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	3995
2016-11-02 22:41:15.482986+00	2016-11-02 22:41:15.506773+00	2602	missed	Paul	Ladd	paulwladd@mac.com	+14699993344		\N	2016-11-02 22:41:15.481965	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	3997
2017-09-29 16:59:09.694947+00	2017-09-29 17:08:51.217957+00	6531	completed				+19032271244		582	2017-09-29 16:59:09.692874	2017-09-29 17:08:51.215018	CA5b8548146fc3255a7ef3a05bbd214a5e	\N	146			0	inbound	+18177569010	124	399.947328090667725	\N	new lead	farmers bra  tx	12	\N	\N	3998
2017-09-29 17:06:37.947137+00	2017-09-29 17:28:39.986897+00	6532	missed				+19032271244		5	2017-09-29 17:06:37.945473	2017-09-29 17:06:43.418753	CA8691b6e99e64cc348b8d36f25912f41b	\N	\N			0	inbound	+18177569010	124	1300.42724394798279	\N	new lead	farmers bra  tx	12	\N	\N	3998
2017-03-20 21:03:13.800224+00	2017-11-29 18:32:01.935502+00	3514	missed				+16513486175		10	2017-03-20 21:03:13.798288	2017-03-20 21:03:24.184689	CA132e99360d6e869173bc095f5c1d68cc	\N	\N			0	inbound	+18556311513	\N	\N	\N	new lead		1	\N	\N	4000
2017-04-11 15:24:26.298951+00	2017-11-29 18:38:53.213738+00	3782	completed				+12403813401		12	2017-04-11 15:24:26.297167	2017-04-11 15:24:38.424392	CA20abe03c053b073904c2438f48822f80	\N	\N			0	inbound	+12146922088	\N	2.36087393760681152	\N	new lead	mancilla diaz o	9	\N	\N	4001
2017-04-11 15:24:46.924685+00	2017-11-29 18:38:53.213745+00	3783	completed				+12403813401		226	2017-04-11 15:24:46.923217	2017-04-11 15:28:32.785464	CA26cce5c37c8b8510c2b35efa04b07836	\N	\N			0	inbound	+12146922088	\N	4.79530715942382812	\N	new lead	mancilla diaz o	9	\N	\N	4001
2017-08-01 00:30:42.647791+00	2017-08-01 00:30:42.708395+00	5907	missed	CEDRIC	GREEN	Cedgreen2@gmail.com	+17705613347		\N	2017-08-01 00:30:42.646184	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	new lead		13	\N	\N	4003
2016-10-27 17:54:37.347502+00	2016-12-10 01:03:35.620626+00	2360	completed				+12017313675		119	2016-10-27 17:54:37.345915	2016-10-27 17:56:35.892413	CA19c82abdf2f5fe864171afef35d907a9	\N	66			0	inbound	+18557376565	\N	1.23035120964050293	null	new lead		3	\N	\N	4006
2016-10-31 14:12:56.295243+00	2016-12-10 01:03:35.620633+00	2378	completed				+12017313675		320	2016-10-31 14:12:56.294103	2016-10-31 14:18:15.835182	CA165f8f3209cdce6985c2b73c597e5532	\N	66			0	inbound	+18557376565	\N	1.53991007804870605	null	new lead		3	\N	\N	4006
2016-05-25 17:16:09.697917+00	2016-05-25 17:17:10.202871+00	219	completed				+17277899398		56	2016-05-25 17:16:09.69691	2016-05-25 17:17:10.201792	CAe9513b1e671208f14a50a900fe2c48f9	a75d788e-40a6-4b7b-bb41-ca24aa98e7d9	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE4578774e0ba3e6fe4b1a7b84caaf28d4	1	outbound	+18556313454	\N	1.30715084075927734	{}	new lead		1	\N	\N	4007
2016-05-23 21:38:32.440556+00	2017-11-29 18:31:01.155581+00	179	completed	Unknown			+17277899398		318	2016-05-23 21:38:32.438886	2016-05-23 21:43:50.001332	CAe17d35af2421896b6f67fc4c087ac5c2	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE7fb19a1e921f97b3481472ad53f6ba76	0	inbound	+18556313454	\N	\N	null	new lead		1	\N	\N	4007
2017-11-17 09:38:57.833673+00	2017-11-17 14:03:56.282252+00	7088	missed	Ethel	Marsingill	itnomatter10@gmail.com	+14702091768		\N	2017-11-17 09:38:57.831904	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	4008
2017-11-17 05:28:11.783161+00	2017-11-17 14:03:56.296275+00	7087	missed	Ethel	Marsingill	itnomatter10@gmail.com	+14702091768		\N	2017-11-17 05:28:11.781542	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	4008
2017-11-17 14:01:59.261983+00	2017-11-17 14:03:56.296323+00	7097	completed	Ethel	Marsingill	itnomatter10@gmail.com	+14702091768		88	2017-11-17 14:01:59.259906	2017-11-17 14:03:27.122395		\N	150			0	outbound	+17704009016	132	\N	\N	select status		13	\N	\N	4008
2017-11-17 18:11:27.305279+00	2017-11-17 18:14:59.533824+00	7108	completed	Ethel	Marsingill		+14702091768		211	2017-11-17 18:11:27.303422	2017-11-17 18:14:58.244552	CAdedf6d273e5fe007a85bbbc22455fe06	\N	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE353f54e8f3c3db52efa37a82282df5cd	0	inbound	+17704009016	132	20.0450558662414551	\N	select status		13	\N	\N	4008
2017-11-19 10:06:19.17423+00	2017-11-19 10:06:19.230909+00	7134	missed	Ethel	Marsingill	itnomatter10@gmail.com	+14702091768		\N	2017-11-19 10:06:19.172405	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	4008
2016-05-25 16:58:05.597743+00	2016-05-25 16:59:53.277212+00	212	completed				+15137696904		102	2016-05-25 16:58:05.596355	2016-05-25 16:59:53.276205	CA75b6abe1c575420e365f6818022fb454	cd89e433-4bde-4f86-9b22-8f52c2413fcd	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE18ade2b2fa29e518f4fdc74d7cff9532	1	outbound	+18556311490	\N	1.93003106117248535	{}	new lead		1	\N	\N	4010
2016-05-22 15:20:34.545882+00	2017-11-29 18:31:10.260264+00	159	completed	Unknown			+15137696904		15	2016-05-22 15:20:34.543938	2016-05-22 15:20:49.85665	CA3c2ba1dd06e78fca5559c187fdb08561	\N	\N			0	inbound	+18556311490	\N	\N	null	new lead		1	\N	\N	4010
2017-03-27 20:54:17.050238+00	2017-11-29 18:38:53.21306+00	3598	completed				+13126854100		65	2017-03-27 20:54:17.048028	2017-03-27 20:55:21.865102	CA8dd455eacee59edc77cd7db70dac696c	\N	\N			0	inbound	+12146922088	\N	4.44633197784423828	\N	new lead	jareou zaid	9	\N	\N	4013
2016-05-23 17:14:50.987827+00	2016-05-23 17:15:56.394799+00	173	completed	Marquita	Ebright	marquita.ebright@gmail.com	+19372063816		48	2016-05-23 17:14:50.985562	2016-05-23 17:15:56.392877	CA36fef670fbc16482aa80df2e6045a61e	25d0200e-983d-4413-94ae-eb664b99711c	17		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REc0a4088499a59b27c53f3ebba9217e3d	1	outbound	+18556311490	\N	14.646996021270752	{}	new lead		1	\N	\N	4016
2017-05-08 01:05:12.589517+00	2017-11-29 18:38:53.215265+00	4825	missed				+14699700602		0	2017-05-08 01:05:12.58814	2017-05-08 01:05:12.70891	CAbd808edb921489bcd2a1c7df65e2db5e	\N	\N			0	inbound	+12146922088	\N	\N	\N	new lead	world class car	9	\N	\N	4018
2017-05-08 21:12:13.130569+00	2017-11-29 18:38:49.810477+00	4878	missed				+14699700602		0	2017-05-08 21:12:13.128724	2017-05-08 21:12:13.248725	CA65686a078b26060e24da87e28823846d	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	world class car	9	\N	\N	4018
2016-06-01 19:26:23.78678+00	2016-06-01 19:28:10.003636+00	327	completed				+15132323210		101	2016-06-01 19:26:23.785197	2016-06-01 19:28:10.002312	CAc9049a34918dff8ba3ad55823eee833e	cd89e433-4bde-4f86-9b22-8f52c2413fcd	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REf0def1b09b14e9573a664d6999d957b3	1	outbound	+18556311490	\N	2.29930996894836426	{}	new lead		1	\N	\N	4019
2016-06-01 17:24:41.434556+00	2016-06-01 17:25:50.403923+00	316	completed				+15132323210		64	2016-06-01 17:24:41.432957	2016-06-01 17:25:50.402768	CA8df86c2729fbd5785b4b6547a164372a	cd89e433-4bde-4f86-9b22-8f52c2413fcd	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REaec487acf583c84f8ccfa8c62616f9d6	1	outbound	+18556311490	\N	1.64699292182922363	{}	new lead		1	\N	\N	4019
2016-06-01 17:53:23.579242+00	2016-06-01 17:54:13.281936+00	319	completed				+15132323210		45	2016-06-01 17:53:23.577982	2016-06-01 17:54:13.280661	CA92501771140c93cf0a19e9fecbb8f109	cd89e433-4bde-4f86-9b22-8f52c2413fcd	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE19d96f0aafed5b82f57d9c01ae9f380f	1	outbound	+18556311490	\N	1.45827794075012207	{}	new lead		1	\N	\N	4019
2016-06-01 17:54:25.182529+00	2016-06-01 17:54:49.088933+00	320	completed				+15132323210		19	2016-06-01 17:54:25.181553	2016-06-01 17:54:49.087685	CAa715c6e4a5ff37d556b0fcdc49217f4b	cd89e433-4bde-4f86-9b22-8f52c2413fcd	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE57426f4ea435b22a4cb2401a6e97d62d	1	outbound	+18556311490	\N	1.25030803680419922	{}	new lead		1	\N	\N	4019
2016-06-01 18:34:51.473564+00	2016-06-01 18:35:59.9989+00	325	completed	Lynda	Maxwell	lyndamaxwell06@gmail.com	+15132323210		39	2016-06-01 18:34:51.472404	2016-06-01 18:35:59.997888	CAef738a4b7d06d09e6a970ef0b625eb09	25d0200e-983d-4413-94ae-eb664b99711c	17		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE8d759221dbfa8f2dad4218640a45764b	1	outbound	+18556311490	\N	25.55942702293396	{}	new lead		1	\N	\N	4019
2016-06-01 16:52:58.24034+00	2017-11-29 18:31:10.2607+00	310	completed	Unknown			+15132323210		29	2016-06-01 16:52:58.239176	2016-06-01 16:53:27.125983	CA58f3b087dd199a3776d81ac34afeadc0	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE3a865df7d9d4491b783f1b6af67497f8	0	inbound	+18556311490	\N	14.1331357955932617	null	new lead		1	\N	\N	4019
2016-06-01 17:08:40.251353+00	2017-11-29 18:31:10.260716+00	313	completed	Unknown			+15132323210		26	2016-06-01 17:08:40.249842	2016-06-01 17:09:05.757229	CA7ce31763e45a70b8e94e63b7205bccb4	\N	\N			0	inbound	+18556311490	\N	14.43007493019104	null	new lead		1	\N	\N	4019
2016-06-01 17:19:02.368951+00	2017-11-29 18:31:10.260733+00	314	completed	Unknown			+15132323210		31	2016-06-01 17:19:02.365177	2016-06-01 17:19:33.339634	CA368a4765434ac3e29e0a9362eadb1fa8	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REe2dd3e8d2ca6de1547cc3523135a9e88	0	inbound	+18556311490	\N	14.420543909072876	null	new lead		1	\N	\N	4019
2016-06-01 17:30:42.945585+00	2017-11-29 18:31:10.260749+00	317	completed	Unknown			+15132323210		132	2016-06-01 17:30:42.944132	2016-06-01 17:32:55.415409	CAf7ca6468fe80a7245a3a68c46d22d34f	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE2d4fb4c2819d01d4ff4e1ed5a45592a8	0	inbound	+18556311490	\N	3.59455680847167969	null	new lead		1	\N	\N	4019
2016-06-01 17:51:37.230844+00	2017-11-29 18:31:10.260767+00	318	completed	Unknown			+15132323210		51	2016-06-01 17:51:37.229427	2016-06-01 17:52:27.874363	CAbbd22e0fbc851e7334b11bf19eaafab4	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REabd321cd60115067d70bb7302d63479f	0	inbound	+18556311490	\N	14.2115089893341064	null	new lead		1	\N	\N	4019
2016-06-01 17:54:44.049175+00	2017-11-29 18:31:10.260784+00	321	completed	Unknown			+15132323210		137	2016-06-01 17:54:44.048111	2016-06-01 17:57:00.66008	CA8584c4d3be928a2a4287199e78e3cde6	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE0c0ebee4f564eb0510f9999daf7e57dc	0	inbound	+18556311490	\N	3.67357516288757324	null	new lead		1	\N	\N	4019
2016-06-01 18:08:25.544032+00	2017-11-29 18:31:10.2608+00	322	completed	Unknown			+15132323210		19	2016-06-01 18:08:25.542577	2016-06-01 18:08:44.595765	CAd214b0760c6bbaa9c32c60f67041a2cb	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE6d49756affb357bf174e69d73711e2da	0	inbound	+18556311490	\N	6.0400998592376709	null	new lead		1	\N	\N	4019
2016-06-01 18:11:07.248218+00	2017-11-29 18:31:10.260818+00	323	completed	Unknown			+15132323210		78	2016-06-01 18:11:07.247107	2016-06-01 18:12:25.197979	CA5990765616d3f61c18d9d47f80aedd12	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REd5da886cc03807c3930ed744a4cf308c	0	inbound	+18556311490	\N	3.55023407936096191	null	new lead		1	\N	\N	4019
2016-06-01 18:23:02.231898+00	2017-11-29 18:31:10.260834+00	324	completed	Unknown			+15132323210		749	2016-06-01 18:23:02.230463	2016-06-01 18:35:31.523967	CAbb6b71382f416cc31431120d3ee3cd3f	\N	16		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REfc0534eb197ed1d0efe416a378ef99ec	0	inbound	+18556311490	\N	3.43803691864013672	null	new lead		1	\N	\N	4019
2016-09-06 21:53:28.136299+00	2016-12-10 01:01:51.440786+00	1896	completed				+18584923518		117	2016-09-06 21:53:28.134557	2016-09-06 21:55:25.515047	CAece0557b335e09a479952875aa858aef	\N	50			0	inbound	+18559693782	\N	1.98104190826416016	null	new lead		3	\N	\N	4023
2017-04-01 23:05:51.294711+00	2017-11-29 18:47:25.067968+00	3664	completed				+16826674949		149	2017-04-01 23:05:51.292813	2017-04-01 23:08:20.060701	CAccd45f4c4a498ff151a77956c68aefdc	\N	83		https://api.twilio.com/2010-04-01/Accounts/ACa367d3d52e8fba8331315b67fc735207/Recordings/RE02feb77f364bbe41488b0e44859069b5	0	inbound	+19728330116	\N	17.9143500328063965	\N	new lead	fort worth  tx	8	\N	\N	4024
2017-10-10 00:18:42.972082+00	2017-10-11 13:54:33.342087+00	6640	missed	Christopher	Martin	cm3505111@gmail.com	+17063869269		\N	2017-10-10 00:18:42.970653	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	4025
2016-08-22 17:46:52.289959+00	2017-11-29 18:31:18.808876+00	1644	missed				+14062189069		67	2016-08-22 17:46:52.287832	2016-08-22 17:47:59.226003	CA979b8b7af2011e8e534ba0071010dd33	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REd10e78bb9b19fa905b00e2733c927a3d	0	inbound	+18556311439	\N	32.030951976776123	null	do not contact		1	\N	\N	4026
2016-08-22 17:14:53.473187+00	2017-01-27 21:12:23.813533+00	1642	completed				+14062189069		1579	2016-08-22 17:14:53.471293	2016-08-22 17:41:12.895336		\N	\N			0	outbound	+18555343978	48	\N	null	do not contact		1	\N	\N	4026
2016-08-22 17:41:49.506805+00	2017-11-29 18:31:18.808869+00	1643	missed				+14062189069		57	2016-08-22 17:41:49.505082	2016-08-22 17:42:46.838384	CAedb870888b8d98d34696bcb816eaa163	\N	\N			0	inbound	+18556311439	\N	31.6347169876098633	null	do not contact		1	\N	\N	4026
2017-12-27 22:24:39.526778+00	2017-12-27 22:29:56.410873+00	8131	completed	Tiny	Pitts	cherylpitts83@gmail.com	+17062443258		294	2017-12-27 22:24:39.525319	2017-12-27 22:29:55.197452	CA86c5ed5969ccb3e4a02249690cf41d54	0427608a-ae09-4db0-a1e8-374423ee28c3	152		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE1577e2b8b56707bd781373d1bbaece7a	1	outbound	+17704009016	\N	20.4131460189819336	{}	new lead		13	\N	\N	4027
2016-11-07 19:07:28.978369+00	2016-11-07 19:30:33.521944+00	2794	completed				+13142401140		1385	2016-11-07 19:07:28.976032	2016-11-07 19:30:33.520495	CAca527858d6f6611595519b6e4736f86e	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE342e4ed365cec06f7a2aaecc2e85770a	0	inbound	+18557240606	49	2.40956807136535645	null	new lead		1	\N	\N	4029
2017-05-08 20:38:54.695121+00	2017-11-29 18:38:49.810433+00	4872	missed				+13157662224		31	2017-05-08 20:38:54.693605	2017-05-08 20:39:25.848641	CA5aa82c56df2dc0f59558735f1cc4a74e	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	syracuse  ny	9	\N	\N	4030
2018-01-04 01:31:54.223448+00	2018-01-04 01:32:19.555316+00	8192	completed				+18473123318		24	2018-01-04 01:31:54.219728	2018-01-04 01:32:18.196887	CA66bf13f263f4cd2cb35321007ecbf97b	\N	15		https://buyercall-test-recordings.s3.amazonaws.com/FINSERV%20Group_4/8192_recording_a3d444fec2f4406d9eb791856ba60e31	0	inbound	+13367394103	139	15.3839640617370605	\N	new lead	vermaak hermanu	1	\N	\N	4031
2018-01-05 18:41:25.584335+00	2018-01-05 18:41:39.299019+00	8198	completed				+18473123318		14	2018-01-05 18:41:25.581955	2018-01-05 18:41:39.296361	CA295c9eb90a08b60ed5330e35b78777bd	\N	15			0	inbound	+13367394103	139	7.92755293846130371	\N	new lead	vermaak hermanu	1	\N	\N	4031
2018-01-07 20:25:56.922834+00	2018-01-07 20:26:04.984585+00	8201	completed				+18473123318		8	2018-01-07 20:25:56.920327	2018-01-07 20:26:04.982691	CAc79ba4e4965ef3a9ebd821e07a81d789	\N	15			0	inbound	+13367394103	139	6.06129908561706543	\N	new lead	vermaak hermanu	1	\N	\N	4031
2016-05-23 02:49:10.953305+00	2016-05-23 02:49:55.013378+00	164	completed	Dunja			+18473123318		30	2016-05-23 02:49:10.950869	2016-05-23 02:49:55.010857	CA573b8c4db3a75410396b695fdbca3933	53da9e33-88fb-4b04-baca-339193fd55f7	1			1	outbound	+17735469660	\N	10.5666241645812988	{}	new lead		1	\N	\N	4031
2016-09-22 01:30:14.252792+00	2016-09-22 01:30:37.100543+00	2072	missed	VERMAAK	HERMANU		+18473123318		23	2016-09-22 01:30:14.249619	2016-09-22 01:30:37.039807	CA7211a83962214a7f457741461aeb2684	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACafc5b14e320f72bf4ed973f9ab19c98d/Recordings/RE72f3932f46ba17d4b59e34c800c15c3c	0	inbound	+17735469660	16	\N	null	new lead		1	\N	\N	4031
2016-05-23 02:51:13.070464+00	2016-05-23 02:51:40.129966+00	165	completed	VERMAAK	HERMANU		+18473123318		27	2016-05-23 02:51:13.068603	2016-05-23 02:51:40.128289	CA35e7e1c024c281c71f587e9f22a58f04	\N	1			0	inbound	+17735469660	16	8.77062582969665527	null	new lead		1	\N	\N	4031
2017-05-17 15:05:23.560903+00	2017-11-29 18:38:49.811968+00	5152	completed				+14804505878		103	2017-05-17 15:05:23.558268	2017-05-17 15:07:07.017673	CA9d299c008cddc5a09c3f8446a3b14c79	\N	125			0	inbound	+12147122250	\N	2.34452295303344727	\N	new lead	otterson kevin 	9	\N	\N	4032
2017-05-22 15:45:52.113113+00	2017-11-29 18:38:49.812536+00	5272	completed				+14804505878		91	2017-05-22 15:45:52.110975	2017-05-22 15:47:22.835452	CAb7f551fe24c9732b09115acb748f4129	\N	125			0	inbound	+12147122250	\N	1.52446818351745605	\N	new lead	otterson kevin 	9	\N	\N	4032
2016-08-23 16:41:00.125492+00	2016-08-23 17:06:04.46843+00	1677	missed	Dee	Holmes	deeannaholmes@yahoo.com	+14062608883		\N	2016-08-23 16:41:00.124428	\N		07cfd785-7aef-47fb-8d17-7f38ec833934	\N			0	outbound	+18556311439	\N	\N	{}	application submitted - credit union		1	\N	\N	4033
2017-04-25 17:12:15.444303+00	2017-11-29 18:38:49.806625+00	4292	completed				+19722436004		48	2017-04-25 17:12:15.441973	2017-04-25 17:13:03.277751	CAce1445db6923e146db2b39d9522055eb	\N	107			0	inbound	+12147122250	\N	9.09760499000549316	\N	new lead	xport lease co	9	\N	\N	4035
2016-08-05 22:10:37.254146+00	2017-11-29 18:31:18.808832+00	1294	missed				+13373530433		19	2016-08-05 22:10:37.252697	2016-08-05 22:10:56.68096	CAc69fb9b31abbc69cabd8b828a075096f	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE046a12122ab45274ed6d5c447e1b2a04	0	inbound	+18556311439	\N	\N	null	new lead		1	\N	\N	4038
2016-08-05 22:22:31.854118+00	2017-11-29 18:31:18.80884+00	1295	missed				+13373530433		16	2016-08-05 22:22:31.852905	2016-08-05 22:22:47.487443	CAd23f0943e4c8afc2189e87a2d63a6f19	\N	\N			0	inbound	+18556311439	\N	\N	null	new lead		1	\N	\N	4038
2016-08-12 11:02:08.573871+00	2017-11-29 18:31:41.490688+00	1434	missed				+16142565508		16	2016-08-12 11:02:08.572288	2016-08-12 11:02:24.386348	CAb813378ce052de574dd5840b257ba423	\N	\N			0	inbound	+18552959002	\N	\N	null	general interest		1	\N	\N	4039
2016-08-12 18:59:38.019256+00	2017-01-27 21:12:23.813165+00	1454	completed				+16142565508		84	2016-08-12 18:59:38.018264	2016-08-12 19:01:02.417694		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	4039
2017-10-25 14:54:42.827455+00	2017-10-25 14:56:21.599479+00	6801	completed	donna	chappie	djc82468@gmail.com	+17062013334		88	2017-10-25 14:54:42.825963	2017-10-25 14:56:20.262738	CA6930c769afa0c95acd3d75aeb6bef38d	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REca4047707b47989a1ac9798d13f02dc2	1	outbound	+17704009016	\N	14.8820230960845947	{}	new lead		13	\N	\N	4041
2017-11-08 17:22:10.210989+00	2017-11-08 17:22:53.578232+00	6972	completed				+14049526760		43	2017-11-08 17:22:10.208838	2017-11-08 17:22:53.558242	CA99bb1fe6afd0dea4e75c18d4f5c91f8a	\N	153			0	inbound	+17707665732	133	10.1473269462585449	\N	new lead		13	\N	\N	4042
2016-11-08 22:44:35.038256+00	2016-11-08 22:53:45.435257+00	2811	completed				+12817609381		549	2016-11-08 22:44:35.036944	2016-11-08 22:53:44.508106	CA1102d9559e12cc5abd21f7748f572f61	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REa2e81269e7047b0e5fa514844772cb7e	0	inbound	+18557240606	49	1.83542704582214355	null	new lead		1	\N	\N	4044
2016-11-03 23:09:06.20811+00	2016-11-03 23:10:54.050609+00	2677	completed				+12145321277		107	2016-11-03 23:09:06.207007	2016-11-03 23:10:53.644109	CA6364c44cedc41526bbd18ebc54684836	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REf7a34061efda677f2321f562b3466be7	0	inbound	+18557240606	49	1.92040896415710449	null	new lead		1	\N	\N	4046
2016-08-15 13:56:18.94003+00	2016-12-10 00:55:45.165255+00	1483	completed				+16102876827		14	2016-08-15 13:56:18.938446	2016-08-15 13:56:33.245854	CA4916171e777a0415aea578b959e2d7f5	\N	24			0	inbound	+18557129406	\N	1.0930628776550293	null	new lead		3	\N	\N	4047
2016-08-15 13:56:51.666941+00	2016-12-10 00:55:45.165262+00	1484	completed				+16102876827		15	2016-08-15 13:56:51.666022	2016-08-15 13:57:06.807691	CA3512437f863193400760f1e8bf878bea	\N	24			0	inbound	+18557129406	\N	1.7528839111328125	null	new lead		3	\N	\N	4047
2016-08-01 17:27:04.076844+00	2016-12-10 00:55:45.164962+00	1078	completed				+16102876827		106	2016-08-01 17:27:04.07547	2016-08-01 17:28:49.866861	CA6ea247ec34c9b575de2ce8b3b2fa1aca	\N	24			0	inbound	+18557129406	\N	2.32607722282409668	null	new lead		3	\N	\N	4047
2017-04-04 00:27:26.874691+00	2017-11-29 18:38:53.213299+00	3679	completed				+19728783644		24	2017-04-04 00:27:26.872666	2017-04-04 00:27:50.768514	CAbc412eacbd9e146ad90f44f5f17eb965	\N	105			0	inbound	+12146922088	\N	5.99232196807861328	\N	new lead	hanford jeffrey	9	\N	\N	4048
2017-04-15 17:34:51.757473+00	2017-11-29 18:38:53.214036+00	3966	completed				+15058008124		302	2017-04-15 17:34:51.755752	2017-04-15 17:39:53.544698	CAe0bf937bc4b3cf0d9bdb26bace56c0a9	\N	\N			0	inbound	+12146922088	\N	5.34809398651123047	\N	new lead	wireless caller	9	\N	\N	4054
2017-05-15 20:07:50.997148+00	2017-05-15 20:09:26.707635+00	5081	completed				+14693246650		95	2017-05-15 20:07:50.995256	2017-05-15 20:09:25.614194	CAe485e2981c014542bd458315469dbbb8	\N	132		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE217a4d2b4a545b8810e66823519c1ac9	0	inbound	+18172104002	126	4.76067304611206055	\N	new lead	alvarez manuel	12	\N	\N	4056
2017-04-13 21:57:19.728128+00	2017-11-29 18:38:49.804888+00	3896	completed				+18177054292		123	2017-04-13 21:57:19.725801	2017-04-13 21:59:22.230759	CAe0570806dc706ce1326e7a3c7bfd1076	\N	\N			0	inbound	+12147122250	\N	3.22790694236755371	\N	new lead		9	\N	\N	4060
2016-07-15 17:57:01.673525+00	2017-11-29 18:31:41.49043+00	875	completed				+17408521386		27	2016-07-15 17:57:01.67209	2016-07-15 17:57:28.203082	CA3c421f7688c5dc5f20da172853483ff2	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REb5bb9781133f420b2145cea56021124c	0	inbound	+18552959002	\N	13.3076090812683105	null	do not contact		1	\N	\N	4061
2016-11-01 15:47:04.133468+00	2016-11-01 15:49:16.47453+00	2468	completed				+18172231831		131	2016-11-01 15:47:04.132077	2016-11-01 15:49:14.866829	CAc3033aebce961bea6a2da052564e9d4e	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE9846fcf4a8adbf8060ae78a343be49f4	0	inbound	+18557240606	49	1.5892341136932373	null	new lead		1	\N	\N	4062
2016-11-03 22:20:43.094665+00	2017-01-27 21:12:23.813953+00	2669	completed				+18172231831		209	2016-11-03 22:20:43.093441	2016-11-03 22:24:12.184484		\N	\N			0	outbound	+18555343978	48	\N	null	new lead		1	\N	\N	4062
2016-11-03 22:15:45.964505+00	2017-01-27 21:12:23.813946+00	2667	completed				+18172231831		93	2016-11-03 22:15:45.963319	2016-11-03 22:17:19.339539		\N	\N			0	outbound	+18557240606	49	\N	null	new lead		1	\N	\N	4062
2016-08-12 19:53:33.444126+00	2016-08-15 19:19:00.101615+00	1459	missed	Johnny	Stewart	1@1.com	+13303320900		\N	2016-08-12 19:53:33.443171	\N		ee869226-e246-4ab4-aaaa-e9403e2ddd39	\N			0	outbound	+18555983683	\N	\N	{}	application submitted - credit union		1	\N	\N	4067
2016-08-15 12:56:22.362038+00	2017-11-29 18:32:13.821807+00	1482	completed	Johnny	Stewart	1@1.com	+13303320900		47	2016-08-15 12:56:22.360935	2016-08-15 12:57:09.692559		\N	16			0	outbound	+18555983683	\N	\N	null	application submitted - credit union		1	\N	\N	4067
2016-08-15 14:32:06.25355+00	2017-11-29 18:32:13.821814+00	1490	missed	Johnny	Stewart	1@1.com	+13303320900		14	2016-08-15 14:32:06.252057	2016-08-15 14:32:20.60912		\N	16			0	outbound	+18555983683	\N	\N	null	application submitted - credit union		1	\N	\N	4067
2016-08-12 19:38:15.588157+00	2017-11-29 18:32:13.821778+00	1458	completed				+13303320900		876	2016-08-12 19:38:15.585893	2016-08-12 19:52:51.086555	CAaec57681d83d9b58bdf95d85ba5d4fb4	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REe70a61f6e497918939d0b6db93d97809	0	inbound	+18555983683	\N	8.82781195640563965	null	application submitted - credit union		1	\N	\N	4067
2016-08-15 19:05:17.676016+00	2017-11-29 18:32:13.821832+00	1507	completed	Johnny	Stewart	1@1.com	+13303320900		42	2016-08-15 19:05:17.674734	2016-08-15 19:05:59.963552		\N	16			0	outbound	+18555983683	\N	\N	null	application submitted - credit union		1	\N	\N	4067
2016-07-30 11:35:47.220717+00	2016-07-30 11:35:47.256975+00	1056	missed	Adam	Ward	lordwards@yahoo.com	+15133825139		\N	2016-07-30 11:35:47.219511	\N		25d0200e-983d-4413-94ae-eb664b99711c	\N			0	outbound	+18556311490	\N	\N	{}	new lead		1	\N	\N	4068
2017-11-25 04:25:03.960319+00	2017-11-25 04:25:04.330607+00	7198	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:25:03.959153	2017-11-25 04:25:04.321871	CAadb5501448f64cc5e5123b5af940a43d	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:25:05.382916+00	2017-11-25 04:25:05.724658+00	7199	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:25:05.381492	2017-11-25 04:25:05.717069	CA0c3f0eb9ab16e9f678f3a6053d6147c7	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:25:06.935774+00	2017-11-25 04:25:07.167154+00	7200	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:25:06.934409	2017-11-25 04:25:07.159469	CAca8d0abd6ce7bf1bb9ec56c5538fff3f	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:25:08.4156+00	2017-11-25 04:25:08.817598+00	7201	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:25:08.413772	2017-11-25 04:25:08.807496	CA8c2096ef4dfd62c808f55af4cff78205	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:25:10.754122+00	2017-11-25 04:25:11.098478+00	7202	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:25:10.752303	2017-11-25 04:25:11.085784	CAf60ac8a71ed02fe354d3b5a060e272c1	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:25:15.253416+00	2017-11-25 04:25:15.481967+00	7204	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:25:15.25196	2017-11-25 04:25:15.474079	CA7435fffcb2a06b27139b380c0072ee54	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:25:17.409151+00	2017-11-25 04:25:17.738594+00	7205	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:25:17.408026	2017-11-25 04:25:17.729064	CAa885c282300b6dab4ec906e3ed56e6a2	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:25:19.424968+00	2017-11-25 04:25:19.700754+00	7206	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:25:19.423818	2017-11-25 04:25:19.692019	CA7ff2f97ff339c05266e3030e4c29b338	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:25:21.293205+00	2017-11-25 04:25:21.916041+00	7207	missed	Brittany 	Vann		+16788766226		1	2017-11-25 04:25:21.29133	2017-11-25 04:25:21.906955	CA0ccf3793b5fdefce813f0a046ba3507b	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:25:22.807964+00	2017-11-25 04:25:23.030808+00	7208	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:25:22.806613	2017-11-25 04:25:23.022987	CAfc5617b4a470499c112d9c3d1e0ff03e	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:25:24.200621+00	2017-11-25 04:25:24.412962+00	7209	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:25:24.198949	2017-11-25 04:25:24.403941	CAb18d4477befafd8b4630c9a69f780e9e	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:25:25.589122+00	2017-11-25 04:25:25.875081+00	7210	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:25:25.587916	2017-11-25 04:25:25.8668	CA55c99f91ec9c9274c2b233346bcb27dd	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:25:27.280692+00	2017-11-25 04:25:27.495065+00	7211	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:25:27.279454	2017-11-25 04:25:27.48723	CAa4fd63e5f9c902380782ab56c1c59cfd	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:25:28.834215+00	2017-11-25 04:25:29.046681+00	7212	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:25:28.832467	2017-11-25 04:25:29.038441	CA4fa3bb689ca9422e908ea99a359f9037	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:25:30.363954+00	2017-11-25 04:25:30.609173+00	7213	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:25:30.362819	2017-11-25 04:25:30.600134	CAd1a3478584846701c03f0d351be35eaa	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:25:31.71814+00	2017-11-25 04:25:31.925775+00	7214	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:25:31.71672	2017-11-25 04:25:31.918912	CAf5e5dfd5842499a743ba231f3b89644d	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:25:33.972728+00	2017-11-25 04:25:34.178671+00	7215	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:25:33.971354	2017-11-25 04:25:34.170222	CA8dd2974ef41b125c907a6af2c1847c8c	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:27:38.226657+00	2017-11-25 04:27:38.876608+00	7216	missed	Brittany 	Vann		+16788766226		1	2017-11-25 04:27:38.224817	2017-11-25 04:27:38.866954	CA5c7c5dbcb28344006bb9b05f80691837	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:27:41.668045+00	2017-11-25 04:27:41.920197+00	7218	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:27:41.666717	2017-11-25 04:27:41.911277	CAbeaf9d76733decc50c07f93f95e66ab2	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:27:43.063894+00	2017-11-25 04:27:43.489229+00	7219	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:27:43.062398	2017-11-25 04:27:43.481502	CA65d7b153124bc61828159d9641698593	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:27:44.221252+00	2017-11-25 04:27:44.493336+00	7220	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:27:44.220032	2017-11-25 04:27:44.484992	CA59be7e700f4eaa6ad429cf3cf031e922	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:27:45.822919+00	2017-11-25 04:27:46.047678+00	7221	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:27:45.821061	2017-11-25 04:27:46.03562	CA6952b6e0bbdbea8388615603bce77c96	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:27:47.473208+00	2017-11-25 04:27:47.686454+00	7222	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:27:47.471554	2017-11-25 04:27:47.677745	CAc0db2548f0ad5803e7bb8b51cb4ad70f	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:27:48.926494+00	2017-11-25 04:27:49.185893+00	7223	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:27:48.924206	2017-11-25 04:27:49.175806	CA962a5c3ad7159ba2f760ca45764fa095	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:27:50.963724+00	2017-11-25 04:27:51.398737+00	7224	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:27:50.962501	2017-11-25 04:27:51.390072	CAe5d822224b81e192d5f55be54a730064	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:27:53.665668+00	2017-11-25 04:27:53.94198+00	7225	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:27:53.664476	2017-11-25 04:27:53.931937	CA9a6c5be278087429ef6a8a3eddfca214	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:27:55.669425+00	2017-11-25 04:27:55.940823+00	7226	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:27:55.668184	2017-11-25 04:27:55.931815	CA88492833a83e3f912a76b0bea73e8a9a	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:27:57.584328+00	2017-11-25 04:27:58.138823+00	7227	missed	Brittany 	Vann		+16788766226		1	2017-11-25 04:27:57.582874	2017-11-25 04:27:58.129345	CA1cfc2c8d312cdc8f7bd237e0c3115b75	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:27:59.551+00	2017-11-25 04:27:59.78077+00	7228	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:27:59.549369	2017-11-25 04:27:59.770068	CA6136f25441c137da61b2fb4ee4bca9ea	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:28:01.569832+00	2017-11-25 04:28:01.822427+00	7229	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:28:01.568603	2017-11-25 04:28:01.813617	CA2c1c8b46708b5ff55d0be1e2c498cdb5	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:28:03.308543+00	2017-11-25 04:28:03.565551+00	7230	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:28:03.306531	2017-11-25 04:28:03.556342	CA8085dc6629294d725e702fc2780908f8	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:28:04.770366+00	2017-11-25 04:28:05.096919+00	7231	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:28:04.768828	2017-11-25 04:28:05.082616	CAa78327d4ae6b6da217424a668c41e205	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:28:06.170502+00	2017-11-25 04:28:06.378276+00	7232	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:28:06.16935	2017-11-25 04:28:06.367848	CAc1fc4b94837c31db4afa0e43a919a4a7	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:28:07.515663+00	2017-11-25 04:28:07.774618+00	7233	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:28:07.514292	2017-11-25 04:28:07.765574	CAd3d024a456861b08110fc7370d61f2fd	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:28:08.47688+00	2017-11-25 04:28:08.683978+00	7234	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:28:08.475734	2017-11-25 04:28:08.672601	CAdaf8183e8f9fdb6548398937dcc116e8	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:28:09.53678+00	2017-11-25 04:28:09.750141+00	7235	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:28:09.535561	2017-11-25 04:28:09.732965	CAad4b4482292ef8c3fa86dbb349dd8ca4	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:28:10.896509+00	2017-11-25 04:28:11.133421+00	7236	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:28:10.894982	2017-11-25 04:28:11.119177	CAebefd77751e09a794ce771c78cb52a8b	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:28:13.568518+00	2017-11-25 04:28:13.778501+00	7237	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:28:13.56739	2017-11-25 04:28:13.770796	CAaded59fbebc30d7e6bfd3e412f8075e5	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:29:00.770581+00	2017-11-25 04:29:01.078537+00	7238	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:29:00.768799	2017-11-25 04:29:01.068393	CAe326dbb047d97c64a6454ba71a0125c6	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:29:02.290081+00	2017-11-25 04:29:02.88841+00	7239	missed	Brittany 	Vann		+16788766226		1	2017-11-25 04:29:02.288782	2017-11-25 04:29:02.879652	CA043abf2401a65dcd6c54f0147169688f	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:29:04.120151+00	2017-11-25 04:29:04.455088+00	7240	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:29:04.118645	2017-11-25 04:29:04.446215	CAe717e3fbc1dfe17448c58de262e08e14	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:29:05.619224+00	2017-11-25 04:29:06.016072+00	7241	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:29:05.617858	2017-11-25 04:29:05.998415	CAd2d021106e30207dc26799c02df7e11a	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-02 13:20:23.510929+00	2017-11-02 13:25:48.133845+00	6898	completed	Brittany 	Vann	Vannbritt@yahoo.com	+16788766226		314	2017-11-02 13:20:23.509393	2017-11-02 13:25:47.449045	CA96dd147f688507b6e0ac331405966ff7	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REc04a2b51f0826fd6856b810d741577a5	1	outbound	+17704009016	\N	13.1971640586853027	{}	new lead		13	\N	\N	4070
2017-11-25 04:27:40.187752+00	2017-11-25 04:27:40.560146+00	7217	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:27:40.186338	2017-11-25 04:27:40.552088	CA46ea7aacc63697c4304ddbdad9490f52	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:25:12.870934+00	2017-11-25 04:25:13.358465+00	7203	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:25:12.869744	2017-11-25 04:25:13.344702	CA15b3e1c35148add44df931f103200a3a	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:24:56.512371+00	2017-11-25 04:24:57.034761+00	7194	missed	Brittany 	Vann		+16788766226		1	2017-11-25 04:24:56.509953	2017-11-25 04:24:57.022767	CAf38c46300d1a21ecace692c3890faee6	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:24:58.358926+00	2017-11-25 04:24:58.922834+00	7195	missed	Brittany 	Vann		+16788766226		1	2017-11-25 04:24:58.357516	2017-11-25 04:24:58.911714	CA7e346bc1e97f26bc1627d0825546a5d2	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:25:00.158044+00	2017-11-25 04:25:00.898385+00	7196	missed	Brittany 	Vann		+16788766226		1	2017-11-25 04:25:00.156776	2017-11-25 04:25:00.890736	CA8d4adbba9a73de5f2e68292a375c4ff5	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:25:02.41638+00	2017-11-25 04:25:03.094224+00	7197	missed	Brittany 	Vann		+16788766226		1	2017-11-25 04:25:02.414514	2017-11-25 04:25:03.078809	CA4e9f1f943a9fb3328b0ca1ec64bdac67	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:29:07.164616+00	2017-11-25 04:29:07.430377+00	7242	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:29:07.163	2017-11-25 04:29:07.417466	CA31c0d60a8f7883a1719f34ab2b4e2cb9	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:29:08.685404+00	2017-11-25 04:29:08.993967+00	7243	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:29:08.683442	2017-11-25 04:29:08.984179	CA01d7daf0ab0472265e1ced868b453b70	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:29:10.118229+00	2017-11-25 04:29:10.353673+00	7244	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:29:10.116784	2017-11-25 04:29:10.34489	CA7224ecc16b145a3e718d0f44bf4c6713	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:29:11.568162+00	2017-11-25 04:29:11.909683+00	7245	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:29:11.566465	2017-11-25 04:29:11.900709	CA1d1542a260331731991f3c5b995a0583	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:29:13.599162+00	2017-11-25 04:29:13.840613+00	7246	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:29:13.597349	2017-11-25 04:29:13.832697	CA70f534e4240000e9d61d532fed83d3b2	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:29:15.041198+00	2017-11-25 04:29:15.406374+00	7247	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:29:15.040055	2017-11-25 04:29:15.396827	CAaccd29b001ca67252d691ca9582a485a	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:29:17.119524+00	2017-11-25 04:29:17.500239+00	7248	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:29:17.1174	2017-11-25 04:29:17.491918	CA3b3e151573356a64c095e3afc4643817	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:29:19.238114+00	2017-11-25 04:29:19.444618+00	7249	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:29:19.236781	2017-11-25 04:29:19.436229	CA95fc093bf077af441176b1091d0b6950	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:29:20.895041+00	2017-11-25 04:29:21.171627+00	7250	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:29:20.893913	2017-11-25 04:29:21.163544	CA7794bfb444b514f426b01eabfbc4f7e8	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:29:22.507386+00	2017-11-25 04:29:22.802505+00	7251	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:29:22.506143	2017-11-25 04:29:22.785464	CA238c254d0a942a9ac7a4c7ea0465c716	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:29:24.194526+00	2017-11-25 04:29:24.733751+00	7252	missed	Brittany 	Vann		+16788766226		1	2017-11-25 04:29:24.193328	2017-11-25 04:29:24.724739	CAb9f4dd4440ee36143efe24cfb02f7fca	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:29:25.812047+00	2017-11-25 04:29:26.099424+00	7253	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:29:25.810921	2017-11-25 04:29:26.090625	CAe04e3fa5fc6edd8b5c15371752ce302f	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:29:27.314502+00	2017-11-25 04:29:27.615249+00	7254	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:29:27.313069	2017-11-25 04:29:27.603299	CAd7896a53f5cc7b1647be0feea8fde245	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2016-08-10 14:10:00.704832+00	2017-01-27 21:12:23.813021+00	1380	completed				+17249819427		106	2016-08-10 14:10:00.703757	2016-08-10 14:11:46.246133		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	4089
2017-11-25 04:29:28.748438+00	2017-11-25 04:29:29.093959+00	7255	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:29:28.7472	2017-11-25 04:29:29.079908	CAe09aa4221badb96417e7e611e9c8657f	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:29:30.253868+00	2017-11-25 04:29:30.469235+00	7256	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:29:30.252235	2017-11-25 04:29:30.454925	CAad6312a78f3198602f04ceba709662b4	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:29:31.640844+00	2017-11-25 04:29:31.850464+00	7257	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:29:31.639314	2017-11-25 04:29:31.842656	CA79d517d67d8a98c03ec4a9f52c321fac	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:29:33.011973+00	2017-11-25 04:29:33.238621+00	7258	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:29:33.010633	2017-11-25 04:29:33.224878	CA811b571c94d20f9e8a042885cb1b382c	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 04:29:35.193639+00	2017-11-25 04:29:35.389992+00	7259	missed	Brittany 	Vann		+16788766226		0	2017-11-25 04:29:35.192277	2017-11-25 04:29:35.381706	CA1efdb674a40197c60fa3000bcd1fc896	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4070
2017-11-25 18:26:34.169136+00	2017-11-25 18:38:06.4794+00	7292	completed	Brittany 	Vann		+16788766226		692	2017-11-25 18:26:34.167227	2017-11-25 18:38:06.476688	CA19bf4fc45e3c067612bdc152ce5db80e	\N	153			0	inbound	+17707665732	133	344.538779020309448	\N	new lead		13	\N	\N	4070
2017-11-25 18:39:51.034129+00	2017-11-25 18:40:19.894688+00	7320	completed	Brittany 	Vann		+16788766226		29	2017-11-25 18:39:51.031916	2017-11-25 18:40:19.884652	CAbb7a3201c4a7486b00746cf26c52d6a0	\N	153			0	inbound	+17707665732	133	8.73462891578674316	\N	new lead		13	\N	\N	4070
2017-11-25 18:43:18.355272+00	2017-11-25 18:44:25.085614+00	7322	completed	Brittany 	Vann		+16788766226		67	2017-11-25 18:43:18.353461	2017-11-25 18:44:25.069887	CA30e265bb45e942e27587e370cb0293d2	\N	150			0	inbound	+17707665732	133	28.4592359066009521	\N	new lead		13	\N	\N	4070
2017-11-25 18:44:30.292212+00	2017-11-25 18:45:15.730631+00	7323	completed	Brittany 	Vann		+16788766226		45	2017-11-25 18:44:30.290879	2017-11-25 18:45:15.715022	CAfdc6f75e9768034993df05445b3489d0	\N	150			0	inbound	+17707665732	133	9.93631601333618164	\N	new lead		13	\N	\N	4070
2016-10-18 19:23:45.343239+00	2016-12-10 01:01:51.441121+00	2314	completed				+16195179609		388	2016-10-18 19:23:45.340327	2016-10-18 19:30:13.595917	CA83d2e5f426ae294bb26bb53060d7dd0b	\N	50			0	inbound	+18559693782	\N	1.92443299293518066	null	new lead		3	\N	\N	4071
2016-09-06 13:04:34.876702+00	2016-12-09 17:06:53.905858+00	1888	completed				+16098962475		234	2016-09-06 13:04:34.874451	2016-09-06 13:08:28.903817	CAccbcae04be37ee4a79d061b17d7a01b0	\N	21			0	inbound	+18558021330	\N	2.01181817054748535	null	new lead		3	\N	\N	4074
2016-12-13 11:01:34.354254+00	2016-12-13 11:02:09.680672+00	3076	completed				+19722708084		35	2016-12-13 11:01:34.352489	2016-12-13 11:02:09.214014	CAb3f2712d21c11d8dbcb8d00f99abe709	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REf7f120c726d314cf3da4deab3a8e4f75	0	inbound	+18557240606	49	2.53590893745422363	null	new lead		1	\N	\N	4076
2016-12-13 11:32:01.372932+00	2016-12-13 11:32:01.402287+00	3077	missed	John	Webb	horns4ever@sbcglobal.net	+19722708084		\N	2016-12-13 11:32:01.37172	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	4076
2017-05-15 20:21:36.471585+00	2017-11-29 18:38:49.811586+00	5083	missed				+19728915612		6	2017-05-15 20:21:36.47038	2017-05-15 20:21:42.184968	CAac286aca09df9385a747dfb058e430d1	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	wells frankie	9	\N	\N	4081
2017-05-17 19:30:41.724086+00	2017-11-29 18:38:49.812047+00	5166	missed				+19728915612		6	2017-05-17 19:30:41.722255	2017-05-17 19:30:47.398792	CAe8c7f9f7bb25791b495a86c910a34b62	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	wells frankie	9	\N	\N	4081
2017-03-29 22:52:56.426991+00	2017-11-29 18:38:53.213148+00	3627	completed				+19728915612		9	2017-03-29 22:52:56.425102	2017-03-29 22:53:04.991984	CA3c6a5d96c4a27760659f36929077a6da	\N	105			0	inbound	+12146922088	\N	3.46681594848632812	\N	new lead	wells frankie	9	\N	\N	4081
2017-04-27 21:55:19.046904+00	2017-11-29 18:38:53.21471+00	4410	completed				+19728915612		82	2017-04-27 21:55:19.045784	2017-04-27 21:56:41.1778	CA6a63c7a8adef4d1755165133b0ebdde9	\N	\N			0	inbound	+12146922088	\N	5.05265903472900391	\N	new lead	wells frankie	9	\N	\N	4081
2016-08-10 13:57:09.18968+00	2017-11-29 18:32:13.821707+00	1378	completed		Genais		+17249819427		531	2016-08-10 13:57:09.188201	2016-08-10 14:06:00.147127	CAbce9050b9a99f4528f3d708d8796973d	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REe4fcd83d4fe4ba1424cbc8da98cad719	0	inbound	+18555983683	\N	28.9601190090179443	null	general interest		1	\N	\N	4089
2016-10-05 19:23:12.116274+00	2016-12-10 01:00:18.568469+00	2195	completed				+16194433939		269	2016-10-05 19:23:12.115016	2016-10-05 19:27:41.56781	CA5cb7c2f0748ad752998af324383f0290	\N	56			0	inbound	+18556775511	\N	11.8958659172058105	null	new lead		3	\N	\N	4090
2016-10-31 20:54:33.02189+00	2016-10-31 21:07:51.44828+00	2423	completed				+17048579224		796	2016-10-31 20:54:33.020734	2016-10-31 21:07:49.200808	CA861b3fe7a9a5bf87706978313bd34860	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE9049e26863843ee34277ceb4058081e5	0	inbound	+18557240606	49	1.62396001815795898	null	new lead		1	\N	\N	4092
2016-11-01 13:13:59.273989+00	2016-11-01 13:40:16.575779+00	2453	completed				+17048579224		1573	2016-11-01 13:13:59.271354	2016-11-01 13:40:12.086899	CAf7fde849625600fe6a12ef622442576c	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE0263a93aba92fe72f1e83b1e93a318ce	0	inbound	+18557240606	49	2.03431010246276855	null	new lead		1	\N	\N	4092
2016-09-01 19:46:34.278703+00	2016-12-10 01:01:51.440743+00	1845	completed				+16197337788		193	2016-09-01 19:46:34.27775	2016-09-01 19:49:46.986349	CAf224d3c9d9ea19b8e535bb5ae1813b08	\N	50			0	inbound	+18559693782	\N	1.96882915496826172	null	new lead		3	\N	\N	4095
2017-12-13 19:18:42.854012+00	2017-12-13 19:30:19.114128+00	7852	completed	Sheryl	Sklare	csklare@att.net	+13307306493		692	2017-12-13 19:18:42.851856	2017-12-13 19:30:19.112461	CAf432646025e4c2983f77aa11c8080eb1	243bc1c1-c430-4ccb-b9d9-71662ebbb896	158			1	outbound	+18558645656	\N	2.81108808517456055	{}	new lead		15	\N	\N	4096
2017-04-14 15:41:38.447768+00	2017-11-29 18:38:49.804909+00	3916	completed				+19412562152		105	2017-04-14 15:41:38.445623	2017-04-14 15:43:23.907079	CA4bf66942c7870159e843b510f82c7848	\N	127			0	inbound	+12147122250	\N	0.895618200302124023	\N	new lead		9	\N	\N	4098
2017-08-14 12:15:19.776336+00	2017-08-14 12:15:20.503636+00	6018	missed				+14702775324		1	2017-08-14 12:15:19.773694	2017-08-14 12:15:20.49436	CA96bafc7826edfc67b40ebdddfa8679ab	\N	\N			0	inbound	+17707665699	134	\N	\N	new lead		13	\N	\N	4099
2016-11-01 18:16:47.299766+00	2016-11-01 18:27:34.337324+00	2484	completed				+17069089294		646	2016-11-01 18:16:47.29821	2016-11-01 18:27:33.287234	CA5d938aac516a567096f53aa58f9bbb2a	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REf20b88cd5c42435f802c2ff67a3043af	0	inbound	+18557240606	49	1.86405706405639648	null	new lead		1	\N	\N	4100
2017-12-03 00:56:57.364897+00	2017-12-03 00:57:11.49504+00	7504	missed				+17705473730		14	2017-12-03 00:56:57.363646	2017-12-03 00:57:11.484436	CA097da78dec95980699b9b8f5490429a3	\N	\N			0	inbound	+17706597466	137	\N	\N	new lead		14	\N	\N	4101
2016-08-02 22:06:25.923961+00	2017-11-29 18:31:37.36849+00	1158	missed				+18054432977		34	2016-08-02 22:06:25.922066	2016-08-02 22:07:00.118718	CA19a7067c76c7961a60339cfc5e3e2f0f	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE5276eddb5d8fefcfdac55c73e7fa1eca	0	inbound	+18555472453	\N	\N	null	general interest		1	\N	\N	4103
2016-08-03 16:46:24.783301+00	2017-11-29 18:31:37.36854+00	1173	completed	Anthony	Zalbracco		+18054432977		69	2016-08-03 16:46:24.781631	2016-08-03 16:47:33.749142		\N	\N			0	outbound	+18555472453	\N	\N	null	general interest		1	\N	\N	4103
2016-08-17 17:44:49.345191+00	2017-01-27 21:12:23.813407+00	1561	completed	Anthony	Zalbracco		+18054432977		102	2016-08-17 17:44:49.34351	2016-08-17 17:46:31.299496		\N	\N			0	outbound	+18555343978	48	\N	null	general interest		1	\N	\N	4103
2016-06-30 10:43:58.223893+00	2016-06-30 11:07:55.196142+00	666	completed	Rosemary	Davis	rdavis44511@yahoo.com	+13305190482		\N	2016-06-30 10:43:58.222831	\N		ee869226-e246-4ab4-aaaa-e9403e2ddd39	\N			0	outbound	+18555983683	\N	\N	{}	new lead		1	\N	\N	4104
2016-08-11 18:51:53.01199+00	2016-12-10 00:55:45.165227+00	1420	completed				+16102794128		186	2016-08-11 18:51:53.009966	2016-08-11 18:54:58.677979	CA28539bc5321a9136a39e3b49f5fc4d3a	\N	24			0	inbound	+18557129406	\N	2.15524911880493164	null	new lead		3	\N	\N	4105
2017-04-03 17:50:30.448468+00	2017-04-03 18:14:19.443431+00	3669	missed				+12146204556		130	2017-04-03 17:50:30.446899	2017-04-03 17:52:40.508327	CA969aa63e71b0f21b54c6acf51f8cacca	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE8571db7bddef7406e6b0800c09ca203e	0	inbound	+18177569010	124	1407.12471008300781	\N	new lead	cell phone   tx	12	\N	\N	4109
2017-09-27 22:47:34.056275+00	2017-09-27 23:01:03.82245+00	6501	missed				+17066129500		88	2017-09-27 22:47:34.054094	2017-09-27 22:49:01.922067	CAfcc13768b2bcfd86ae95f18ef3b303b5	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE9ebcea8f22cacd4140887f0e4c07af83	0	inbound	+17707665732	133	\N	\N	select status		13	\N	\N	4110
2017-10-10 18:34:46.596006+00	2017-10-10 18:38:47.58314+00	6649	completed				+17069698382		241	2017-10-10 18:34:46.593051	2017-10-10 18:38:47.559209	CAb75ab472254fd11761135794bd21b520	\N	150			0	inbound	+17707665732	133	11.219149112701416	\N	new lead		13	\N	\N	4112
2016-11-01 21:50:40.566372+00	2016-11-01 21:50:40.603226+00	2512	missed	Kimberly	Street	jmkds@aol.com	+19724944335		\N	2016-11-01 21:50:40.565148	\N		0dc9a073-40fe-4edf-bf33-f584c51ae9ed	\N			0	outbound	+18557240606	\N	\N	{}	new lead		1	\N	\N	4115
2017-12-02 18:47:20.316979+00	2017-12-02 18:47:20.355166+00	7495	missed	Marcos	Costilla	mark@greystone-insurance.com	+12143549138		\N	2017-12-02 18:47:20.315289	\N		243bc1c1-c430-4ccb-b9d9-71662ebbb896	\N			0	outbound	+18558645656	\N	\N	{}	new lead		15	\N	\N	4117
2017-10-05 05:14:13.131098+00	2017-10-11 14:26:36.803967+00	6588	missed	Jerri 	Strickland 	Badmonkeyred@gmail.com	+16789438726		\N	2017-10-05 05:14:13.129446	\N		0427608a-ae09-4db0-a1e8-374423ee28c3	\N			0	outbound	+17704009016	\N	\N	{}	select status		13	\N	\N	4118
2017-10-11 19:22:56.724646+00	2017-10-11 19:24:47.418187+00	6666	completed	Jerri 	Strickland 	Badmonkeyred@gmail.com	+16789438726		90	2017-10-11 19:22:56.722527	2017-10-11 19:24:46.352454	CA4024eadb2e406c53cc8e5569e5d6c4bf	0427608a-ae09-4db0-a1e8-374423ee28c3	150		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/REe6d553dbe8ff188a3312b6c0733c3434	1	outbound	+17704009016	\N	23.6940469741821289	{}	select status		13	\N	\N	4118
2017-02-28 20:58:30.185207+00	2017-11-29 18:31:56.600281+00	3262	missed				+15707352706		8	2017-02-28 20:58:30.179822	2017-02-28 20:58:38.127119	CA1a143bddacf0ad4d7da01ac1e8e7694b	\N	\N			0	inbound	+18556311397	\N	1.96702790260314941	\N	new lead		1	\N	\N	4121
2017-01-10 15:02:18.956873+00	2017-11-29 18:31:56.60026+00	3114	missed				+15707352706		8	2017-01-10 15:02:18.954787	2017-01-10 15:02:26.474513	CA0ea7903e75c27516627efac25b8afd18	\N	\N			0	inbound	+18556311397	\N	\N	null	new lead		1	\N	\N	4121
2017-05-22 13:50:12.230296+00	2017-11-29 18:38:49.812479+00	5264	completed				+16129918151		107	2017-05-22 13:50:12.228936	2017-05-22 13:51:58.765614	CA7b978a6bfef93e614f45ce39e9630c60	\N	125			0	inbound	+12147122250	\N	1.12742400169372559	\N	new lead	wireless caller	9	\N	\N	4123
2017-05-22 18:43:26.663203+00	2017-11-29 18:38:49.812622+00	5288	missed				+16129918151		36	2017-05-22 18:43:26.661352	2017-05-22 18:44:03.144958	CAed072a00e1ffa2750487163bc50eaabc	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	wireless caller	9	\N	\N	4123
2017-04-20 15:14:08.346705+00	2017-11-29 18:38:49.805896+00	4125	missed				+16129918151		37	2017-04-20 15:14:08.344674	2017-04-20 15:14:45.523556	CA176c7202a8b33e372d8f070760ef9c4a	\N	\N			0	inbound	+12147122250	\N	\N	\N	new lead	wireless caller	9	\N	\N	4123
2017-04-20 15:22:37.361272+00	2017-11-29 18:38:49.80591+00	4127	completed				+16129918151		83	2017-04-20 15:22:37.359795	2017-04-20 15:24:00.746717	CA160e36ed10c6ce2f4d65a0e67e884d8b	\N	127			0	inbound	+12147122250	\N	1.14615201950073242	\N	new lead	wireless caller	9	\N	\N	4123
2017-04-20 15:25:50.714662+00	2017-11-29 18:38:49.805917+00	4128	completed				+16129918151		204	2017-04-20 15:25:50.71283	2017-04-20 15:29:14.975523	CA7237d05ed1a5b59d018ed211187dc236	\N	\N			0	inbound	+12147122250	\N	5.01988887786865234	\N	new lead	wireless caller	9	\N	\N	4123
2017-05-22 13:49:00.280273+00	2017-11-29 18:38:49.812472+00	5263	completed				+16129918151		68	2017-05-22 13:49:00.278249	2017-05-22 13:50:08.591486	CAd4ea750fcf00e82da46200f660127c66	\N	125			0	inbound	+12147122250	\N	2.24663805961608887	\N	new lead	wireless caller	9	\N	\N	4123
2017-05-22 15:12:57.436847+00	2017-11-29 18:38:49.812493+00	5266	completed				+16129918151		64	2017-05-22 15:12:57.433551	2017-05-22 15:14:01.625419	CA6ca797c2ee2d4c5c7f7d3c6bfe18635e	\N	125			0	inbound	+12147122250	\N	2.63026213645935059	\N	new lead	wireless caller	9	\N	\N	4123
2017-05-22 15:14:01.906684+00	2017-11-29 18:38:49.8125+00	5267	completed				+16129918151		111	2017-05-22 15:14:01.904332	2017-05-22 15:15:52.664012	CAac5a143d823444664be88d0a9111b9bf	\N	\N			0	inbound	+12147122250	\N	9.02809786796569824	\N	new lead	wireless caller	9	\N	\N	4123
2017-05-22 15:16:08.754496+00	2017-11-29 18:38:49.812507+00	5268	completed				+16129918151		84	2017-05-22 15:16:08.752258	2017-05-22 15:17:32.32842	CAbf8952ad28eee67768de9d1250c42cf2	\N	127			0	inbound	+12147122250	\N	2.38735699653625488	\N	new lead	wireless caller	9	\N	\N	4123
2017-04-14 20:20:37.458226+00	2017-08-17 14:35:21.044988+00	3941	completed				+13187623913		58	2017-04-14 20:20:37.455932	2017-04-14 20:21:35.933726	CAcc22c3966b31de6dd707446afdba0e84	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACf15133e5a18e109ba99252d4f2579fc4/Recordings/RE08033ebf01e9aee879ec7ae74f8687bb	0	inbound	+18177569010	124	16.3927791118621826	\N	new lead	freaky h	12	\N	\N	4126
2016-05-20 18:42:44.556061+00	2016-05-20 18:43:53.785881+00	138	completed	Larry	Whitfield	Lwhitfield1972@yahoo.com	+16619659600		57	2016-05-20 18:42:44.554395	2016-05-20 18:43:53.784553	CA27b7e101d56d94b0b9c5e37aadd64964	99186475-9344-4e80-b3b1-0ed2e7856585	17		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REd63e6dd932a35e36367d262654cd1a0a	1	outbound	+18555472453	\N	16.9460549354553223	{}	new lead		1	\N	\N	4127
2017-05-03 23:45:38.823103+00	2017-11-29 18:38:53.215078+00	4693	completed				+12145427844		483	2017-05-03 23:45:38.821284	2017-05-03 23:53:42.081793	CA9684d4f55031a1cf3df6c419c231591d	\N	133			0	inbound	+12146922088	\N	3.75815296173095703	\N	new lead	pezeshki mortez	9	\N	\N	4128
2017-05-03 23:11:27.621802+00	2017-11-29 18:38:53.215064+00	4689	completed				+12145427844		146	2017-05-03 23:11:27.619643	2017-05-03 23:13:54.073314	CA0adc1f112be2a82123cab44c094ed0fd	\N	\N			0	inbound	+12146922088	\N	9.31458115577697754	\N	new lead	pezeshki mortez	9	\N	\N	4128
2016-11-01 18:43:12.497682+00	2016-11-01 19:09:55.148634+00	2487	completed				+17703802773		1600	2016-11-01 18:43:12.496411	2016-11-01 19:09:52.086844	CAd972985d2f98a59dc50ca4c77c88205a	\N	76		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/RE8814e16ed2a013b983ee1310dc80ff6c	0	inbound	+18557240606	49	2.01386404037475586	null	new lead		1	\N	\N	4131
2016-11-04 15:35:45.679237+00	2017-01-27 21:12:23.813995+00	2697	completed				+17703802773		127	2016-11-04 15:35:45.677902	2016-11-04 15:37:52.204257		\N	\N			0	outbound	+18555343978	48	\N	null	new lead		1	\N	\N	4131
2016-11-04 16:21:25.365467+00	2017-01-27 21:12:23.814037+00	2705	completed				+17703802773		61	2016-11-04 16:21:25.363624	2016-11-04 16:22:26.463515	CAa4dd4c5bbd33141550873de401451e17	\N	\N		https://api.twilio.com/2010-04-01/Accounts/ACca75592ca35ad5652fa11f40314c10aa/Recordings/REae05f6c7d61da778c4cd4f71be22735c	0	inbound	+18555343978	48	7.78486895561218262	null	new lead		1	\N	\N	4131
2017-11-30 16:23:08.127578+00	2017-11-30 16:23:56.243765+00	7409	completed	Tamekia	Riden	Tamekia.riden@yahoo.com	+14044825147		38	2017-11-30 16:23:08.125717	2017-11-30 16:23:55.888517	CA0542361e72fbcb7e1bc2ff547d494ac1	0427608a-ae09-4db0-a1e8-374423ee28c3	153		https://api.twilio.com/2010-04-01/Accounts/ACe386bddbc6f8f20d23d5dbe313a76125/Recordings/RE07a78dfd9cc7eda14c10c53aecdb982c	1	outbound	+17704009016	\N	9.41234207153320312	{}	new lead		13	\N	\N	4132
\.


--
-- Name: leads_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('leads_id_seq', 8266, true);


--
-- Data for Name: messages; Type: TABLE DATA; Schema: public; Owner: -
--

COPY messages (created_on, updated_on, id, type, provider, provider_message_id, provider_message_date, "to", body_text, num_media_files, media_url, status, delivery_code, delivery_description, direction, inbound_id, partnership_account_id, contact_id, from_) FROM stdin;
2018-07-25 20:37:54.702857+00	2018-07-25 20:37:54.702877+00	1	sms	twilio	SM3ae270c488a842db8ddac042df2c4060	2018-07-25 20:37:54	+17732909650	Sorry we missed your call. Want us to reply by text message?			sent	\N	\N	outbound	159	4	3652	+13367394103
2018-07-25 20:39:04.340287+00	2018-07-25 20:39:04.340308+00	2	sms	twilio	SMd4f531ec7b51406a83751433acba0573	2018-07-25 20:39:04	+17732909650	Sorry we missed your call. Want us to reply by text message?			sent	\N	\N	outbound	159	4	3652	+13367394103
2018-07-25 20:44:02.975237+00	2018-07-25 20:44:02.975259+00	3	sms	twilio	SM37ddcdce3fa34bf683284f74e8d1a8bd	2018-07-25 20:44:02	+17732909650	Sorry we missed your call. Want us to reply by text message?			sent	\N	\N	outbound	159	4	3652	+13367394103
2018-07-25 20:46:11.497427+00	2018-07-25 20:46:11.497448+00	4	sms	twilio	SM712ec3747c56e68d88f978b537196e98	2018-07-25 20:46:11	+13367394103	Bobby is coming? 	0		recieved	\N	\N	inbound	159	4	3652	+17732909650
2018-07-25 20:48:01.424242+00	2018-07-25 20:48:01.424265+00	5	sms	twilio	SMa047711d24704d648264742d077b18fa	2018-07-25 20:48:01	+17732909650	Coming over or not?			sent	\N	\N	outbound	139	4	3652	+13367394103
2018-11-20 18:01:26.11889+00	2018-11-20 18:01:26.118922+00	6	sms	twilio	SM590c8b3d71d91b60adbf45479d62bcb9	2018-11-20 18:01:25	+13367394103	Sweet 	\N		received	\N	\N	inbound	160	4	3652	+17732909650
2018-11-20 18:01:26.81057+00	2018-11-20 18:01:26.810601+00	7	sms	twilio	SM73c8f4ef590e47e4ae595d75c4588625	2018-11-20 18:01:26	+17732909650	Thanks for the message. We'll be in touch. As soon as We can.	\N		sent	\N	\N	outbound	160	4	3652	+13367394103
2019-03-01 02:05:33.284442+00	2019-03-01 02:05:33.284462+00	8	sms	twilio	SMb3113bf780ee2b53141e23fb97ff9cf2	2019-03-01 02:05:33	+13367394103	Hello	\N		received	\N	\N	inbound	161	4	3652	+17732909650
2019-03-01 02:36:46.156655+00	2019-03-01 02:36:46.156676+00	9	sms	twilio	SM65a6d8afb88c400999250de2c720a25c	2019-03-01 02:36:46	+17732909650	Hi Cody, thanks for your form submission. We will review it and get back to you asap. Offshore-Unlimited Marine & Trailer	\N		sent	\N	\N	outbound	161	4	3652	+13367394103
2019-03-02 00:58:53.512069+00	2019-03-02 00:58:53.512088+00	10	sms	twilio	SM55a2bd60663843adb0cd221bc73e93d6	2019-03-02 00:58:53	+17732909650	Hi Bobby, thanks for your form submission. We will review it and get back to you asap. Offshore-Unlimited Marine & Trailer	\N		sent	\N	\N	outbound	161	4	3652	+13367394103
2019-03-02 01:02:03.006608+00	2019-03-02 01:02:03.006629+00	11	sms	twilio	SM827ac9a0f9144c7fad89146f5e64a333	2019-03-02 01:02:02	+17732909650	Hi Freddie, JOIN THE BIG PARTY TONIGHT! Offshore-Unlimited Marine & Trailer	\N		sent	\N	\N	outbound	161	4	3652	+13367394103
2019-03-02 01:03:35.599852+00	2019-03-02 01:03:35.599872+00	12	sms	twilio	SM6aba1120491d47fc89e77cd3e58767b1	2019-03-02 01:03:35	+17732909650	Are you still coming tomorrow?	\N		sent	\N	\N	outbound	161	4	3652	+13367394103
2019-03-03 17:42:21.708509+00	2019-03-03 17:42:21.708541+00	13	sms	twilio	SM562b1f5bb4904f85b5ed3b8dccd94fe6	2019-03-03 17:42:21	+17732909650	Hi Mark, JOIN THE BIG PARTY TONIGHT! Offshore-Unlimited Marine & Trailer	\N		sent	\N	\N	outbound	161	4	3652	+13367394103
2019-03-03 17:51:56.540927+00	2019-03-03 17:51:56.540948+00	14	sms	twilio	SM856b506ef407487ca566240355955299	2019-03-03 17:51:56	+17732909650	Hi Matt, JOIN THE BIG PARTY TONIGHT! Offshore-Unlimited Marine & Trailer	\N		sent	\N	\N	outbound	161	4	3652	+13367394103
2019-03-03 19:39:23.143584+00	2019-03-03 19:39:23.143606+00	15	sms	twilio	SMd150b8e614564ce1b2c261d1be66d6bd	2019-03-03 19:39:23	+17732909650	Hi body, JOIN THE BIG PARTY TONIGHT! Offshore-Unlimited Marine & Trailer	\N		sent	\N	\N	outbound	161	4	3652	+13367394103
2019-03-05 22:38:30.419359+00	2019-03-05 22:38:30.419383+00	16	sms	twilio	SMc466ada722a14296801676addeee047e	2019-03-05 22:38:30	+17732909650	Hi there are you still interested?	\N		sent	\N	\N	outbound	161	4	3652	+13367394103
2019-03-19 03:20:56.84518+00	2019-03-19 03:20:56.845201+00	17	sms	twilio	SM5a3f5258beb36db69784c5ebcabcd5ea	2019-03-19 03:20:56	+13367394103	Gotcha! 	\N		received	\N	\N	inbound	162	4	3652	+17732909650
2019-04-11 22:01:18.69936+00	2019-04-11 22:01:18.699379+00	18	sms	twilio	SM510a0492c90845e7afaf62f0bba3becd	2019-04-11 22:01:18	+18479009875	Hi George , JOIN THE BIG PARTY TONIGHT! Offshore-Unlimited Marine & Trailer	\N		sent	\N	\N	outbound	161	4	4204	+13367394103
2019-04-14 00:45:43.661383+00	2019-04-14 00:45:43.661401+00	19	sms	twilio	SM8a0a522b3366446e04bfa5b509932064	2019-04-14 00:45:43	+13367394103	Can I see the car?	\N		received	\N	\N	inbound	170	4	3801	+17739699892
2019-04-14 00:46:48.945728+00	2019-04-14 00:46:48.945748+00	20	sms	twilio	SM81df9248a15b416683aaccc90beb0567	2019-04-14 00:46:48	+17739699892	Sure, we have a blue or red car!	\N		sent	\N	\N	outbound	170	4	3801	+13367394103
2019-05-23 23:00:53.756383+00	2019-05-23 23:00:53.756401+00	21	sms	twilio	SM09a628431e1f4a97ba76b3af9f7d57a4	2019-05-23 23:00:53	+17732909650	Hi Perry, JOIN THE BIG PARTY TONIGHT! Level 5 Advertising Demo	\N		sent	\N	\N	outbound	161	4	3652	+13367394103
2019-10-02 02:50:10.231178+00	2019-10-02 02:50:10.231218+00	22	sms	twilio	SM6645aa49f94648c58fb55449ec76f6dc	2019-10-02 02:50:10	+17732909650	Hi Brad, JOIN THE BIG PARTY TONIGHT! Dealer Demo	\N		sent	\N	\N	outbound	161	4	3652	+13367394103
\.


--
-- Name: messages_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('messages_id_seq', 22, true);


--
-- Data for Name: partnership_account_group_tie; Type: TABLE DATA; Schema: public; Owner: -
--

COPY partnership_account_group_tie (created_on, updated_on, partnership_account_group_id, partnership_account_id) FROM stdin;
2019-04-13 21:52:20.39128+00	2019-04-13 21:52:20.39128+00	1	4
2019-04-13 21:52:20.39128+00	2019-04-13 21:52:20.39128+00	1	32
2019-04-13 21:52:20.39128+00	2019-04-13 21:52:20.39128+00	2	19
0019-04-13 21:52:20.39128+00	0019-04-13 21:52:20.39128+00	2	4
\.


--
-- Data for Name: partnership_account_groups; Type: TABLE DATA; Schema: public; Owner: -
--

COPY partnership_account_groups (created_on, updated_on, id, name) FROM stdin;
2019-04-13 21:52:20.39128+00	2019-04-13 21:52:20.39128+00	1	Family of RVs
2019-04-13 21:52:20.39128+00	2019-04-13 21:52:20.39128+00	2	Second Cmd
\.


--
-- Name: partnership_account_groups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('partnership_account_groups_id_seq', 1, false);


--
-- Data for Name: partnership_accounts; Type: TABLE DATA; Schema: public; Owner: -
--

COPY partnership_accounts (id, created_on, updated_on, name, partnership_id, is_active, billing_type, subscription_id, api_token_id, partner_account_code) FROM stdin;
3	2018-01-01 20:00:36.491504+00	2018-01-01 20:00:36.491504+00	SmartTech Enterprises	1	t	partnership	\N	\N	
11	2018-01-01 20:00:36.491504+00	2018-01-01 20:00:36.491504+00	sales	1	t	partnership	\N	1	
17	2018-01-01 20:00:36.491504+00	2018-01-01 20:00:36.491504+00	Auto Approve	1	t	partnership	\N	\N	
9	2018-01-01 20:00:36.491504+00	2018-01-01 20:00:36.491504+00	Empire Exotic Motors Inc	1	t	partnership	\N	2	
16	2018-01-01 20:00:36.491504+00	2018-01-01 20:00:36.491504+00	Auto Approve	1	t	partnership	\N	\N	
1	2018-01-01 20:00:36.491504+00	2018-01-01 20:00:36.491504+00		1	t	partnership	\N	\N	
18	2018-01-01 20:00:36.491504+00	2018-01-01 20:00:36.491504+00	google	1	t	partnership	\N	\N	
5	2018-01-01 20:00:36.491504+00	2018-01-01 20:00:36.491504+00	protokinetix	1	t	partnership	\N	\N	
8	2018-01-01 20:00:36.491504+00	2018-01-01 20:00:36.491504+00	Mazda of Mesquite	1	t	partnership	\N	\N	
7	2018-01-01 20:00:36.491504+00	2018-01-01 20:00:36.491504+00	luxry care	1	t	partnership	\N	3	
2	2018-01-01 20:00:36.491504+00	2018-01-01 20:00:36.491504+00	Jones Inc	1	t	partnership	2	\N	
6	2018-01-01 20:00:36.491504+00	2018-01-01 20:00:36.491504+00	BuyerCall LLC	1	t	partnership	15	\N	
10	2018-01-01 20:00:36.491504+00	2018-01-01 20:00:36.491504+00	DataOne Perfect Fit	1	t	partnership	17	\N	
13	2018-01-01 20:00:36.491504+00	2018-01-01 20:00:36.491504+00	Cavender Auto Sales	1	t	partnership	19	\N	
14	2018-01-01 20:00:36.491504+00	2018-01-01 20:00:36.491504+00	My Car Loan Direct	1	t	partnership	20	\N	
12	2018-01-01 20:00:36.491504+00	2018-01-01 20:00:36.491504+00	My Car Store	1	t	partnership	12	\N	
15	2018-01-01 20:00:36.491504+00	2018-01-01 20:00:36.491504+00	AutoApprove	1	t	partnership	21	\N	
19	2018-01-30 22:41:21.458992+00	2018-01-30 22:41:21.459015+00	Monster Inc	1	t	partnership	\N	\N	
20	2018-01-31 16:10:34.838399+00	2018-01-31 16:10:34.838424+00	fgdfgd	1	t	partnership	\N	\N	
21	2018-01-31 16:10:38.562573+00	2018-01-31 16:10:38.562602+00	ABC Test Company	1	t	partnership	\N	\N	
22	2018-01-31 16:15:12.247089+00	2018-01-31 16:19:35.510406+00	Test Company A	1	t	account	22	\N	
23	2018-02-07 23:19:01.127322+00	2018-02-07 23:19:01.12735+00	Blue State Test Trucks	14	t	partnership	16	\N	
24	2018-02-08 20:31:37.980781+00	2018-02-08 20:31:37.980809+00	Harry Cars	16	t	partnership	23	\N	
25	2018-02-08 22:34:57.380909+00	2018-02-08 22:34:57.380935+00	Steve Cars	16	t	partnership	23	\N	
26	2018-02-08 23:05:23.495204+00	2018-02-08 23:07:16.365656+00	Password	1	t	account	24	\N	
27	2018-02-08 23:10:13.776895+00	2018-02-08 23:10:42.859629+00	Password	1	t	account	25	\N	
28	2018-02-13 01:00:32.520449+00	2018-02-13 01:00:32.520503+00	Steak Inc	16	t	partnership	23	\N	
29	2018-02-13 01:16:09.327187+00	2018-02-13 01:17:15.004272+00	Morry Construction	1	t	account	26	\N	
30	2018-04-21 20:25:15.312331+00	2018-04-21 20:25:34.636662+00	Pasword	1	t	account	27	\N	
31	2019-03-17 20:19:31.765487+00	2019-03-17 20:19:31.765519+00	Cars ltd	1	t	account	\N	\N	
32	2019-04-11 22:08:14.849663+00	2019-04-11 22:08:14.849685+00	TownCars LTD	1	t	account	\N	\N	
33	2019-04-11 22:12:50.123657+00	2019-04-11 22:12:50.123693+00	TomTom LTD	6	t	partnership	\N	\N	
4	2018-01-01 20:00:36.491504+00	2019-07-27 18:30:49.713663+00	Dealer Demo	1	t	partnership	14	8	00987
34	2019-10-22 15:18:28.013295+00	2019-10-22 15:18:28.013319+00	TeamV Dealer	17	t	invoice	16	\N	
\.


--
-- Name: partnership_accounts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('partnership_accounts_id_seq', 34, true);


--
-- Data for Name: partnerships; Type: TABLE DATA; Schema: public; Owner: -
--

COPY partnerships (id, created_on, updated_on, name, is_active, account_invitation_url_token, default_billing_type, logo, subscription_id, default_provider, api_token_id, partner_url, email_sender) FROM stdin;
6	2018-02-06 19:41:28.688888+00	2018-02-06 19:41:29.298119+00	IntellaCar	t	16add0df-5fc3-4bfa-8747-c9f77ee31e61	partnership	6_IntellaCar/intellacar-logo.png	\N	twilio	9		
7	2018-02-06 21:17:34.58632+00	2018-02-06 21:17:35.345949+00	Coolio Top	t	97253fb5-5196-4bc9-8eae-c75a52150726	partnership	7_Coolio Top/intellacar-logo.png	\N	twilio	10		
8	2018-02-07 01:22:02.295278+00	2018-02-07 01:22:02.881349+00	Mary Tolla	t	0bac8efc-d449-42f8-a726-d055014d92b3	partnership	8_Mary Tolla/intellacar-logo.png	\N	twilio	11		
9	2018-02-07 02:08:22.866545+00	2018-02-07 02:08:23.411875+00	TuTu	t	af9035c3-0a2f-4996-9b81-c7778a840a6d	partnership	9_TuTu/intellacar-logo.png	\N	twilio	12		
10	2018-02-07 15:56:00.798527+00	2018-02-07 15:56:01.320594+00	Coldwell Green LTD	t	33b3286f-b0ca-44a8-83ac-87c232b760ba	partnership	10_Coldwell Green LTD/intellacar-logo.png	\N	twilio	13		
11	2018-02-07 16:06:15.430857+00	2018-02-07 16:06:15.673102+00	Root IU	t	abe02ac9-6669-4dd8-992f-7f4e28454fdb	partnership	11_Root IU/intellacar-logo.png	\N	twilio	14		
12	2018-02-07 17:36:13.916506+00	2018-02-07 17:36:14.494807+00	ManuTaco	t	baddce01-9b2b-4935-8232-0626ac426730	partnership	12_ManuTaco/teamv.png	\N	twilio	15		
13	2018-02-07 22:54:36.690443+00	2018-02-07 22:54:37.305154+00	Sweetwater LLC	t	65e2b293-a0a7-4650-a1a8-0a42ba9e551d	partnership	13_Sweetwater LLC/teamv.png	\N	twilio	16		
14	2018-02-07 22:59:53.053993+00	2018-02-07 22:59:53.319271+00	Cchekc LLC	t	9600512a-52a6-4d49-b592-0c98faa02de5	partnership	14_Cchekc LLC/teamv.png	16	twilio	17		
16	2018-02-08 17:52:17.310491+00	2018-02-08 17:52:18.003427+00	INTELLACAR	t	740dea21-b5b7-4758-ade4-36896b4a4379	partnership	16_INTELLACAR/intellacar-logo-40.png	23	twilio	19		
1	2018-01-01 20:00:36.491504+00	2019-07-27 18:32:30.309674+00	Buyercall	t	e187daa6-498b-4fe0-a39e-49bfbecad75e	account	1_Buyercall/logo_buyercall_blue.png	\N	twilio	20	https://staging.buyercall.com	level5advertising@buyercall.com
17	2019-10-22 12:55:37.265253+00	2019-10-22 13:03:06.274208+00	Team Velocity	t	ccb65eb8-0004-4c89-aad2-e1566caeea4a	invoice	17_Team Velocity/team-v-40.png	16	twilio	21		
\.


--
-- Name: partnerships_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('partnerships_id_seq', 17, true);


--
-- Data for Name: phonenumbers; Type: TABLE DATA; Schema: public; Owner: -
--

COPY phonenumbers (created_on, updated_on, id, phonenumber, is_local, is_tollfree, is_active, friendly_name, twilio_number_sid, routings, notifications, is_callerid, partnership_account_id, is_deactivated, deactivated_on, source, type, channel, provider) FROM stdin;
2016-02-09 23:00:40.338714+00	2016-02-09 23:00:40.338714+00	1	+18555000163	f	t	t	Campaign Number	PN8252d8dfa58913622ec2560cb368d861	{}	{}	t	1	f	\N		priority	\N	
2016-04-22 16:08:45.817542+00	2016-04-22 16:08:45.817581+00	14	+17735707582	t	f	t	Telly Mark	PNd069479738aaf0a5d4c3bb48c8f1fb59	{"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "recordCalls": false, "secondCallBack": "", "language": "en", "noDigitWhisperMessage": "", "digitRoutings": [], "callBackText": "Hi, this is Bob's dealership. We're calling you back since we missed your call a while ago.", "routingType": "default", "voicemail": false, "playHoldMusic": true, "callBack": false, "thirdCallBack": "", "whisperMessage": "Thank you for contacting us. You will be connected to representative shortly.  Please note that this call might be recorded.", "hiddenInformation": "", "firstCallBack": "", "customHoldMusic": false, "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Herman Vermaak", "contactUsing": "phone", "id": 4}]}}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""}	t	2	f	\N		priority	\N	
2016-04-21 22:32:17.424399+00	2016-04-21 22:32:17.424432+00	12	+17735707582	t	f	t	Default	PN1ab89d8661922987ac35cecd5f570e30	{"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "recordCalls": false, "secondCallBack": "", "language": "en", "noDigitWhisperMessage": "", "digitRoutings": [], "callBackText": "Hi, this is Bob's dealership. We're calling you back since we missed your call a while ago.", "routingType": "default", "voicemail": true, "playHoldMusic": true, "callBack": false, "thirdCallBack": "", "whisperMessage": "Thank you for contacting us. You will be connected to representative shortly.  Please note that this call might be recorded.", "hiddenInformation": "", "firstCallBack": "", "customHoldMusic": false, "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Steve Neu", "contactUsing": "phone", "id": 11}]}}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""}	t	2	f	\N		priority	\N	
2017-06-02 22:33:01.230413+00	2017-06-02 22:33:01.230573+00	131	+17707669297	t	f	t	Cavender Approved	PNd6afd89fa9f4fe09245df3230872df21	{"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "recordCalls": false, "digitPrompt": false, "secondCallBack": "", "language": "en", "noDigitWhisperMessage": "", "digitWhisperMessage": "", "callBackText": "Hi, this is Bob's dealership. We're calling you back since we missed your call a while ago.", "routingType": "default", "voicemail": true, "digitRoutings": [], "playHoldMusic": true, "callBack": false, "thirdCallBack": "", "whisperMessage": "Thank you for contacting us. You will be connected to representative shortly.  Please note that this call might be recorded.", "hiddenInformation": "", "firstCallBack": "", "customHoldMusic": false, "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Steve Neu", "contactUsing": "phone", "id": 78}]}}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""}	t	6	f	\N		priority	\N	
2016-11-09 16:33:33.197451+00	2017-01-26 15:12:46.351208+00	119	+18036184545	t	f	t	NeuIQ	PN2a26192ae11322e692506acdde883997	{"voicemailMessage": "Sorry, we I am not available at the moment. Please leave a voice message and I will get back to you as soon as possible.", "recordCalls": false, "digitPrompt": false, "secondCallBack": "", "language": "en", "noDigitWhisperMessage": "", "digitRoutings": [], "callBackText": "Hi, this is Bob's dealership. We're calling you back since we missed your call a while ago.", "routingType": "default", "voicemail": true, "playHoldMusic": false, "callBack": false, "thirdCallBack": "", "whisperMessage": "Thank you for contacting Steve Neu. You will be connected shortly.  Please note that this call might be recorded.", "hiddenInformation": "", "firstCallBack": "", "customHoldMusic": false, "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Steve Neu", "contactUsing": "phone", "id": 78}]}}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""}	t	6	f	\N		priority	\N	
2017-10-24 19:28:49.266147+00	2017-10-24 19:28:49.266203+00	135	+18032915240	t	f	t	Neu Ford	PN70e0242a3bf66569ecf5027f3705ed4e	{"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "recordCalls": false, "digitPrompt": false, "secondCallBack": "", "language": "en", "noDigitWhisperMessage": "", "digitWhisperMessage": "", "callBackText": "Hi, this is Bob's dealership. We're calling you back since we missed your call a while ago.", "routingType": "default", "voicemail": true, "digitRoutings": [], "playHoldMusic": true, "callBack": false, "thirdCallBack": "", "whisperMessage": "Thank you for contacting us. You will be connected to representative shortly.  Please note that this call might be recorded.", "hiddenInformation": "", "firstCallBack": "", "customHoldMusic": false, "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Neu Ford", "contactUsing": "phone", "id": 156}]}}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""}	t	10	f	\N		priority	\N	
2017-03-13 20:13:42.233308+00	2017-03-13 20:13:42.233384+00	123	+18036184106	t	f	t	Demo One	PN02a4a38b0882b6e1eca1704f64843021	{"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "recordCalls": false, "digitPrompt": false, "secondCallBack": "", "language": "en", "noDigitWhisperMessage": "", "digitRoutings": [], "callBackText": "Hi, this is Bob's dealership. We're calling you back since we missed your call a while ago.", "routingType": "default", "voicemail": true, "playHoldMusic": false, "callBack": false, "thirdCallBack": "", "whisperMessage": "Thank you for contacting us. You will be connected to representative shortly.  Please note that this call might be recorded.", "hiddenInformation": "", "firstCallBack": "", "customHoldMusic": false, "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Demo One", "contactUsing": "phone", "id": 120}]}}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""}	t	10	f	\N		priority	\N	
2016-07-28 14:32:49.406255+00	2016-08-05 00:31:16.639087+00	70	+18559694001	f	t	t	Mark's Toll-Free Number	PN5c840826aaeeee42a44b081f25f21098	{"voicemailMessage": "We are currently not available. Please leave us a voice-mail and we'll get back to you as soon as possible.", "recordCalls": true, "digitPrompt": true, "secondCallBack": "", "language": "en", "noDigitWhisperMessage": "", "digitRoutings": [], "callBackText": "Hi, this is Bob's dealership. We're calling you back since we missed your call a while ago.", "routingType": "default", "voicemail": true, "playHoldMusic": false, "callBack": false, "thirdCallBack": "", "whisperMessage": "Hello, Please note that this call may be recorded for customer service purposes..", "hiddenInformation": "This is a customer call back call", "firstCallBack": "", "customHoldMusic": false, "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Mark Davis", "contactUsing": "phone", "id": 16}]}}	{"notifyLeads": "none", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""}	t	4	f	\N		priority	\N	
2016-07-12 16:06:48.233717+00	2016-10-26 16:44:32.94681+00	49	+18557240606	f	t	t	Autosave123	PN7775ea3e7639ca7457ea695d08a1d484	{"voicemailMessage": "We are currently not available. Please leave us a voice-mail and we'll get back to you as soon as possible.", "recordCalls": true, "digitPrompt": false, "secondCallBack": "", "language": "en", "noDigitWhisperMessage": "", "digitRoutings": [], "callBackText": "Hi, this is Bob's dealership. We're calling you back since we missed your call a while ago.", "routingType": "default", "voicemail": false, "playHoldMusic": false, "callBack": false, "thirdCallBack": "", "whisperMessage": "", "hiddenInformation": "", "firstCallBack": "", "customHoldMusic": false, "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Auto Pay", "contactUsing": "phone", "id": 76}]}}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "steveneu@finservgroup.com", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""}	t	4	f	\N		priority	\N	
2017-07-01 19:58:03.969189+00	2017-12-11 19:54:19.615656+00	133	+17707665732	t	f	t	Main Website Sales	PN67d25d446a2d15d4dd367fde49c36d96	{"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "recordCalls": true, "digitPrompt": true, "secondCallBack": "", "language": "en", "noDigitWhisperMessage": "", "digitWhisperMessage": "", "callBackText": "Hi, this is Cavender Auto, We're calling you back since we just missed your call", "routingType": "default", "voicemail": true, "digitRoutings": [], "playHoldMusic": false, "callBack": true, "thirdCallBack": "", "whisperMessage": "Thank you for contacting us. You will be connected to representative shortly.  Please note that this call might be recorded.", "hiddenInformation": "", "firstCallBack": "5", "customHoldMusic": false, "defaultRouting": {"retryRouting": 1, "callOrder": "simultaneous", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Kim South", "contactUsing": "phone", "id": 153}, {"fullName": "Carlos Guerra", "contactUsing": "phone", "id": 150}, {"fullName": "Wanda Merced", "contactUsing": "phone", "id": 152}]}}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "steveneu@live.com", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""}	t	13	f	\N		priority	\N	
2017-07-01 19:59:52.252684+00	2017-12-11 19:55:02.55996+00	134	+17707665699	t	f	t	Main Website Service	PN6206e92cc791254fd7a6e2159cb7806c	{"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "recordCalls": true, "digitPrompt": false, "secondCallBack": "", "language": "en", "noDigitWhisperMessage": "", "digitWhisperMessage": "", "callBackText": "Hi, this is Bob's dealership. We're calling you back since we missed your call a while ago.", "routingType": "default", "voicemail": false, "digitRoutings": [], "playHoldMusic": false, "callBack": false, "thirdCallBack": "", "whisperMessage": "", "hiddenInformation": "", "firstCallBack": "", "customHoldMusic": false, "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Cavender Main Line", "contactUsing": "phone", "id": 154}]}}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "steveneu@live.com", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""}	t	13	f	\N		priority	\N	
2017-06-15 15:09:27.08407+00	2017-06-26 16:32:38.985993+00	132	+17704009016	t	f	t	Get Cavender Approved Marketing	PN8ed93f354c022fd21fd28fcfb34d29ab	{"voicemailMessage": "Thanks for calling Cavender Auto, Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "recordCalls": true, "digitPrompt": true, "secondCallBack": "", "language": "en", "noDigitWhisperMessage": "", "digitWhisperMessage": "", "callBackText": "Hello, this is Cavender Auto. We're calling you back since we just missed your call.", "routingType": "default", "voicemail": true, "digitRoutings": [], "playHoldMusic": false, "callBack": true, "thirdCallBack": "", "whisperMessage": "Thank you for contacting Cavender Auto. Please note that this call might be recorded.", "hiddenInformation": "Cavender Loan Application", "firstCallBack": "5", "customHoldMusic": false, "defaultRouting": {"retryRouting": 0, "callOrder": "simultaneous", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Wanda Merced", "contactUsing": "phone", "id": 152}, {"fullName": "Carlos Guerra", "contactUsing": "phone", "id": 150}, {"fullName": "Kim South", "contactUsing": "phone", "id": 153}]}}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "steveneu@live.com, cavenderr@cavenderautosales.com", "notifyMissedMe": true, "notifyAllMe": false, "notifyAllAgents": false, "notifyMissedCustom": ""}	t	13	f	\N		priority	\N	
2017-11-22 16:35:48.333818+00	2017-12-14 17:50:06.109314+00	137	+17706597466	t	f	t	Default	PN6c03abf78a2d35f7f9077905dfe0c619	{"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "recordCalls": true, "digitPrompt": false, "secondCallBack": "", "language": "en", "noDigitWhisperMessage": "", "digitWhisperMessage": "", "callBackText": "Hi, this is Bob's dealership. We're calling you back since we missed your call a while ago.", "routingType": "default", "voicemail": false, "digitRoutings": [], "playHoldMusic": false, "callBack": false, "thirdCallBack": "", "whisperMessage": "", "hiddenInformation": "", "firstCallBack": "", "customHoldMusic": false, "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Wayne Daniel", "contactUsing": "phone", "id": 157}]}}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "steveneu@live.com", "notifyMissedMe": true, "notifyAllMe": false, "notifyAllAgents": false, "notifyMissedCustom": ""}	t	14	f	\N		priority	\N	
2017-03-22 16:00:59.0058+00	2017-10-31 18:57:24.854632+00	124	+18177569010	t	f	t	Internet Lead Calls	PN4f143b9a42c78dcb799773d6d90849c1	{"voicemailMessage": "Thank you for calling the My Car Store Sales Hotline. Please leave your name, number and the vehicle you are interested in and we will return your call promptly.", "recordCalls": true, "digitPrompt": true, "secondCallBack": "5", "language": "en", "noDigitWhisperMessage": "", "digitRoutings": [], "callBackText": "This  is a call back from My Car Store regarding your used car inquiry.. This call may recorded for quality assurance.. ", "routingType": "default", "voicemail": true, "digitWhisperMessage": "", "playHoldMusic": true, "callBack": true, "thirdCallBack": "15", "whisperMessage": "Thanks for calling the My Car Store Used Car Availability Hot Line.. This call may recorded for quality assurance.", "hiddenInformation": "This is a used car hotline call..", "firstCallBack": "0", "customHoldMusic": false, "defaultRouting": {"retryRouting": 2, "callOrder": "simultaneous", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Angel Vazquez", "contactUsing": "phone", "id": 146}]}}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "mycarstoreleads@gmail.com", "notifyMissedMe": true, "notifyAllMe": false, "notifyAllAgents": false, "notifyMissedCustom": ""}	t	12	f	\N		priority	\N	
2017-04-07 21:22:00.934535+00	2017-05-30 15:13:11.306049+00	126	+18172104002	t	f	t	Camp Bowie Store Internet Lead Calls	PNb3253e17d13c8bfd1ca4be93dd1a5319	{"voicemailMessage": "Thank you for calling the Camp Bowie Store Sales Hotline. Please leave your name, number and the vehicle you are interested in and we will return your call promptly.", "recordCalls": true, "digitPrompt": true, "secondCallBack": "5", "language": "en", "noDigitWhisperMessage": "", "digitRoutings": [], "callBackText": "This  is a call back from Camp Bowie Store regarding your used car inquiry.. This call may recorded for quality assurance.. ", "routingType": "default", "voicemail": true, "digitWhisperMessage": "", "playHoldMusic": true, "callBack": true, "thirdCallBack": "15", "whisperMessage": "Thanks for calling the Camp Bowie Store Used Car Availability Hot Line.. This call may recorded for quality assurance.", "hiddenInformation": "This is a used car hotline call..", "firstCallBack": "0", "customHoldMusic": false, "defaultRouting": {"retryRouting": 2, "callOrder": "simultaneous", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Cody Nelson", "contactUsing": "phone", "id": 129}, {"fullName": "Mia Witaker", "contactUsing": "phone", "id": 131}, {"fullName": "Lino Hernandez", "contactUsing": "phone", "id": 130}, {"fullName": "Lafayette Brown", "contactUsing": "phone", "id": 132}]}}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "mycarstoreleads@gmail.com", "notifyMissedMe": true, "notifyAllMe": false, "notifyAllAgents": false, "notifyMissedCustom": ""}	t	12	f	\N		priority	\N	
2017-12-14 19:56:32.640675+00	2017-12-20 20:16:38.422647+00	138	+18036584969	t	f	t	Test	PN24b58d85a985675ba9703e8dcf191ac5	{"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "recordCalls": false, "digitPrompt": false, "secondCallBack": "", "language": "en", "noDigitWhisperMessage": "", "digitWhisperMessage": "", "callBackText": "Hi, this is Bob's dealership. We're calling you back since we missed your call a while ago.", "routingType": "default", "voicemail": true, "digitRoutings": [{"retryRouting": 0, "callOrder": "sequence", "dialDigit": "1", "name": "When digit 1 is pressed:", "agents": [{"fullName": "Herman Vermaak", "contactUsing": "phone", "id": 159}]}], "playHoldMusic": true, "callBack": true, "thirdCallBack": "", "whisperMessage": "Thank you for contacting us. You will be connected to representative shortly.  Please note that this call might be recorded.", "hiddenInformation": "", "firstCallBack": "", "customHoldMusic": false, "defaultRouting": {"retryRouting": 0, "callOrder": "simultaneous", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Herman Vermaak", "contactUsing": "mobile", "id": 159}]}}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""}	t	15	f	\N		priority	\N	
2017-11-14 16:04:01.601131+00	2017-11-28 23:23:31.294479+00	136	+18558645656	f	t	t	Default	PNaebcf1f428ac472137b01604a6739b51	{"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "recordCalls": true, "digitPrompt": false, "secondCallBack": "", "language": "en", "noDigitWhisperMessage": "", "digitWhisperMessage": "", "callBackText": "Hi, this is Bob's dealership. We're calling you back since we missed your call a while ago.", "routingType": "default", "voicemail": false, "digitRoutings": [], "playHoldMusic": false, "callBack": false, "thirdCallBack": "", "whisperMessage": "", "hiddenInformation": "", "firstCallBack": "", "customHoldMusic": false, "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Auto Approve", "contactUsing": "phone", "id": 158}]}}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "steveneu@live.com", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""}	t	15	f	\N		priority	\N	
2016-09-25 23:20:11.307022+00	2017-04-30 15:58:24.311404+00	104	+17732950301	t	f	t	Local Number	PN3fb4e352c779d8ea8c5a445418c79d9c	{"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "recordCalls": true, "digitPrompt": true, "secondCallBack": "", "language": "en", "noDigitWhisperMessage": "", "digitRoutings": [{"retryRouting": 0, "callOrder": "sequence", "dialDigit": "1", "name": "When digit 1 is pressed:", "agents": [{"fullName": "Harry Vermaak", "contactUsing": "phone", "id": 2}]}, {"retryRouting": 0, "callOrder": "sequence", "dialDigit": "2", "name": "When digit 2 is pressed", "agents": [{"fullName": "Harri Vermaak", "contactUsing": "phone", "id": 91}]}], "callBackText": "Hi, this is Bob's dealership. We're calling you back since we missed your call a while ago.", "routingType": "default", "voicemail": false, "digitWhisperMessage": "If you want to speak to Harry you will have to press 1 and if you want to speak to Harri you have to press 2. ", "playHoldMusic": true, "callBack": false, "thirdCallBack": "", "whisperMessage": "Hello and hold on!", "hiddenInformation": "Payment Tester", "firstCallBack": "0", "customHoldMusic": false, "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Harri Vermaak", "contactUsing": "phone", "id": 91}]}}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "hjvermaak@gmail.com", "notifyMissedMe": true, "notifyAllMe": false, "notifyAllAgents": false, "notifyMissedCustom": ""}	t	1	f	\N		priority	\N	
2016-05-02 15:40:47.981738+00	2017-02-20 02:36:22.460433+00	16	+17735469660	t	f	t	Buyercall Inbound Number	PNb926b83e08e43ca988e266e144e2707e	{"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you.", "recordCalls": false, "digitPrompt": true, "secondCallBack": "", "language": "en", "noDigitWhisperMessage": "BuyerCall Opportunity", "digitRoutings": [], "callBackText": "Hi, this is Buyercall. We're calling you back since we missed just your call", "routingType": "default", "voicemail": true, "playHoldMusic": false, "callBack": true, "thirdCallBack": "", "whisperMessage": "Thank you for contacting Buyercall. We'll connect you to the right person in just a second. ", "hiddenInformation": "The Buyercall Inbound Number", "firstCallBack": "0", "customHoldMusic": false, "defaultRouting": {"retryRouting": 1, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Skip  Esch", "contactUsing": "phone", "id": 79}]}}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "hjvermaak@gmail.com; skip@buyercall.com; steve@buyercall.com", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": "hjvermaak@gmail.com; skip@buyercall.com; steve@buyercall.com"}	t	1	f	\N		priority	\N	
2016-03-31 18:47:29.593172+00	2017-02-11 20:13:27.949091+00	3	+17735707582	t	f	t	Herman's Number	PN1a759090e1aaba6ec4b4421a061b1a9a	{"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "recordCalls": false, "digitPrompt": true, "secondCallBack": "", "language": "en", "noDigitWhisperMessage": "", "digitRoutings": [{"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Herman Vermaak", "contactUsing": "phone", "id": 1}]}], "callBackText": "Hi, this is Bob's dealership. We're calling you back since we missed your call a while ago.", "routingType": "default", "voicemail": false, "playHoldMusic": false, "callBack": false, "thirdCallBack": "", "whisperMessage": "Thank you for contacting us. You will be connected to representative shortly.", "hiddenInformation": "Herman's Number", "firstCallBack": "", "customHoldMusic": false, "callBackRouting": "", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Herman Vermaak", "contactUsing": "phone", "id": 1}]}}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "hjvermaak@gmail.com", "notifyMissedMe": true, "notifyAllMe": false, "notifyAllAgents": false, "notifyMissedCustom": ""}	t	1	f	\N		priority	\N	
2018-01-01 22:26:33.839917+00	2018-03-20 03:03:27.735612+00	140	+15626663928	t	f	t	Default Phone Number	n-m4mz55em3cqgodtnwqxgygy	{"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "digitRoutings": [], "routingType": "default", "notifyAdf": true, "thirdCallBack": "", "whisperMessageAudio": 21, "firstCallBack": "", "hiddenInformation": "", "recordCalls": true, "digitWhisperMessageType": "", "noDigitWhisperMessage": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "digitPrompt": false, "callBack": false, "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Herman Vermaak", "excludeGroups": true, "contactUsing": "phone", "id": 15}]}, "voicemailMessageType": "", "whisperMessageType": "audio", "noDigitWhisperMessageType": "", "secondCallBack": "", "language": "en", "digitWhisperMessage": "", "voicemail": true, "playHoldMusic": false, "notifyAdfCustom": "hv13@hotmail.com", "whisperMessage": "", "customHoldMusic": false}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "hjvermaak@gmail.com", "notifyMissedMe": true, "notifyAllMe": false, "notifyAllAgents": false, "notifyMissedCustom": ""}	f	4	t	2018-03-20 03:03:27.734924		tracking	Organic Search	bandwidth
2018-02-08 22:59:38.529916+00	2018-02-08 22:59:38.529948+00	144	+15626663928	t	f	t	Bandwidth Number	n-m4mz55em3cqgodtnwqxgygy	{"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "digitRoutings": [], "routingType": "default", "notifyAdf": true, "thirdCallBack": "", "firstCallBack": "", "hiddenInformation": "", "recordCalls": true, "digitWhisperMessageType": "", "noDigitWhisperMessage": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "digitPrompt": false, "callBack": false, "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Steve Motelas", "excludeGroups": true, "contactUsing": "phone", "id": 176}]}, "voicemailMessageType": "", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "language": "en", "digitWhisperMessage": "", "voicemail": true, "playHoldMusic": false, "notifyAdfCustom": "", "whisperMessage": "", "customHoldMusic": false}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "hv13@hotmail.com", "notifyMissedMe": true, "notifyAllMe": false, "notifyAllAgents": false, "notifyMissedCustom": ""}	f	25	f	\N		tracking	Organic Search	bandwidth
2016-07-12 15:32:21.769743+00	2018-01-30 21:47:30.131495+00	48	+18555343978	f	t	t	Robert's Toll-free Number	PN16ae2159ecc52cc68d212ca770bbc19c	{"voicemailMessage": "Hello. You have reached Robert Sanders. I am unable to take your call at the moment. Please, leave a message, and I will get back to you as soon as possible. Thanks, and have a wonderful day.", "recordCalls": true, "digitPrompt": true, "secondCallBack": "", "language": "en", "noDigitWhisperMessage": "", "digitRoutings": [], "callBackText": "Hi, this is Bob's dealership. We're calling you back since we missed your call a while ago.", "routingType": "default", "voicemail": true, "playHoldMusic": false, "callBack": false, "thirdCallBack": "", "whisperMessage": "", "hiddenInformation": "This is call back", "firstCallBack": "", "customHoldMusic": false, "defaultRouting": {"retryRouting": 0, "callOrder": "simultaneous", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Herman Vermaak", "contactUsing": "phone", "id": 15}]}}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "steveneu@live.com", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": true, "notifyMissedCustom": ""}	t	4	t	2018-01-30 21:47:30.130057		priority	\N	
2018-01-30 21:51:57.340594+00	2018-01-30 22:04:44.474233+00	141	+13367394103	t	f	t	Twilio Testing	PNcd31d8c4381073d246126da7d4674c31	{"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "digitRoutings": [], "routingType": "default", "notifyAdf": true, "thirdCallBack": "", "whisperMessageAudio": 23, "firstCallBack": "", "hiddenInformation": "", "recordCalls": false, "digitWhisperMessageType": "", "noDigitWhisperMessage": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "digitPrompt": false, "callBack": false, "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Herman Vermaak", "excludeGroups": true, "contactUsing": "phone", "id": 15}]}, "voicemailMessageType": "", "whisperMessageType": "audio", "noDigitWhisperMessageType": "", "secondCallBack": "", "language": "en", "digitWhisperMessage": "", "voicemail": true, "playHoldMusic": false, "notifyAdfCustom": "hv13@hotmail.com", "whisperMessage": "", "customHoldMusic": false}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "hjvermaak@gmail.com", "notifyMissedMe": true, "notifyAllMe": false, "notifyAllAgents": false, "notifyMissedCustom": ""}	f	4	t	2018-01-30 22:04:44.473391		priority	Organic Search	twilio
2018-02-08 20:48:21.920146+00	2018-02-08 22:04:10.593249+00	143	+13367394103	t	f	t	My Partner Number	PNcd31d8c4381073d246126da7d4674c31	{"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "digitRoutings": [], "routingType": "default", "notifyAdf": false, "thirdCallBack": "", "firstCallBack": "", "hiddenInformation": "", "recordCalls": false, "digitWhisperMessageType": "", "noDigitWhisperMessage": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "digitPrompt": false, "callBack": false, "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Harry Vermoos", "excludeGroups": true, "contactUsing": "phone", "id": 175}]}, "voicemailMessageType": "", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "language": "en", "digitWhisperMessage": "", "voicemail": true, "playHoldMusic": false, "notifyAdfCustom": "", "whisperMessage": "", "customHoldMusic": false}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "hjvermaak@gmail.com", "notifyMissedMe": true, "notifyAllMe": false, "notifyAllAgents": false, "notifyMissedCustom": ""}	f	24	f	\N		priority	Organic Search	twilio
2018-02-08 23:13:54.682444+00	2018-02-08 23:13:54.682476+00	145	+13367394103	t	f	t	Twilio Test	PNcd31d8c4381073d246126da7d4674c31	{"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "digitRoutings": [], "routingType": "default", "notifyAdf": false, "thirdCallBack": "", "firstCallBack": "", "hiddenInformation": "", "recordCalls": true, "digitWhisperMessageType": "", "noDigitWhisperMessage": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "digitPrompt": false, "callBack": false, "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Bow Tie", "excludeGroups": true, "contactUsing": "phone", "id": 178}]}, "voicemailMessageType": "", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "language": "en", "digitWhisperMessage": "", "voicemail": true, "playHoldMusic": false, "notifyAdfCustom": "", "whisperMessage": "", "customHoldMusic": false}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""}	f	27	f	\N		priority	Organic Search	twilio
2018-02-13 01:20:35.154625+00	2018-02-13 01:20:35.154657+00	147	+15626663928	t	f	t	Bandwidth Tester	n-m4mz55em3cqgodtnwqxgygy	{"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "digitRoutings": [], "routingType": "default", "notifyAdf": false, "thirdCallBack": "", "firstCallBack": "", "hiddenInformation": "", "recordCalls": true, "digitWhisperMessageType": "", "noDigitWhisperMessage": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "digitPrompt": false, "callBack": false, "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Molly Perpleel", "excludeGroups": true, "contactUsing": "phone", "id": 180}]}, "voicemailMessageType": "", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "language": "en", "digitWhisperMessage": "", "voicemail": true, "playHoldMusic": false, "notifyAdfCustom": "", "whisperMessage": "", "customHoldMusic": false}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "hjvermaak@gmail.com", "notifyMissedMe": true, "notifyAllMe": false, "notifyAllAgents": false, "notifyMissedCustom": ""}	f	29	f	\N		tracking	Organic Search	bandwidth
2018-01-30 22:05:46.574414+00	2018-03-20 00:04:48.947526+00	142	+13367394103	t	f	t	Twilio Agent Test	PNcd31d8c4381073d246126da7d4674c31	{"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "digitRoutings": [], "routingType": "default", "notifyAdf": true, "thirdCallBack": "", "whisperMessageAudio": 24, "firstCallBack": "", "callBackTextType": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "digitWhisperMessageType": "", "noDigitWhisperMessage": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "digitPrompt": false, "callBack": false, "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Herman Vermaak", "excludeGroups": true, "contactUsing": "phone", "id": 15}]}, "voicemailMessageType": "text", "whisperMessageType": "text", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "voicemail": true, "playHoldMusic": false, "notifyAdfCustom": "hv13@hotmail.com", "whisperMessage": "Thank you for calling. This call is being recorded for quality reasons.", "customHoldMusic": false}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "hjvermaak@gmail.com", "notifyMissedMe": true, "notifyAllMe": false, "notifyAllAgents": false, "notifyMissedCustom": ""}	t	4	t	2018-03-20 00:04:48.946405		priority	Organic Search	twilio
2018-03-20 00:07:20.696706+00	2018-03-20 00:37:57.323485+00	148	+13367394103	t	f	t	Mike's Number	PNcd31d8c4381073d246126da7d4674c31	{"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "notifyAdf": false, "digitRoutings": [{"retryRouting": 0, "callOrder": "sequence", "dialDigit": "1", "name": "When digit 1 is pressed:", "agents": [{"fullName": "Herman Vermaak", "contactUsing": "phone", "id": 15}]}, {"retryRouting": 0, "callOrder": "simultaneous", "dialDigit": "2", "name": "When digit 2 is pressed", "agents": [{"fullName": "Herman Vermaak", "contactUsing": "phone", "id": 15}, {"firstName": "Mike", "lastName": "Jones", "id": 183, "phoneNumber": "2248758574", "contactUsing": "phone", "email": "mike@buyercall.com"}]}], "routingType": "default", "digitWhisperMessageType": "text", "holdMusicId": "c72d9750-eb8f-4c3e-b4bc-b8d8789a9efc", "whisperMessageAudio": 25, "firstCallBack": "0", "callBackTextType": "text", "holdMusicFilename": "Check Out The Mother.mp3", "hiddenInformation": "BangBang club", "callBackMessage": true, "recordCalls": true, "thirdCallBack": "", "noDigitWhisperMessage": "Miss guided trolls coming", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "digitPrompt": true, "callBack": true, "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Herman Vermaak", "excludeGroups": true, "contactUsing": "phone", "id": 15}, {"fullName": "Mike Jones", "contactUsing": "phone", "id": 183}]}, "voicemailMessageType": "text", "whisperMessageType": "text", "noDigitWhisperMessageType": "text", "secondCallBack": "", "greetingMessage": true, "language": "en", "digitWhisperMessage": "Welcome to the auto tree so press 2", "voicemail": true, "playHoldMusic": true, "notifyAdfCustom": "", "whisperMessage": "Gansta talking rusbbish", "customHoldMusic": true}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""}	t	4	t	2018-03-20 00:37:57.322786		priority	Organic Search	twilio
2018-03-20 00:40:05.405053+00	2018-03-20 02:50:38.008389+00	149	+13367394103	t	f	t	Default Phone Number	PNcd31d8c4381073d246126da7d4674c31	{"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "notifyAdf": false, "digitRoutings": [], "routingType": "default", "digitWhisperMessageType": "", "holdMusicId": "e782a0ca-6398-4db0-a76c-28072ff3e657", "firstCallBack": "", "callBackTextType": "", "holdMusicFilename": "EdMeeker-TakeMeOutToTheBallGame-remastered.mp3", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "digitPrompt": false, "callBack": false, "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Herman Vermaak", "excludeGroups": true, "contactUsing": "phone", "id": 15}]}, "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "voicemail": true, "playHoldMusic": true, "notifyAdfCustom": "", "whisperMessage": "", "customHoldMusic": true}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""}	f	4	t	2018-03-20 02:50:38.006718		priority	Organic Search	twilio
2018-02-13 01:02:36.101685+00	2018-03-20 03:10:05.229832+00	146	+13367394103	t	f	t	Hellbent Number	PNcd31d8c4381073d246126da7d4674c31	{"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "digitRoutings": [], "routingType": "default", "notifyAdf": true, "thirdCallBack": "", "firstCallBack": "", "hiddenInformation": "", "recordCalls": true, "digitWhisperMessageType": "", "noDigitWhisperMessage": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "digitPrompt": false, "callBack": false, "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Coby Steak", "excludeGroups": true, "contactUsing": "phone", "id": 179}]}, "voicemailMessageType": "", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "language": "en", "digitWhisperMessage": "", "voicemail": true, "playHoldMusic": false, "notifyAdfCustom": "hv13@hotmail.com", "whisperMessage": "", "customHoldMusic": false}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "hjvermaak@gmail.com", "notifyMissedMe": true, "notifyAllMe": false, "notifyAllAgents": false, "notifyMissedCustom": ""}	f	28	t	2018-03-20 03:10:05.22919		priority	Organic Search	twilio
2018-03-20 02:51:48.550983+00	2018-05-01 22:48:50.337247+00	150	+13367394103	t	f	t	4U Number	PNcd31d8c4381073d246126da7d4674c31	{"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "digitRoutings": [{"retryRouting": 0, "callOrder": "sequence", "dialDigit": "1", "name": "When digit 1 is pressed:", "agents": [{"fullName": "Herman Vermaak", "contactUsing": "phone", "id": 15}]}, {"retryRouting": 0, "callOrder": "simultaneous", "dialDigit": "2", "name": "When digit 2 is pressed", "agents": [{"fullName": "Mike Jones", "contactUsing": "phone", "id": 183}, {"fullName": "Herman Vermaak", "contactUsing": "phone", "id": 15}]}], "routingType": "digits", "notifyAdf": false, "holdMusicId": "ec882f35-d979-46b1-bb0f-a59f1e3761a3", "firstCallBack": "", "callBackTextType": "", "holdMusicFilename": "LydiaMendozaLosBesosDeMiNegraNew.mp3", "hiddenInformation": "", "digitWhisperMessageType": "text", "callBackMessage": false, "recordCalls": true, "thirdCallBack": "", "noDigitWhisperMessage": "Sorry Please press 1 or 2", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "digitPrompt": false, "callBack": false, "defaultRouting": {"retryRouting": 0, "callOrder": "simultaneous", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Herman Vermaak", "excludeGroups": true, "contactUsing": "phone", "id": 15}, {"fullName": "Mike Jones", "contactUsing": "phone", "id": 183}]}, "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "text", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "Blue Mountain press 1 Gold Mountain press 2", "voicemail": true, "playHoldMusic": true, "notifyAdfCustom": "", "whisperMessage": "", "customHoldMusic": true}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""}	f	4	t	2018-05-01 22:48:50.336422		priority	Organic Search	twilio
2018-03-20 04:01:11.865379+00	2018-03-21 13:15:01.721848+00	152	+13367394103	t	f	t	Default Phone Number	PNcd31d8c4381073d246126da7d4674c31	{"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "digitRoutings": [], "routingType": "default", "notifyAdf": false, "holdMusicId": "6b6a5c86-102e-436d-bedd-e1aeb384def8", "whisperMessageAudio": 27, "firstCallBack": "0", "callBackTextType": "text", "holdMusicFilename": "EdMeeker-TakeMeOutToTheBallGame-remastered.mp3", "hiddenInformation": "This is a simple man caller", "digitWhisperMessageType": "", "callBackMessage": true, "recordCalls": true, "thirdCallBack": "", "noDigitWhisperMessage": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "digitPrompt": true, "callBack": true, "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"contactUsing": "phone", "fullName": "Coby Steak", "phoneNumber": "7732909650", "id": "179"}]}, "voicemailMessageType": "text", "whisperMessageType": "audio", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": true, "language": "en", "digitWhisperMessage": "", "voicemail": true, "playHoldMusic": true, "notifyAdfCustom": "", "whisperMessage": "Good afternoon my man", "customHoldMusic": true}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""}	t	28	t	2018-03-21 13:15:01.720345		priority	Organic Search	twilio
2018-03-20 03:04:51.677699+00	2018-05-01 22:41:56.83521+00	151	+15626663928	t	f	t	Bollar Time Number	n-m4mz55em3cqgodtnwqxgygy	{"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "notifyAdf": false, "digitRoutings": [], "routingType": "default", "digitWhisperMessageType": "", "holdMusicId": "fe7a6d25-87a2-4aeb-8592-0a243565f173", "whisperMessageAudio": 26, "firstCallBack": "", "callBackTextType": "", "holdMusicFilename": "EdMeeker-TakeMeOutToTheBallGame-remastered.mp3", "hiddenInformation": "Good man calling me", "callBackMessage": false, "recordCalls": true, "thirdCallBack": "", "noDigitWhisperMessage": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "digitPrompt": true, "callBack": false, "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Herman Vermaak", "excludeGroups": true, "contactUsing": "phone", "id": 15}]}, "voicemailMessageType": "text", "whisperMessageType": "text", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": true, "language": "en", "digitWhisperMessage": "", "voicemail": true, "playHoldMusic": true, "notifyAdfCustom": "", "whisperMessage": "Hello world. Show me the way!", "customHoldMusic": true}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""}	f	4	t	2018-05-01 22:41:56.833598		tracking	Organic Search	bandwidth
2018-03-21 13:15:34.087026+00	2018-03-21 14:34:04.4896+00	153	+13367394103	t	f	t	Default Phone Number	PNcd31d8c4381073d246126da7d4674c31	{"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "notifyAdf": false, "digitRoutings": [], "routingType": "default", "digitWhisperMessageType": "", "holdMusicId": "8457a71f-6feb-4734-8706-80663747b71e", "firstCallBack": "", "callBackTextType": "", "holdMusicFilename": "this_is_harry.mp3", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "digitPrompt": false, "callBack": false, "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"contactUsing": "phone", "fullName": "Coby Steak", "phoneNumber": "7732909650", "id": "179"}]}, "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "voicemail": true, "playHoldMusic": true, "notifyAdfCustom": "", "whisperMessage": "", "customHoldMusic": true}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""}	f	28	t	2018-03-21 14:34:04.488928		priority	Organic Search	twilio
2018-03-21 14:34:24.642154+00	2018-03-26 00:04:14.613173+00	154	+13367394103	t	f	t	Default Phone Number	PNcd31d8c4381073d246126da7d4674c31	{"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "notifyAdf": false, "digitRoutings": [], "routingType": "default", "digitWhisperMessageType": "", "firstCallBack": "", "callBackTextType": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "digitPrompt": false, "callBack": false, "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"contactUsing": "phone", "fullName": "Coby Steak", "phoneNumber": "7732909650", "id": "179"}]}, "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "voicemail": true, "playHoldMusic": false, "notifyAdfCustom": "", "whisperMessage": "", "customHoldMusic": false}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""}	f	28	t	2018-03-26 00:04:14.611465		priority	Organic Search	twilio
2018-03-26 00:06:12.968624+00	2018-03-26 00:16:10.414688+00	155	+13367394103	t	f	t	My Twilio Tester Number	PNcd31d8c4381073d246126da7d4674c31	{"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "digitRoutings": [], "routingType": "default", "notifyAdf": false, "holdMusicId": "7228f27c-436f-4aca-b566-59a179f0f8af", "firstCallBack": "", "callBackTextType": "", "holdMusicFilename": "EdMeeker-TakeMeOutToTheBallGame-remastered.mp3", "hiddenInformation": "This is a test call for Mr. Stafanovic", "digitWhisperMessageType": "", "callBackMessage": false, "recordCalls": true, "thirdCallBack": "", "noDigitWhisperMessage": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "digitPrompt": true, "callBack": false, "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"contactUsing": "phone", "fullName": "Coby Steak", "phoneNumber": "7732909650", "id": "179"}]}, "voicemailMessageType": "text", "whisperMessageType": "text", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": true, "language": "en", "digitWhisperMessage": "", "voicemail": true, "playHoldMusic": false, "notifyAdfCustom": "", "whisperMessage": "Hello Mr. Brown", "customHoldMusic": false}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": false, "notifyAllAgents": false, "notifyMissedCustom": ""}	t	28	f	\N		priority	Organic Search	twilio
2018-05-01 22:42:41.792254+00	2018-12-10 19:01:00.788054+00	156	+15626663928	t	f	t	Bandwidth	n-m4mz55em3cqgodtnwqxgygy	{"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "notifyAdf": true, "digitRoutings": [], "routingType": "default", "digitWhisperMessageType": "", "firstCallBack": "", "callBackTextType": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "digitPrompt": false, "callBack": false, "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Herman Vermaak", "excludeGroups": true, "contactUsing": "phone", "id": 15}]}, "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "voicemail": true, "playHoldMusic": false, "notifyAdfCustom": "harry@buyercall.com", "whisperMessage": "", "customHoldMusic": false}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": false, "notifyAllAgents": false, "notifyMissedCustom": ""}	f	4	t	2018-12-10 19:01:00.786766		tracking	Organic Search	bandwidth
2018-05-01 22:49:26.401688+00	2018-05-08 20:17:43.769252+00	157	+13367394103	t	f	t	Default Phone Number	PNcd31d8c4381073d246126da7d4674c31	{"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "notifyAdf": true, "digitRoutings": [], "routingType": "default", "digitWhisperMessageType": "", "firstCallBack": "", "callBackTextType": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "digitPrompt": false, "callBack": false, "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Herman Vermaak", "excludeGroups": true, "contactUsing": "phone", "id": 15}]}, "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "voicemail": true, "playHoldMusic": false, "notifyAdfCustom": "harry@buyercall.com", "whisperMessage": "", "customHoldMusic": false}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""}	f	4	t	2018-05-08 20:17:43.767359		priority	Organic Search	twilio
2018-01-01 21:12:06.028118+00	2018-11-19 22:33:20.833689+00	139	+13367394103	t	f	t	Twilio Number	PNcd31d8c4381073d246126da7d4674c31	{"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "digitRoutings": [{"retryRouting": 0, "callOrder": "sequence", "dialDigit": "1", "name": "When digit 1 is pressed:", "agents": [{"fullName": "Herman Vermaak", "contactUsing": "phone", "id": 15}]}, {"retryRouting": 0, "callOrder": "sequence", "dialDigit": "2", "name": "When digit 2 is pressed", "agents": [{"fullName": "Barry Bermaak", "contactUsing": "phone", "id": 164}]}], "routingType": "default", "digitWhisperMessageType": "text", "thirdCallBack": "", "whisperMessageAudio": 20, "firstCallBack": "", "hiddenInformation": "", "digitWhisperMessageAudio": 10, "recordCalls": true, "notifyAdf": true, "noDigitWhisperMessage": "Please press 1 for harry or 2 for sally", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "digitPrompt": false, "callBack": false, "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Herman Vermaak", "contactUsing": "phone", "id": 15}]}, "voicemailMessageType": "", "whisperMessageType": "audio", "noDigitWhisperMessageType": "text", "secondCallBack": "", "language": "en", "digitWhisperMessage": "Please press 1 for harry or 2 for sally", "voicemail": true, "playHoldMusic": false, "notifyAdfCustom": "hv13@hotmail.com", "whisperMessage": "", "customHoldMusic": false}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "hjvermaak@gmail.com", "notifyMissedMe": true, "notifyAllMe": false, "notifyAllAgents": false, "notifyMissedCustom": ""}	f	4	t	2018-11-19 22:33:20.832665		priority	Organic Search	twilio
2018-05-08 20:18:12.012226+00	2018-06-09 18:43:16.80886+00	158	+13367394103	t	f	t	Blue Works	PNcd31d8c4381073d246126da7d4674c31	{"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "digitRoutings": [], "routingType": "default", "notifyAdf": true, "firstCallBack": "", "callBackTextType": "", "hiddenInformation": "", "digitWhisperMessageType": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "digitPrompt": false, "callBack": false, "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Herman Vermaak", "excludeGroups": true, "contactUsing": "phone", "id": 15}]}, "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "voicemail": false, "playHoldMusic": false, "notifyAdfCustom": "hjvermaak@gmail.com", "whisperMessage": "", "customHoldMusic": false}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""}	f	4	t	2018-06-09 18:43:16.806241		priority	Organic Search	twilio
2018-11-20 18:00:58.355214+00	2018-11-20 18:00:58.355236+00	160	+13367394103	t	f	t	Blue Cross Number	PNcd31d8c4381073d246126da7d4674c31	{"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch. As soon as We can. ", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Barry Bermaak", "excludeGroups": true, "contactUsing": "phone", "id": 164}]}, "configSMSSetup": true, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": true, "customHoldMusic": false}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""}	f	4	f	\N		priority	Organic Search	twilio
2018-07-25 20:37:18.562967+00	2018-11-19 22:33:15.392821+00	159	+13367394103	t	f	t	Twilio Number SMS	PNcd31d8c4381073d246126da7d4674c31	{"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "Yo dude, is this working? Please get on this for me!", "SMSAutoReplyImageUrl": "", "digitRoutings": [], "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "notifyAdf": true, "firstCallBack": "", "SMSRuleOneKeyword": "Bobby", "SMSRuleOneEmails": "harry@buyercall.com", "callBackTextType": "", "SMSRuleOneRecipientAgent": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneSMSBody": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "email", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Barry Bermaak", "excludeGroups": true, "contactUsing": "phone", "id": 164}]}, "configSMSSetup": true, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": true, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "harry@buyercall.com", "SMSRuleOneRecipientType": "custom", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "hjvermaak@gmail.com", "notifyMissedMe": true, "notifyAllMe": false, "notifyAllAgents": false, "notifyMissedCustom": ""}	f	4	t	2018-11-19 22:33:15.390834		priority	Organic Search	twilio
2019-03-01 01:56:59.148315+00	2019-03-01 01:56:59.148349+00	161	+13367394103	t	f	t	Staging Testing Number	PNcd31d8c4381073d246126da7d4674c31	{"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": true, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Herman Vermaak", "excludeGroups": true, "contactUsing": "phone", "id": 15}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": false, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "harry@buyercall.com", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": false, "notifyAllAgents": false, "notifyMissedCustom": ""}	f	4	f	\N		priority	Organic Search	twilio
2019-04-11 22:46:40.271556+00	2019-04-11 23:20:02.459464+00	163	+13367394103	t	f	t	GoLive Phone Number	PNcd31d8c4381073d246126da7d4674c31	{"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Herman Vermaak", "excludeGroups": true, "contactUsing": "phone", "id": 15}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": false, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": false, "notifyAllAgents": false, "notifyMissedCustom": ""}	f	4	t	2019-04-11 23:20:02.457991		priority	Organic Search	twilio
2019-03-19 03:20:40.50611+00	2019-04-11 23:20:06.754625+00	162	+13367394103	t	f	t	Rock n Roll	PNcd31d8c4381073d246126da7d4674c31	{"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Herman Vermaak", "excludeGroups": true, "contactUsing": "phone", "id": 15}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""}	f	4	t	2019-04-11 23:20:06.753994		priority	Organic Search	twilio
2019-04-11 23:20:43.293415+00	2019-04-12 00:02:27.258793+00	164	+13367394103	t	f	t	Pray Number	PNcd31d8c4381073d246126da7d4674c31	{"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Herman Vermaak", "excludeGroups": true, "contactUsing": "phone", "id": 15}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": false, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": false, "notifyAllAgents": false, "notifyMissedCustom": ""}	f	4	t	2019-04-12 00:02:27.256346		priority	Organic Search	twilio
2019-04-12 00:03:11.63931+00	2019-04-12 01:00:46.582288+00	165	+13367394103	t	f	t	Bliksem Nommer	PNcd31d8c4381073d246126da7d4674c31	{"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Herman Vermaak", "excludeGroups": true, "contactUsing": "phone", "id": 15}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": false, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""}	f	4	t	2019-04-12 01:00:46.58102		priority	Organic Search	twilio
2019-04-12 01:01:11.13058+00	2019-04-12 01:01:11.130602+00	166	+13367394103	t	f	t	Doos Nommer	PNcd31d8c4381073d246126da7d4674c31	{"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Herman Vermaak", "excludeGroups": true, "contactUsing": "phone", "id": 15}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""}	f	4	f	\N		priority	Organic Search	twilio
2019-04-12 13:50:24.365815+00	2019-04-12 18:15:28.857737+00	168	+13367394103	t	f	t	Colbert Number	PNcd31d8c4381073d246126da7d4674c31	{"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Herman Vermaak", "excludeGroups": true, "contactUsing": "phone", "id": 15}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""}	f	4	t	2019-04-12 18:15:28.856602		priority	Organic Search	twilio
2019-04-12 18:15:54.414936+00	2019-04-14 00:42:44.938043+00	169	+13367394103	t	f	t	Beef Cake Number	PNcd31d8c4381073d246126da7d4674c31	{"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Herman Vermaak", "excludeGroups": true, "contactUsing": "phone", "id": 15}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""}	f	4	t	2019-04-14 00:42:44.936837		priority	Organic Search	twilio
2019-04-12 01:30:18.811422+00	2019-04-14 00:42:48.934851+00	167	+17739749320	t	f	t	OneTime Number	PN398e716114172d71fef7b84d7f8a38d1	{"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Herman Vermaak", "excludeGroups": true, "contactUsing": "phone", "id": 15}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""}	f	4	t	2019-04-14 00:42:48.934226		priority	Organic Search	twilio
2019-04-14 00:44:58.572029+00	2019-04-14 00:44:58.572051+00	170	+13367394103	t	f	t	Saturday Testing	PNcd31d8c4381073d246126da7d4674c31	{"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Herman Vermaak", "excludeGroups": true, "contactUsing": "phone", "id": 15}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false}	{"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""}	f	4	f	\N		priority	Organic Search	twilio
\.


--
-- Name: phonenumbers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('phonenumbers_id_seq', 170, true);


--
-- Data for Name: report_user_tie; Type: TABLE DATA; Schema: public; Owner: -
--

COPY report_user_tie (created_on, updated_on, user_id, report_id, partnership_accounts_id, emails) FROM stdin;
2019-05-23 23:18:11.425707+00	2019-05-29 18:39:40.443181+00	21	2	4	{"emails": ""}
\.


--
-- Data for Name: reports; Type: TABLE DATA; Schema: public; Owner: -
--

COPY reports (id, name) FROM stdin;
1	List of Interest
2	Daily Leads Report
\.


--
-- Name: reports_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('reports_id_seq', 1, true);


--
-- Data for Name: subscriptions; Type: TABLE DATA; Schema: public; Owner: -
--

COPY subscriptions (created_on, updated_on, id, plan, coupon, credit_card_id, cancelled_subscription_on, limit_warning_count, payment_id, twilio_subaccount_sid, usage_current_month, status) FROM stdin;
2017-04-30 15:45:03.67457+00	2019-10-01 04:00:01.063189+00	16	invoice	\N	\N	\N	0	\N	\N	0	active
2016-01-30 20:08:02.244938+00	2019-10-01 04:00:01.063189+00	2	gold	\N	2	\N	0	cus_7oiRfiPwgWi4MB	ACee709bef7aa2774af54c89ca022260aa	0	active
2017-04-30 15:44:32.175595+00	2019-10-01 04:00:01.063189+00	15	invoice	\N	\N	\N	0	cus_AZTAzxp9aDJA0X	AC1be71aee3e39993d976d8e40687ea2b3	0	active
2017-04-30 15:48:05.954491+00	2019-10-01 04:00:01.063189+00	17	invoice	\N	\N	\N	0	cus_AZTDjKJHG5FqpD	ACde9b2dd73451bea2bc9f21bd0f7bb878	0	active
2017-06-15 15:04:05.147253+00	2019-10-01 04:00:01.063189+00	19	invoice	\N	\N	\N	0	cus_Aqgtb7FoKBSwVK	ACe386bddbc6f8f20d23d5dbe313a76125	0	active
2017-11-07 16:24:37.292794+00	2019-10-01 04:00:01.063189+00	20	invoice	\N	\N	\N	0	cus_Bj1wupamPdMcN0	ACbd7756819f4882feb347788ad7959655	0	active
2017-04-30 15:40:18.471503+00	2019-10-01 04:00:01.063189+00	12	prioritynumber	\N	12	\N	0	cus_AZT5AZQOWA4pYi	ACf15133e5a18e109ba99252d4f2579fc4	0	active
2017-11-10 16:25:34.470522+00	2019-10-01 04:00:01.063189+00	21	invoice	\N	\N	\N	0	cus_Bk9duiFJyPzgc3	AC3ce1d3ffee57732695c4880c88c10d69	0	active
2018-01-31 16:19:35.486949+00	2019-10-01 04:00:03.966186+00	22	starterpackage	\N	13	\N	0	cus_CEs3sxONyFOy8r	ACe48495209a80c327bf6fdce38ceb154e	0	active
2018-01-10 21:10:02.065409+00	2019-10-01 04:00:01.063189+00	23	partnershipsingle	\N	\N	\N	0	cus_CFJVGJXtJLFFxq	AC813e1806fcd88afc543d509dc892288a	0	active
2018-02-08 23:10:42.839072+00	2019-10-01 04:00:01.063189+00	25	starterpluspackage	\N	15	\N	0	cus_CHyU664tKloaRt	AC813e1806fcd88afc543d509dc892288a	0	active
2018-02-13 01:17:14.974743+00	2019-10-01 04:00:01.063189+00	26	starterpackage	\N	16	\N	0	cus_CJVQVwO5fkOr2u	AC813e1806fcd88afc543d509dc892288a	0	active
2017-04-30 15:43:16.784931+00	2019-10-01 04:00:01.063189+00	14	invoice	\N	\N	\N	0	cus_AZT8iYpiHzmWBx	AC813e1806fcd88afc543d509dc892288a	0	active
2018-02-08 23:07:16.343132+00	2019-10-01 04:00:01.063189+00	24	starterpackage	\N	14	\N	0	cus_CHyQeCzwhoofmK	ACb990df36db3b4ccd4fc2da706c16da1e	0	active
2018-04-21 20:25:34.610003+00	2019-10-01 04:00:01.063189+00	27	invoice	\N	\N	\N	0	cus_Ciu55ZC25ycsp6	AC5ff42bd5b73af1b890363c8db2cfc34d	0	active
\.


--
-- Name: subscriptions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('subscriptions_id_seq', 27, true);


--
-- Data for Name: users; Type: TABLE DATA; Schema: public; Owner: -
--

COPY users (created_on, updated_on, id, role, is_active, username, email, password, is_tos_agreed, sign_in_count, current_sign_in_on, current_sign_in_ip, last_sign_in_on, last_sign_in_ip, firstname, lastname, phonenumber, company, extension, title, department, locale, leads_onboard, agents_onboard, outbound_onboard, inbound_onboard, full_feature_access, inbound_routing_access, outbound_routing_access, forms_access, external_api_access, partnership_account_id, partnership_id, two_factor_auth, two_factor_auth_onboard, partnership_account_group_id) FROM stdin;
2018-04-21 20:25:15.355213+00	2018-04-21 20:25:15.355234+00	53	admin	t	\N	last@buyercall.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	t	0	\N	\N	\N	\N	Bruce	Last	7732909650	Pasword	\N	\N	\N	en	f	f	f	f	t	t	t	t	f	30	1	f	f	\N
2018-01-30 22:41:21.493398+00	2018-01-30 22:41:21.493425+00	23	admin	t	\N	monster@buyercall.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	t	0	\N	\N	\N	\N	Brock	Monster	7732909650	Monster Inc	\N	\N	\N	en	f	f	f	f	t	t	t	t	f	19	1	f	f	\N
2018-12-27 18:56:28.264462+00	2018-12-27 18:56:28.264483+00	55	member	t		support@buyercall.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	f	0	\N	\N	\N	\N	Tom	Reynolds	+17732909650	Harry Loads LLC	0	Manager	Sales	en	f	f	f	f	t	t	t	t	f	4	\N	f	f	\N
2018-02-07 01:22:02.326604+00	2018-02-07 01:22:02.326632+00	33	partner	t	\N	dfsd@buyercall.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	f	0	\N	\N	\N	\N				Mary Tolla	\N	\N	\N	en	f	f	f	f	t	t	t	t	f	\N	8	f	f	\N
2018-02-13 01:16:09.367219+00	2018-02-13 01:23:34.378694+00	50	admin	t	\N	morry@buyercall.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	t	0	\N	\N	\N	\N	Molly	Perpleel	7732909650	Morry Construction	\N	\N	\N	en	t	f	t	f	t	t	t	t	f	29	1	f	f	\N
2018-02-13 01:00:32.562468+00	2018-03-26 00:15:29.220551+00	49	admin	t	\N	steak@buyercall.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	t	6	2018-03-26 00:15:29.218675+00	207.181.228.26	2018-03-20 03:59:09.83705+00	173.199.120.251	Coby	Steak	7732909650	Steak Inc	\N	\N	\N	en	t	f	f	t	t	t	t	t	f	28	16	f	f	\N
2016-05-02 19:09:58.317637+00	2018-01-01 00:00:00.07884+00	3	admin	t	\N	harry3@buyercall.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	t	52	2017-04-30 15:10:18.107229+00	73.73.173.164	2017-02-11 19:57:33.184203+00	50.165.237.52	Steve	Neu	8035462731	SmartTech Enterprises	\N	\N	\N	en	t	t	t	t	t	t	t	t	f	3	1	f	f	\N
2016-01-30 18:36:30.151213+00	2018-01-01 00:00:00.07884+00	2	admin	t	\N	harry2@buyercall.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	t	29	2017-04-30 15:14:51.643325+00	73.73.173.164	2016-05-19 02:22:05.236196+00	174.106.127.237	Harry	Vermaak	7732909650	Jones Inc	\N	\N	\N	en	t	t	t	t	t	t	t	t	f	2	1	f	f	\N
2017-03-12 17:46:22.81771+00	2018-01-01 00:00:00.07884+00	11	admin	f	deeplaid	harry11@buyercall.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	t	0	\N	\N	\N	\N	niwale	dishman	+15175217731	sales	100	manager	sales	en	t	t	t	t	t	t	t	t	f	11	1	f	f	\N
2016-11-09 15:22:37.531554+00	2018-01-01 00:00:00.07884+00	6	admin	t	\N	harry6@buyercall.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	t	30	2017-12-20 20:10:34.647203+00	207.181.228.26	2017-11-09 16:17:10.704207+00	38.118.71.150	Harry	Vermaak	7732909650	BuyerCall LLC	\N	\N	\N	en	t	t	t	t	t	t	t	t	f	6	1	f	f	\N
2017-03-09 15:49:41.968265+00	2018-01-01 00:00:00.07884+00	10	admin	t	\N	harry10@buyercall.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	t	8	2017-12-20 20:12:07.713649+00	207.181.228.26	2017-10-24 19:26:47.01723+00	172.75.89.15	Harry	Vermaak	7739699892	DataOne Perfect Fit	\N	\N	\N	en	t	t	t	t	t	t	t	t	f	10	1	f	f	\N
2017-11-30 20:37:20.753061+00	2018-01-01 00:00:00.07884+00	17	admin	t	\N	harry17@buyercall.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	t	1	2017-12-01 16:47:16.97564+00	50.255.120.137	\N	\N	Connor	Kroshus	763-200-4560	Auto Approve	\N	\N	\N	en	t	t	t	t	t	t	t	t	f	17	1	f	f	\N
2018-02-07 17:36:13.947364+00	2018-02-07 22:53:38.674844+00	37	partner	t	\N	buyercallwerweb2342@gmail.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	f	0	\N	\N	\N	\N				ManuTaco	\N	\N	\N	en	f	f	f	f	t	t	t	t	f	\N	12	f	f	\N
2017-11-30 20:34:58.402715+00	2018-01-01 00:00:00.07884+00	16	admin	t	CKroshus	harry16@buyercall.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	t	0	\N	\N	\N	\N	Connor	Kroshus	7202265551	Auto Approve	\N	Director of Business Development 	client relationship	en	t	f	f	f	t	t	t	t	f	16	1	f	f	\N
2018-02-08 23:10:13.809292+00	2018-02-08 23:14:59.86606+00	48	admin	t	\N	bow@buyercall.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	t	0	\N	\N	\N	\N	Bow	Tie	7732909650	Password	\N	\N	\N	en	t	f	t	f	t	t	t	t	f	27	1	f	f	\N
2018-11-07 20:00:25.714611+00	2018-11-16 14:09:26.674354+00	54	agent	t	\N	trevor@level5advertising.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	t	3	2018-11-16 14:09:26.669384+00	38.118.71.150	2018-11-07 20:12:57.437134+00	38.118.71.150	Trevor	Moortgat	703-543-9012	Gondon Group LTD	\N	Manager	none	en	f	f	f	f	t	t	t	t	f	4	1	f	f	\N
2019-04-08 14:13:06.963793+00	2019-04-08 17:38:37.547989+00	57	admin	t	\N	autosoft@buyercall.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	t	2	2019-04-08 17:25:49.577845+00	69.95.71.130	2019-04-08 14:15:09.970541+00	71.197.213.217	Autosoft	DMS	8004734630	Gondon Group LTD	\N		none	en	t	t	f	t	t	t	t	t	f	4	1	f	f	\N
2019-03-17 20:19:31.799087+00	2019-03-17 20:19:31.799104+00	56	admin	t	\N	bob@buyercall.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	t	0	\N	\N	\N	\N	Bob	Buyer	2342342342	Cars ltd	\N	\N	\N	en	f	f	f	f	t	t	t	t	f	31	1	f	f	\N
2018-02-06 19:41:28.723932+00	2018-02-28 21:10:57.661974+00	31	partner	t	\N	buyercall4@gmail.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	f	1	2018-02-28 21:10:57.660103+00	207.181.228.26	\N	\N				IntellaCar	\N	\N	\N	en	f	f	f	f	t	t	t	t	f	\N	6	f	f	\N
2018-02-08 17:52:17.338563+00	2018-02-18 20:41:53.777678+00	44	partner	t	\N	buyercall@gmail.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	t	4	2018-02-18 20:41:53.776479+00	207.181.228.26	2018-02-13 17:02:54.503715+00	207.181.228.26	Bobby	White	7732909650	INTELLACAR	\N	\N	\N	en	f	f	f	f	t	t	t	t	f	\N	16	f	f	\N
2017-11-07 16:24:23.739996+00	2018-01-01 00:00:00.07884+00	14	admin	t	\N	harry14@buyercall.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	t	12	2017-12-30 15:29:17.766751+00	207.181.228.26	2017-12-18 23:34:51.971766+00	38.118.71.150	Wayne	Daniel	7706272693	My Car Loan Direct	\N	\N	\N	en	t	t	t	t	t	t	t	t	f	14	1	f	f	\N
2017-03-22 15:44:47.518131+00	2018-01-01 00:00:00.07884+00	12	admin	t	\N	harry12@buyercall.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	t	15	2017-10-31 18:56:49.679359+00	207.181.228.26	2017-09-21 20:00:37.274552+00	207.181.228.26	Blake	Mclain	6822270659	My Car Store	\N	\N	\N	en	t	t	f	t	f	f	f	f	f	12	1	f	f	\N
2017-11-10 16:25:23.867917+00	2018-01-01 00:00:00.07884+00	15	admin	t	\N	harry15@buyercall.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	t	30	2017-12-30 15:18:45.831727+00	207.181.228.26	2017-12-27 19:18:24.327932+00	50.255.120.137	Auto	Approve	7732909650	AutoApprove	\N	\N	\N	en	t	t	t	t	t	t	t	t	f	15	1	f	f	\N
2017-12-19 08:58:49.120621+00	2018-01-01 00:00:00.07884+00	18	admin	t	\N	harry18@buyercall.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	t	0	\N	\N	\N	\N	JamisonHer	JamisonHerHY	86983185799	google	\N	\N	\N	en	f	f	f	f	t	t	t	t	f	18	1	f	f	\N
2016-10-13 15:50:01.385607+00	2018-01-01 00:00:00.07884+00	5	admin	t	Protokinetix	harry5@buyercall.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	t	8	2017-12-20 20:11:42.785879+00	207.181.228.26	2017-04-30 15:12:21.362817+00	73.73.173.164	Clarence	Smith	7739699892	protokinetix	\N		none	en	t	t	t	t	t	t	t	f	f	5	1	f	f	\N
2017-02-10 21:41:52.63476+00	2018-01-01 00:00:00.07884+00	8	admin	t	mazdaofmesquite	harry8@buyercall.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	t	31	2017-11-29 18:46:49.826681+00	172.94.45.23	2017-06-06 20:14:03.274427+00	73.73.173.164	Frank	Sobyak	2146840449	Mazda of Mesquite	\N		none	en	t	t	f	t	f	f	f	f	f	8	1	f	f	\N
2017-02-05 08:14:11.476076+00	2018-01-01 00:00:00.07884+00	7	admin	f	babukhan	harry7@buyercall.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	t	1	2017-02-08 18:02:34.648421+00	103.52.135.134	\N	\N	babu	khan	+14156637470	luxry care	100	manager	sales	en	t	t	t	t	t	t	t	t	f	7	1	f	f	\N
2018-03-07 21:45:56.8965+00	2019-10-23 19:25:10.629114+00	52	agent	t	\N	tester@buyercall.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	t	13	2019-10-23 19:25:10.627316+00	102.250.5.187	2019-10-22 13:13:56.387714+00	102.250.7.141	Testing	User	7735469660	Gondon Group LTD	\N		none	en	t	t	f	f	t	t	t	t	f	4	1	f	t	\N
2018-02-28 21:04:57.572395+00	2019-04-26 16:12:06.138253+00	51	admin	t	\N	saastool4@gmail.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	t	0	\N	\N	\N	\N	Goldie	Locks	7732909650	Gondon Group LTD	773		none	en	f	f	f	f	t	t	t	t	f	4	1	f	f	\N
2018-01-03 00:24:34.99474+00	2019-10-29 19:48:26.026701+00	21	admin	t	\N	harry@buyercall.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	t	65	2019-10-29 19:34:58.494396+00	102.250.1.237	2019-10-24 13:59:00.016547+00	197.185.114.138	John	McGill	7739699892	Gondon Group LTD	847		none	en	t	t	t	t	t	t	t	t	t	4	1	f	t	1
2018-01-01 23:42:11.583711+00	2019-06-21 00:31:06.716615+00	20	admin	t	\N	hv13@hotmail.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	t	18	2019-06-21 00:31:06.715419+00	71.197.213.217	2019-06-21 00:29:42.096832+00	71.197.213.217	Level 5	Demo	7732909650	Gordon Group LTD	773	Consultant	none	en	t	t	f	f	t	t	t	t	f	4	1	f	t	2
2016-05-04 21:13:38.067888+00	2019-10-11 16:53:58.191095+00	4	admin	t	\N	harry4@buyercall.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	t	209	2018-08-09 13:45:23.710116+00	207.181.228.26	2018-07-26 18:46:48.762246+00	207.181.228.26	Mike	Bolton	8035462731	Gondon Group LTD	\N		none	en	t	t	t	t	t	t	t	t	t	4	1	t	f	\N
2016-01-27 20:07:29.250518+00	2019-10-22 12:53:35.032979+00	1	sysadmin	t	\N	harry1@buyercall.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	f	167	2019-10-22 12:53:35.030954+00	102.250.7.226	2019-07-27 18:32:00.345497+00	71.197.213.217					\N	\N	\N	en	t	t	t	t	t	t	t	t	f	1	1	f	t	\N
2017-06-15 15:03:52.570043+00	2018-01-02 15:00:12.332294+00	13	admin	t	\N	harry13@buyercall.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	t	80	2018-01-02 15:00:12.328222+00	207.181.228.26	2017-12-30 15:30:07.597321+00	207.181.228.26	Rondis	Cavender	4043921410	Cavender Auto Sales	\N	\N	\N	en	t	t	t	t	t	f	f	t	f	13	1	f	f	\N
2017-03-01 21:11:34.429734+00	2018-01-19 16:32:16.366168+00	9	admin	t	\N	harry9@buyercall.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	t	52	2018-01-19 16:32:16.364632+00	169.53.37.22	2017-11-29 18:37:51.145871+00	172.94.45.23	John	Shumaker	2147836083	Empire Exotic Motors Inc	\N	\N	\N	en	t	t	f	t	f	t	f	f	f	9	1	f	f	\N
2018-01-31 16:10:34.878276+00	2018-01-31 16:10:34.878302+00	28	admin	t	\N	sdfsd@dsfsd.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	t	0	\N	\N	\N	\N	dsfsdf	sdfsdf	7732909650	fgdfgd	\N	\N	\N	en	f	f	f	f	t	t	t	t	f	20	1	f	f	\N
2018-02-07 02:08:22.897721+00	2018-02-07 15:55:08.135855+00	34	partner	t	\N	buyercallfsdfsdffsdf@gmail.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	f	0	\N	\N	\N	\N				TuTu	\N	\N	\N	en	f	f	f	f	t	t	t	t	f	\N	9	f	f	\N
2018-01-31 16:10:38.595028+00	2018-01-31 16:12:40.609799+00	29	admin	t	\N	steveneu@live.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	t	1	2018-01-31 16:12:40.608161+00	172.75.89.15	\N	\N	Steve	Neu	8035462731	ABC Test Company	\N	\N	\N	en	f	f	f	f	t	t	t	t	f	21	1	f	f	\N
2018-01-31 16:15:12.28106+00	2018-01-31 16:15:12.281094+00	30	admin	t	\N	steveneu12@gmail.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	t	0	\N	\N	\N	\N	Test	Customer	803-546-2731	Test Company A	\N	\N	\N	en	f	f	f	f	t	t	t	t	f	22	1	f	f	\N
2018-02-07 15:56:00.829452+00	2018-02-07 16:04:36.312667+00	35	partner	t	\N	buyercall5465@gmail.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	f	0	\N	\N	\N	\N				Coldwell Green LTD	\N	\N	\N	en	f	f	f	f	t	t	t	t	f	\N	10	f	f	\N
2018-02-06 21:17:34.616327+00	2018-02-06 21:17:34.616349+00	32	partner	t	\N	buyercall6@gmail.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	f	0	\N	\N	\N	\N				Coolio Top	\N	\N	\N	en	f	f	f	f	t	t	t	t	f	\N	7	f	f	\N
2018-02-07 16:06:15.460542+00	2018-02-07 17:35:28.644394+00	36	partner	t	\N	buyercallsadasdasdasd@gmail.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	f	0	\N	\N	\N	\N				Root IU	\N	\N	\N	en	f	f	f	f	t	t	t	t	f	\N	11	f	f	\N
2018-02-07 22:54:36.725145+00	2018-02-07 22:59:03.021628+00	38	partner	t	\N	buyercalrewerwel@gmail.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	f	0	\N	\N	\N	\N				Sweetwater LLC	\N	\N	\N	en	f	f	f	f	t	t	t	t	f	\N	13	f	f	\N
2018-02-07 22:59:53.08147+00	2018-02-07 23:05:49.470888+00	39	partner	t	\N	dfdsdf@sdfd.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	t	0	\N	\N	\N	\N	Mario	Swanepol	7732909650	Cchekc LLC	\N	\N	\N	en	f	f	f	f	t	t	t	t	f	\N	14	f	f	\N
2018-02-07 23:19:01.163237+00	2018-02-07 23:20:08.902105+00	40	admin	t	\N	blue@buyercall.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	t	0	\N	\N	\N	\N	Blue	Man	7732909650	Blue State Test Trucks	\N	\N	\N	en	f	t	f	f	t	t	t	t	f	23	14	f	f	\N
2018-02-07 23:27:50.711193+00	2018-02-07 23:27:50.711217+00	42	agent	t	\N	sdfdwerwe@buyercall.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	t	0	\N	\N	\N	\N	Bobbyu	Johe	7732909650	Blue State Test Trucks	\N	fdgdf	none	en	f	f	f	f	t	t	t	t	f	23	14	f	f	\N
2018-02-08 20:31:38.016279+00	2018-02-08 22:18:12.481488+00	45	admin	t	\N	harry007@buyercall.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	t	0	\N	\N	\N	\N	Harry	Vermoos	7732909650	Harry Cars	\N	\N	\N	en	t	t	f	t	t	t	t	t	f	24	16	f	f	\N
2018-02-08 23:05:23.52619+00	2018-02-08 23:05:23.526218+00	47	admin	t	\N	mary@buyercall.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	t	0	\N	\N	\N	\N	Sally	mARY	7732909650	Password	\N	\N	\N	en	f	f	f	f	t	t	t	t	f	26	1	f	f	\N
2018-02-08 22:34:57.413696+00	2018-02-08 23:02:55.559469+00	46	admin	t	\N	steve@gmailbuyercall.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	t	0	\N	\N	\N	\N	Steve	Motelas	7732909650	Steve Cars	\N	\N	\N	en	t	t	f	f	t	t	t	t	f	25	16	f	f	\N
2018-01-03 00:28:47.079203+00	2019-04-11 21:48:46.152264+00	22	agent	t	\N	hermanjvermaak@gmail.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	t	3	2019-04-11 21:37:45.748174+00	71.197.213.217	2018-04-23 18:45:19.253768+00	207.181.228.26	John	McGill	7739699892	Gondon Group LTD	847		none	en	t	t	f	f	t	t	t	t	f	4	1	t	t	\N
2019-04-11 22:08:14.880404+00	2019-04-11 22:08:14.880421+00	58	admin	t	\N	josh@buyercall.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	t	0	\N	\N	\N	\N	Josh	Moore	7732909650	TownCars LTD	\N	\N	\N	en	f	f	f	f	t	t	t	t	f	32	1	f	f	\N
2019-04-11 22:12:50.152255+00	2019-04-11 22:16:42.519522+00	59	admin	t	\N	jones@bobby.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	t	2	2019-04-11 22:16:42.518673+00	71.197.213.217	2019-04-11 22:15:32.342983+00	71.197.213.217	Bobby	Jones	7732909650	TomTom LTD	\N	\N	\N	en	f	f	f	f	t	t	t	t	f	33	6	f	t	\N
2019-10-22 12:55:37.29923+00	2019-10-22 12:58:24.353606+00	61	partner	t	\N	tv@buyercall.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	t	0	\N	\N	\N	\N	Team	Velocity	7732909650	Team Velocity	\N	\N	\N	en	f	f	f	f	t	t	t	t	f	\N	17	f	f	\N
2018-01-01 20:00:36.491504+00	2019-10-29 19:51:17.656679+00	19	partner	t	Buyercall	harry19@buyercall.com	$2a$08$gyCAQZwmq.2dqWxbvTqZE.t2HX7s8dJVwWlIdiljyCawyS9GoXpn6	t	28	2019-10-29 19:51:17.655522+00	102.250.1.216	2019-10-29 19:35:16.590981+00	102.250.1.237					\N	\N	\N	en	f	f	f	f	t	t	t	t	f	\N	1	f	t	\N
2019-10-22 15:18:28.050236+00	2019-10-29 19:51:38.251181+00	62	admin	t	\N	teamvdealer@buyercall.com	$2a$08$nw9m8taRyJSRnQLciDB3ouJG7CYqIMmW406iyykNLpROB4h8T2sV.	t	5	2019-10-29 19:51:38.25007+00	102.250.1.216	2019-10-29 19:44:15.77241+00	102.250.1.185	TeamV	Dealer	7739899698	TeamV Dealer	\N	\N	\N	en	f	f	f	f	t	t	t	t	f	34	17	f	t	\N
\.


--
-- Name: users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('users_id_seq', 62, true);


--
-- Data for Name: widget_agents; Type: TABLE DATA; Schema: public; Owner: -
--

COPY widget_agents (widget_id, agent_id, contact_using, "order") FROM stdin;
73	16	phone	0
24	16	phone	0
23	16	phone	0
22	16	phone	0
49	16	phone	0
46	16	phone	0
94	152	phone	1
94	153	phone	2
98	158	phone	0
52	21	phone	0
8	20	phone	0
53	22	phone	0
1	79	phone	0
3	1	phone	0
2	11	phone	0
97	157	phone	0
83	78	phone	0
95	152	phone	1
95	153	phone	2
76	79	phone	0
7	3	phone	0
37	1	phone	0
84	77	phone	0
36	16	phone	0
36	18	phone	1
36	17	phone	2
35	18	phone	0
13	15	phone	0
12	15	phone	0
11	15	phone	0
25	16	phone	0
75	16	phone	0
54	12	phone	0
51	16	phone	0
50	16	phone	0
48	16	phone	0
47	16	phone	0
45	16	phone	0
44	16	phone	0
43	16	phone	0
42	16	phone	0
41	16	phone	0
40	16	phone	0
39	16	phone	0
38	16	phone	0
55	16	phone	0
74	15	phone	0
10	15	phone	0
93	78	phone	1
9	15	phone	0
21	15	phone	0
20	15	phone	0
34	16	phone	0
19	15	phone	0
33	16	phone	0
18	15	phone	0
32	16	phone	0
17	15	phone	0
31	16	phone	0
16	15	phone	0
30	16	phone	0
15	15	phone	0
29	16	phone	0
87	18	phone	0
14	15	phone	0
28	16	phone	0
27	16	phone	0
26	16	phone	0
94	150	phone	0
95	150	phone	0
96	156	phone	0
72	2	phone	0
71	2	phone	0
91	120	phone	0
93	145	phone	0
103	15	phone	0
102	15	phone	0
104	15	phone	0
113	178	phone	0
115	180	phone	0
117	15	phone	0
118	18	phone	0
122	15	phone	0
123	15	phone	0
\.


--
-- Data for Name: widget_files; Type: TABLE DATA; Schema: public; Owner: -
--

COPY widget_files (created_on, updated_on, guid, partnership_account_id) FROM stdin;
2016-04-01 14:28:29.735961+00	2016-04-01 14:28:29.735995+00	69b5445e-db7e-487b-bc57-7f6f5ca345f1	2
2016-03-31 16:41:56.170007+00	2016-03-31 16:41:56.170032+00	4130d5f8-84cb-42e1-a409-dd2c0f71f54e	2
2016-03-31 16:41:43.276713+00	2016-03-31 16:41:43.276836+00	ff7a83f5-a24e-43d0-ac76-eb90c70fc087	2
2016-02-17 15:53:25.38674+00	2016-02-17 15:53:25.386813+00	81631543-7354-4869-9c7b-2c8c93694380	2
2016-02-16 23:20:19.550454+00	2016-02-16 23:20:19.550481+00	bcba30f1-5095-4bfd-8e6e-71e42a54b9e3	2
2016-02-11 21:39:57.454826+00	2016-02-11 21:39:57.454883+00	62bd1941-5c51-4a31-94e7-6cbf9a570799	2
2016-02-05 16:24:38.885334+00	2016-02-05 16:24:38.885403+00	21d9d655-dd76-412a-99e3-57c3968c95f9	2
2016-02-04 20:26:43.428853+00	2016-02-04 20:26:43.428935+00	99ab2710-9339-483b-8593-10e11e5cad27	2
2016-02-04 02:05:31.594362+00	2016-02-04 02:05:31.59443+00	22a18016-f0f5-41ba-a50e-9c91f2946a6f	2
2016-02-04 00:27:50.63819+00	2016-02-04 00:27:50.638301+00	873a3638-cd1f-468a-922e-2725a2627981	2
2016-02-04 00:11:44.500777+00	2016-02-04 00:11:44.500816+00	1f10357c-108a-4d28-b1ec-66ecc3eb5a94	2
2016-01-31 16:55:04.874534+00	2016-01-31 16:55:04.874568+00	3f645da5-6c2c-4323-898e-aa0164c1d9b2	2
2017-06-02 22:48:15.866104+00	2017-06-02 22:48:15.866139+00	212af3a5-97c5-4e18-aff8-425491d1d04e	6
2017-06-02 22:47:51.070335+00	2017-06-02 22:47:51.070412+00	e714c3d7-399f-4aa4-bd8c-04e63ef0c724	6
2016-11-09 16:49:04.381562+00	2016-11-09 16:49:04.381621+00	3f34a34d-e112-4bd4-aec0-acacbb0c3423	6
2016-11-09 16:46:52.82699+00	2016-11-09 16:46:52.827037+00	be0716f5-d39e-4ff0-bfa6-ae65069d53ec	6
2017-03-13 20:14:31.545839+00	2017-03-13 20:14:31.545892+00	b93eafaa-9b48-4ab5-86ce-cf6becba7bc5	10
2016-05-19 14:05:52.732702+00	2016-05-19 14:05:52.732735+00	1c14feb0-920b-4b79-8799-d4166cc230eb	1
2016-04-22 14:28:56.898315+00	2016-04-22 14:28:56.898346+00	6cc84e79-89aa-45a1-87ed-f3d3f1f2f939	1
2016-04-14 14:59:07.114913+00	2016-04-14 14:59:07.114941+00	0c168e79-25d0-4208-9dcc-47f19dbd3fd9	1
2016-03-31 23:02:55.649802+00	2016-03-31 23:02:55.649841+00	1824a9e3-0199-4c63-971e-3f14df67e36b	1
2016-03-31 22:28:51.801996+00	2016-03-31 22:28:51.802046+00	7ded16ae-fddd-4b7d-9e6c-73854882b380	1
2016-03-31 22:24:21.129348+00	2016-03-31 22:24:21.129391+00	4e8ffb6f-a0ae-4bec-90ef-3e16ade3ed8f	1
2016-03-30 16:10:14.364795+00	2016-03-30 16:10:14.364825+00	40e4a7ff-5af0-44a2-9321-ef0da920de00	1
2016-03-30 16:07:52.315935+00	2016-03-30 16:07:52.315978+00	08417139-215c-4c2c-b706-438a7f2116e9	1
2016-03-30 13:57:05.878177+00	2016-03-30 13:57:05.878266+00	a98c5452-6f4f-4c97-ae72-eaa88226b90e	1
2016-03-29 21:00:47.370972+00	2016-03-29 21:00:47.371012+00	9c3ea696-885f-44a3-97ec-0a6e2a8bb3dc	1
2016-03-29 21:00:39.180849+00	2016-03-29 21:00:39.18088+00	36e9085a-e8dd-4da5-9e8b-8db59c16c782	1
2016-03-29 21:00:32.048034+00	2016-03-29 21:00:32.048063+00	80b0bfa6-c149-4e0a-a02a-d4ce51c031e7	1
2016-03-29 20:55:43.152917+00	2016-03-29 20:55:43.152978+00	093c3463-6da2-4b35-a687-a231732f5c1b	1
2016-03-22 16:23:24.040175+00	2016-03-22 16:23:24.040206+00	d4f0a2c5-0dff-4392-a4b5-1591924fdaaa	1
2016-03-22 16:22:29.365244+00	2016-03-22 16:22:29.365364+00	56b99b7e-c0bf-4d4d-85e8-a6985c7f6b6d	1
2016-01-29 09:34:51.793148+00	2016-01-29 09:34:51.793219+00	0eca94e0-d2bf-4748-b1b6-ea7f2731cb89	1
2016-01-29 01:25:28.194256+00	2016-01-29 01:25:28.194333+00	0df8067a-52cb-4519-891d-fe808032085d	1
2016-01-28 23:00:43.725964+00	2016-01-28 23:00:43.726065+00	269aaf0d-8377-4058-9be2-8a9c04471187	1
2016-01-28 22:20:46.335724+00	2016-01-28 22:20:46.335763+00	1c3bc1ab-f686-421f-920a-8dbf5362ec64	1
2018-01-02 15:10:17.848519+00	2018-01-02 15:10:17.848607+00	2e07265a-690d-4ce6-8582-4b7ca3db7ec1	4
2018-02-08 23:15:43.578993+00	2018-02-08 23:15:43.579018+00	609850d3-5fac-406f-ac2d-bb2a3d5d003d	27
2018-02-13 01:24:55.18349+00	2018-02-13 01:24:55.183514+00	561c6619-1aca-41ec-b639-ccc6b8ced84b	29
2018-02-16 17:41:51.165803+00	2018-02-16 17:41:51.165839+00	2cdb4c04-63e5-486c-8738-82ae61084f7c	4
2018-04-25 13:56:05.551372+00	2018-04-25 13:56:05.55232+00	d204efab-0104-49d2-9e87-7004a8f56306	4
2018-04-25 13:57:40.851286+00	2018-04-25 13:57:40.851308+00	8921c38a-d3cb-4df4-893a-791eed8bb16b	4
2018-05-29 15:51:24.173677+00	2018-05-29 15:51:24.173734+00	6e733f21-4ff8-41ab-a466-52b1ce83aeba	4
\.


--
-- Data for Name: widgets; Type: TABLE DATA; Schema: public; Owner: -
--

COPY widgets (created_on, updated_on, id, guid, name, options, enabled, phone_number_id, partnership_account_id, email, type) FROM stdin;
2017-02-10 21:41:52.645487+00	2017-02-10 21:41:52.645518+00	86	bfe5e6ea-ffb6-499c-8b67-db857695ef61	Default	{"voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "typeLink": false, "color": "#2eb398", "typeButton": true, "imageHorizontal": 50, "askLastName": true, "alwaysModal": false, "unavailableAskQuestion": false, "notifyAllMe": true, "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "pages": [], "emailAddressPrompt": "Email address:", "routeInSequence": false, "triggerBasedOnTime": false, "lastNamePrompt": "Last name:", "notifyNone": false, "askPhoneNumber": true, "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "scheduleTimezone": "", "triggerBasedOnPage": false, "notifyMissedAgents": false, "notifyAllLeads": false, "animation": "bounce-up", "askFirstName": true, "transparentBackground": false, "askEmailAddress": true, "name": "Default", "showOnMobile": true, "askQuestion": false, "phoneNumberPrompt": "Phone number:", "notifyMissedLeads": true, "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "addHiddenInformation": false, "retryRouting": ["0", "", ""], "unavailableAskPhoneNumber": true, "triggerPageInterval": 10, "notifyMissedMe": true, "branding": true, "unavailableAskLastName": true, "intro": "Let us help you. Enter your details below and click on the talk button to speak to one of our representatives.", "routeRandomly": false, "typeTab": true, "firstNamePrompt": "First name:", "availableFrom": "08:00:00", "unavailableFirstNamePrompt": "First name:", "customImage": "", "unavailableAskFirstName": true, "mobileOptimized": false, "unavailablePhoneNumberPrompt": "Phone number:", "hiddenInformation": "", "unavailableQuestionPrompt": "Question:", "typeImage": false, "questionPrompt": "Question:", "recordCalls": false, "title": "Talk to us now!", "defaultImage": "", "imageVertical": 50, "triggerInterval": 30, "unavailableEmailAddressPrompt": "Email address:", "showHideButton": true, "unavailableAskEmailAddress": true, "notifyAllAgents": false, "imageSize": 50, "language": "en", "headerTitle": "Talk to us now!", "notifyAllCustom": "", "voicemail": true, "buttonText": "Talk Now!", "days": [false, true, true, true, true, true, false], "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "position": "bottom-right", "routeSimultaneously": true, "notifyMissedCustom": ""}	t	\N	8	\N	widget
2016-01-28 00:01:20.603197+00	2017-11-29 22:16:28.795273+00	1	53da9e33-88fb-4b04-baca-339193fd55f7	Home page	{"": "16", "emailAddressPrompt": "Email address:", "askLastName": false, "title": "Speak to us now!", "notifyAllMe": true, "routeInSequence": true, "lastNamePrompt": "Last name:", "unavailableHeaderTitle": "GET IN TOUCH!", "availableTo": "23:55:00", "askEmailAddress": false, "notifyAllLeads": true, "transparentBackground": true, "notifyMissedAgents": true, "name": "Home page", "showOnMobile": true, "phoneNumberPrompt": "Enter your phone number here", "askQuestion": false, "unavailableLastNamePrompt": "Last name:", "agents": [{"fullName": "Skip  Esch", "contactUsing": "phone", "id": 79}], "retryRouting": ["", "", ""], "recordCalls": false, "notifyMissedMe": true, "branding": true, "retryRouting1": "", "typeTab": false, "retryRouting2": "", "availableFrom": "08:00:00", "unavailableAskFirstName": true, "unavailablePhoneNumberPrompt": "Phone number:", "hiddenInformation": "Clicked the widget or button on Home page", "typeImage": true, "questionPrompt": "Question:", "triggerPageInterval": "10", "defaultImage": "", "imageInFront": false, "imageVertical": "83", "language": "en", "headerTitle": "WE ARE AVAILABLE", "voicemail": true, "buttonText": "Talk Now!", "days": [true, true, true, true, true, true, true], "whisperMessage": "Thank you for contacting Buyercall. We will connect you to the right person in just a second. ", "showHideButton": true, "notifyMissedCustom": "hjvermaak@gmail.com", "voicemailMessage": "Sorry we are not able to take this phone call. However leave a message and we'll get back to you.", "newPage": "", "color": "#55b851", "typeButton": true, "repeatAnimation": true, "imageHorizontal": "84", "guid": "53da9e33-88fb-4b04-baca-339193fd55f7", "unavailableAskQuestion": true, "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "pages": ["http://buyercall.com/faq"], "triggerBasedOnTime": false, "notifyNone": false, "askPhoneNumber": true, "retryRouting3": "", "scheduleTimezone": "Canada/Central", "fromNumberId": 16, "triggerBasedOnPage": false, "askFirstName": true, "notifyMissedLeads": false, "unavailableFirstNamePrompt": "First name:", "alwaysModal": true, "addHiddenInformation": true, "typeLink": true, "unavailableAskLastName": true, "intro": "Enter your details below and click on the talk button to speak to Harry from buyercall", "routeRandomly": false, "id": 1, "firstNamePrompt": "Enter your name here", "unavailableButtonText": "Submit", "customImage": "1824a9e3-0199-4c63-971e-3f14df67e36b", "mobileOptimized": true, "animation": "shake", "unavailableQuestionPrompt": "Question:", "fromNumber": "+18555000163", "triggerInterval": "30", "unavailableEmailAddressPrompt": "Email address:", "unavailableAskEmailAddress": true, "notifyAllAgents": false, "imageSize": "74", "notifyAllCustom": "hjvermaak@gmail.com; skip@buyercall.com", "unavailableAskPhoneNumber": true, "position": "bottom-left", "routeSimultaneously": false}	t	16	1	\N	widget
2017-11-30 20:34:58.424336+00	2017-11-30 20:34:58.424362+00	99	d0e21359-2ee7-4579-905b-05e73cd6cc7c	Default	{"voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "typeLink": false, "color": "#2eb398", "typeButton": true, "imageHorizontal": 50, "askLastName": true, "alwaysModal": false, "unavailableAskQuestion": false, "notifyAllMe": true, "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "pages": [], "emailAddressPrompt": "Email address:", "routeInSequence": false, "triggerBasedOnTime": false, "lastNamePrompt": "Last name:", "notifyNone": false, "askPhoneNumber": true, "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "scheduleTimezone": "", "triggerBasedOnPage": false, "notifyMissedAgents": false, "notifyAllLeads": false, "animation": "bounce-up", "askFirstName": true, "transparentBackground": false, "askEmailAddress": true, "name": "Default", "showOnMobile": true, "askQuestion": false, "phoneNumberPrompt": "Phone number:", "notifyMissedLeads": true, "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "addHiddenInformation": false, "retryRouting": ["0", "", ""], "unavailableAskPhoneNumber": true, "triggerPageInterval": 10, "notifyMissedMe": true, "branding": true, "unavailableAskLastName": true, "intro": "Let us help you. Enter your details below and click on the talk button to speak to one of our representatives.", "routeRandomly": false, "typeTab": true, "firstNamePrompt": "First name:", "availableFrom": "08:00:00", "unavailableFirstNamePrompt": "First name:", "customImage": "", "unavailableAskFirstName": true, "mobileOptimized": false, "unavailablePhoneNumberPrompt": "Phone number:", "hiddenInformation": "", "unavailableQuestionPrompt": "Question:", "typeImage": false, "questionPrompt": "Question:", "recordCalls": false, "title": "Talk to us now!", "defaultImage": "", "imageVertical": 50, "triggerInterval": 30, "unavailableEmailAddressPrompt": "Email address:", "showHideButton": true, "unavailableAskEmailAddress": true, "notifyAllAgents": false, "imageSize": 50, "language": "en", "headerTitle": "Talk to us now!", "notifyAllCustom": "", "voicemail": true, "buttonText": "Talk Now!", "days": [false, true, true, true, true, true, false], "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "position": "bottom-right", "routeSimultaneously": true, "notifyMissedCustom": ""}	t	\N	16	\N	widget
2016-01-31 15:51:35.545438+00	2016-05-19 02:41:08.193997+00	2	5544043e-a40f-4084-a2ef-ee0d0a6c5c76	main widget	{"typeLink": false, "questionPrompt": "What is your question?", "unavailableAskPhoneNumber": true, "": "12", "triggerPageInterval": 10, "color": "#000000", "branding": false, "unavailableAskLastName": true, "typeButton": false, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Thanks for your interest. Please fill out form and click to initiate call. Thanks!", "imageHorizontal": "3", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "0", "askLastName": true, "typeTab": false, "guid": "5544043e-a40f-4084-a2ef-ee0d0a6c5c76", "id": 2, "firstNamePrompt": "First Name:", "retryRouting3": "", "availableFrom": "09:00:00", "notifyAllLeads": false, "title": "Click to Call", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "69b5445e-db7e-487b-bc57-7f6f5ca345f1", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and we'll get back to you as soon as possible.", "routeInSequence": true, "unavailableAskFirstName": true, "unavailableAskQuestion": true, "emailAddressPrompt": "Email Address:", "mobileOptimized": true, "animation": "fade-in", "lastNamePrompt": "Last Name:", "hiddenInformation": "Neu", "agents": [{"fullName": "Steve Neu", "contactUsing": "phone", "id": 11}], "unavailableQuestionPrompt": "Best Time to Reach You?", "typeImage": true, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone Number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Contact Neu Automotive Services", "availableTo": "17:00:00", "defaultImage": "", "imageVertical": "0", "notifyAllAgents": true, "scheduleTimezone": "US/Eastern", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": true, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": "67", "fromNumberId": 12, "transparentBackground": true, "askEmailAddress": true, "name": "main widget", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email Address:", "headerTitle": "Contact Neu Automotive Services", "alwaysModal": false, "voicemail": false, "buttonText": "Initiate Call", "days": [false, false, false, false, false, false, false], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone Number:", "askQuestion": false, "unavailableFirstNamePrompt": "First Name:", "whisperMessage": "Thank you for contacting us.", "retryRouting": ["0", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last Name:", "position": "top-right", "routeSimultaneously": false, "notifyAllCustom": "", "notifyMissedCustom": ""}	t	12	2	\N	widget
2016-07-12 16:38:18.630726+00	2016-10-31 15:00:23.517335+00	60	4e8a6722-7a9a-4092-b7c0-1dc36a22c688	Parkside Outbound Calls - Robert	{"typeLink": false, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "25", "triggerPageInterval": 10, "color": "#505da3", "branding": false, "unavailableAskLastName": true, "typeButton": true, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Enter the number of the person you want to call. The user will see your +1-855-534-3978 toll-free number as caller-id.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": false, "typeTab": false, "guid": "4e8a6722-7a9a-4092-b7c0-1dc36a22c688", "id": 60, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "07:00:00", "notifyAllLeads": false, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "...You are about to be connected to a Parkside Credit Union leed.", "agents": [{"fullName": "Robert Sanders", "contactUsing": "phone", "id": 45}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "23:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "US/Eastern", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": true, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": false, "imageSize": "50", "fromNumberId": 48, "transparentBackground": true, "askEmailAddress": false, "name": "Parkside Outbound Calls - Robert", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "CALL LEAD NOW!", "alwaysModal": true, "voicemail": false, "buttonText": "INITIATE CALL", "days": [true, true, true, true, true, true, true], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "", "notifyMissedCustom": ""}	t	48	4	\N	widget
2017-11-30 20:37:20.766931+00	2017-11-30 20:37:20.766956+00	100	8637eac8-732d-42a5-9eca-35a4300ef632	Default	{"voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "typeLink": false, "color": "#2eb398", "typeButton": true, "imageHorizontal": 50, "askLastName": true, "alwaysModal": false, "unavailableAskQuestion": false, "notifyAllMe": true, "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "pages": [], "emailAddressPrompt": "Email address:", "routeInSequence": false, "triggerBasedOnTime": false, "lastNamePrompt": "Last name:", "notifyNone": false, "askPhoneNumber": true, "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "scheduleTimezone": "", "triggerBasedOnPage": false, "notifyMissedAgents": false, "notifyAllLeads": false, "animation": "bounce-up", "askFirstName": true, "transparentBackground": false, "askEmailAddress": true, "name": "Default", "showOnMobile": true, "askQuestion": false, "phoneNumberPrompt": "Phone number:", "notifyMissedLeads": true, "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "addHiddenInformation": false, "retryRouting": ["0", "", ""], "unavailableAskPhoneNumber": true, "triggerPageInterval": 10, "notifyMissedMe": true, "branding": true, "unavailableAskLastName": true, "intro": "Let us help you. Enter your details below and click on the talk button to speak to one of our representatives.", "routeRandomly": false, "typeTab": true, "firstNamePrompt": "First name:", "availableFrom": "08:00:00", "unavailableFirstNamePrompt": "First name:", "customImage": "", "unavailableAskFirstName": true, "mobileOptimized": false, "unavailablePhoneNumberPrompt": "Phone number:", "hiddenInformation": "", "unavailableQuestionPrompt": "Question:", "typeImage": false, "questionPrompt": "Question:", "recordCalls": false, "title": "Talk to us now!", "defaultImage": "", "imageVertical": 50, "triggerInterval": 30, "unavailableEmailAddressPrompt": "Email address:", "showHideButton": true, "unavailableAskEmailAddress": true, "notifyAllAgents": false, "imageSize": 50, "language": "en", "headerTitle": "Talk to us now!", "notifyAllCustom": "", "voicemail": true, "buttonText": "Talk Now!", "days": [false, true, true, true, true, true, false], "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "position": "bottom-right", "routeSimultaneously": true, "notifyMissedCustom": ""}	t	\N	17	\N	widget
2016-05-17 22:47:28.090419+00	2017-01-27 21:20:15.144519+00	34	e576a333-5bc2-44ef-8856-7c36c8f7081a	Sharefax Contact Form	{"typeLink": true, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "28", "triggerPageInterval": 10, "color": "#0d57a4", "branding": true, "unavailableAskLastName": true, "typeButton": false, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Let us help you. Enter your details below and click on the talk button to speat to one of our representatives.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": true, "typeTab": false, "guid": "e576a333-5bc2-44ef-8856-7c36c8f7081a", "id": 34, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "08:00:00", "notifyAllLeads": true, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Got any questions for us? Our team is waiting to help you save money today.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": true, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "Sharefax Credit Union Contact Form", "agents": [{"fullName": "Mark Davis", "contactUsing": "phone", "id": 16}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "America/Chicago", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": "50", "fromNumberId": 28, "transparentBackground": true, "askEmailAddress": true, "name": "Sharefax Contact Form", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "Talk to us now!", "alwaysModal": true, "voicemail": true, "buttonText": "Talk Now!", "days": [false, false, false, false, false, false, false], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "mark@recaptureservices.com; steveneu@live.com", "notifyMissedCustom": ""}	t	\N	4	\N	widget
2016-07-12 16:40:18.398743+00	2016-10-31 15:01:36.093541+00	61	136bef21-fabd-4672-9f3c-8aa5e1f27585	HealthFirst Outbound Calls - Robert	{"typeLink": false, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "25", "triggerPageInterval": 10, "color": "#922d8d", "branding": false, "unavailableAskLastName": true, "typeButton": true, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Enter the number of the person you want to call. The user will see your +1-855-534-3978 toll-free number as caller-id.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": false, "typeTab": false, "guid": "136bef21-fabd-4672-9f3c-8aa5e1f27585", "id": 61, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "07:00:00", "notifyAllLeads": false, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "...You are about to be connected to a Health First Credit Union leed.", "agents": [{"fullName": "Robert Sanders", "contactUsing": "phone", "id": 45}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "23:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "US/Eastern", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": true, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": false, "imageSize": "50", "fromNumberId": 48, "transparentBackground": true, "askEmailAddress": false, "name": "HealthFirst Outbound Calls - Robert", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "CALL LEAD NOW!", "alwaysModal": true, "voicemail": false, "buttonText": "INITIATE CALL", "days": [true, true, true, true, true, true, true], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "", "notifyMissedCustom": ""}	t	48	4	\N	widget
2017-12-19 08:58:49.140271+00	2017-12-19 08:58:49.14029+00	101	5ea3da22-672b-4f94-8523-b8f2eae46211	Default	{"voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "typeLink": false, "color": "#2eb398", "typeButton": true, "imageHorizontal": 50, "askLastName": true, "alwaysModal": false, "unavailableAskQuestion": false, "notifyAllMe": true, "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "pages": [], "emailAddressPrompt": "Email address:", "routeInSequence": false, "triggerBasedOnTime": false, "lastNamePrompt": "Last name:", "notifyNone": false, "askPhoneNumber": true, "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "scheduleTimezone": "", "triggerBasedOnPage": false, "notifyMissedAgents": false, "notifyAllLeads": false, "animation": "bounce-up", "askFirstName": true, "transparentBackground": false, "askEmailAddress": true, "name": "Default", "showOnMobile": true, "askQuestion": false, "phoneNumberPrompt": "Phone number:", "notifyMissedLeads": true, "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "addHiddenInformation": false, "retryRouting": ["0", "", ""], "unavailableAskPhoneNumber": true, "triggerPageInterval": 10, "notifyMissedMe": true, "branding": true, "unavailableAskLastName": true, "intro": "Let us help you. Enter your details below and click on the talk button to speak to one of our representatives.", "routeRandomly": false, "typeTab": true, "firstNamePrompt": "First name:", "availableFrom": "08:00:00", "unavailableFirstNamePrompt": "First name:", "customImage": "", "unavailableAskFirstName": true, "mobileOptimized": false, "unavailablePhoneNumberPrompt": "Phone number:", "hiddenInformation": "", "unavailableQuestionPrompt": "Question:", "typeImage": false, "questionPrompt": "Question:", "recordCalls": false, "title": "Talk to us now!", "defaultImage": "", "imageVertical": 50, "triggerInterval": 30, "unavailableEmailAddressPrompt": "Email address:", "showHideButton": true, "unavailableAskEmailAddress": true, "notifyAllAgents": false, "imageSize": 50, "language": "en", "headerTitle": "Talk to us now!", "notifyAllCustom": "", "voicemail": true, "buttonText": "Talk Now!", "days": [false, true, true, true, true, true, false], "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "position": "bottom-right", "routeSimultaneously": true, "notifyMissedCustom": ""}	t	\N	18	\N	widget
2016-02-11 21:40:41.169887+00	2016-04-26 14:41:51.320226+00	7	9b21a638-88bc-4cb5-b742-7449f686c42c	Default	{"typeLink": false, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "agents": [{"fullName": "Harry Vermaak", "contactUsing": "phone", "id": 3}], "triggerPageInterval": 10, "color": "#2eb398", "branding": true, "unavailableAskLastName": true, "typeButton": true, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Let us help you. Enter your details below and click on the talk button to speat to one of our representatives.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "0", "askLastName": true, "typeTab": false, "guid": "9b21a638-88bc-4cb5-b742-7449f686c42c", "id": 7, "firstNamePrompt": "First name:", "": "12", "availableFrom": "02:00:00", "notifyAllLeads": false, "title": "Talk to us now!", "notifyMissedLeads": true, "notifyAllMe": true, "customImage": "62bd1941-5c51-4a31-94e7-6cbf9a570799", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": true, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "", "unavailableQuestionPrompt": "Question:", "typeImage": true, "addHiddenInformation": false, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "America/Chicago", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": "118", "fromNumberId": 12, "transparentBackground": false, "askEmailAddress": true, "name": "Default", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "Talk to us now!", "alwaysModal": false, "voicemail": false, "buttonText": "Talk Now!", "days": [false, true, true, true, true, true, false], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "retryRouting3": "", "unavailableFirstNamePrompt": "First name:", "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "retryRouting": ["0", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-left", "routeSimultaneously": true, "notifyAllCustom": "", "notifyMissedCustom": ""}	t	12	2	\N	widget
2016-07-12 16:43:36.201044+00	2016-10-31 15:02:23.127391+00	62	b40bfad3-9876-468f-8ae6-6e0e5907f7c0	Falls Catholic Outbound Calls - Robert	{"typeLink": false, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "25", "triggerPageInterval": 10, "color": "#118545", "branding": false, "unavailableAskLastName": true, "typeButton": true, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Enter the number of the person you want to call. The user will see your +1-855-534-3978 toll-free number as caller-id.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": false, "typeTab": false, "guid": "b40bfad3-9876-468f-8ae6-6e0e5907f7c0", "id": 62, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "07:00:00", "notifyAllLeads": false, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "...You are about to be connected to a Falls Catholic Credit Union leed.", "agents": [{"fullName": "Robert Sanders", "contactUsing": "phone", "id": 45}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "23:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "US/Eastern", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": true, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": false, "imageSize": "50", "fromNumberId": 48, "transparentBackground": true, "askEmailAddress": false, "name": "Falls Catholic Outbound Calls - Robert", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "CALL LEAD NOW!", "alwaysModal": true, "voicemail": false, "buttonText": "INITIATE CALL", "days": [true, true, true, true, true, true, true], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "", "notifyMissedCustom": ""}	t	48	4	\N	widget
2016-07-12 16:28:21.127174+00	2016-10-31 14:55:43.456156+00	56	0b221b1a-6323-49e8-80c2-159b5988e8c1	Struthers Outbound Calls - Robert	{"typeLink": false, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "25", "triggerPageInterval": 10, "color": "#e2223d", "branding": false, "unavailableAskLastName": true, "typeButton": true, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Enter the number of the person you want to call. The user will see your +1-855-534-3978 toll-free number as caller-id.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": false, "typeTab": false, "guid": "0b221b1a-6323-49e8-80c2-159b5988e8c1", "id": 56, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "07:00:00", "notifyAllLeads": false, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "...You are about to be connected to a Struthers Credit Union leed.", "agents": [{"fullName": "Robert Sanders", "contactUsing": "phone", "id": 45}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "23:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "US/Eastern", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": true, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": false, "imageSize": "50", "fromNumberId": 48, "transparentBackground": true, "askEmailAddress": false, "name": "Struthers Outbound Calls - Robert", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "CALL LEAD NOW!", "alwaysModal": true, "voicemail": false, "buttonText": "INITIATE CALL", "days": [true, true, true, true, true, true, true], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "", "notifyMissedCustom": ""}	t	48	4	\N	widget
2016-07-12 16:48:05.286422+00	2016-10-31 15:03:46.023819+00	64	166fb1b8-fa66-4b09-b1f4-71002358dd06	Edwards Outbound Calls - Robert	{"typeLink": false, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "25", "triggerPageInterval": 10, "color": "#2b3a83", "branding": false, "unavailableAskLastName": true, "typeButton": true, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Enter the number of the person you want to call. The user will see your +1-855-534-3978 toll-free number as caller-id.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": false, "typeTab": false, "guid": "166fb1b8-fa66-4b09-b1f4-71002358dd06", "id": 64, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "07:00:00", "notifyAllLeads": false, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "...You are about to be connected to an Edwards Credit Union leed.", "agents": [{"fullName": "Robert Sanders", "contactUsing": "phone", "id": 45}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "23:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "US/Eastern", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": true, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": false, "imageSize": "50", "fromNumberId": 48, "transparentBackground": true, "askEmailAddress": false, "name": "Edwards Outbound Calls - Robert", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "CALL LEAD NOW!", "alwaysModal": true, "voicemail": false, "buttonText": "INITIATE CALL", "days": [true, true, true, true, true, true, true], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "", "notifyMissedCustom": ""}	t	48	4	\N	widget
2016-07-12 16:51:08.248748+00	2016-10-31 15:04:32.254346+00	65	cb6ad4cc-25cf-4512-9908-f67d32466e31	Credit Union of Ohio Outbound Calls - Robert	{"typeLink": false, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "25", "triggerPageInterval": 10, "color": "#b32b32", "branding": false, "unavailableAskLastName": true, "typeButton": true, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Enter the number of the person you want to call. The user will see your +1-855-534-3978 toll-free number as caller-id.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": false, "typeTab": false, "guid": "cb6ad4cc-25cf-4512-9908-f67d32466e31", "id": 65, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "07:00:00", "notifyAllLeads": false, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "...You are about to be connected to a Credit Union of Ohio leed.", "agents": [{"fullName": "Robert Sanders", "contactUsing": "phone", "id": 45}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "23:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "US/Eastern", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": true, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": false, "imageSize": "50", "fromNumberId": 48, "transparentBackground": true, "askEmailAddress": false, "name": "Credit Union of Ohio Outbound Calls - Robert", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "CALL LEAD NOW!", "alwaysModal": true, "voicemail": false, "buttonText": "INITIATE CALL", "days": [true, true, true, true, true, true, true], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "", "notifyMissedCustom": ""}	t	48	4	\N	widget
2016-02-01 16:06:43.766009+00	2016-05-18 23:43:41.241327+00	3	c16fba84-3f0d-4121-85b7-0cc6de53b445	Demo form	{"typeLink": true, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "agents": [{"fullName": "Herman Vermaak", "contactUsing": "phone", "id": 1}], "triggerPageInterval": 10, "color": "#2eb334", "branding": false, "unavailableAskLastName": true, "typeButton": true, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Let us blow your mind. Setup a demo by completing the form below.", "imageHorizontal": "50", "retryRouting2": "never", "routeRandomly": false, "retryRouting1": "immediate", "askLastName": true, "typeTab": false, "guid": "c16fba84-3f0d-4121-85b7-0cc6de53b445", "id": 3, "firstNamePrompt": "First name:", "retryRouting3": "never", "availableFrom": "08:00:00", "notifyAllLeads": true, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Let us blow your mind through a personalized demo. Complete the form below and we'll get back to you right away!", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": true, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "", "unavailableQuestionPrompt": "Which dealership are you representing?", "typeImage": false, "addHiddenInformation": false, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Enter your phone number here", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "SETUP A DEMO NOW!", "availableTo": "20:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "America/Chicago", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": "50", "fromNumberId": 1, "transparentBackground": true, "askEmailAddress": true, "name": "Demo form", "showOnMobile": true, "unavailableEmailAddressPrompt": "Enter your email address here", "headerTitle": "SETUP A DEMO NOW!", "alwaysModal": false, "voicemail": false, "buttonText": "Submit", "days": [false, false, false, false, false, false, false], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "Enter your first name here", "whisperMessage": "Thank you for contacting us. You will be connected to representative shortly.  Please note that this call might be recorded.", "retryRouting": ["0", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Enter your last name here", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "hjvermaak@gmail.com", "notifyMissedCustom": ""}	t	1	1	\N	widget
2016-05-20 16:16:03.908405+00	2016-05-20 16:18:26.393944+00	37	807e3714-eeb9-4344-9afa-bf9d7b0cd482	FINSERV Outbound Call Widget	{"typeLink": false, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "agents": [{"fullName": "Herman Vermaak", "contactUsing": "phone", "id": 1}], "triggerPageInterval": 10, "color": "#2eb398", "branding": false, "unavailableAskLastName": true, "typeButton": true, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Let us help you. Enter your details below and click on the talk button to speat to one of our representatives.", "imageHorizontal": "50", "routeRandomly": false, "retryRouting1": "", "askLastName": false, "typeTab": false, "retryRouting2": "", "retryRouting3": "", "firstNamePrompt": "First name:", "": "16", "availableFrom": "08:00:00", "notifyAllLeads": false, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "...You are about to be connected to a Credit Union of Ohio lead.", "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "America/Chicago", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": true, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": false, "imageSize": "50", "fromNumberId": 16, "transparentBackground": true, "askEmailAddress": false, "name": "FINSERV Outbound Call Widget", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "Talk to us now!", "alwaysModal": true, "voicemail": false, "buttonText": "Talk Now!", "days": [true, true, true, true, true, true, true], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "", "notifyMissedCustom": ""}	t	16	1	\N	widget
2016-05-20 17:03:56.598209+00	2016-07-12 15:59:56.565444+00	38	4b8a5344-ff77-4cb4-b260-f461ee1e64b2	ASECU Outbound Calls - Mark	{"typeLink": false, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "19", "triggerPageInterval": 10, "color": "#a7384d", "branding": false, "unavailableAskLastName": true, "typeButton": true, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Enter the number of the person you want to call. The user will see the ASECU Credit Union toll-free number as caller-id.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": false, "typeTab": false, "guid": "4b8a5344-ff77-4cb4-b260-f461ee1e64b2", "id": 38, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "07:00:00", "notifyAllLeads": false, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "...You are about to be connected to a Associated School Employees Credit Union leed.", "agents": [{"fullName": "Mark Davis", "contactUsing": "phone", "id": 16}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "23:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "US/Eastern", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": true, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": false, "imageSize": "50", "fromNumberId": 19, "transparentBackground": true, "askEmailAddress": false, "name": "ASECU Outbound Calls - Mark", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "CALL LEAD NOW!", "alwaysModal": true, "voicemail": false, "buttonText": "INITIATE CALL", "days": [true, true, true, true, true, true, true], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "", "notifyMissedCustom": ""}	t	\N	4	\N	widget
2016-08-10 20:24:45.337685+00	2016-08-11 00:11:06.89825+00	71	3c9c1a15-65b0-4fc0-a2c5-c9818206863f	Development Company Quote Request Form	{"typeLink": true, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "1", "triggerPageInterval": 10, "color": "#02546e", "branding": false, "unavailableAskLastName": true, "typeButton": true, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Let us help you. Enter your details below and click on the talk button to speak to one of our representatives.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": true, "typeTab": false, "guid": "3c9c1a15-65b0-4fc0-a2c5-c9818206863f", "id": 71, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "08:00:00", "notifyAllLeads": true, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Thanks for showing interest in our services. Please let us know what you need by completing the form below. We will get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": true, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "Development Company - Requesting quote for development", "agents": [{"fullName": "Harry Vermaak", "contactUsing": "phone", "id": 2}], "unavailableQuestionPrompt": "Quote Information:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get a Quote!", "availableTo": "20:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "America/Chicago", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": false, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": "50", "fromNumberId": 16, "transparentBackground": true, "askEmailAddress": true, "name": "Development Company Quote Request Form", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "Talk to us now!", "alwaysModal": true, "voicemail": false, "buttonText": "Talk Now!", "days": [false, false, false, false, false, false, false], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "hjvermaak@gmail.com", "notifyMissedCustom": ""}	t	16	1	\N	widget
2016-05-17 22:09:04.5991+00	2017-01-27 21:26:56.406238+00	23	b3446068-5c4f-4ede-b0ba-8b1a3367f8a8	ASECU Contact Form	{"typeLink": true, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "agents": [{"fullName": "Mark Davis", "contactUsing": "phone", "id": 16}], "triggerPageInterval": 10, "color": "#a7384d", "branding": true, "unavailableAskLastName": true, "typeButton": false, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Let us help you. Enter your details below and click on the talk button to speat to one of our representatives.", "imageHorizontal": "50", "routeRandomly": false, "askLastName": false, "typeTab": false, "guid": "b3446068-5c4f-4ede-b0ba-8b1a3367f8a8", "id": 23, "firstNamePrompt": "First name:", "availableFrom": "08:00:00", "notifyAllLeads": true, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Got any questions for us? Our team is waiting to help you save money today.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": true, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "ASECU Contact Form", "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "America/Chicago", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": false, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": false, "imageSize": "50", "fromNumberId": 28, "transparentBackground": true, "askEmailAddress": false, "name": "ASECU Contact Form", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "Talk to us now!", "alwaysModal": true, "voicemail": true, "buttonText": "Talk Now!", "days": [false, false, false, false, false, false, false], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "retryRouting": ["0", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "mark@recaptureservices.com; steveneu@live.com;", "notifyMissedCustom": ""}	t	\N	4	\N	widget
2016-05-20 17:11:51.9103+00	2016-07-12 15:58:43.143943+00	39	0b3fcee2-9b4c-4fe5-aa13-4a6db33f4d45	Ashland Outbound Calls - Mark	{"typeLink": false, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "21", "triggerPageInterval": 10, "color": "#311f5a", "branding": false, "unavailableAskLastName": true, "typeButton": true, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Enter the number of the person you want to call. The user will see the Ashland Credit Union toll-free number as caller-id.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": false, "typeTab": false, "guid": "0b3fcee2-9b4c-4fe5-aa13-4a6db33f4d45", "id": 39, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "07:00:00", "notifyAllLeads": false, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "...You are about to be connected to an Ashland Credit Union leed.", "agents": [{"fullName": "Mark Davis", "contactUsing": "phone", "id": 16}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "23:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "US/Eastern", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": true, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": false, "imageSize": "50", "fromNumberId": 21, "transparentBackground": true, "askEmailAddress": false, "name": "Ashland Outbound Calls - Mark", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "CALL LEAD NOW!", "alwaysModal": true, "voicemail": false, "buttonText": "INITIATE CALL", "days": [true, true, true, true, true, true, true], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "", "notifyMissedCustom": ""}	t	\N	4	\N	widget
2016-05-20 17:19:16.632688+00	2016-07-12 15:55:56.212092+00	41	c6c46e91-97c9-404c-92ba-454008d80db7	Brotherhood Outbound Calls - Mark	{"typeLink": false, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "22", "triggerPageInterval": 10, "color": "#165b44", "branding": false, "unavailableAskLastName": true, "typeButton": true, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Enter the number of the person you want to call. The user will see the Brotherhood Credit Union toll-free number as caller-id.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": false, "typeTab": false, "guid": "c6c46e91-97c9-404c-92ba-454008d80db7", "id": 41, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "07:00:00", "notifyAllLeads": false, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "...You are about to be connected to an Brotherhood Credit Union leed.", "agents": [{"fullName": "Mark Davis", "contactUsing": "phone", "id": 16}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "23:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "US/Eastern", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": true, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": false, "imageSize": "50", "fromNumberId": 22, "transparentBackground": true, "askEmailAddress": false, "name": "Brotherhood Outbound Calls - Mark", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "CALL LEAD NOW!", "alwaysModal": true, "voicemail": false, "buttonText": "INITIATE CALL", "days": [true, true, true, true, true, true, true], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "", "notifyMissedCustom": ""}	t	\N	4	\N	widget
2016-11-09 16:50:30.880242+00	2016-11-10 23:32:30.01228+00	83	02e2ba2f-b880-4f06-9dad-a715fa6b6b38	NeuIQ	{"typeLink": false, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "agents": [{"fullName": "Steve Neu", "contactUsing": "phone", "id": 78}], "triggerPageInterval": 10, "color": "#000000", "branding": false, "unavailableAskLastName": true, "typeButton": false, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Let us help you. Enter your details below and click on the talk button to speak to one of our representatives.", "imageHorizontal": "0", "routeRandomly": false, "askLastName": true, "typeTab": false, "guid": "02e2ba2f-b880-4f06-9dad-a715fa6b6b38", "id": 83, "firstNamePrompt": "First name:", "availableFrom": "08:00:00", "notifyAllLeads": true, "title": "Contact Us", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "3f34a34d-e112-4bd4-aec0-acacbb0c3423", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": true, "animation": "fade-right", "lastNamePrompt": "Last name:", "hiddenInformation": "", "unavailableQuestionPrompt": "Question:", "typeImage": true, "addHiddenInformation": false, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "defaultImage": "", "imageVertical": "99", "notifyAllAgents": false, "scheduleTimezone": "America/New_York", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": "70", "fromNumberId": 119, "transparentBackground": true, "askEmailAddress": true, "name": "NeuIQ", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "Talk to us now!", "alwaysModal": false, "voicemail": true, "buttonText": "Talk Now!", "days": [false, true, true, true, true, true, false], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "retryRouting": ["0", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "", "notifyMissedCustom": ""}	t	119	6	\N	widget
2016-05-20 17:36:37.762773+00	2016-07-12 15:50:10.657863+00	45	d74ffd1c-7b90-4327-b9bc-e1ebf9391484	Falls Catholic Outbound Calls - Mark	{"typeLink": false, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "26", "triggerPageInterval": 10, "color": "#118545", "branding": false, "unavailableAskLastName": true, "typeButton": true, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Enter the number of the person you want to call. The user will see the Falls Catholic Credit Union toll-free number as caller-id.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": false, "typeTab": false, "guid": "d74ffd1c-7b90-4327-b9bc-e1ebf9391484", "id": 45, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "07:00:00", "notifyAllLeads": false, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "...You are about to be connected to an Falls Catholic Credit Union leed.", "agents": [{"fullName": "Mark Davis", "contactUsing": "phone", "id": 16}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "23:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "US/Eastern", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": true, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": false, "imageSize": "50", "fromNumberId": 26, "transparentBackground": true, "askEmailAddress": false, "name": "Falls Catholic Outbound Calls - Mark", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "CALL LEAD NOW!", "alwaysModal": true, "voicemail": false, "buttonText": "INITIATE CALL", "days": [true, true, true, true, true, true, true], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "", "notifyMissedCustom": ""}	t	\N	4	\N	widget
2017-01-09 22:57:40.856422+00	2017-01-09 22:58:24.64294+00	84	ca8fba10-d41f-45ea-b478-b486fe0785d8	Default	{"typeLink": false, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "agents": [{"fullName": "Harry Vermaak", "contactUsing": "phone", "id": 77}], "triggerPageInterval": 10, "color": "#2eb398", "branding": true, "unavailableAskLastName": true, "typeButton": true, "notifyMissedAgents": false, "intro": "Let us help you. Enter your details below and click on the talk button to speak to one of our representatives.", "imageHorizontal": 50, "routeRandomly": false, "askLastName": true, "typeTab": true, "firstNamePrompt": "First", "availableFrom": "08:00:00", "notifyAllLeads": false, "title": "Talk to us now!", "notifyMissedLeads": true, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "", "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": false, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "defaultImage": "", "imageVertical": 50, "notifyAllAgents": false, "scheduleTimezone": "America/New_York", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": 50, "fromNumberId": 120, "transparentBackground": false, "askEmailAddress": true, "name": "Default", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "Talk to us now!", "alwaysModal": false, "voicemail": true, "buttonText": "Talk Now!", "days": [false, true, true, true, true, true, false], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "retryRouting": ["0", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "", "notifyMissedCustom": ""}	t	\N	6	\N	widget
2016-05-20 17:33:06.5269+00	2016-07-12 15:52:26.176326+00	44	f452a839-1c09-4197-a86b-ba53f5a3554c	Emerald Outbound Calls - Mark	{"typeLink": false, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "25", "triggerPageInterval": 10, "color": "#1f5e32", "branding": false, "unavailableAskLastName": true, "typeButton": true, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Enter the number of the person you want to call. The user will see the Emerald Credit Union toll-free number as caller-id.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": false, "typeTab": false, "guid": "f452a839-1c09-4197-a86b-ba53f5a3554c", "id": 44, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "07:00:00", "notifyAllLeads": false, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "...You are about to be connected to an Emerald Credit Union leed.", "agents": [{"fullName": "Mark Davis", "contactUsing": "phone", "id": 16}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "23:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "US/Eastern", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": true, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": false, "imageSize": "50", "fromNumberId": 25, "transparentBackground": true, "askEmailAddress": false, "name": "Emerald Outbound Calls - Mark", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "CALL LEAD NOW!", "alwaysModal": true, "voicemail": false, "buttonText": "INITIATE CALL", "days": [true, true, true, true, true, true, true], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "", "notifyMissedCustom": ""}	t	\N	4	\N	widget
2016-05-20 17:30:02.280054+00	2016-07-12 15:53:19.71561+00	43	8f30d55b-8601-40b9-9d7f-11bfe29c5449	Edwards Outbound Calls - Mark	{"typeLink": false, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "24", "triggerPageInterval": 10, "color": "#2b3a83", "branding": false, "unavailableAskLastName": true, "typeButton": true, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Enter the number of the person you want to call. The user will see the Edwards Credit Union toll-free number as caller-id.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": false, "typeTab": false, "guid": "8f30d55b-8601-40b9-9d7f-11bfe29c5449", "id": 43, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "07:00:00", "notifyAllLeads": false, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "...You are about to be connected to an Edwards Credit Union leed.", "agents": [{"fullName": "Mark Davis", "contactUsing": "phone", "id": 16}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "23:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "America/Chicago", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": true, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": false, "imageSize": "50", "fromNumberId": 24, "transparentBackground": true, "askEmailAddress": false, "name": "Edwards Outbound Calls - Mark", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "CALL LEAD NOW!", "alwaysModal": true, "voicemail": false, "buttonText": "INITIATE CALL", "days": [true, true, true, true, true, true, true], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "", "notifyMissedCustom": ""}	t	\N	4	\N	widget
2016-05-20 17:51:32.952134+00	2016-07-12 15:46:25.231518+00	48	cb653cf7-f9fc-426a-847f-037ba278f4df	Schneider Outbound Calls - Mark	{"typeLink": false, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "29", "triggerPageInterval": 10, "color": "#c98b36", "branding": false, "unavailableAskLastName": true, "typeButton": true, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Enter the number of the person you want to call. The user will see the Scheinder Credit Union toll-free number as caller-id.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": false, "typeTab": false, "guid": "cb653cf7-f9fc-426a-847f-037ba278f4df", "id": 48, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "07:00:00", "notifyAllLeads": false, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "...You are about to be connected to an Schneider Credit Union leed.", "agents": [{"fullName": "Mark Davis", "contactUsing": "phone", "id": 16}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "23:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "US/Eastern", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": true, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": false, "imageSize": "50", "fromNumberId": 29, "transparentBackground": true, "askEmailAddress": false, "name": "Schneider Outbound Calls - Mark", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "CALL LEAD NOW!", "alwaysModal": true, "voicemail": false, "buttonText": "INITIATE CALL", "days": [true, true, true, true, true, true, true], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "", "notifyMissedCustom": ""}	t	\N	4	\N	widget
2016-05-20 17:47:34.774986+00	2016-07-12 15:47:11.269133+00	47	bacb2c6f-2833-49e2-90e4-7cfcf770bfc6	Parkside Outbound Calls - Mark	{"typeLink": false, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "28", "triggerPageInterval": 10, "color": "#505da3", "branding": false, "unavailableAskLastName": true, "typeButton": true, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Enter the number of the person you want to call. The user will see the Parkside Credit Union toll-free number as caller-id.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": false, "typeTab": false, "guid": "bacb2c6f-2833-49e2-90e4-7cfcf770bfc6", "id": 47, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "07:00:00", "notifyAllLeads": false, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "...You are about to be connected to an Park Side Credit Union leed.", "agents": [{"fullName": "Mark Davis", "contactUsing": "phone", "id": 16}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "23:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "US/Eastern", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": true, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": false, "imageSize": "50", "fromNumberId": 28, "transparentBackground": true, "askEmailAddress": false, "name": "Parkside Outbound Calls - Mark", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "CALL LEAD NOW!", "alwaysModal": true, "voicemail": false, "buttonText": "INITIATE CALL", "days": [true, true, true, true, true, true, true], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "", "notifyMissedCustom": ""}	t	\N	4	\N	widget
2016-05-20 17:40:03.109611+00	2016-07-12 17:31:56.474308+00	46	46e7ae96-dc1c-479a-bdd2-53a59acd5d28	HealthFirst Outbound Calls - Mark	{"typeLink": false, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "27", "triggerPageInterval": 10, "color": "#922d8d", "branding": false, "unavailableAskLastName": true, "typeButton": true, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Enter the number of the person you want to call. The user will see the HealthFirst Credit Union toll-free number as caller-id.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": false, "typeTab": false, "guid": "46e7ae96-dc1c-479a-bdd2-53a59acd5d28", "id": 46, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "07:00:00", "notifyAllLeads": false, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "...You are about to be connected to an Health First Credit Union leed.", "agents": [{"fullName": "Mark Davis", "contactUsing": "phone", "id": 16}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "23:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "US/Eastern", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": true, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": false, "imageSize": "50", "fromNumberId": 27, "transparentBackground": true, "askEmailAddress": false, "name": "HealthFirst Outbound Calls - Mark", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "CALL LEAD NOW!", "alwaysModal": true, "voicemail": false, "buttonText": "INITIATE CALL", "days": [true, true, true, true, true, true, true], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "", "notifyMissedCustom": ""}	t	\N	4	\N	widget
2016-05-05 20:54:03.520612+00	2017-01-27 21:20:28.741788+00	19	4b51c6b2-49f9-4108-8fdf-a8671e497256	Schneider Credit Application	{"typeLink": true, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "29", "triggerPageInterval": 10, "color": "#2eb398", "branding": false, "unavailableAskLastName": true, "typeButton": false, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Let us help you. Enter your details below and click on the talk button to speat to one of our representatives.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": true, "typeTab": false, "guid": "4b51c6b2-49f9-4108-8fdf-a8671e497256", "id": 19, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "08:00:00", "notifyAllLeads": true, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "....This call is regarding a Schneider Credit Union Application Submission that has been filled out and completed.", "agents": [{"fullName": "Herman Vermaak", "contactUsing": "phone", "id": 15}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": true, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "23:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "US/Eastern", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": "50", "fromNumberId": 29, "transparentBackground": false, "askEmailAddress": true, "name": "Schneider Credit Application", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "Talk to us now!", "alwaysModal": false, "voicemail": false, "buttonText": "Talk Now!", "days": [false, false, false, false, false, false, false], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "Thank you for completing the Schneider Credit Union application. This is a courtesy follow-up call..This call may be recorded for customer service purposes..", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "mark@recaptureservices.com; steveneu@live.com;", "notifyMissedCustom": ""}	t	\N	4	\N	widget
2016-05-17 22:45:32.46684+00	2017-01-27 21:20:47.307152+00	33	e8f4669f-1511-4da8-a34e-207b61fae94f	Schneider Contact Form	{"typeLink": true, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "agents": [{"fullName": "Mark Davis", "contactUsing": "phone", "id": 16}], "triggerPageInterval": 10, "color": "#c98b36", "branding": true, "unavailableAskLastName": true, "typeButton": false, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Let us help you. Enter your details below and click on the talk button to speat to one of our representatives.", "imageHorizontal": "50", "routeRandomly": false, "askLastName": true, "typeTab": false, "guid": "e8f4669f-1511-4da8-a34e-207b61fae94f", "id": 33, "firstNamePrompt": "First name:", "availableFrom": "08:00:00", "notifyAllLeads": true, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Got any questions for us? Our team is waiting to help you save money today.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": true, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "Schneider Credit Union Contact Form", "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "America/Chicago", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": "50", "fromNumberId": 28, "transparentBackground": true, "askEmailAddress": true, "name": "Schneider Contact Form", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "Talk to us now!", "alwaysModal": true, "voicemail": true, "buttonText": "Talk Now!", "days": [false, false, false, false, false, false, false], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "retryRouting": ["0", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "mark@recaptureservices.com; steveneu@live.com;", "notifyMissedCustom": ""}	t	\N	4	\N	widget
2016-05-05 20:52:13.639211+00	2017-01-27 21:21:38.06009+00	17	b68b0e82-afff-4a8e-a4d0-6432807a9df4	HealthFirst Credit Application	{"typeLink": true, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "27", "triggerPageInterval": 10, "color": "#922d8d", "branding": false, "unavailableAskLastName": true, "typeButton": false, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Let us help you. Enter your details below and click on the talk button to speat to one of our representatives.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": true, "typeTab": false, "guid": "b68b0e82-afff-4a8e-a4d0-6432807a9df4", "id": 17, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "08:00:00", "notifyAllLeads": true, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "....This call is regarding a Health First Credit Union Application Submission that has been filled out and completed.", "agents": [{"fullName": "Herman Vermaak", "contactUsing": "phone", "id": 15}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": true, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "23:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "US/Eastern", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": "50", "fromNumberId": 27, "transparentBackground": false, "askEmailAddress": true, "name": "HealthFirst Credit Application", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "Talk to us now!", "alwaysModal": false, "voicemail": false, "buttonText": "Talk Now!", "days": [false, false, false, false, false, false, false], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "Thank you for completing the Health First Credit Union application. This is a courtesy follow-up call...This call may be recorded for customer service purposes..", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "mark@recaptureservices.com; steveneu@live.com;", "notifyMissedCustom": ""}	t	\N	4	\N	widget
2016-05-02 19:09:58.347593+00	2016-05-26 13:20:13.172767+00	8	949dfa1a-fa15-4d8d-b6c3-42eaeaade433	Team Longhorne Sales Portal Widget	{"typeLink": true, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "33", "triggerPageInterval": 10, "color": "#2eb398", "branding": true, "unavailableAskLastName": true, "typeButton": false, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Let us help you. Enter your details below and click on the talk button to speak to one of our representatives.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": true, "typeTab": false, "guid": "949dfa1a-fa15-4d8d-b6c3-42eaeaade433", "id": 8, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "06:00:00", "notifyAllLeads": true, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "...This is a rewards member call", "agents": [{"fullName": "Team Langhorne Sales Team", "contactUsing": "phone", "id": 20}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "22:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "US/Eastern", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": "50", "fromNumberId": 34, "transparentBackground": true, "askEmailAddress": true, "name": "Team Longhorne Sales Portal Widget", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "Talk to us now!", "alwaysModal": true, "voicemail": false, "buttonText": "Talk Now!", "days": [false, true, true, true, true, true, true], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "steveneu@live.com ", "notifyMissedCustom": ""}	t	\N	3	\N	widget
2017-02-05 08:14:11.491454+00	2017-02-05 08:14:11.491486+00	85	f507182f-3222-4f32-9bb7-ff830681fceb	Default	{"voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "typeLink": false, "color": "#2eb398", "typeButton": true, "imageHorizontal": 50, "askLastName": true, "alwaysModal": false, "unavailableAskQuestion": false, "notifyAllMe": true, "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "pages": [], "emailAddressPrompt": "Email address:", "routeInSequence": false, "triggerBasedOnTime": false, "lastNamePrompt": "Last name:", "notifyNone": false, "askPhoneNumber": true, "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "scheduleTimezone": "", "triggerBasedOnPage": false, "notifyMissedAgents": false, "notifyAllLeads": false, "animation": "bounce-up", "askFirstName": true, "transparentBackground": false, "askEmailAddress": true, "name": "Default", "showOnMobile": true, "askQuestion": false, "phoneNumberPrompt": "Phone number:", "notifyMissedLeads": true, "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "addHiddenInformation": false, "retryRouting": ["0", "", ""], "unavailableAskPhoneNumber": true, "triggerPageInterval": 10, "notifyMissedMe": true, "branding": true, "unavailableAskLastName": true, "intro": "Let us help you. Enter your details below and click on the talk button to speak to one of our representatives.", "routeRandomly": false, "typeTab": true, "firstNamePrompt": "First name:", "availableFrom": "08:00:00", "unavailableFirstNamePrompt": "First name:", "customImage": "", "unavailableAskFirstName": true, "mobileOptimized": false, "unavailablePhoneNumberPrompt": "Phone number:", "hiddenInformation": "", "unavailableQuestionPrompt": "Question:", "typeImage": false, "questionPrompt": "Question:", "recordCalls": false, "title": "Talk to us now!", "defaultImage": "", "imageVertical": 50, "triggerInterval": 30, "unavailableEmailAddressPrompt": "Email address:", "showHideButton": true, "unavailableAskEmailAddress": true, "notifyAllAgents": false, "imageSize": 50, "language": "en", "headerTitle": "Talk to us now!", "notifyAllCustom": "", "voicemail": true, "buttonText": "Talk Now!", "days": [false, true, true, true, true, true, false], "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "position": "bottom-right", "routeSimultaneously": true, "notifyMissedCustom": ""}	t	\N	7	\N	widget
2016-08-10 22:52:38.281668+00	2016-08-10 22:53:47.267075+00	72	030c4f8d-8f6a-470d-a473-e83e32d9e8c0	Development Company Contact Form	{"typeLink": true, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "agents": [{"fullName": "Harry Vermaak", "contactUsing": "phone", "id": 2}], "triggerPageInterval": 10, "color": "#2eb398", "branding": false, "unavailableAskLastName": true, "typeButton": false, "notifyMissedAgents": false, "repeatAnimation": false, "intro": "Let us help you. Enter your details below and click on the talk button to speak to one of our representatives.", "imageHorizontal": "50", "routeRandomly": false, "retryRouting1": "", "askLastName": true, "typeTab": false, "retryRouting2": "", "retryRouting3": "", "firstNamePrompt": "First name:", "": "1", "availableFrom": "08:00:00", "notifyAllLeads": true, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "Development Company - Contact Form", "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "America/Chicago", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": false, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": "50", "fromNumberId": 16, "transparentBackground": false, "askEmailAddress": true, "name": "Development Company Contact Form", "showOnMobile": false, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "Talk to us now!", "alwaysModal": false, "voicemail": false, "buttonText": "Talk Now!", "days": [false, false, false, false, false, false, false], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "hjvermaak@gmail.com", "notifyMissedCustom": ""}	t	16	1	\N	widget
2016-07-12 17:02:15.02973+00	2016-10-31 15:07:59.578227+00	70	53a0829a-9740-49d4-9f56-f60c87f2358e	Autosave123 Outbound Calls - Robert	{"typeLink": false, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "25", "triggerPageInterval": 10, "color": "#059bc8", "branding": false, "unavailableAskLastName": true, "typeButton": true, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "CALL LEAD NOW! Enter the number of the person you want to call. The user will see your +1-855-534-3978 toll-free number as caller-id.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": false, "typeTab": false, "guid": "53a0829a-9740-49d4-9f56-f60c87f2358e", "id": 70, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "07:00:00", "notifyAllLeads": false, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "...You are about to be connected to an Autosave123 leed.", "agents": [{"fullName": "Robert Sanders", "contactUsing": "phone", "id": 45}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "23:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "US/Eastern", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": true, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": false, "imageSize": "50", "fromNumberId": 48, "transparentBackground": true, "askEmailAddress": false, "name": "Autosave123 Outbound Calls - Robert", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "CALL LEAD NOW!", "alwaysModal": true, "voicemail": false, "buttonText": "INITIATE CALL", "days": [true, true, true, true, true, true, true], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "", "notifyMissedCustom": ""}	t	48	4	\N	widget
2016-07-12 17:00:43.201111+00	2016-10-31 15:09:59.540156+00	69	53bebe0b-6142-4444-804d-e0858bfb092d	ASECU Outbound Calls - Robert	{"typeLink": false, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "25", "triggerPageInterval": 10, "color": "#a7384d", "branding": false, "unavailableAskLastName": true, "typeButton": true, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Enter the number of the person you want to call. The user will see your +1-855-534-3978 toll-free number as caller-id.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": false, "typeTab": false, "guid": "53bebe0b-6142-4444-804d-e0858bfb092d", "id": 69, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "07:00:00", "notifyAllLeads": false, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "...You are about to be connected to an Associated School Employees Credit Union leed.", "agents": [{"fullName": "Robert Sanders", "contactUsing": "phone", "id": 45}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "23:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "America/Chicago", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": true, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": false, "imageSize": "50", "fromNumberId": 48, "transparentBackground": true, "askEmailAddress": false, "name": "ASECU Outbound Calls - Robert", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "CALL LEAD NOW!", "alwaysModal": true, "voicemail": false, "buttonText": "INITIATE CALL", "days": [true, true, true, true, true, true, true], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "", "notifyMissedCustom": ""}	t	48	4	\N	widget
2016-05-24 18:04:39.926452+00	2016-05-26 13:19:50.921065+00	52	12a0a99c-46e7-4e75-835e-f249b96d98f1	Team Longhorne Service Portal Widget	{"typeLink": true, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "33", "triggerPageInterval": 10, "color": "#2eb398", "branding": false, "unavailableAskLastName": true, "typeButton": false, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Let us help you. Enter your details below and click on the talk button to speat to one of our representatives.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": true, "typeTab": false, "guid": "12a0a99c-46e7-4e75-835e-f249b96d98f1", "id": 52, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "06:00:00", "notifyAllLeads": true, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "...This is a rewards member call", "agents": [{"fullName": "Team Langhorne Service Team", "contactUsing": "phone", "id": 21}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "22:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "US/Eastern", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": "50", "fromNumberId": 35, "transparentBackground": true, "askEmailAddress": true, "name": "Team Longhorne Service Portal Widget", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "Talk to us now!", "alwaysModal": true, "voicemail": false, "buttonText": "Talk Now!", "days": [false, true, true, true, true, true, true], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "steveneu@live.com ", "notifyMissedCustom": ""}	t	\N	3	\N	widget
2016-08-29 13:56:29.552181+00	2017-01-27 21:26:14.249757+00	73	25e6907c-fe35-44c8-919e-0cc272d1e37a	Autosave123 Contact Form	{"typeLink": true, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "20", "triggerPageInterval": 10, "color": "#059bc8", "branding": true, "unavailableAskLastName": true, "typeButton": false, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Let us help you. Enter your details below and click on the talk button to speak to one of our representatives.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": false, "typeTab": false, "guid": "25e6907c-fe35-44c8-919e-0cc272d1e37a", "id": 73, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "08:00:00", "notifyAllLeads": true, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Got any questions for us? Our team is waiting to help you save money today.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": true, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "Autosave123 Contact Form", "agents": [{"fullName": "Mark Davis", "contactUsing": "phone", "id": 16}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "America/Chicago", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": false, "imageSize": "50", "fromNumberId": 49, "transparentBackground": true, "askEmailAddress": false, "name": "Autosave123 Contact Form", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "Talk to us now!", "alwaysModal": true, "voicemail": true, "buttonText": "Talk Now!", "days": [false, false, false, false, false, false, false], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "mark@recaptureservices.com; steveneu@live.com;", "notifyMissedCustom": ""}	t	49	4	\N	widget
2016-05-17 22:34:02.832513+00	2017-01-27 21:23:07.99726+00	28	a08a3d1d-0557-4ebb-abba-b39da203b6a6	Edwards Contact Form	{"typeLink": true, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "agents": [{"fullName": "Mark Davis", "contactUsing": "phone", "id": 16}], "triggerPageInterval": 10, "color": "#2b3a83", "branding": true, "unavailableAskLastName": true, "typeButton": false, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Let us help you. Enter your details below and click on the talk button to speat to one of our representatives.", "imageHorizontal": "50", "routeRandomly": false, "askLastName": true, "typeTab": false, "guid": "a08a3d1d-0557-4ebb-abba-b39da203b6a6", "id": 28, "firstNamePrompt": "First name:", "availableFrom": "08:00:00", "notifyAllLeads": true, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Got any questions for us? Our team is waiting to help you save money today.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": true, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "Edwards Credit Union Contact Form", "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "America/Chicago", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": "50", "fromNumberId": 28, "transparentBackground": true, "askEmailAddress": true, "name": "Edwards Contact Form", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "Talk to us now!", "alwaysModal": true, "voicemail": true, "buttonText": "Talk Now!", "days": [false, false, false, false, false, false, false], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "retryRouting": ["0", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "mark@recaptureservices.com; steveneu@live.com;", "notifyMissedCustom": ""}	t	\N	4	\N	widget
2016-05-24 18:06:24.382669+00	2016-05-26 13:20:33.224763+00	53	3c13f908-bf63-45c7-841e-3c55d6e34016	Team Longhorne Body Shop Portal Widget	{"typeLink": true, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "33", "triggerPageInterval": 10, "color": "#2eb398", "branding": false, "unavailableAskLastName": true, "typeButton": false, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Let us help you. Enter your details below and click on the talk button to speat to one of our representatives.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": true, "typeTab": false, "guid": "3c13f908-bf63-45c7-841e-3c55d6e34016", "id": 53, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "06:00:00", "notifyAllLeads": true, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "...This is a rewards member call", "agents": [{"fullName": "Team Langhorne Body Shop Team", "contactUsing": "phone", "id": 22}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "22:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "America/Chicago", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": "50", "fromNumberId": 36, "transparentBackground": true, "askEmailAddress": true, "name": "Team Longhorne Body Shop Portal Widget", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "Talk to us now!", "alwaysModal": true, "voicemail": false, "buttonText": "Talk Now!", "days": [false, true, true, true, true, true, true], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "steveneu@live.com ", "notifyMissedCustom": ""}	t	\N	3	\N	widget
2016-07-12 16:45:51.226921+00	2016-10-31 15:03:04.567231+00	63	d49cdd43-8219-400d-ad4e-8b369d268760	Emerald Outbound Calls - Robert	{"typeLink": false, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "25", "triggerPageInterval": 10, "color": "#1f5e32", "branding": false, "unavailableAskLastName": true, "typeButton": true, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Enter the number of the person you want to call. The user will see your +1-855-534-3978 toll-free number as caller-id.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": false, "typeTab": false, "guid": "d49cdd43-8219-400d-ad4e-8b369d268760", "id": 63, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "07:00:00", "notifyAllLeads": false, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "...You are about to be connected to an Emerald Credit Union leed.", "agents": [{"fullName": "Robert Sanders", "contactUsing": "phone", "id": 45}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "23:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "US/Eastern", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": true, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": false, "imageSize": "50", "fromNumberId": 48, "transparentBackground": true, "askEmailAddress": false, "name": "Emerald Outbound Calls - Robert", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "CALL LEAD NOW!", "alwaysModal": true, "voicemail": false, "buttonText": "INITIATE CALL", "days": [true, true, true, true, true, true, true], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "", "notifyMissedCustom": ""}	t	48	4	\N	widget
2016-05-20 17:15:35.757638+00	2016-07-12 15:57:03.356022+00	40	3325b549-bf3b-4c47-9521-0bf023d02435	Badlands Outbound Calls - Mark	{"typeLink": false, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "20", "triggerPageInterval": 10, "color": "#144e59", "branding": false, "unavailableAskLastName": true, "typeButton": true, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Enter the number of the person you want to call. The user will see the Badlands Credit Union toll-free number as caller-id.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": false, "typeTab": false, "guid": "3325b549-bf3b-4c47-9521-0bf023d02435", "id": 40, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "07:00:00", "notifyAllLeads": false, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "...You are about to be connected to an Badlands Credit Union leed.", "agents": [{"fullName": "Mark Davis", "contactUsing": "phone", "id": 16}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "23:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "US/Eastern", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": true, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": false, "imageSize": "50", "fromNumberId": 20, "transparentBackground": true, "askEmailAddress": false, "name": "Badlands Outbound Calls - Mark", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "CALL LEAD NOW!", "alwaysModal": true, "voicemail": false, "buttonText": "INITIATE CALL", "days": [true, true, true, true, true, true, true], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "", "notifyMissedCustom": ""}	t	\N	4	\N	widget
2016-05-17 22:36:19.453049+00	2017-01-27 21:22:43.412575+00	29	2795795f-80eb-4de8-9bd7-4cd0c328ae29	Emerald Contact Form	{"typeLink": true, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "agents": [{"fullName": "Mark Davis", "contactUsing": "phone", "id": 16}], "triggerPageInterval": 10, "color": "#1f5e32", "branding": true, "unavailableAskLastName": true, "typeButton": false, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Let us help you. Enter your details below and click on the talk button to speat to one of our representatives.", "imageHorizontal": "50", "routeRandomly": false, "askLastName": true, "typeTab": false, "guid": "2795795f-80eb-4de8-9bd7-4cd0c328ae29", "id": 29, "firstNamePrompt": "First name:", "availableFrom": "08:00:00", "notifyAllLeads": true, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Got any questions for us? Our team is waiting to help you save money today.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": true, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "Emerald Credit Union Contact Form", "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "America/Chicago", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": "50", "fromNumberId": 28, "transparentBackground": true, "askEmailAddress": true, "name": "Emerald Contact Form", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "Talk to us now!", "alwaysModal": true, "voicemail": true, "buttonText": "Talk Now!", "days": [false, false, false, false, false, false, false], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "retryRouting": ["0", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "mark@recaptureservices.com; steveneu@live.com;", "notifyMissedCustom": ""}	t	\N	4	\N	widget
2017-03-01 14:56:23.572156+00	2017-03-01 14:56:35.555557+00	87	bc6a6ae4-cbf4-4779-8ed6-917abf493016	Default	{"typeLink": false, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "agents": [{"fullName": "Jerry Thompson", "contactUsing": "phone", "id": 18}], "triggerPageInterval": 10, "color": "#2eb398", "branding": true, "unavailableAskLastName": true, "typeButton": true, "notifyMissedAgents": false, "intro": "Let us help you. Enter your details below and click on the talk button to speak to one of our representatives.", "imageHorizontal": 50, "routeRandomly": false, "askLastName": true, "typeTab": true, "firstNamePrompt": "First name:", "notifyAllLeads": false, "title": "Talk to us now!", "notifyMissedLeads": true, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "", "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": false, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "defaultImage": "", "imageVertical": 50, "notifyAllAgents": false, "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": 50, "fromNumberId": 23, "transparentBackground": false, "askEmailAddress": true, "name": "Default", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "Talk to us now!", "alwaysModal": false, "voicemail": true, "buttonText": "Talk Now!", "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "retryRouting": ["0", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "", "notifyMissedCustom": ""}	t	\N	4	\N	widget
2017-03-01 21:11:34.450424+00	2017-03-01 21:11:34.450452+00	88	d39ec704-2d29-48f5-95e5-d14d0a927bc0	Default	{"voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "typeLink": false, "color": "#2eb398", "typeButton": true, "imageHorizontal": 50, "askLastName": true, "alwaysModal": false, "unavailableAskQuestion": false, "notifyAllMe": true, "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "pages": [], "emailAddressPrompt": "Email address:", "routeInSequence": false, "triggerBasedOnTime": false, "lastNamePrompt": "Last name:", "notifyNone": false, "askPhoneNumber": true, "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "scheduleTimezone": "", "triggerBasedOnPage": false, "notifyMissedAgents": false, "notifyAllLeads": false, "animation": "bounce-up", "askFirstName": true, "transparentBackground": false, "askEmailAddress": true, "name": "Default", "showOnMobile": true, "askQuestion": false, "phoneNumberPrompt": "Phone number:", "notifyMissedLeads": true, "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "addHiddenInformation": false, "retryRouting": ["0", "", ""], "unavailableAskPhoneNumber": true, "triggerPageInterval": 10, "notifyMissedMe": true, "branding": true, "unavailableAskLastName": true, "intro": "Let us help you. Enter your details below and click on the talk button to speak to one of our representatives.", "routeRandomly": false, "typeTab": true, "firstNamePrompt": "First name:", "availableFrom": "08:00:00", "unavailableFirstNamePrompt": "First name:", "customImage": "", "unavailableAskFirstName": true, "mobileOptimized": false, "unavailablePhoneNumberPrompt": "Phone number:", "hiddenInformation": "", "unavailableQuestionPrompt": "Question:", "typeImage": false, "questionPrompt": "Question:", "recordCalls": false, "title": "Talk to us now!", "defaultImage": "", "imageVertical": 50, "triggerInterval": 30, "unavailableEmailAddressPrompt": "Email address:", "showHideButton": true, "unavailableAskEmailAddress": true, "notifyAllAgents": false, "imageSize": 50, "language": "en", "headerTitle": "Talk to us now!", "notifyAllCustom": "", "voicemail": true, "buttonText": "Talk Now!", "days": [false, true, true, true, true, true, false], "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "position": "bottom-right", "routeSimultaneously": true, "notifyMissedCustom": ""}	t	\N	9	\N	widget
2017-03-09 15:49:41.988177+00	2017-03-09 15:49:41.988194+00	89	cf2438bf-0ec3-4330-ac88-5f79691818a0	Default	{"voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "typeLink": false, "color": "#2eb398", "typeButton": true, "imageHorizontal": 50, "askLastName": true, "alwaysModal": false, "unavailableAskQuestion": false, "notifyAllMe": true, "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "pages": [], "emailAddressPrompt": "Email address:", "routeInSequence": false, "triggerBasedOnTime": false, "lastNamePrompt": "Last name:", "notifyNone": false, "askPhoneNumber": true, "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "scheduleTimezone": "", "triggerBasedOnPage": false, "notifyMissedAgents": false, "notifyAllLeads": false, "animation": "bounce-up", "askFirstName": true, "transparentBackground": false, "askEmailAddress": true, "name": "Default", "showOnMobile": true, "askQuestion": false, "phoneNumberPrompt": "Phone number:", "notifyMissedLeads": true, "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "addHiddenInformation": false, "retryRouting": ["0", "", ""], "unavailableAskPhoneNumber": true, "triggerPageInterval": 10, "notifyMissedMe": true, "branding": true, "unavailableAskLastName": true, "intro": "Let us help you. Enter your details below and click on the talk button to speak to one of our representatives.", "routeRandomly": false, "typeTab": true, "firstNamePrompt": "First name:", "availableFrom": "08:00:00", "unavailableFirstNamePrompt": "First name:", "customImage": "", "unavailableAskFirstName": true, "mobileOptimized": false, "unavailablePhoneNumberPrompt": "Phone number:", "hiddenInformation": "", "unavailableQuestionPrompt": "Question:", "typeImage": false, "questionPrompt": "Question:", "recordCalls": false, "title": "Talk to us now!", "defaultImage": "", "imageVertical": 50, "triggerInterval": 30, "unavailableEmailAddressPrompt": "Email address:", "showHideButton": true, "unavailableAskEmailAddress": true, "notifyAllAgents": false, "imageSize": 50, "language": "en", "headerTitle": "Talk to us now!", "notifyAllCustom": "", "voicemail": true, "buttonText": "Talk Now!", "days": [false, true, true, true, true, true, false], "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "position": "bottom-right", "routeSimultaneously": true, "notifyMissedCustom": ""}	t	\N	10	\N	widget
2017-03-12 17:46:22.835622+00	2017-03-12 17:46:22.835678+00	90	23137c90-68bf-44f6-80c5-20ec301b750d	Default	{"voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "typeLink": false, "color": "#2eb398", "typeButton": true, "imageHorizontal": 50, "askLastName": true, "alwaysModal": false, "unavailableAskQuestion": false, "notifyAllMe": true, "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "pages": [], "emailAddressPrompt": "Email address:", "routeInSequence": false, "triggerBasedOnTime": false, "lastNamePrompt": "Last name:", "notifyNone": false, "askPhoneNumber": true, "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "scheduleTimezone": "", "triggerBasedOnPage": false, "notifyMissedAgents": false, "notifyAllLeads": false, "animation": "bounce-up", "askFirstName": true, "transparentBackground": false, "askEmailAddress": true, "name": "Default", "showOnMobile": true, "askQuestion": false, "phoneNumberPrompt": "Phone number:", "notifyMissedLeads": true, "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "addHiddenInformation": false, "retryRouting": ["0", "", ""], "unavailableAskPhoneNumber": true, "triggerPageInterval": 10, "notifyMissedMe": true, "branding": true, "unavailableAskLastName": true, "intro": "Let us help you. Enter your details below and click on the talk button to speak to one of our representatives.", "routeRandomly": false, "typeTab": true, "firstNamePrompt": "First name:", "availableFrom": "08:00:00", "unavailableFirstNamePrompt": "First name:", "customImage": "", "unavailableAskFirstName": true, "mobileOptimized": false, "unavailablePhoneNumberPrompt": "Phone number:", "hiddenInformation": "", "unavailableQuestionPrompt": "Question:", "typeImage": false, "questionPrompt": "Question:", "recordCalls": false, "title": "Talk to us now!", "defaultImage": "", "imageVertical": 50, "triggerInterval": 30, "unavailableEmailAddressPrompt": "Email address:", "showHideButton": true, "unavailableAskEmailAddress": true, "notifyAllAgents": false, "imageSize": 50, "language": "en", "headerTitle": "Talk to us now!", "notifyAllCustom": "", "voicemail": true, "buttonText": "Talk Now!", "days": [false, true, true, true, true, true, false], "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "position": "bottom-right", "routeSimultaneously": true, "notifyMissedCustom": ""}	t	\N	11	\N	widget
2017-03-13 20:17:35.286411+00	2017-03-24 02:10:45.976064+00	91	eff801f4-faba-4099-8c19-df00f20a3b9b	Demo One	{"typeLink": false, "questionPrompt": "Vehicle(s) of Interest", "unavailableAskPhoneNumber": true, "agents": [{"fullName": "Demo One", "contactUsing": "phone", "id": 120}], "triggerPageInterval": 10, "color": "#23a7fa", "branding": false, "unavailableAskLastName": false, "typeButton": true, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Let us help you. Enter your details below and click on the talk button to speak to one of our Vehicle Specialists now!", "imageHorizontal": "48", "routeRandomly": false, "askLastName": false, "typeTab": false, "guid": "eff801f4-faba-4099-8c19-df00f20a3b9b", "id": 91, "firstNamePrompt": "Name:", "notifyAllLeads": true, "title": "Have Questions? Click Here", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "b93eafaa-9b48-4ab5-86ce-cf6becba7bc5", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": true, "emailAddressPrompt": "Email address:", "mobileOptimized": true, "animation": "shake", "lastNamePrompt": "Last name:", "hiddenInformation": "Perfect Car Search Call", "unavailableQuestionPrompt": "Vehicle(s) of Interest?", "typeImage": true, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "We will call you back!", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": false, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": "7", "fromNumberId": 123, "transparentBackground": true, "askEmailAddress": false, "name": "Demo One", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "Questions about a Vehicle?", "alwaysModal": true, "voicemail": true, "buttonText": "Talk Now!", "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": true, "unavailableFirstNamePrompt": "Name:", "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "retryRouting": ["0", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "", "notifyMissedCustom": ""}	t	123	10	\N	widget
2016-05-17 22:41:09.664243+00	2017-01-27 21:21:50.216771+00	31	9029fc5d-bfb6-4e8d-a204-c429a0dd7823	HealthFirst Contact Form	{"typeLink": true, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "agents": [{"fullName": "Mark Davis", "contactUsing": "phone", "id": 16}], "triggerPageInterval": 10, "color": "#922d8d", "branding": true, "unavailableAskLastName": true, "typeButton": false, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Let us help you. Enter your details below and click on the talk button to speat to one of our representatives.", "imageHorizontal": "50", "routeRandomly": false, "askLastName": true, "typeTab": false, "guid": "9029fc5d-bfb6-4e8d-a204-c429a0dd7823", "id": 31, "firstNamePrompt": "First name:", "availableFrom": "08:00:00", "notifyAllLeads": true, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Got any questions for us? Our team is waiting to help you save money today.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": true, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "HealthFirst Credit Union Contact Form", "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "America/Chicago", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": "50", "fromNumberId": 28, "transparentBackground": true, "askEmailAddress": true, "name": "HealthFirst Contact Form", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "Talk to us now!", "alwaysModal": true, "voicemail": true, "buttonText": "Talk Now!", "days": [false, false, false, false, false, false, false], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "retryRouting": ["0", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "mark@recaptureservices.com; steveneu@live.com;", "notifyMissedCustom": ""}	t	\N	4	\N	widget
2017-03-22 15:44:47.533973+00	2017-03-22 15:44:47.533998+00	92	7d2e01f3-b1fa-4327-890e-d584a9fe55d7	Default	{"voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "typeLink": false, "color": "#2eb398", "typeButton": true, "imageHorizontal": 50, "askLastName": true, "alwaysModal": false, "unavailableAskQuestion": false, "notifyAllMe": true, "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "pages": [], "emailAddressPrompt": "Email address:", "routeInSequence": false, "triggerBasedOnTime": false, "lastNamePrompt": "Last name:", "notifyNone": false, "askPhoneNumber": true, "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "scheduleTimezone": "", "triggerBasedOnPage": false, "notifyMissedAgents": false, "notifyAllLeads": false, "animation": "bounce-up", "askFirstName": true, "transparentBackground": false, "askEmailAddress": true, "name": "Default", "showOnMobile": true, "askQuestion": false, "phoneNumberPrompt": "Phone number:", "notifyMissedLeads": true, "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "addHiddenInformation": false, "retryRouting": ["0", "", ""], "unavailableAskPhoneNumber": true, "triggerPageInterval": 10, "notifyMissedMe": true, "branding": true, "unavailableAskLastName": true, "intro": "Let us help you. Enter your details below and click on the talk button to speak to one of our representatives.", "routeRandomly": false, "typeTab": true, "firstNamePrompt": "First name:", "availableFrom": "08:00:00", "unavailableFirstNamePrompt": "First name:", "customImage": "", "unavailableAskFirstName": true, "mobileOptimized": false, "unavailablePhoneNumberPrompt": "Phone number:", "hiddenInformation": "", "unavailableQuestionPrompt": "Question:", "typeImage": false, "questionPrompt": "Question:", "recordCalls": false, "title": "Talk to us now!", "defaultImage": "", "imageVertical": 50, "triggerInterval": 30, "unavailableEmailAddressPrompt": "Email address:", "showHideButton": true, "unavailableAskEmailAddress": true, "notifyAllAgents": false, "imageSize": 50, "language": "en", "headerTitle": "Talk to us now!", "notifyAllCustom": "", "voicemail": true, "buttonText": "Talk Now!", "days": [false, true, true, true, true, true, false], "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "position": "bottom-right", "routeSimultaneously": true, "notifyMissedCustom": ""}	t	\N	12	\N	widget
2017-06-02 22:49:09.462924+00	2017-06-05 14:13:20.877468+00	93	b4285ba6-eafb-4370-bc88-8690f097fc13	Cavender	{"typeLink": false, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "131", "triggerPageInterval": "10", "color": "#0b57a2", "branding": false, "unavailableAskLastName": true, "typeButton": false, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Let us help you. Enter your details below and click on the talk button to speak to one of our representatives immediately.", "imageHorizontal": "0", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "0", "askLastName": true, "typeTab": true, "guid": "b4285ba6-eafb-4370-bc88-8690f097fc13", "id": 93, "firstNamePrompt": "First name:", "retryRouting3": "", "notifyAllLeads": true, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "212af3a5-97c5-4e18-aff8-425491d1d04e", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": true, "emailAddressPrompt": "Email address:", "mobileOptimized": true, "animation": "shake", "lastNamePrompt": "Last name:", "hiddenInformation": "", "agents": [{"fullName": "Cavender Auto Sales", "contactUsing": "phone", "id": 145}, {"fullName": "Steve Neu", "contactUsing": "phone", "id": 78}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": false, "askPhoneNumber": true, "recordCalls": true, "voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "We will call you back!", "defaultImage": "", "imageVertical": "82", "notifyAllAgents": false, "triggerInterval": "10", "language": "en", "triggerBasedOnTime": false, "showHideButton": false, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": "19", "fromNumberId": 131, "newPage": "", "transparentBackground": true, "askEmailAddress": true, "name": "Cavender", "showOnMobile": false, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "Have Questions?", "alwaysModal": true, "voicemail": true, "buttonText": "Talk Now!", "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": true, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "Thank you for Cavender. You will be connected to a representative shortly. Please note that this call may be recorded for training purposes.", "retryRouting": ["0", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "", "notifyMissedCustom": ""}	t	131	6	\N	widget
2016-05-17 22:22:08.193244+00	2017-01-27 21:26:34.404512+00	24	8780dc44-336a-4d13-9d4a-0727c60d2790	Ashland Contact Form	{"typeLink": true, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "agents": [{"fullName": "Mark Davis", "contactUsing": "phone", "id": 16}], "triggerPageInterval": 10, "color": "#311f5a", "branding": true, "unavailableAskLastName": true, "typeButton": false, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Let us help you. Enter your details below and click on the talk button to speat to one of our representatives.", "imageHorizontal": "50", "routeRandomly": false, "askLastName": false, "typeTab": false, "guid": "8780dc44-336a-4d13-9d4a-0727c60d2790", "id": 24, "firstNamePrompt": "First name:", "availableFrom": "08:00:00", "notifyAllLeads": true, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Got any questions for us? Our team is waiting to help you save money today.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": true, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "Ashland Credit Union Contact Form", "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "America/Chicago", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": false, "imageSize": "50", "fromNumberId": 28, "transparentBackground": true, "askEmailAddress": false, "name": "Ashland Contact Form", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "Talk to us now!", "alwaysModal": true, "voicemail": true, "buttonText": "Talk Now!", "days": [false, false, false, false, false, false, false], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "retryRouting": ["0", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "mark@recaptureservices.com; steveneu@live.com;", "notifyMissedCustom": ""}	t	\N	4	\N	widget
2016-07-12 16:53:37.652718+00	2016-10-31 15:05:19.050154+00	66	d8ddb0fe-8232-4f00-93a3-fe583fa13776	Brotherhood Outbound Calls - Robert	{"typeLink": false, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "25", "triggerPageInterval": 10, "color": "#165b44", "branding": false, "unavailableAskLastName": true, "typeButton": true, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Enter the number of the person you want to call. The user will see your +1-855-534-3978 toll-free number as caller-id.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": false, "typeTab": false, "guid": "d8ddb0fe-8232-4f00-93a3-fe583fa13776", "id": 66, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "07:00:00", "notifyAllLeads": false, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "...You are about to be connected to a Brotherhood Credit Union leed.", "agents": [{"fullName": "Robert Sanders", "contactUsing": "phone", "id": 45}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "23:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "US/Eastern", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": true, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": false, "imageSize": "50", "fromNumberId": 48, "transparentBackground": true, "askEmailAddress": false, "name": "Brotherhood Outbound Calls - Robert", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "CALL LEAD NOW!", "alwaysModal": true, "voicemail": false, "buttonText": "INITIATE CALL", "days": [true, true, true, true, true, true, true], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "", "notifyMissedCustom": ""}	t	48	4	\N	widget
2016-07-12 16:55:37.407168+00	2016-10-31 15:07:05.746779+00	67	7fdd2bee-59f5-4d2d-90e4-e8f3778909aa	Badlands Outbound Calls - Robert	{"typeLink": false, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "25", "triggerPageInterval": 10, "color": "#144e59", "branding": false, "unavailableAskLastName": true, "typeButton": true, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Enter the number of the person you want to call. The user will see your +1-855-534-3978 toll-free number as caller-id.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": false, "typeTab": false, "guid": "7fdd2bee-59f5-4d2d-90e4-e8f3778909aa", "id": 67, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "07:00:00", "notifyAllLeads": false, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "...You are about to be connected to a Badlands Credit Union leed.", "agents": [{"fullName": "Robert Sanders", "contactUsing": "phone", "id": 45}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "23:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "US/Eastern", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": true, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": false, "imageSize": "50", "fromNumberId": 48, "transparentBackground": true, "askEmailAddress": false, "name": "Badlands Outbound Calls - Robert", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "CALL LEAD NOW!", "alwaysModal": true, "voicemail": false, "buttonText": "INITIATE CALL", "days": [true, true, true, true, true, true, true], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "", "notifyMissedCustom": ""}	t	48	4	\N	widget
2017-06-15 15:03:52.599434+00	2017-07-21 20:08:51.607355+00	94	0427608a-ae09-4db0-a1e8-374423ee28c3	Cavender Loan Application Form	{"typeLink": false, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "132", "triggerPageInterval": 10, "color": "#0b57a2", "branding": false, "unavailableAskLastName": true, "typeButton": false, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Let us help you. Enter your details below and click on the talk button to speak to one of our representatives.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "5", "askLastName": true, "typeTab": true, "guid": "0427608a-ae09-4db0-a1e8-374423ee28c3", "id": 94, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "08:00:00", "notifyAllLeads": true, "title": "HAVE A QUESTION?", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": true, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "shake", "lastNamePrompt": "Last name:", "hiddenInformation": "A Loan Application has been submitted", "agents": [{"fullName": "Carlos Guerra", "contactUsing": "phone", "id": 150}, {"fullName": "Wanda Merced", "contactUsing": "phone", "id": 152}, {"fullName": "Kim South", "contactUsing": "phone", "id": 153}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": true, "voicemailMessage": "Thanks for calling Cavender Auto. Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": "50", "fromNumberId": 132, "transparentBackground": false, "askEmailAddress": true, "name": "Cavender Loan Application Form", "showOnMobile": false, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "Talk to us now!", "alwaysModal": false, "voicemail": true, "buttonText": "Talk Now!", "days": [false, true, true, true, true, true, false], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "Thank you for submitting your Canvender Loan Application. You will be connected to a representative shortly.", "retryRouting": ["5", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "cavenderr@cavenderautosales.com, steveneu@live.com, salescalls@cavenderautosales.com", "notifyMissedCustom": ""}	t	132	13	\N	widget
2016-05-17 22:25:19.596732+00	2017-01-27 21:25:08.925866+00	25	191e29c9-8eaf-429f-ae97-0e7c5e14e521	Badlands Contact Form	{"typeLink": true, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "agents": [{"fullName": "Mark Davis", "contactUsing": "phone", "id": 16}], "triggerPageInterval": 10, "color": "#144e59", "branding": true, "unavailableAskLastName": true, "typeButton": false, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Let us help you. Enter your details below and click on the talk button to speat to one of our representatives.", "imageHorizontal": "50", "routeRandomly": false, "askLastName": true, "typeTab": false, "guid": "191e29c9-8eaf-429f-ae97-0e7c5e14e521", "id": 25, "firstNamePrompt": "First name:", "availableFrom": "08:00:00", "notifyAllLeads": true, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Got any questions for us? Our team is waiting to help you save money today.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": true, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "Badlands Credit Union Contact Form", "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "America/Chicago", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": "50", "fromNumberId": 28, "transparentBackground": true, "askEmailAddress": true, "name": "Badlands Contact Form", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "Talk to us now!", "alwaysModal": true, "voicemail": true, "buttonText": "Talk Now!", "days": [false, false, false, false, false, false, false], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "retryRouting": ["0", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "mark@recaptureservices.com; steveneu@live.com;", "notifyMissedCustom": ""}	t	\N	4	\N	widget
2016-07-12 16:58:16.526522+00	2016-10-31 15:09:18.668249+00	68	4c10da34-8f5f-4537-b6b7-098dab808e57	Ashland Outbound Calls - Robert	{"typeLink": false, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "25", "triggerPageInterval": 10, "color": "#311f5a", "branding": false, "unavailableAskLastName": true, "typeButton": true, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Enter the number of the person you want to call. The user will see your +1-855-534-3978 toll-free number as caller-id.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": false, "typeTab": false, "guid": "4c10da34-8f5f-4537-b6b7-098dab808e57", "id": 68, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "07:00:00", "notifyAllLeads": false, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "...You are about to be connected to an Ashland Credit Union leed.", "agents": [{"fullName": "Robert Sanders", "contactUsing": "phone", "id": 45}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "23:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "US/Eastern", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": true, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": false, "imageSize": "50", "fromNumberId": 48, "transparentBackground": true, "askEmailAddress": false, "name": "Ashland Outbound Calls - Robert", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "CALL LEAD NOW!", "alwaysModal": true, "voicemail": false, "buttonText": "INITIATE CALL", "days": [true, true, true, true, true, true, true], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "", "notifyMissedCustom": ""}	t	48	4	\N	widget
2016-07-12 16:14:57.343096+00	2016-07-12 16:16:55.634526+00	55	f06642c8-cd06-41f6-aa22-83ee12e1bfe6	Autosave123 Outbound Calls - Mark	{"typeLink": false, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "25", "triggerPageInterval": 10, "color": "#059bc8", "branding": false, "unavailableAskLastName": true, "typeButton": true, "notifyMissedAgents": false, "intro": "Enter the number of the person you want to call. The user will see the Autosave123 toll-free number as caller-id.", "imageHorizontal": 50, "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": false, "typeTab": true, "guid": "f06642c8-cd06-41f6-aa22-83ee12e1bfe6", "id": 55, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "08:00:00", "notifyAllLeads": false, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "...You are about to be connected to an Autosave123 leed.", "agents": [{"fullName": "Mark Davis", "contactUsing": "phone", "id": 16}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "23:00:00", "defaultImage": "", "imageVertical": 50, "notifyAllAgents": false, "scheduleTimezone": "US/Eastern", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": true, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": false, "imageSize": 50, "fromNumberId": 49, "transparentBackground": true, "askEmailAddress": false, "name": "Autosave123 Outbound Calls - Mark", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "CALL LEAD NOW!", "alwaysModal": true, "voicemail": false, "buttonText": "INITIATE CALL", "days": [true, true, true, true, true, true, true], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "", "notifyMissedCustom": ""}	t	49	4	\N	widget
2018-02-08 20:31:38.032061+00	2018-02-08 20:31:38.032079+00	110	eb10fa7b-ab24-4d26-95a4-92547e62d6b8	Default	{"voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "retryRouting": ["0", "", ""], "color": "#2eb398", "typeButton": true, "imageHorizontal": 50, "askLastName": true, "alwaysModal": false, "unavailableAskQuestion": false, "notifyAllMe": true, "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "pages": [], "emailAddressPrompt": "Email address:", "routeInSequence": false, "triggerBasedOnTime": false, "lastNamePrompt": "Last name:", "notifyNone": false, "askPhoneNumber": true, "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "scheduleTimezone": "", "triggerBasedOnPage": false, "typeLink": false, "notifyMissedAgents": false, "notifyAllLeads": false, "animation": "bounce-up", "askFirstName": true, "transparentBackground": false, "askEmailAddress": true, "name": "Default", "showOnMobile": true, "askQuestion": false, "phoneNumberPrompt": "Phone number:", "notifyMissedLeads": true, "tabWidth": 40, "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "addHiddenInformation": false, "enableNotifications": true, "unavailableAskPhoneNumber": true, "triggerPageInterval": 10, "notifyMissedMe": true, "branding": true, "unavailableAskLastName": true, "notifyAdf": false, "intro": "Let us help you. Enter your details below and click on the talk button to speak to one of our representatives.", "routeRandomly": false, "typeTab": true, "firstNamePrompt": "First name:", "availableFrom": "08:00:00", "notifyAdfCustom": "", "unavailableFirstNamePrompt": "First name:", "customImage": "", "unavailableAskFirstName": true, "mobileOptimized": false, "unavailablePhoneNumberPrompt": "Phone number:", "hiddenInformation": "", "unavailableQuestionPrompt": "Question:", "typeImage": false, "questionPrompt": "Question:", "recordCalls": false, "title": "Talk to us now!", "defaultImage": "", "imageVertical": 50, "triggerInterval": 30, "unavailableEmailAddressPrompt": "Email address:", "showHideButton": true, "unavailableAskEmailAddress": true, "notifyAllAgents": false, "imageSize": 50, "language": "en", "headerTitle": "Talk to us now!", "notifyAllCustom": "", "voicemail": true, "buttonText": "Talk Now!", "days": [false, true, true, true, true, true, false], "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "position": "bottom-right", "routeSimultaneously": true, "notifyMissedCustom": ""}	t	\N	24	\N	widget
2016-07-12 16:31:47.349811+00	2016-10-31 14:57:25.473972+00	57	13eb7b35-d474-4815-a067-2b5988d30d43	Standard Register Outbound Calls - Robert	{"typeLink": false, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "25", "triggerPageInterval": 10, "color": "#25418f", "branding": false, "unavailableAskLastName": true, "typeButton": true, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Enter the number of the person you want to call. The user will see your +1-855-534-3978 toll-free number as caller-id.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": false, "typeTab": false, "guid": "13eb7b35-d474-4815-a067-2b5988d30d43", "id": 57, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "07:00:00", "notifyAllLeads": false, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "...You are about to be connected to a Standard Register Credit Union leed.", "agents": [{"fullName": "Robert Sanders", "contactUsing": "phone", "id": 45}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "23:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "US/Eastern", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": true, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": false, "imageSize": "50", "fromNumberId": 48, "transparentBackground": true, "askEmailAddress": false, "name": "Standard Register Outbound Calls - Robert", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "CALL LEAD NOW!", "alwaysModal": true, "voicemail": false, "buttonText": "INITIATE CALL", "days": [true, true, true, true, true, true, true], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "", "notifyMissedCustom": ""}	t	48	4	\N	widget
2016-06-24 04:09:18.837362+00	2016-06-24 04:38:47.587751+00	54	dc745ec1-1e9c-4489-a7e6-5db3111e2c81	4Loyalty	{"typeLink": false, "questionPrompt": "Best time to reach you?", "unavailableAskPhoneNumber": true, "": "45", "triggerPageInterval": 10, "color": "#4a56bf", "branding": false, "unavailableAskLastName": true, "typeButton": false, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Let us help you. Enter your details below and click on the \\"Talk Now!\\" button to speak to us right now or call 844-866-2009.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "0", "askLastName": true, "typeTab": true, "guid": "dc745ec1-1e9c-4489-a7e6-5db3111e2c81", "id": 54, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "09:00:00", "notifyAllLeads": true, "title": "Contact SmartTech Now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": true, "unavailableAskFirstName": true, "unavailableAskQuestion": true, "emailAddressPrompt": "Email address:", "mobileOptimized": true, "animation": "fade-left", "lastNamePrompt": "Last name:", "hiddenInformation": "Smart Tech Lead", "agents": [{"fullName": "Scott Jardine", "contactUsing": "phone", "id": 12}], "unavailableQuestionPrompt": "Best time to reach you?", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "18:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "US/Eastern", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": "50", "fromNumberId": 45, "transparentBackground": true, "askEmailAddress": true, "name": "4Loyalty", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "Contact SmartTech Now!", "alwaysModal": false, "voicemail": true, "buttonText": "Talk Now!", "days": [false, true, true, true, true, true, false], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "retryRouting": ["0", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "top-left", "routeSimultaneously": false, "notifyAllCustom": "", "notifyMissedCustom": "steven@4smarttech.com"}	f	\N	3	\N	widget
2017-06-16 21:45:27.834147+00	2017-08-05 21:32:51.464184+00	95	e611622e-d408-4b1f-85fa-8cba4306b7ab	Cavender Have Questions	{"typeLink": false, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "132", "triggerPageInterval": 10, "color": "#0b57a2", "branding": false, "unavailableAskLastName": true, "typeButton": false, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Let us help you. Enter your details below and click on the talk button to speak to one of our representatives.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "5", "askLastName": true, "typeTab": true, "guid": "e611622e-d408-4b1f-85fa-8cba4306b7ab", "id": 95, "firstNamePrompt": "First name:", "retryRouting3": "", "notifyAllLeads": true, "title": "HAVE ANY QUESTIONS?", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": true, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "Have Questions", "agents": [{"fullName": "Carlos Guerra", "contactUsing": "phone", "id": 150}, {"fullName": "Wanda Merced", "contactUsing": "phone", "id": 152}, {"fullName": "Kim South", "contactUsing": "phone", "id": 153}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": true, "voicemailMessage": "Thanks for calling Cavender Auto. Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "GET IN TOUCH!", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": false, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": "50", "fromNumberId": 132, "transparentBackground": false, "askEmailAddress": true, "name": "Cavender Have Questions", "showOnMobile": false, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "TALK TO US NOW!", "alwaysModal": false, "voicemail": true, "buttonText": "SPEAK TO REPRESENTATIVE", "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "Thank you for calling Cavender Auto. You will be connected to a representative shortly.", "retryRouting": ["5", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "cavenderr@cavenderautosales.com, steveneu@live.com", "notifyMissedCustom": ""}	t	132	13	\N	widget
2016-05-20 17:59:18.218208+00	2016-07-12 15:40:21.041046+00	50	1b57cdfb-d740-4953-b96e-8faa81f78a40	Standard Register Outbound Calls - Mark	{"typeLink": false, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "31", "triggerPageInterval": 10, "color": "#25418f", "branding": false, "unavailableAskLastName": true, "typeButton": true, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Enter the number of the person you want to call. The user will see the Standard Register Credit Union toll-free number as caller-id.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": false, "typeTab": false, "guid": "1b57cdfb-d740-4953-b96e-8faa81f78a40", "id": 50, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "07:00:00", "notifyAllLeads": false, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "...You are about to be connected to an Standard Register Credit Union leed.", "agents": [{"fullName": "Mark Davis", "contactUsing": "phone", "id": 16}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "23:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "US/Eastern", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": true, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": false, "imageSize": "50", "fromNumberId": 31, "transparentBackground": true, "askEmailAddress": false, "name": "Standard Register Outbound Calls - Mark", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "CALL LEAD NOW!", "alwaysModal": true, "voicemail": false, "buttonText": "INITIATE CALL", "days": [true, true, true, true, true, true, true], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "", "notifyMissedCustom": ""}	t	\N	4	\N	widget
2016-05-20 17:55:16.263854+00	2016-07-12 15:44:37.850666+00	49	cd89e433-4bde-4f86-9b22-8f52c2413fcd	Sharefax Outbound Calls - Mark	{"typeLink": false, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "30", "triggerPageInterval": 10, "color": "#0d57a4", "branding": false, "unavailableAskLastName": true, "typeButton": true, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Enter the number of the person you want to call. The user will see the Sharefax Credit Union toll-free number as caller-id.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": false, "typeTab": false, "guid": "cd89e433-4bde-4f86-9b22-8f52c2413fcd", "id": 49, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "07:00:00", "notifyAllLeads": false, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "...You are about to be connected to an Sharefax Credit Union leed.", "agents": [{"fullName": "Mark Davis", "contactUsing": "phone", "id": 16}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "23:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "US/Eastern", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": true, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": false, "imageSize": "50", "fromNumberId": 30, "transparentBackground": true, "askEmailAddress": false, "name": "Sharefax Outbound Calls - Mark", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "CALL LEAD NOW!", "alwaysModal": true, "voicemail": false, "buttonText": "INITIATE CALL", "days": [true, true, true, true, true, true, true], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "", "notifyMissedCustom": ""}	t	\N	4	\N	widget
2016-05-20 17:24:40.447107+00	2016-07-12 15:54:18.44711+00	42	0886dca9-9e47-4273-a1a9-5ee0047f3a6e	Credit Union of Ohio Outbound Calls - Mark	{"typeLink": false, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "23", "triggerPageInterval": 10, "color": "#b32b32", "branding": false, "unavailableAskLastName": true, "typeButton": true, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Enter the number of the person you want to call. The user will see the Credit Union of Ohio toll-free number as caller-id.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": false, "typeTab": false, "guid": "0886dca9-9e47-4273-a1a9-5ee0047f3a6e", "id": 42, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "07:00:00", "notifyAllLeads": false, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "...You are about to be connected to an Credit Union of Ohio leed.", "agents": [{"fullName": "Mark Davis", "contactUsing": "phone", "id": 16}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "23:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "US/Eastern", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": true, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": false, "imageSize": "50", "fromNumberId": 23, "transparentBackground": true, "askEmailAddress": false, "name": "Credit Union of Ohio Outbound Calls - Mark", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "CALL LEAD NOW!", "alwaysModal": true, "voicemail": false, "buttonText": "INITIATE CALL", "days": [true, true, true, true, true, true, true], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "", "notifyMissedCustom": ""}	t	\N	4	\N	widget
2016-07-12 16:33:30.091227+00	2016-10-31 14:58:25.300156+00	58	dd0f7c48-1955-4749-b3fe-6110257e8957	Sharefax Outbound Calls - Robert	{"typeLink": false, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "25", "triggerPageInterval": 10, "color": "#0d57a4", "branding": false, "unavailableAskLastName": true, "typeButton": true, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Enter the number of the person you want to call. The user will see your +1-855-534-3978 toll-free number as caller-id.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": false, "typeTab": false, "guid": "dd0f7c48-1955-4749-b3fe-6110257e8957", "id": 58, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "07:00:00", "notifyAllLeads": false, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "...You are about to be connected to a Sharefax Credit Union leed.", "agents": [{"fullName": "Robert Sanders", "contactUsing": "phone", "id": 45}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "23:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "America/Chicago", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": true, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": false, "imageSize": "50", "fromNumberId": 48, "transparentBackground": true, "askEmailAddress": false, "name": "Sharefax Outbound Calls - Robert", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "CALL LEAD NOW!", "alwaysModal": true, "voicemail": false, "buttonText": "INITIATE CALL", "days": [true, true, true, true, true, true, true], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "", "notifyMissedCustom": ""}	t	48	4	\N	widget
2016-07-12 16:35:39.715777+00	2016-10-31 14:59:31.08881+00	59	2a982783-1d63-4931-bc6a-a909c851bdba	Schneider Outbound Calls - Robert	{"typeLink": false, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "25", "triggerPageInterval": 10, "color": "#c98b36", "branding": false, "unavailableAskLastName": true, "typeButton": true, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Enter the number of the person you want to call. The user will see your +1-855-534-3978 toll-free number as caller-id.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": false, "typeTab": false, "guid": "2a982783-1d63-4931-bc6a-a909c851bdba", "id": 59, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "07:00:00", "notifyAllLeads": false, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "...You are about to be connected to a Schneider Credit Union leed.", "agents": [{"fullName": "Robert Sanders", "contactUsing": "phone", "id": 45}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "23:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "US/Eastern", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": true, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": false, "imageSize": "50", "fromNumberId": 48, "transparentBackground": true, "askEmailAddress": false, "name": "Schneider Outbound Calls - Robert", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "CALL LEAD NOW!", "alwaysModal": true, "voicemail": false, "buttonText": "INITIATE CALL", "days": [true, true, true, true, true, true, true], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "", "notifyMissedCustom": ""}	t	48	4	\N	widget
2017-10-24 19:30:46.718949+00	2017-10-24 19:31:32.861718+00	96	2b6f1218-a9ca-476d-bee3-a657e163d229	Neu Ford	{"typeLink": false, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "agents": [{"fullName": "Neu Ford", "contactUsing": "phone", "id": 156}], "triggerPageInterval": 10, "color": "#2eb398", "branding": false, "unavailableAskLastName": true, "typeButton": false, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Let us help you. Enter your details below and click on the talk button to speak to one of our representatives.", "imageHorizontal": "50", "routeRandomly": false, "askLastName": true, "typeTab": true, "firstNamePrompt": "First name:", "notifyAllLeads": true, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "", "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": false, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": "50", "fromNumberId": 135, "transparentBackground": false, "askEmailAddress": true, "name": "Neu Ford", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "Talk to us now!", "alwaysModal": false, "voicemail": true, "buttonText": "Talk Now!", "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "retryRouting": ["0", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "", "notifyMissedCustom": ""}	t	135	10	\N	widget
2017-11-07 16:24:23.753175+00	2017-12-01 18:43:03.477939+00	97	cd009b81-ec25-40d7-a806-e428c0f41965	Application Form	{"typeLink": false, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "137", "triggerPageInterval": 10, "color": "#2eb398", "branding": false, "unavailableAskLastName": true, "typeButton": true, "notifyMissedAgents": false, "intro": "Let us help you. Enter your details below and click on the talk button to speak to one of our representatives.", "imageHorizontal": 50, "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": true, "typeTab": true, "guid": "cd009b81-ec25-40d7-a806-e428c0f41965", "id": 97, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "08:00:00", "notifyAllLeads": true, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": true, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "My Car Loan", "agents": [{"fullName": "Wayne Daniel", "contactUsing": "phone", "id": 157}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "defaultImage": "", "imageVertical": 50, "notifyAllAgents": false, "scheduleTimezone": "", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": 50, "fromNumberId": 137, "transparentBackground": false, "askEmailAddress": true, "name": "Application Form", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "Talk to us now!", "alwaysModal": false, "voicemail": false, "buttonText": "Talk Now!", "days": [false, true, true, true, true, true, false], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "Thank you for contacting Car Loan Direct. You will be connected to a representative shortly. Please note that this call might be recorded.", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": false, "notifyAllCustom": "", "notifyMissedCustom": ""}	t	137	14	\N	widget
2017-11-10 16:25:23.8846+00	2017-11-29 22:02:34.645756+00	98	243bc1c1-c430-4ccb-b9d9-71662ebbb896	Default	{"typeLink": false, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "136", "triggerPageInterval": 10, "color": "#2eb398", "branding": true, "unavailableAskLastName": true, "typeButton": true, "notifyMissedAgents": false, "intro": "Let us help you. Enter your details below and click on the talk button to speak to one of our representatives.", "imageHorizontal": 50, "retryRouting2": "", "routeRandomly": false, "retryRouting1": "0", "askLastName": true, "typeTab": true, "guid": "243bc1c1-c430-4ccb-b9d9-71662ebbb896", "id": 98, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "08:00:00", "notifyAllLeads": true, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "Get Auto Approve", "agents": [{"fullName": "Auto Approve", "contactUsing": "phone", "id": 158}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "defaultImage": "", "imageVertical": 50, "notifyAllAgents": false, "scheduleTimezone": "", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": 50, "fromNumberId": 136, "transparentBackground": false, "askEmailAddress": true, "name": "Default", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "Talk to us now!", "alwaysModal": false, "voicemail": false, "buttonText": "Talk Now!", "days": [false, true, true, true, true, true, false], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "Thank you for contacting Auto Approve. You will be connected to a representative shortly. Please note that this call might be recorded.", "retryRouting": ["0", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "", "notifyMissedCustom": ""}	t	136	15	\N	widget
2016-05-17 22:53:48.313786+00	2017-01-27 21:19:34.818453+00	35	7172f96a-6122-48a5-b577-2bd45add9a91	Standard Register FCU Contact Form	{"typeLink": true, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "28", "triggerPageInterval": 10, "color": "#25418f", "branding": true, "unavailableAskLastName": true, "typeButton": false, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Let us help you. Enter your details below and click on the talk button to speat to one of our representatives.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": true, "typeTab": false, "guid": "7172f96a-6122-48a5-b577-2bd45add9a91", "id": 35, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "08:00:00", "notifyAllLeads": true, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Got any questions for us? Our team is waiting to help you save money today.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": true, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "Standard Register Credit Union Contact Form", "agents": [{"fullName": "Jerry Thompson", "contactUsing": "phone", "id": 18}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "America/Chicago", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": "50", "fromNumberId": 28, "transparentBackground": true, "askEmailAddress": true, "name": "Standard Register FCU Contact Form", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "Talk to us now!", "alwaysModal": true, "voicemail": true, "buttonText": "Talk Now!", "days": [false, false, false, false, false, false, false], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "mark@recaptureservices.com; steveneu@live.com;", "notifyMissedCustom": ""}	t	\N	4	\N	widget
2016-05-20 18:03:55.773499+00	2016-07-12 15:38:51.474874+00	51	a75d788e-40a6-4b7b-bb41-ca24aa98e7d9	Struthers Outbound Calls - Mark	{"typeLink": false, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "32", "triggerPageInterval": 10, "color": "#e2223d", "branding": false, "unavailableAskLastName": true, "typeButton": true, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Enter the number of the person you want to call. The user will see the Struthers Credit Union toll-free number as caller-id.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": false, "typeTab": false, "guid": "a75d788e-40a6-4b7b-bb41-ca24aa98e7d9", "id": 51, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "07:00:00", "notifyAllLeads": false, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "...You are about to be connected to an Struthers Credit Union leed.", "agents": [{"fullName": "Mark Davis", "contactUsing": "phone", "id": 16}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "23:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "US/Eastern", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": true, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": false, "imageSize": "50", "fromNumberId": 32, "transparentBackground": true, "askEmailAddress": false, "name": "Struthers Outbound Calls - Mark", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "CALL LEAD NOW!", "alwaysModal": true, "voicemail": false, "buttonText": "INITIATE CALL", "days": [true, true, true, true, true, true, true], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "", "notifyMissedCustom": ""}	t	\N	4	\N	widget
2016-05-05 20:56:36.8548+00	2017-01-27 21:27:27.170111+00	22	7176b0ad-2c58-4a63-bd3a-2a0078ff981a	Struthers Credit Application	{"typeLink": true, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "32", "triggerPageInterval": 10, "color": "#2eb398", "branding": false, "unavailableAskLastName": true, "typeButton": false, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Let us help you. Enter your details below and click on the talk button to speat to one of our representatives.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": true, "typeTab": false, "guid": "7176b0ad-2c58-4a63-bd3a-2a0078ff981a", "id": 22, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "08:00:00", "notifyAllLeads": true, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "....This call is regarding a Struthers Credit Union Application Submission that has been filled out and completed.", "agents": [{"fullName": "Mark Davis", "contactUsing": "phone", "id": 16}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": true, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "23:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "US/Eastern", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": "50", "fromNumberId": 32, "transparentBackground": false, "askEmailAddress": true, "name": "Struthers Credit Application", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "Talk to us now!", "alwaysModal": false, "voicemail": false, "buttonText": "Talk Now!", "days": [false, false, false, false, false, false, false], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "Thank you for completing the Struthers Credit Union application. This is a courtesy follow-up call..This call may be recorded for customer service purposes..", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "mark@recaptureservices.com; steveneu@live.com;", "notifyMissedCustom": ""}	t	\N	4	\N	widget
2018-02-08 22:34:57.425114+00	2018-02-08 22:34:57.425157+00	111	e13a3dad-72f6-4cbe-9126-d07324859643	Default	{"voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "retryRouting": ["0", "", ""], "color": "#2eb398", "typeButton": true, "imageHorizontal": 50, "askLastName": true, "alwaysModal": false, "unavailableAskQuestion": false, "notifyAllMe": true, "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "pages": [], "emailAddressPrompt": "Email address:", "routeInSequence": false, "triggerBasedOnTime": false, "lastNamePrompt": "Last name:", "notifyNone": false, "askPhoneNumber": true, "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "scheduleTimezone": "", "triggerBasedOnPage": false, "typeLink": false, "notifyMissedAgents": false, "notifyAllLeads": false, "animation": "bounce-up", "askFirstName": true, "transparentBackground": false, "askEmailAddress": true, "name": "Default", "showOnMobile": true, "askQuestion": false, "phoneNumberPrompt": "Phone number:", "notifyMissedLeads": true, "tabWidth": 40, "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "addHiddenInformation": false, "enableNotifications": true, "unavailableAskPhoneNumber": true, "triggerPageInterval": 10, "notifyMissedMe": true, "branding": true, "unavailableAskLastName": true, "notifyAdf": false, "intro": "Let us help you. Enter your details below and click on the talk button to speak to one of our representatives.", "routeRandomly": false, "typeTab": true, "firstNamePrompt": "First name:", "availableFrom": "08:00:00", "notifyAdfCustom": "", "unavailableFirstNamePrompt": "First name:", "customImage": "", "unavailableAskFirstName": true, "mobileOptimized": false, "unavailablePhoneNumberPrompt": "Phone number:", "hiddenInformation": "", "unavailableQuestionPrompt": "Question:", "typeImage": false, "questionPrompt": "Question:", "recordCalls": false, "title": "Talk to us now!", "defaultImage": "", "imageVertical": 50, "triggerInterval": 30, "unavailableEmailAddressPrompt": "Email address:", "showHideButton": true, "unavailableAskEmailAddress": true, "notifyAllAgents": false, "imageSize": 50, "language": "en", "headerTitle": "Talk to us now!", "notifyAllCustom": "", "voicemail": true, "buttonText": "Talk Now!", "days": [false, true, true, true, true, true, false], "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "position": "bottom-right", "routeSimultaneously": true, "notifyMissedCustom": ""}	t	\N	25	\N	widget
2016-05-05 20:54:58.88968+00	2017-01-27 21:20:00.927658+00	20	25d0200e-983d-4413-94ae-eb664b99711c	Sharefax Credit Application	{"typeLink": true, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "30", "triggerPageInterval": 10, "color": "#2eb398", "branding": false, "unavailableAskLastName": true, "typeButton": false, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Let us help you. Enter your details below and click on the talk button to speat to one of our representatives.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": true, "typeTab": false, "guid": "25d0200e-983d-4413-94ae-eb664b99711c", "id": 20, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "08:00:00", "notifyAllLeads": true, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "....This call is regarding a Sharefax Credit Union Application Submission that has been filled out and completed.", "agents": [{"fullName": "Herman Vermaak", "contactUsing": "phone", "id": 15}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": true, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "23:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "US/Eastern", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": "50", "fromNumberId": 30, "transparentBackground": false, "askEmailAddress": true, "name": "Sharefax Credit Application", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "Talk to us now!", "alwaysModal": false, "voicemail": false, "buttonText": "Talk Now!", "days": [false, false, false, false, false, false, false], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "Thank you for completing the Sharefax Credit Union application. This is a courtesy follow-up call..This call may be recorded for customer service purposes..", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "mark@recaptureservices.com; steveneu@live.com;", "notifyMissedCustom": ""}	t	\N	4	\N	widget
2016-05-17 22:38:52.468682+00	2017-01-27 21:22:14.85273+00	30	d18ed5e2-2c24-449a-a761-a784adea739e	Falls Catholic Contact Form	{"typeLink": true, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "agents": [{"fullName": "Mark Davis", "contactUsing": "phone", "id": 16}], "triggerPageInterval": 10, "color": "#118545", "branding": true, "unavailableAskLastName": true, "typeButton": false, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Let us help you. Enter your details below and click on the talk button to speat to one of our representatives.", "imageHorizontal": "50", "routeRandomly": false, "askLastName": true, "typeTab": false, "guid": "d18ed5e2-2c24-449a-a761-a784adea739e", "id": 30, "firstNamePrompt": "First name:", "availableFrom": "08:00:00", "notifyAllLeads": true, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Got any questions for us? Our team is waiting to help you save money today.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": true, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "Falls Catholic Credit Union Contact Form", "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "America/Chicago", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": "50", "fromNumberId": 28, "transparentBackground": true, "askEmailAddress": true, "name": "Falls Catholic Contact Form", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "Talk to us now!", "alwaysModal": true, "voicemail": true, "buttonText": "Talk Now!", "days": [false, false, false, false, false, false, false], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "retryRouting": ["0", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "mark@recaptureservices.com; steveneu@live.com;", "notifyMissedCustom": ""}	t	\N	4	\N	widget
2016-05-17 22:55:37.395395+00	2017-01-27 21:18:44.468464+00	36	4b48d014-dbef-4092-a082-2722e3067a21	Struthers Contact Form	{"typeLink": true, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "28", "triggerPageInterval": 10, "color": "#e2223d", "branding": true, "unavailableAskLastName": true, "typeButton": false, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Let us help you. Enter your details below and click on the talk button to speat to one of our representatives.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": true, "typeTab": false, "guid": "4b48d014-dbef-4092-a082-2722e3067a21", "id": 36, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "08:00:00", "notifyAllLeads": true, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Got any questions for us? Our team is waiting to help you save money today.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": true, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "Struthers Credit Union Contact Form", "agents": [{"fullName": "Mark Davis", "contactUsing": "phone", "id": 16}, {"fullName": "Jerry Thompson", "contactUsing": "phone", "id": 18}, {"fullName": "Patrick Mueller", "contactUsing": "phone", "id": 17}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "America/Chicago", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": "50", "fromNumberId": 28, "transparentBackground": true, "askEmailAddress": true, "name": "Struthers Contact Form", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "Talk to us now!", "alwaysModal": true, "voicemail": true, "buttonText": "Talk Now!", "days": [false, false, false, false, false, false, false], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "mark@recaptureservices.com; steveneu@live.com", "notifyMissedCustom": ""}	t	\N	4	\N	widget
2016-05-17 22:43:05.196692+00	2017-01-27 21:21:14.870233+00	32	b889fb7f-a8f1-4e6e-b5d6-fdbc37cebac6	Parkside Contact Form	{"typeLink": true, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "agents": [{"fullName": "Mark Davis", "contactUsing": "phone", "id": 16}], "triggerPageInterval": 10, "color": "#505da3", "branding": true, "unavailableAskLastName": true, "typeButton": false, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Let us help you. Enter your details below and click on the talk button to speat to one of our representatives.", "imageHorizontal": "50", "routeRandomly": false, "askLastName": true, "typeTab": false, "guid": "b889fb7f-a8f1-4e6e-b5d6-fdbc37cebac6", "id": 32, "firstNamePrompt": "First name:", "availableFrom": "08:00:00", "notifyAllLeads": true, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Got any questions for us? Our team is waiting to help you save money today..", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": true, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "Parkside Credit Union Contact Form", "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "America/Chicago", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": "50", "fromNumberId": 28, "transparentBackground": true, "askEmailAddress": true, "name": "Parkside Contact Form", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "Talk to us now!", "alwaysModal": true, "voicemail": true, "buttonText": "Talk Now!", "days": [false, false, false, false, false, false, false], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "retryRouting": ["0", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "mark@recaptureservices.com; steveneu@live.com; ", "notifyMissedCustom": ""}	t	\N	4	\N	widget
2016-05-05 20:51:26.287161+00	2017-01-27 21:22:08.233846+00	16	36dfa45c-0f7c-41c7-b250-561251aebceb	Falls Catholic Credit Application	{"typeLink": true, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "26", "triggerPageInterval": 10, "color": "#118545", "branding": false, "unavailableAskLastName": true, "typeButton": false, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Let us help you. Enter your details below and click on the talk button to speat to one of our representatives.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": true, "typeTab": false, "guid": "36dfa45c-0f7c-41c7-b250-561251aebceb", "id": 16, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "08:00:00", "notifyAllLeads": true, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "....This call is regarding a Falls Catholic Credit Union Application Submission that has been filled out and completed.", "agents": [{"fullName": "Herman Vermaak", "contactUsing": "phone", "id": 15}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": true, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "23:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "US/Eastern", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": "50", "fromNumberId": 26, "transparentBackground": false, "askEmailAddress": true, "name": "Falls Catholic Credit Application", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "Talk to us now!", "alwaysModal": false, "voicemail": false, "buttonText": "Talk Now!", "days": [false, false, false, false, false, false, false], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "Thank you for completing the Falls Catholic Credit Union application. This is a courtesy follow-up call..This call may be recorded for customer service purposes..\\n", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "mark@recaptureservices.com; steveneu@live.com;", "notifyMissedCustom": ""}	t	\N	4	\N	widget
2016-05-05 20:49:39.423511+00	2017-01-27 21:22:56.780036+00	14	99186475-9344-4e80-b3b1-0ed2e7856585	Edwards Credit Application	{"typeLink": true, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "24", "triggerPageInterval": 10, "color": "#2eb398", "branding": false, "unavailableAskLastName": true, "typeButton": false, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Let us help you. Enter your details below and click on the talk button to speat to one of our representatives.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": true, "typeTab": false, "guid": "99186475-9344-4e80-b3b1-0ed2e7856585", "id": 14, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "08:00:00", "notifyAllLeads": true, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "....This call is regarding an Edwards Credit Union Application Submission that has been filled out and completed.", "agents": [{"fullName": "Herman Vermaak", "contactUsing": "phone", "id": 15}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": true, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "23:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "US/Eastern", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": "50", "fromNumberId": 24, "transparentBackground": false, "askEmailAddress": true, "name": "Edwards Credit Application", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "Talk to us now!", "alwaysModal": false, "voicemail": false, "buttonText": "Talk Now!", "days": [false, false, false, false, false, false, false], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "Thank you for completing the Edwards Credit Union application. This is a courtesy follow-up call..This call may be recorded for customer service purposes..", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "mark@recaptureservices.com; steveneu@live.com;", "notifyMissedCustom": ""}	t	\N	4	\N	widget
2016-05-05 20:50:27.245051+00	2017-01-27 21:22:36.955413+00	15	ea8e48b7-042e-42ec-8dde-d03bf75a9bad	Emerald Credit Application	{"typeLink": true, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "25", "triggerPageInterval": 10, "color": "#2eb398", "branding": false, "unavailableAskLastName": true, "typeButton": false, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Let us help you. Enter your details below and click on the talk button to speat to one of our representatives.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": true, "typeTab": false, "guid": "ea8e48b7-042e-42ec-8dde-d03bf75a9bad", "id": 15, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "08:00:00", "notifyAllLeads": true, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": " ....This call is regarding an Emerald Credit Union Application Submission that has been filled out and completed.", "agents": [{"fullName": "Herman Vermaak", "contactUsing": "phone", "id": 15}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": true, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "23:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "US/Eastern", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": "50", "fromNumberId": 25, "transparentBackground": false, "askEmailAddress": true, "name": "Emerald Credit Application", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "Talk to us now!", "alwaysModal": false, "voicemail": false, "buttonText": "Talk Now!", "days": [false, false, false, false, false, false, false], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "Thank you for completing the Emerald Credit Union application. This is a courtesy follow-up call..This call may be recorded for customer service purposes..", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "mark@recaptureservices.com; steveneu@live.com;", "notifyMissedCustom": ""}	t	\N	4	\N	widget
2016-05-17 22:32:10.930543+00	2017-01-27 21:24:18.45687+00	27	7538e8eb-28e3-4fa9-91c1-949630f89eac	Credit Union of Ohio Contact Form	{"typeLink": true, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "agents": [{"fullName": "Mark Davis", "contactUsing": "phone", "id": 16}], "triggerPageInterval": 10, "color": "#b32b32", "branding": true, "unavailableAskLastName": true, "typeButton": false, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Let us help you. Enter your details below and click on the talk button to speat to one of our representatives.", "imageHorizontal": "50", "routeRandomly": false, "askLastName": true, "typeTab": false, "guid": "7538e8eb-28e3-4fa9-91c1-949630f89eac", "id": 27, "firstNamePrompt": "First name:", "availableFrom": "08:00:00", "notifyAllLeads": true, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Got any questions for us? Our team is waiting to help you save money today.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": true, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "Credit Union of Ohio Contact Form", "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "America/Chicago", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": "50", "fromNumberId": 28, "transparentBackground": true, "askEmailAddress": true, "name": "Credit Union of Ohio Contact Form", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "Talk to us now!", "alwaysModal": true, "voicemail": true, "buttonText": "Talk Now!", "days": [false, false, false, false, false, false, false], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "retryRouting": ["0", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "mark@recaptureservices.com; steveneu@live.com;", "notifyMissedCustom": ""}	t	\N	4	\N	widget
2016-05-05 20:48:03.199719+00	2017-01-27 21:24:12.026065+00	13	d33a481e-e0af-47ac-9f90-260f20b69de5	Credit Union of Ohio Credit Application	{"typeLink": true, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "23", "triggerPageInterval": 10, "color": "#2eb398", "branding": false, "unavailableAskLastName": true, "typeButton": false, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Let us help you. Enter your details below and click on the talk button to speat to one of our representatives.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": true, "typeTab": false, "guid": "d33a481e-e0af-47ac-9f90-260f20b69de5", "id": 13, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "08:00:00", "notifyAllLeads": true, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "....This call is regarding a Credit Union of Ohio Credit Union Application Submission that has been filled out and completed.", "agents": [{"fullName": "Herman Vermaak", "contactUsing": "phone", "id": 15}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": true, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "23:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "US/Eastern", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": "50", "fromNumberId": 23, "transparentBackground": false, "askEmailAddress": true, "name": "Credit Union of Ohio Credit Application", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "Talk to us now!", "alwaysModal": false, "voicemail": false, "buttonText": "Talk Now!", "days": [false, false, false, false, false, false, false], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "Thank you for completing the Credit Union of Ohio application. This is a courtesy follow-up call..This call may be recorded for customer service purposes.. ", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "mark@recaptureservices.com; steveneu@live.com;", "notifyMissedCustom": ""}	t	\N	4	\N	widget
2016-05-17 22:29:31.314739+00	2017-01-27 21:24:41.357799+00	26	33376e0d-0db7-4101-aba0-ab0412421c3b	Brotherhood Contact Form	{"typeLink": true, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "agents": [{"fullName": "Mark Davis", "contactUsing": "phone", "id": 16}], "triggerPageInterval": 10, "color": "#165b44", "branding": false, "unavailableAskLastName": true, "typeButton": false, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Let us help you. Enter your details below and click on the talk button to speat to one of our representatives.", "imageHorizontal": "50", "routeRandomly": false, "askLastName": true, "typeTab": false, "guid": "33376e0d-0db7-4101-aba0-ab0412421c3b", "id": 26, "firstNamePrompt": "First name:", "availableFrom": "08:00:00", "notifyAllLeads": true, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Got any questions for us? Our team is waiting to help you save money today.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": true, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "Brotherhood Credit Union Contact Form", "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "America/Chicago", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": "50", "fromNumberId": 28, "transparentBackground": true, "askEmailAddress": true, "name": "Brotherhood Contact Form", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "Talk to us now!", "alwaysModal": true, "voicemail": true, "buttonText": "Talk Now!", "days": [false, false, false, false, false, false, false], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "retryRouting": ["0", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "mark@recaptureservices.com; steveneu@live.com;", "notifyMissedCustom": ""}	t	\N	4	\N	widget
2016-05-05 20:44:41.007592+00	2017-01-27 21:26:27.560685+00	10	46af3dca-b597-465f-a167-682b8fc62d0a	Ashland Credit Application	{"typeLink": true, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "21", "triggerPageInterval": 10, "color": "#2eb398", "branding": false, "unavailableAskLastName": true, "typeButton": false, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Let us help you. Enter your details below and click on the talk button to speat to one of our representatives.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": true, "typeTab": false, "guid": "46af3dca-b597-465f-a167-682b8fc62d0a", "id": 10, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "08:00:00", "notifyAllLeads": true, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "....This call is regarding an Ashland Credit Union Application Submission that has been filled out and completed.", "agents": [{"fullName": "Herman Vermaak", "contactUsing": "phone", "id": 15}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": true, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "23:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "US/Eastern", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": "50", "fromNumberId": 21, "transparentBackground": false, "askEmailAddress": true, "name": "Ashland Credit Application", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "Talk to us now!", "alwaysModal": false, "voicemail": false, "buttonText": "Talk Now!", "days": [false, false, false, false, false, false, false], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "Thank you for completing the Ashland Credit Union application. This is a courtesy follow-up call..This call may be recorded for customer service purposes..", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "mark@recaptureservices.com; steveneu@live.com;", "notifyMissedCustom": ""}	t	\N	4	\N	widget
2016-05-05 20:45:28.33209+00	2017-01-27 21:24:58.394174+00	11	5023929c-e313-4a0a-9760-00da20ca2650	Badlands Credit Application	{"typeLink": true, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "20", "triggerPageInterval": 10, "color": "#2eb398", "branding": false, "unavailableAskLastName": true, "typeButton": false, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Let us help you. Enter your details below and click on the talk button to speat to one of our representatives.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": true, "typeTab": false, "guid": "5023929c-e313-4a0a-9760-00da20ca2650", "id": 11, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "08:00:00", "notifyAllLeads": true, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "....This call is regarding a Badlands Credit Union Application Submission that has been filled out and completed.", "agents": [{"fullName": "Herman Vermaak", "contactUsing": "phone", "id": 15}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": true, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "23:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "US/Eastern", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": "50", "fromNumberId": 20, "transparentBackground": false, "askEmailAddress": true, "name": "Badlands Credit Application", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "Talk to us now!", "alwaysModal": false, "voicemail": false, "buttonText": "Talk Now!", "days": [false, false, false, false, false, false, false], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "Thank you for completing the Badlands Credit Union application. This is a courtesy follow-up call..This call may be recorded for customer service purposes.. ", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "mark@recaptureservices.com; steveneu@live.com;", "notifyMissedCustom": ""}	t	\N	4	\N	widget
2016-08-29 14:02:51.919485+00	2017-01-27 21:26:04.185861+00	74	0dc9a073-40fe-4edf-bf33-f584c51ae9ed	Autosave123 Credit Application	{"typeLink": true, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "49", "triggerPageInterval": 10, "color": "#059bc8", "branding": false, "unavailableAskLastName": true, "typeButton": false, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Let us help you. Enter your details below and click on the talk button to speak to one of our representatives.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": true, "typeTab": false, "guid": "0dc9a073-40fe-4edf-bf33-f584c51ae9ed", "id": 74, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "08:00:00", "notifyAllLeads": true, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "....This call is regarding an Autosave123 Application Submission that has been filled out and completed.", "agents": [{"fullName": "Herman Vermaak", "contactUsing": "phone", "id": 15}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": true, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "America/Chicago", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": "50", "fromNumberId": 49, "transparentBackground": false, "askEmailAddress": true, "name": "Autosave123 Credit Application", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "Talk to us now!", "alwaysModal": false, "voicemail": false, "buttonText": "Talk Now!", "days": [false, false, false, false, false, false, false], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "Thank you for completing the Autosave 123 application. This is a courtesy follow-up call..This call may be recorded for customer service purposes..", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "mark@recaptureservices.com; steveneu@live.com;", "notifyMissedCustom": ""}	t	49	4	\N	widget
2016-09-14 14:43:33.117611+00	2017-01-27 21:25:31.617671+00	75	e01cc2a3-0d4c-4409-bc83-c99c7b71e595	Autosave123 Website Click to Call Widget	{"typeLink": true, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "49", "triggerPageInterval": 10, "color": "#059bc8", "branding": true, "unavailableAskLastName": true, "typeButton": false, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Let us help you. Enter your details below and click on the talk button to speak to one of our representatives.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": true, "typeTab": false, "guid": "e01cc2a3-0d4c-4409-bc83-c99c7b71e595", "id": 75, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "08:00:00", "notifyAllLeads": true, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": true, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "...This call is regarding an Autosave123 general website inquiry", "agents": [{"fullName": "Mark Davis", "contactUsing": "phone", "id": 16}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": true, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Got a question?", "availableTo": "18:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "US/Eastern", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": "50", "fromNumberId": 49, "transparentBackground": true, "askEmailAddress": false, "name": "Autosave123 Website Click to Call Widget", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "Got a question?", "alwaysModal": true, "voicemail": false, "buttonText": "Talk Now!", "days": [false, true, true, true, true, true, false], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "Thank you for contacting Autosave 123. This call may be recorded for customer service purposes..", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "mark@recaptureservices.com; steveneu@live.com;", "notifyMissedCustom": ""}	t	49	4	\N	widget
2016-05-04 21:13:38.085169+00	2017-01-27 21:26:49.766862+00	9	ee869226-e246-4ab4-aaaa-e9403e2ddd39	ASECU Credit Application	{"typeLink": true, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "19", "triggerPageInterval": 10, "color": "#2eb398", "branding": false, "unavailableAskLastName": true, "typeButton": false, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Let us help you. Enter your details below and click on the talk button to speak to one of our representatives.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": true, "typeTab": false, "guid": "ee869226-e246-4ab4-aaaa-e9403e2ddd39", "id": 9, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "08:00:00", "notifyAllLeads": true, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "....This call is regarding an Associated School Employees Credit Union Application Submission that has been filled out and completed.", "agents": [{"fullName": "Herman Vermaak", "contactUsing": "phone", "id": 15}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": true, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "23:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "US/Eastern", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": "50", "fromNumberId": 19, "transparentBackground": false, "askEmailAddress": true, "name": "ASECU Credit Application", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "Talk to us now!", "alwaysModal": false, "voicemail": false, "buttonText": "Talk Now!", "days": [false, false, false, false, false, false, false], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "Thank you for completing the Associated School Employees Credit Union application. This is a courtesy follow-up call..This call may be recorded for customer service purposes.. ", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "mark@recaptureservices.com; steveneu@live.com;", "notifyMissedCustom": ""}	t	\N	4	\N	widget
2016-09-21 16:23:41.447725+00	2017-01-07 02:51:06.727078+00	76	3784ab32-dd2a-4afe-b372-b25e22263604	Request BuyerCall Access Widget	{"typeLink": true, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "16", "triggerPageInterval": 10, "color": "#3498db", "branding": true, "unavailableAskLastName": false, "typeButton": false, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Want control over your phone calls and grow your business? Then request access to BuyerCall now by completing the form below.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": true, "typeTab": false, "guid": "3784ab32-dd2a-4afe-b372-b25e22263604", "id": 76, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "08:00:00", "notifyAllLeads": true, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Want control over your phone calls and grow your business? Then request access to BuyerCall now by completing the form below.", "routeInSequence": true, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "Requesting BuyerCall Access", "agents": [{"fullName": "Skip  Esch", "contactUsing": "phone", "id": 79}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "ENTER YOUR PHONE NUMBER", "unavailableButtonText": "SUBMIT", "unavailableHeaderTitle": "Request BuyerCall Access Today!", "availableTo": "20:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "America/Chicago", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": "50", "fromNumberId": 16, "transparentBackground": true, "askEmailAddress": true, "name": "Request BuyerCall Access Widget", "showOnMobile": true, "unavailableEmailAddressPrompt": "ENTER YOUR EMAIL ADDRESS", "headerTitle": "Request BuyerCall Access?", "alwaysModal": true, "voicemail": false, "buttonText": "Talk Now!", "days": [false, false, false, false, false, false, false], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "ENTER YOUR NAME", "whisperMessage": "Thank you for contacting us. You will be connected to a Buyercall representative shortly. ", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": false, "notifyAllCustom": "hjvermaak@gmail.com; skip@buyercall.com", "notifyMissedCustom": ""}	t	16	1	\N	widget
2016-05-05 20:55:55.274811+00	2017-01-27 21:19:21.271492+00	21	253cd8e5-09ac-4056-92ec-7e351aa19233	Standard Register FCU Credit Application	{"typeLink": true, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "31", "triggerPageInterval": 10, "color": "#2eb398", "branding": false, "unavailableAskLastName": true, "typeButton": false, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Let us help you. Enter your details below and click on the talk button to speat to one of our representatives.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": true, "typeTab": false, "guid": "253cd8e5-09ac-4056-92ec-7e351aa19233", "id": 21, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "08:00:00", "notifyAllLeads": true, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "....This call is regarding a Standard Register Credit Union Application Submission that has been filled out and completed.", "agents": [{"fullName": "Herman Vermaak", "contactUsing": "phone", "id": 15}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": true, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "23:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "US/Eastern", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": "50", "fromNumberId": 31, "transparentBackground": false, "askEmailAddress": true, "name": "Standard Register FCU Credit Application", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "Talk to us now!", "alwaysModal": false, "voicemail": false, "buttonText": "Talk Now!", "days": [false, false, false, false, false, false, false], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "Thank you for completing the Standard Register Federal Credit Union application. This is a courtesy follow-up call..This call may be recorded for customer service purposes..", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "mark@recaptureservices.com; steveneu@live.com;", "notifyMissedCustom": ""}	t	\N	4	\N	widget
2016-05-05 20:53:12.283896+00	2017-01-27 21:20:59.402534+00	18	07cfd785-7aef-47fb-8d17-7f38ec833934	Park Side Credit Application	{"typeLink": true, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "28", "triggerPageInterval": 10, "color": "#2eb398", "branding": false, "unavailableAskLastName": true, "typeButton": false, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Let us help you. Enter your details below and click on the talk button to speat to one of our representatives.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": true, "typeTab": false, "guid": "07cfd785-7aef-47fb-8d17-7f38ec833934", "id": 18, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "08:00:00", "notifyAllLeads": true, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "....This call is regarding a Parkside Credit Union Application Submission that has been filled out and completed.", "agents": [{"fullName": "Herman Vermaak", "contactUsing": "phone", "id": 15}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": true, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "23:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "US/Eastern", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": "50", "fromNumberId": 28, "transparentBackground": false, "askEmailAddress": true, "name": "Park Side Credit Application", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "Talk to us now!", "alwaysModal": false, "voicemail": false, "buttonText": "Talk Now!", "days": [false, false, false, false, false, false, false], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "Thank you for completing the Park Side Credit Union application. This is a courtesy follow-up call..This call may be recorded for customer service purposes..", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "mark@recaptureservices.com; steveneu@live.com;", "notifyMissedCustom": ""}	t	\N	4	\N	widget
2016-05-05 20:46:55.050815+00	2017-01-27 21:24:33.855178+00	12	f3e4cfe5-2811-4ab1-9d96-3f14b202cd33	Brotherhood Credit Application	{"typeLink": true, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "": "22", "triggerPageInterval": 10, "color": "#2eb398", "branding": false, "unavailableAskLastName": true, "typeButton": false, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Let us help you. Enter your details below and click on the talk button to speat to one of our representatives.", "imageHorizontal": "50", "retryRouting2": "", "routeRandomly": false, "retryRouting1": "", "askLastName": true, "typeTab": false, "guid": "f3e4cfe5-2811-4ab1-9d96-3f14b202cd33", "id": 12, "firstNamePrompt": "First name:", "retryRouting3": "", "availableFrom": "08:00:00", "notifyAllLeads": true, "title": "Talk to us now!", "notifyMissedLeads": false, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "....This call is regarding a Brotherhood Credit Union Application Submission that has been filled out and completed.", "agents": [{"fullName": "Herman Vermaak", "contactUsing": "phone", "id": 15}], "unavailableQuestionPrompt": "Question:", "typeImage": false, "addHiddenInformation": true, "askPhoneNumber": true, "recordCalls": true, "voicemailMessage": "", "unavailablePhoneNumberPrompt": "Phone number:", "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "23:00:00", "defaultImage": "", "imageVertical": "50", "notifyAllAgents": false, "scheduleTimezone": "US/Eastern", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": "50", "fromNumberId": 22, "transparentBackground": false, "askEmailAddress": true, "name": "Brotherhood Credit Application", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "Talk to us now!", "alwaysModal": false, "voicemail": false, "buttonText": "Talk Now!", "days": [false, false, false, false, false, false, false], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "unavailableFirstNamePrompt": "First name:", "whisperMessage": "Thank you for completing the Brotherhood Credit Union application. This is a courtesy follow-up call..This call may be recorded for customer service purposes.. ", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "mark@recaptureservices.com; steveneu@live.com;", "notifyMissedCustom": ""}	t	\N	4	\N	widget
2018-01-02 15:12:49.679018+00	2018-01-04 23:49:54.781512+00	102	ce2136cc-f207-42c8-8d76-a00748b6b0e1	Auto Club Popup	{"": "phone", "emailAddressPrompt": "Enter your email address", "askLastName": false, "title": "TALK TO US NOW!", "notifyAllMe": false, "routeInSequence": true, "lastNamePrompt": "Enter your last name", "unavailableHeaderTitle": "Send us a messsage!", "askEmailAddress": false, "notifyAllLeads": true, "transparentBackground": true, "notifyMissedAgents": false, "name": "Auto Club Popup", "showOnMobile": false, "notifyAdfCustom": "hv13@hotmail.com", "askQuestion": false, "unavailableLastNamePrompt": "Enter your last name", "agents": [{"fullName": "Herman Vermaak", "contactUsing": "phone", "id": 15}], "enableNotifications": true, "recordCalls": false, "notifyMissedMe": true, "branding": false, "notifyAdf": true, "retryRouting1": "", "typeTab": false, "retryRouting2": "", "phoneNumberPrompt": "Enter your phone number", "unavailableAskFirstName": true, "unavailablePhoneNumberPrompt": "Enter your phone number", "hiddenInformation": "", "typeImage": true, "questionPrompt": "What is your question?", "triggerPageInterval": 10, "defaultImage": "Custom", "imageInFront": false, "imageVertical": "100.00", "language": "en", "headerTitle": "Talk to us now!", "voicemail": true, "buttonText": "Click to talk!", "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "showHideButton": true, "notifyMissedCustom": "hermanjvermaak@gmail.com", "voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "retryRouting": ["", "", ""], "color": "#03a9f4", "typeButton": true, "repeatAnimation": true, "imageHorizontal": "98.54", "unavailableAskQuestion": false, "unavailableIntro": "Sorry, we are not available at the moment. Send us a message, and we'll get back to you!.", "fromNumberType": "priority", "pages": [], "triggerBasedOnTime": false, "notifyNone": false, "askPhoneNumber": true, "unavailableButtonText": "Send message", "fromNumberId": 139, "triggerBasedOnPage": false, "askFirstName": true, "nameAdf": "Default", "notifyMissedLeads": false, "unavailableFirstNamePrompt": "Enter your first name", "tabWidth": "40", "alwaysModal": false, "addHiddenInformation": false, "typeLink": true, "unavailableAskLastName": true, "intro": "Complete the form and click on the talk button to speak to one of our representatives.", "routeRandomly": false, "retryRouting3": "", "firstNamePrompt": "Enter your first name", "customImage": "2e07265a-690d-4ce6-8582-4b7ca3db7ec1", "mobileOptimized": true, "animation": "bounce-up", "unavailableQuestionPrompt": "What is your question?", "widgetType": "widget", "triggerInterval": 30, "unavailableEmailAddressPrompt": "Enter your email address", "unavailableAskEmailAddress": true, "notifyAllAgents": false, "imageSize": "50", "notifyAllCustom": "hjvermaak@gmail.com", "unavailableAskPhoneNumber": true, "position": "bottom-right", "routeSimultaneously": false}	t	139	4	FINSERVGroup63@inbound.buyercall.com	widget
2018-02-07 23:19:01.174438+00	2018-02-07 23:19:01.174467+00	109	a6c22b3b-e7c9-4105-87aa-d6be18e30c81	Default	{"voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "retryRouting": ["0", "", ""], "color": "#2eb398", "typeButton": true, "imageHorizontal": 50, "askLastName": true, "alwaysModal": false, "unavailableAskQuestion": false, "notifyAllMe": true, "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "pages": [], "emailAddressPrompt": "Email address:", "routeInSequence": false, "triggerBasedOnTime": false, "lastNamePrompt": "Last name:", "notifyNone": false, "askPhoneNumber": true, "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "scheduleTimezone": "", "triggerBasedOnPage": false, "typeLink": false, "notifyMissedAgents": false, "notifyAllLeads": false, "animation": "bounce-up", "askFirstName": true, "transparentBackground": false, "askEmailAddress": true, "name": "Default", "showOnMobile": true, "askQuestion": false, "phoneNumberPrompt": "Phone number:", "notifyMissedLeads": true, "tabWidth": 40, "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "addHiddenInformation": false, "enableNotifications": true, "unavailableAskPhoneNumber": true, "triggerPageInterval": 10, "notifyMissedMe": true, "branding": true, "unavailableAskLastName": true, "notifyAdf": false, "intro": "Let us help you. Enter your details below and click on the talk button to speak to one of our representatives.", "routeRandomly": false, "typeTab": true, "firstNamePrompt": "First name:", "availableFrom": "08:00:00", "notifyAdfCustom": "", "unavailableFirstNamePrompt": "First name:", "customImage": "", "unavailableAskFirstName": true, "mobileOptimized": false, "unavailablePhoneNumberPrompt": "Phone number:", "hiddenInformation": "", "unavailableQuestionPrompt": "Question:", "typeImage": false, "questionPrompt": "Question:", "recordCalls": false, "title": "Talk to us now!", "defaultImage": "", "imageVertical": 50, "triggerInterval": 30, "unavailableEmailAddressPrompt": "Email address:", "showHideButton": true, "unavailableAskEmailAddress": true, "notifyAllAgents": false, "imageSize": 50, "language": "en", "headerTitle": "Talk to us now!", "notifyAllCustom": "", "voicemail": true, "buttonText": "Talk Now!", "days": [false, true, true, true, true, true, false], "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "position": "bottom-right", "routeSimultaneously": true, "notifyMissedCustom": ""}	t	\N	23	\N	widget
2018-01-31 16:10:34.896028+00	2018-01-31 16:10:34.896045+00	106	1fc74822-985f-41c9-bbd5-2adc0084ca69	Default	{"voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "retryRouting": ["0", "", ""], "color": "#2eb398", "typeButton": true, "imageHorizontal": 50, "askLastName": true, "alwaysModal": false, "unavailableAskQuestion": false, "notifyAllMe": true, "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "pages": [], "emailAddressPrompt": "Email address:", "routeInSequence": false, "triggerBasedOnTime": false, "lastNamePrompt": "Last name:", "notifyNone": false, "askPhoneNumber": true, "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "scheduleTimezone": "", "triggerBasedOnPage": false, "typeLink": false, "notifyMissedAgents": false, "notifyAllLeads": false, "animation": "bounce-up", "askFirstName": true, "transparentBackground": false, "askEmailAddress": true, "name": "Default", "showOnMobile": true, "askQuestion": false, "phoneNumberPrompt": "Phone number:", "notifyMissedLeads": true, "tabWidth": 40, "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "addHiddenInformation": false, "enableNotifications": true, "unavailableAskPhoneNumber": true, "triggerPageInterval": 10, "notifyMissedMe": true, "branding": true, "unavailableAskLastName": true, "notifyAdf": false, "intro": "Let us help you. Enter your details below and click on the talk button to speak to one of our representatives.", "routeRandomly": false, "typeTab": true, "firstNamePrompt": "First name:", "availableFrom": "08:00:00", "notifyAdfCustom": "", "unavailableFirstNamePrompt": "First name:", "customImage": "", "unavailableAskFirstName": true, "mobileOptimized": false, "unavailablePhoneNumberPrompt": "Phone number:", "hiddenInformation": "", "unavailableQuestionPrompt": "Question:", "typeImage": false, "questionPrompt": "Question:", "recordCalls": false, "title": "Talk to us now!", "defaultImage": "", "imageVertical": 50, "triggerInterval": 30, "unavailableEmailAddressPrompt": "Email address:", "showHideButton": true, "unavailableAskEmailAddress": true, "notifyAllAgents": false, "imageSize": 50, "language": "en", "headerTitle": "Talk to us now!", "notifyAllCustom": "", "voicemail": true, "buttonText": "Talk Now!", "days": [false, true, true, true, true, true, false], "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "position": "bottom-right", "routeSimultaneously": true, "notifyMissedCustom": ""}	t	\N	20	\N	widget
2018-01-31 16:10:38.604819+00	2018-01-31 16:10:38.604847+00	107	2a56c366-45ea-4d0c-9be7-d6e9dc3b23c2	Default	{"voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "retryRouting": ["0", "", ""], "color": "#2eb398", "typeButton": true, "imageHorizontal": 50, "askLastName": true, "alwaysModal": false, "unavailableAskQuestion": false, "notifyAllMe": true, "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "pages": [], "emailAddressPrompt": "Email address:", "routeInSequence": false, "triggerBasedOnTime": false, "lastNamePrompt": "Last name:", "notifyNone": false, "askPhoneNumber": true, "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "scheduleTimezone": "", "triggerBasedOnPage": false, "typeLink": false, "notifyMissedAgents": false, "notifyAllLeads": false, "animation": "bounce-up", "askFirstName": true, "transparentBackground": false, "askEmailAddress": true, "name": "Default", "showOnMobile": true, "askQuestion": false, "phoneNumberPrompt": "Phone number:", "notifyMissedLeads": true, "tabWidth": 40, "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "addHiddenInformation": false, "enableNotifications": true, "unavailableAskPhoneNumber": true, "triggerPageInterval": 10, "notifyMissedMe": true, "branding": true, "unavailableAskLastName": true, "notifyAdf": false, "intro": "Let us help you. Enter your details below and click on the talk button to speak to one of our representatives.", "routeRandomly": false, "typeTab": true, "firstNamePrompt": "First name:", "availableFrom": "08:00:00", "notifyAdfCustom": "", "unavailableFirstNamePrompt": "First name:", "customImage": "", "unavailableAskFirstName": true, "mobileOptimized": false, "unavailablePhoneNumberPrompt": "Phone number:", "hiddenInformation": "", "unavailableQuestionPrompt": "Question:", "typeImage": false, "questionPrompt": "Question:", "recordCalls": false, "title": "Talk to us now!", "defaultImage": "", "imageVertical": 50, "triggerInterval": 30, "unavailableEmailAddressPrompt": "Email address:", "showHideButton": true, "unavailableAskEmailAddress": true, "notifyAllAgents": false, "imageSize": 50, "language": "en", "headerTitle": "Talk to us now!", "notifyAllCustom": "", "voicemail": true, "buttonText": "Talk Now!", "days": [false, true, true, true, true, true, false], "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "position": "bottom-right", "routeSimultaneously": true, "notifyMissedCustom": ""}	t	\N	21	\N	widget
2018-01-31 16:15:12.29401+00	2018-01-31 16:15:12.294027+00	108	7a026992-fbb7-493f-8132-94d583e95901	Default	{"voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "retryRouting": ["0", "", ""], "color": "#2eb398", "typeButton": true, "imageHorizontal": 50, "askLastName": true, "alwaysModal": false, "unavailableAskQuestion": false, "notifyAllMe": true, "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "pages": [], "emailAddressPrompt": "Email address:", "routeInSequence": false, "triggerBasedOnTime": false, "lastNamePrompt": "Last name:", "notifyNone": false, "askPhoneNumber": true, "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "scheduleTimezone": "", "triggerBasedOnPage": false, "typeLink": false, "notifyMissedAgents": false, "notifyAllLeads": false, "animation": "bounce-up", "askFirstName": true, "transparentBackground": false, "askEmailAddress": true, "name": "Default", "showOnMobile": true, "askQuestion": false, "phoneNumberPrompt": "Phone number:", "notifyMissedLeads": true, "tabWidth": 40, "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "addHiddenInformation": false, "enableNotifications": true, "unavailableAskPhoneNumber": true, "triggerPageInterval": 10, "notifyMissedMe": true, "branding": true, "unavailableAskLastName": true, "notifyAdf": false, "intro": "Let us help you. Enter your details below and click on the talk button to speak to one of our representatives.", "routeRandomly": false, "typeTab": true, "firstNamePrompt": "First name:", "availableFrom": "08:00:00", "notifyAdfCustom": "", "unavailableFirstNamePrompt": "First name:", "customImage": "", "unavailableAskFirstName": true, "mobileOptimized": false, "unavailablePhoneNumberPrompt": "Phone number:", "hiddenInformation": "", "unavailableQuestionPrompt": "Question:", "typeImage": false, "questionPrompt": "Question:", "recordCalls": false, "title": "Talk to us now!", "defaultImage": "", "imageVertical": 50, "triggerInterval": 30, "unavailableEmailAddressPrompt": "Email address:", "showHideButton": true, "unavailableAskEmailAddress": true, "notifyAllAgents": false, "imageSize": 50, "language": "en", "headerTitle": "Talk to us now!", "notifyAllCustom": "", "voicemail": true, "buttonText": "Talk Now!", "days": [false, true, true, true, true, true, false], "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "position": "bottom-right", "routeSimultaneously": true, "notifyMissedCustom": ""}	t	\N	22	\N	widget
2018-01-02 16:02:27.465461+00	2018-01-02 16:02:27.473143+00	103	4a6a5a0a-9a17-4834-976d-da5fd73899ff	ADF TESTER FORM	{"typeLink": true, "questionPrompt": "What is your question?", "unavailableAskPhoneNumber": true, "agents": [{"fullName": "Herman Vermaak", "contactUsing": "phone", "id": 15}], "triggerPageInterval": 10, "color": "#03a9f4", "branding": false, "unavailableAskLastName": true, "notifyAdf": true, "typeButton": true, "fromNumberType": "priority", "notifyMissedAgents": false, "intro": "Complete the form and click on the talk button to speak to one of our representatives.", "imageHorizontal": 50, "routeRandomly": false, "retryRouting1": "", "askLastName": true, "typeTab": true, "retryRouting2": "", "retryRouting3": "", "firstNamePrompt": "Enter your first name", "": "phone", "fromNumberId": 139, "notifyAdfCustom": "hv13@hotmail.com", "notifyAllLeads": false, "unavailableButtonText": "Send message", "title": "TALK TO US NOW!", "notifyMissedLeads": true, "notifyAllMe": false, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Send us a message, and we'll get back to you!.", "routeInSequence": false, "unavailableFirstNamePrompt": "Enter your first name", "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Enter your email address", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Enter your last name", "hiddenInformation": "", "unavailableQuestionPrompt": "What is your question?", "typeImage": false, "addHiddenInformation": false, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "unavailablePhoneNumberPrompt": "Enter your phone number", "widgetType": "adf", "unavailableHeaderTitle": "Send us a messsage!", "defaultImage": "", "imageVertical": 50, "notifyAllAgents": false, "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": false, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": 50, "enableNotifications": true, "guid": "4a6a5a0a-9a17-4834-976d-da5fd73899ff", "transparentBackground": false, "askEmailAddress": true, "name": "ADF TESTER FORM", "showOnMobile": true, "unavailableEmailAddressPrompt": "Enter your email address", "headerTitle": "Talk to us now!", "alwaysModal": false, "voicemail": true, "buttonText": "Click to talk!", "triggerBasedOnPage": false, "phoneNumberPrompt": "Enter your phone number", "askQuestion": false, "tabWidth": 40, "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Enter your last name", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "", "notifyMissedCustom": ""}	t	139	4	FINSERVGroup64@inbound.buyercall.com	adf
2018-01-30 22:40:02.984353+00	2018-01-30 22:40:03.00096+00	104	8a0f2f61-034e-469c-a85e-3a2c488accc0	ADF Tester	{"typeLink": true, "questionPrompt": "What is your question?", "unavailableAskPhoneNumber": true, "agents": [{"fullName": "Herman Vermaak", "contactUsing": "phone", "id": 15}], "triggerPageInterval": 10, "color": "#03a9f4", "branding": false, "unavailableAskLastName": true, "notifyAdf": true, "typeButton": true, "fromNumberType": "priority", "notifyMissedAgents": false, "intro": "Complete the form and click on the talk button to speak to one of our representatives.", "imageHorizontal": 50, "routeRandomly": false, "retryRouting1": "", "askLastName": true, "typeTab": true, "retryRouting2": "", "retryRouting3": "", "firstNamePrompt": "Enter your first name", "": "phone", "fromNumberId": 141, "notifyAdfCustom": "hjvermaak@gmail.com", "notifyAllLeads": false, "unavailableButtonText": "Send message", "title": "TALK TO US NOW!", "notifyMissedLeads": true, "notifyAllMe": false, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Send us a message, and we'll get back to you!.", "routeInSequence": true, "unavailableFirstNamePrompt": "Enter your first name", "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Enter your email address", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Enter your last name", "hiddenInformation": "", "unavailableQuestionPrompt": "What is your question?", "typeImage": false, "addHiddenInformation": false, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "unavailablePhoneNumberPrompt": "Enter your phone number", "widgetType": "adf", "unavailableHeaderTitle": "Send us a messsage!", "defaultImage": "", "imageVertical": 50, "notifyAllAgents": false, "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": 50, "enableNotifications": true, "guid": "8a0f2f61-034e-469c-a85e-3a2c488accc0", "transparentBackground": false, "askEmailAddress": true, "name": "ADF Tester", "showOnMobile": true, "unavailableEmailAddressPrompt": "Enter your email address", "headerTitle": "Talk to us now!", "alwaysModal": false, "voicemail": true, "buttonText": "Click to talk!", "triggerBasedOnPage": false, "phoneNumberPrompt": "Enter your phone number", "askQuestion": false, "tabWidth": 40, "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "retryRouting": ["", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Enter your last name", "position": "bottom-right", "routeSimultaneously": false, "notifyAllCustom": "hjvermaak@gmail.com", "notifyMissedCustom": ""}	t	141	4	GondonGroupLTD65@inbound.buyercall.com	adf
2018-01-30 22:41:21.506394+00	2018-01-30 22:41:21.506412+00	105	195735e6-6243-4923-8588-5340a70bd0cb	Default	{"voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "retryRouting": ["0", "", ""], "color": "#2eb398", "typeButton": true, "imageHorizontal": 50, "askLastName": true, "alwaysModal": false, "unavailableAskQuestion": false, "notifyAllMe": true, "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "pages": [], "emailAddressPrompt": "Email address:", "routeInSequence": false, "triggerBasedOnTime": false, "lastNamePrompt": "Last name:", "notifyNone": false, "askPhoneNumber": true, "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "scheduleTimezone": "", "triggerBasedOnPage": false, "typeLink": false, "notifyMissedAgents": false, "notifyAllLeads": false, "animation": "bounce-up", "askFirstName": true, "transparentBackground": false, "askEmailAddress": true, "name": "Default", "showOnMobile": true, "askQuestion": false, "phoneNumberPrompt": "Phone number:", "notifyMissedLeads": true, "tabWidth": 40, "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "addHiddenInformation": false, "enableNotifications": true, "unavailableAskPhoneNumber": true, "triggerPageInterval": 10, "notifyMissedMe": true, "branding": true, "unavailableAskLastName": true, "notifyAdf": false, "intro": "Let us help you. Enter your details below and click on the talk button to speak to one of our representatives.", "routeRandomly": false, "typeTab": true, "firstNamePrompt": "First name:", "availableFrom": "08:00:00", "notifyAdfCustom": "", "unavailableFirstNamePrompt": "First name:", "customImage": "", "unavailableAskFirstName": true, "mobileOptimized": false, "unavailablePhoneNumberPrompt": "Phone number:", "hiddenInformation": "", "unavailableQuestionPrompt": "Question:", "typeImage": false, "questionPrompt": "Question:", "recordCalls": false, "title": "Talk to us now!", "defaultImage": "", "imageVertical": 50, "triggerInterval": 30, "unavailableEmailAddressPrompt": "Email address:", "showHideButton": true, "unavailableAskEmailAddress": true, "notifyAllAgents": false, "imageSize": 50, "language": "en", "headerTitle": "Talk to us now!", "notifyAllCustom": "", "voicemail": true, "buttonText": "Talk Now!", "days": [false, true, true, true, true, true, false], "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "position": "bottom-right", "routeSimultaneously": true, "notifyMissedCustom": ""}	t	\N	19	\N	widget
2018-02-08 23:05:23.533771+00	2018-02-08 23:05:23.533789+00	112	bfcfad50-1b8f-42cd-bbc9-e63c66b31add	Default	{"voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "retryRouting": ["0", "", ""], "color": "#2eb398", "typeButton": true, "imageHorizontal": 50, "askLastName": true, "alwaysModal": false, "unavailableAskQuestion": false, "notifyAllMe": true, "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "pages": [], "emailAddressPrompt": "Email address:", "routeInSequence": false, "triggerBasedOnTime": false, "lastNamePrompt": "Last name:", "notifyNone": false, "askPhoneNumber": true, "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "scheduleTimezone": "", "triggerBasedOnPage": false, "typeLink": false, "notifyMissedAgents": false, "notifyAllLeads": false, "animation": "bounce-up", "askFirstName": true, "transparentBackground": false, "askEmailAddress": true, "name": "Default", "showOnMobile": true, "askQuestion": false, "phoneNumberPrompt": "Phone number:", "notifyMissedLeads": true, "tabWidth": 40, "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "addHiddenInformation": false, "enableNotifications": true, "unavailableAskPhoneNumber": true, "triggerPageInterval": 10, "notifyMissedMe": true, "branding": true, "unavailableAskLastName": true, "notifyAdf": false, "intro": "Let us help you. Enter your details below and click on the talk button to speak to one of our representatives.", "routeRandomly": false, "typeTab": true, "firstNamePrompt": "First name:", "availableFrom": "08:00:00", "notifyAdfCustom": "", "unavailableFirstNamePrompt": "First name:", "customImage": "", "unavailableAskFirstName": true, "mobileOptimized": false, "unavailablePhoneNumberPrompt": "Phone number:", "hiddenInformation": "", "unavailableQuestionPrompt": "Question:", "typeImage": false, "questionPrompt": "Question:", "recordCalls": false, "title": "Talk to us now!", "defaultImage": "", "imageVertical": 50, "triggerInterval": 30, "unavailableEmailAddressPrompt": "Email address:", "showHideButton": true, "unavailableAskEmailAddress": true, "notifyAllAgents": false, "imageSize": 50, "language": "en", "headerTitle": "Talk to us now!", "notifyAllCustom": "", "voicemail": true, "buttonText": "Talk Now!", "days": [false, true, true, true, true, true, false], "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "position": "bottom-right", "routeSimultaneously": true, "notifyMissedCustom": ""}	t	\N	26	\N	widget
2018-02-08 23:10:13.817995+00	2018-02-08 23:16:49.611489+00	113	bb88ee66-df77-4d07-aed1-744149ce2146	My Default Routing	{"": "phone", "emailAddressPrompt": "Email address:", "askLastName": true, "title": "Talk to us now!", "notifyAllMe": true, "routeInSequence": false, "lastNamePrompt": "Last name:", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "askEmailAddress": true, "notifyAllLeads": true, "transparentBackground": false, "notifyMissedAgents": false, "name": "My Default Routing", "showOnMobile": true, "notifyAdfCustom": "hv13@hotmail.com", "askQuestion": false, "unavailableLastNamePrompt": "Last name:", "imageHorizontal": "100.00", "enableNotifications": true, "recordCalls": false, "notifyMissedMe": true, "branding": true, "notifyAdf": true, "retryRouting1": "", "typeTab": true, "retryRouting2": "", "availableFrom": "08:00:00", "phoneNumberPrompt": "Phone number:", "unavailableAskFirstName": true, "unavailablePhoneNumberPrompt": "Phone number:", "hiddenInformation": "", "typeImage": true, "questionPrompt": "Question:", "triggerPageInterval": 10, "defaultImage": "Custom", "imageInFront": false, "imageVertical": "100.00", "language": "en", "headerTitle": "Talk to us now!", "voicemail": true, "buttonText": "Talk Now!", "days": [false, true, true, true, true, true, false], "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "showHideButton": true, "notifyMissedCustom": "", "voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "retryRouting": ["", "", ""], "color": "#2eb398", "typeButton": true, "repeatAnimation": true, "agents": [{"fullName": "Bow Tie", "contactUsing": "phone", "id": 178}], "unavailableAskQuestion": false, "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "fromNumberType": "priority", "pages": [], "triggerBasedOnTime": false, "notifyNone": false, "askPhoneNumber": true, "unavailableButtonText": "Submit", "scheduleTimezone": "", "fromNumberId": 145, "triggerBasedOnPage": false, "askFirstName": true, "nameAdf": "Default", "notifyMissedLeads": false, "unavailableFirstNamePrompt": "First name:", "tabWidth": "40", "alwaysModal": false, "addHiddenInformation": false, "typeLink": false, "unavailableAskLastName": true, "intro": "Let us help you. Enter your details below and click on the talk button to speak to one of our representatives.", "routeRandomly": false, "retryRouting3": "", "firstNamePrompt": "First name:", "customImage": "609850d3-5fac-406f-ac2d-bb2a3d5d003d", "mobileOptimized": false, "animation": "bounce-up", "unavailableQuestionPrompt": "Question:", "widgetType": "widget", "triggerInterval": 30, "unavailableEmailAddressPrompt": "Email address:", "unavailableAskEmailAddress": true, "notifyAllAgents": false, "imageSize": "32.17", "notifyAllCustom": "hjvermaak@gmail.com", "unavailableAskPhoneNumber": true, "position": "bottom-right", "routeSimultaneously": true}	t	145	27	\N	widget
2018-02-13 01:00:32.591094+00	2018-02-13 01:00:32.591133+00	114	256a5128-dc61-4b4a-9876-7256e6bff6c2	Default	{"voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "retryRouting": ["0", "", ""], "color": "#2eb398", "typeButton": true, "imageHorizontal": 50, "askLastName": true, "alwaysModal": false, "unavailableAskQuestion": false, "notifyAllMe": true, "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "pages": [], "emailAddressPrompt": "Email address:", "routeInSequence": false, "triggerBasedOnTime": false, "lastNamePrompt": "Last name:", "notifyNone": false, "askPhoneNumber": true, "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "scheduleTimezone": "", "triggerBasedOnPage": false, "typeLink": false, "notifyMissedAgents": false, "notifyAllLeads": false, "animation": "bounce-up", "askFirstName": true, "transparentBackground": false, "askEmailAddress": true, "name": "Default", "showOnMobile": true, "askQuestion": false, "phoneNumberPrompt": "Phone number:", "notifyMissedLeads": true, "tabWidth": 40, "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "addHiddenInformation": false, "enableNotifications": true, "unavailableAskPhoneNumber": true, "triggerPageInterval": 10, "notifyMissedMe": true, "branding": true, "unavailableAskLastName": true, "notifyAdf": false, "intro": "Let us help you. Enter your details below and click on the talk button to speak to one of our representatives.", "routeRandomly": false, "typeTab": true, "firstNamePrompt": "First name:", "availableFrom": "08:00:00", "notifyAdfCustom": "", "unavailableFirstNamePrompt": "First name:", "customImage": "", "unavailableAskFirstName": true, "mobileOptimized": false, "unavailablePhoneNumberPrompt": "Phone number:", "hiddenInformation": "", "unavailableQuestionPrompt": "Question:", "typeImage": false, "questionPrompt": "Question:", "recordCalls": false, "title": "Talk to us now!", "defaultImage": "", "imageVertical": 50, "triggerInterval": 30, "unavailableEmailAddressPrompt": "Email address:", "showHideButton": true, "unavailableAskEmailAddress": true, "notifyAllAgents": false, "imageSize": 50, "language": "en", "headerTitle": "Talk to us now!", "notifyAllCustom": "", "voicemail": true, "buttonText": "Talk Now!", "days": [false, true, true, true, true, true, false], "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "position": "bottom-right", "routeSimultaneously": true, "notifyMissedCustom": ""}	t	\N	28	\N	widget
2018-02-13 01:16:09.386651+00	2018-02-13 01:25:22.74153+00	115	3c416bc2-34e5-4b75-b43a-917c3830079f	Widget Brand	{"typeLink": false, "questionPrompt": "Question:", "unavailableAskPhoneNumber": true, "agents": [{"fullName": "Molly Perpleel", "contactUsing": "phone", "id": 180}], "triggerPageInterval": 10, "color": "#2eb398", "branding": true, "unavailableAskLastName": true, "notifyAdf": false, "typeButton": true, "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Let us help you. Enter your details below and click on the talk button to speak to one of our representatives.", "imageHorizontal": "90.70", "routeRandomly": false, "askLastName": true, "typeTab": true, "firstNamePrompt": "First name:", "availableFrom": "08:00:00", "notifyAdfCustom": "", "notifyAllLeads": false, "unavailableButtonText": "Submit", "title": "Talk to us now!", "notifyMissedLeads": true, "notifyAllMe": true, "customImage": "561c6619-1aca-41ec-b639-ccc6b8ced84b", "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "routeInSequence": false, "unavailableFirstNamePrompt": "First name:", "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Email address:", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Last name:", "hiddenInformation": "", "unavailableQuestionPrompt": "Question:", "typeImage": true, "addHiddenInformation": false, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "unavailablePhoneNumberPrompt": "Phone number:", "widgetType": "widget", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "defaultImage": "Custom", "imageVertical": "100.00", "notifyAllAgents": false, "scheduleTimezone": "", "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "fromNumberId": null, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": "42.25", "enableNotifications": true, "transparentBackground": false, "askEmailAddress": true, "name": "Widget Brand", "showOnMobile": true, "unavailableEmailAddressPrompt": "Email address:", "headerTitle": "Talk to us now!", "alwaysModal": false, "voicemail": true, "buttonText": "Talk Now!", "days": [false, true, true, true, true, true, false], "triggerBasedOnPage": false, "phoneNumberPrompt": "Phone number:", "askQuestion": false, "tabWidth": "40", "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "retryRouting": ["0", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "", "notifyMissedCustom": ""}	t	\N	29	\N	widget
2018-04-21 20:25:15.3788+00	2018-04-21 20:25:15.378821+00	116	d2b6910e-6335-4c06-b6b8-5ee9d1b6d75d	Default	{"voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "retryRouting": ["0", "", ""], "color": "#03a9f4", "typeButton": true, "imageHorizontal": 50, "askLastName": true, "alwaysModal": false, "unavailableAskQuestion": false, "notifyAllMe": true, "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "pages": [], "emailAddressPrompt": "Email address:", "routeInSequence": false, "triggerBasedOnTime": false, "lastNamePrompt": "Last name:", "notifyNone": false, "askPhoneNumber": true, "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "scheduleTimezone": "", "triggerBasedOnPage": false, "typeLink": false, "notifyMissedAgents": false, "notifyAllLeads": false, "animation": "bounce-up", "askFirstName": true, "transparentBackground": false, "askEmailAddress": true, "name": "Default Widget", "showOnMobile": true, "askQuestion": false, "phoneNumberPrompt": "Phone number:", "notifyMissedLeads": true, "tabWidth": 40, "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "addHiddenInformation": false, "enableNotifications": true, "unavailableAskPhoneNumber": true, "triggerPageInterval": 10, "notifyMissedMe": true, "branding": false, "unavailableAskLastName": true, "notifyAdf": false, "intro": "Let us help you. Enter your details below and click on the talk button to speak to one of our representatives.", "routeRandomly": false, "typeTab": true, "firstNamePrompt": "First name:", "availableFrom": "08:00:00", "notifyAdfCustom": "", "unavailableFirstNamePrompt": "First name:", "customImage": "", "unavailableAskFirstName": true, "mobileOptimized": false, "unavailablePhoneNumberPrompt": "Phone number:", "hiddenInformation": "", "unavailableQuestionPrompt": "Question:", "typeImage": false, "questionPrompt": "Question:", "recordCalls": false, "title": "Talk to us now!", "defaultImage": "", "imageVertical": 50, "triggerInterval": 30, "unavailableEmailAddressPrompt": "Email address:", "showHideButton": true, "unavailableAskEmailAddress": true, "notifyAllAgents": false, "imageSize": 50, "language": "en", "headerTitle": "Talk to us now!", "notifyAllCustom": "", "voicemail": true, "buttonText": "Talk Now!", "days": [false, true, true, true, true, true, false], "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "position": "bottom-right", "routeSimultaneously": true, "notifyMissedCustom": ""}	t	\N	30	\N	widget
2018-04-23 18:45:58.666893+00	2018-05-02 19:22:45.88623+00	117	dadddf04-867b-4898-af7e-a09fb8bc34d6	Default Widget	{"": "phone", "emailAddressPrompt": "Enter your email address", "askLastName": true, "title": "TALK TO US NOW!", "notifyAllMe": true, "routeInSequence": false, "lastNamePrompt": "Enter your last name", "unavailableHeaderTitle": "Send us a messsage!", "askEmailAddress": true, "notifyAllLeads": true, "transparentBackground": true, "notifyMissedAgents": false, "name": "Default Widget", "showOnMobile": false, "notifyAdfCustom": "harry@buyercall.com", "askQuestion": false, "unavailableLastNamePrompt": "Enter your last name", "agents": [{"fullName": "Herman Vermaak", "contactUsing": "phone", "id": 15}], "enableNotifications": true, "recordCalls": false, "notifyMissedMe": true, "branding": false, "notifyAdf": true, "retryRouting1": "", "typeTab": true, "retryRouting2": "", "phoneNumberPrompt": "Enter your phone number", "unavailableAskFirstName": true, "unavailablePhoneNumberPrompt": "Enter your phone number", "hiddenInformation": "", "typeImage": false, "questionPrompt": "What is your question?", "triggerPageInterval": 10, "defaultImage": "Custom", "imageInFront": false, "imageVertical": "50", "language": "en", "headerTitle": "Talk to us now!", "voicemail": true, "buttonText": "Click to talk!", "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "showHideButton": true, "notifyMissedCustom": "", "voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "retryRouting": ["", "", ""], "color": "#03a9f4", "typeButton": true, "repeatAnimation": true, "imageHorizontal": "50", "unavailableAskQuestion": false, "unavailableIntro": "Sorry, we are not available at the moment. Send us a message, and we'll get back to you!.", "fromNumberType": "priority", "pages": [], "triggerBasedOnTime": false, "notifyNone": false, "askPhoneNumber": true, "unavailableButtonText": "Send message", "fromNumberId": 150, "triggerBasedOnPage": false, "askFirstName": true, "nameAdf": "Default Widget", "notifyMissedLeads": false, "unavailableFirstNamePrompt": "Enter your first name", "tabWidth": "40", "alwaysModal": true, "addHiddenInformation": false, "typeLink": true, "unavailableAskLastName": true, "intro": "Complete the form and click on the talk button to speak to one of our representatives.", "routeRandomly": false, "retryRouting3": "", "firstNamePrompt": "Enter your first name", "customImage": "", "mobileOptimized": true, "animation": "bounce-up", "unavailableQuestionPrompt": "What is your question?", "widgetType": "widget", "triggerInterval": 30, "unavailableEmailAddressPrompt": "Enter your email address", "unavailableAskEmailAddress": true, "notifyAllAgents": false, "imageSize": "50", "notifyAllCustom": "", "unavailableAskPhoneNumber": true, "position": "bottom-left", "routeSimultaneously": true}	t	150	4	GondonGroupLTD66@inbound.buyercall.com	widget
2018-05-29 15:53:19.765394+00	2018-05-29 15:53:19.780268+00	118	bb807229-3cf6-4117-b5fd-7a7a6c53b5a3	Default Widget 2	{"typeLink": true, "questionPrompt": "What is your question?", "unavailableAskPhoneNumber": true, "agents": [{"fullName": "Jerry Thompson", "contactUsing": "phone", "id": 18}], "triggerPageInterval": 10, "color": "#03a9f4", "branding": false, "unavailableAskLastName": true, "notifyAdf": false, "typeButton": true, "fromNumberType": "priority", "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Complete the form and click on the talk button to speak to one of our representatives.", "imageHorizontal": "89.32", "routeRandomly": false, "askLastName": false, "typeTab": true, "guid": "bb807229-3cf6-4117-b5fd-7a7a6c53b5a3", "firstNamePrompt": "Enter your first name", "fromNumberId": 158, "notifyAdfCustom": "", "notifyAllLeads": false, "unavailableButtonText": "Send message", "title": "TALK TO US NOW!", "notifyMissedLeads": true, "notifyAllMe": true, "customImage": "6e733f21-4ff8-41ab-a466-52b1ce83aeba", "unavailableIntro": "Sorry, we are not available at the moment. Send us a message, and we'll get back to you!.", "routeInSequence": false, "unavailableFirstNamePrompt": "Enter your first name", "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Enter your email address", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Enter your last name", "hiddenInformation": "", "unavailableQuestionPrompt": "What is your question?", "typeImage": true, "addHiddenInformation": false, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "unavailablePhoneNumberPrompt": "Enter your phone number", "widgetType": "widget", "unavailableHeaderTitle": "Send us a messsage!", "defaultImage": "Custom", "imageVertical": "90.05", "notifyAllAgents": false, "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": "21.36", "enableNotifications": true, "transparentBackground": false, "askEmailAddress": true, "name": "Default Widget 2", "showOnMobile": true, "unavailableEmailAddressPrompt": "Enter your email address", "headerTitle": "Talk to us now!", "alwaysModal": false, "voicemail": true, "buttonText": "Click to talk!", "triggerBasedOnPage": false, "phoneNumberPrompt": "Enter your phone number", "askQuestion": false, "tabWidth": "40", "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "retryRouting": ["0", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Enter your last name", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "", "notifyMissedCustom": ""}	t	158	4	GondonGroupLTD67@inbound.buyercall.com	widget
2019-04-11 22:08:14.889095+00	2019-04-11 22:08:14.88911+00	120	e7cadd98-7d42-49a6-949f-ae074d1a78d1	Default	{"voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "retryRouting": ["0", "", ""], "color": "#03a9f4", "typeButton": true, "imageHorizontal": 50, "askLastName": true, "alwaysModal": false, "unavailableAskQuestion": false, "notifyAllMe": true, "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "pages": [], "emailAddressPrompt": "Email address:", "routeInSequence": false, "triggerBasedOnTime": false, "lastNamePrompt": "Last name:", "notifyNone": false, "askPhoneNumber": true, "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "scheduleTimezone": "", "triggerBasedOnPage": false, "typeLink": false, "notifyMissedAgents": false, "notifyAllLeads": false, "animation": "bounce-up", "askFirstName": true, "transparentBackground": false, "askEmailAddress": true, "name": "Default Widget", "showOnMobile": true, "askQuestion": false, "phoneNumberPrompt": "Phone number:", "notifyMissedLeads": true, "tabWidth": 40, "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "addHiddenInformation": false, "enableNotifications": true, "unavailableAskPhoneNumber": true, "triggerPageInterval": 10, "notifyMissedMe": true, "branding": false, "unavailableAskLastName": true, "notifyAdf": false, "intro": "Let us help you. Enter your details below and click on the talk button to speak to one of our representatives.", "routeRandomly": false, "typeTab": true, "firstNamePrompt": "First name:", "availableFrom": "08:00:00", "notifyAdfCustom": "", "unavailableFirstNamePrompt": "First name:", "customImage": "", "unavailableAskFirstName": true, "mobileOptimized": false, "unavailablePhoneNumberPrompt": "Phone number:", "hiddenInformation": "", "unavailableQuestionPrompt": "Question:", "typeImage": false, "questionPrompt": "Question:", "recordCalls": false, "title": "Talk to us now!", "defaultImage": "", "imageVertical": 50, "triggerInterval": 30, "unavailableEmailAddressPrompt": "Email address:", "showHideButton": true, "unavailableAskEmailAddress": true, "notifyAllAgents": false, "imageSize": 50, "language": "en", "headerTitle": "Talk to us now!", "notifyAllCustom": "", "voicemail": true, "buttonText": "Talk Now!", "days": [false, true, true, true, true, true, false], "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "position": "bottom-right", "routeSimultaneously": true, "notifyMissedCustom": ""}	t	\N	32	\N	widget
2019-04-11 22:12:50.1593+00	2019-04-11 22:12:50.159317+00	121	86fd9ea7-b26d-4cd5-8df7-6d5241e4eddc	Default	{"voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "retryRouting": ["0", "", ""], "color": "#03a9f4", "typeButton": true, "imageHorizontal": 50, "askLastName": true, "alwaysModal": false, "unavailableAskQuestion": false, "notifyAllMe": true, "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "pages": [], "emailAddressPrompt": "Email address:", "routeInSequence": false, "triggerBasedOnTime": false, "lastNamePrompt": "Last name:", "notifyNone": false, "askPhoneNumber": true, "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "scheduleTimezone": "", "triggerBasedOnPage": false, "typeLink": false, "notifyMissedAgents": false, "notifyAllLeads": false, "animation": "bounce-up", "askFirstName": true, "transparentBackground": false, "askEmailAddress": true, "name": "Default Widget", "showOnMobile": true, "askQuestion": false, "phoneNumberPrompt": "Phone number:", "notifyMissedLeads": true, "tabWidth": 40, "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "addHiddenInformation": false, "enableNotifications": true, "unavailableAskPhoneNumber": true, "triggerPageInterval": 10, "notifyMissedMe": true, "branding": false, "unavailableAskLastName": true, "notifyAdf": false, "intro": "Let us help you. Enter your details below and click on the talk button to speak to one of our representatives.", "routeRandomly": false, "typeTab": true, "firstNamePrompt": "First name:", "availableFrom": "08:00:00", "notifyAdfCustom": "", "unavailableFirstNamePrompt": "First name:", "customImage": "", "unavailableAskFirstName": true, "mobileOptimized": false, "unavailablePhoneNumberPrompt": "Phone number:", "hiddenInformation": "", "unavailableQuestionPrompt": "Question:", "typeImage": false, "questionPrompt": "Question:", "recordCalls": false, "title": "Talk to us now!", "defaultImage": "", "imageVertical": 50, "triggerInterval": 30, "unavailableEmailAddressPrompt": "Email address:", "showHideButton": true, "unavailableAskEmailAddress": true, "notifyAllAgents": false, "imageSize": 50, "language": "en", "headerTitle": "Talk to us now!", "notifyAllCustom": "", "voicemail": true, "buttonText": "Talk Now!", "days": [false, true, true, true, true, true, false], "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "position": "bottom-right", "routeSimultaneously": true, "notifyMissedCustom": ""}	t	\N	33	\N	widget
2019-05-23 00:08:15.101069+00	2019-05-23 00:08:45.9407+00	122	8d93b0fa-aad6-4601-876f-f261eeedfede	Default Widget	{"typeLink": true, "questionPrompt": "What is your question?", "unavailableAskPhoneNumber": true, "agents": [{"fullName": "Herman Vermaak", "contactUsing": "phone", "id": 15}], "triggerPageInterval": 10, "color": "#03a9f4", "branding": false, "unavailableAskLastName": true, "notifyAdf": false, "typeButton": true, "fromNumberType": "priority", "notifyMissedAgents": false, "intro": "Complete the form and click on the talk button to speak to one of our representatives.", "imageHorizontal": 50, "routeRandomly": false, "askLastName": true, "typeTab": true, "firstNamePrompt": "Enter your first name", "fromNumberId": 170, "notifyAdfCustom": "", "notifyAllLeads": false, "unavailableButtonText": "Send message", "title": "TALK TO US NOW!", "notifyMissedLeads": true, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Send us a message, and we'll get back to you!.", "routeInSequence": false, "unavailableFirstNamePrompt": "Enter your first name", "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Enter your email address", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Enter your last name", "hiddenInformation": "", "unavailableQuestionPrompt": "What is your question?", "typeImage": false, "addHiddenInformation": false, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "unavailablePhoneNumberPrompt": "Enter your phone number", "widgetType": "widget", "unavailableHeaderTitle": "Send us a messsage!", "defaultImage": "", "imageVertical": 50, "notifyAllAgents": false, "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": 50, "enableNotifications": true, "transparentBackground": false, "askEmailAddress": true, "name": "Default Widget", "showOnMobile": true, "unavailableEmailAddressPrompt": "Enter your email address", "headerTitle": "Talk to us now!", "alwaysModal": false, "voicemail": true, "buttonText": "Click to talk!", "triggerBasedOnPage": false, "phoneNumberPrompt": "Enter your phone number", "askQuestion": true, "tabWidth": 40, "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "retryRouting": ["0", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Enter your last name", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "", "notifyMissedCustom": ""}	t	170	4	HarryLoadsLLC68@inbound.buyercall.com	widget
2019-10-22 15:18:28.071807+00	2019-10-22 15:18:28.07183+00	124	280f0ac2-a372-4472-aeed-a5f7fc00bc94	Default	{"voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "retryRouting": ["0", "", ""], "color": "#03a9f4", "typeButton": true, "imageHorizontal": 50, "askLastName": true, "alwaysModal": false, "unavailableAskQuestion": false, "notifyAllMe": true, "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "pages": [], "emailAddressPrompt": "Email address:", "routeInSequence": false, "triggerBasedOnTime": false, "lastNamePrompt": "Last name:", "notifyNone": false, "askPhoneNumber": true, "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "scheduleTimezone": "", "triggerBasedOnPage": false, "typeLink": false, "notifyMissedAgents": false, "notifyAllLeads": false, "animation": "bounce-up", "askFirstName": true, "transparentBackground": false, "askEmailAddress": true, "name": "Default Widget", "showOnMobile": true, "askQuestion": false, "phoneNumberPrompt": "Phone number:", "notifyMissedLeads": true, "tabWidth": 40, "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "addHiddenInformation": false, "enableNotifications": true, "unavailableAskPhoneNumber": true, "triggerPageInterval": 10, "notifyMissedMe": true, "branding": false, "unavailableAskLastName": true, "notifyAdf": false, "intro": "Let us help you. Enter your details below and click on the talk button to speak to one of our representatives.", "routeRandomly": false, "typeTab": true, "firstNamePrompt": "First name:", "availableFrom": "08:00:00", "notifyAdfCustom": "", "unavailableFirstNamePrompt": "First name:", "customImage": "", "unavailableAskFirstName": true, "mobileOptimized": false, "unavailablePhoneNumberPrompt": "Phone number:", "hiddenInformation": "", "unavailableQuestionPrompt": "Question:", "typeImage": false, "questionPrompt": "Question:", "recordCalls": false, "title": "Talk to us now!", "defaultImage": "", "imageVertical": 50, "triggerInterval": 30, "unavailableEmailAddressPrompt": "Email address:", "showHideButton": true, "unavailableAskEmailAddress": true, "notifyAllAgents": false, "imageSize": 50, "language": "en", "headerTitle": "Talk to us now!", "notifyAllCustom": "", "voicemail": true, "buttonText": "Talk Now!", "days": [false, true, true, true, true, true, false], "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "position": "bottom-right", "routeSimultaneously": true, "notifyMissedCustom": ""}	t	\N	34	\N	widget
2019-05-23 22:45:16.61834+00	2019-05-23 22:45:17.559956+00	123	1d59eaf7-beef-432b-a1be-2bf78cf4d6a1	Golden Goose Widget	{"typeLink": true, "questionPrompt": "What is your question?", "unavailableAskPhoneNumber": true, "agents": [{"fullName": "Herman Vermaak", "contactUsing": "phone", "id": 15}], "triggerPageInterval": 10, "color": "#03a9f4", "branding": false, "unavailableAskLastName": true, "notifyAdf": false, "typeButton": true, "fromNumberType": "priority", "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Complete the form and click on the talk button to speak to one of our representatives.", "imageHorizontal": "50", "routeRandomly": false, "askLastName": true, "typeTab": true, "firstNamePrompt": "Enter your first name", "fromNumberId": 170, "notifyAdfCustom": "", "notifyAllLeads": false, "unavailableButtonText": "Send message", "title": "TALK TO US NOW!", "notifyMissedLeads": true, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Send us a message, and we'll get back to you!.", "routeInSequence": false, "unavailableFirstNamePrompt": "Enter your first name", "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Enter your email address", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Enter your last name", "hiddenInformation": "", "unavailableQuestionPrompt": "What is your question?", "typeImage": false, "addHiddenInformation": false, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "unavailablePhoneNumberPrompt": "Enter your phone number", "widgetType": "widget", "unavailableHeaderTitle": "Send us a messsage!", "defaultImage": "Custom", "imageVertical": "50", "notifyAllAgents": false, "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": "50", "enableNotifications": true, "transparentBackground": false, "askEmailAddress": true, "name": "Golden Goose Widget", "showOnMobile": true, "unavailableEmailAddressPrompt": "Enter your email address", "headerTitle": "Talk to us now!", "alwaysModal": false, "voicemail": true, "buttonText": "Click to talk!", "triggerBasedOnPage": false, "phoneNumberPrompt": "Enter your phone number", "askQuestion": true, "tabWidth": "40", "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "retryRouting": ["0", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Enter your last name", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "", "notifyMissedCustom": ""}	t	170	4	HarryLoadsLLC69@inbound.buyercall.com	widget
\.


--
-- Name: widgets_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('widgets_id_seq', 124, true);


--
-- Name: agent_groups_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
--

ALTER TABLE ONLY agent_groups
    ADD CONSTRAINT agent_groups_pkey PRIMARY KEY (group_id, agent_id);


--
-- Name: agent_schedule_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
--

ALTER TABLE ONLY agent_schedules
    ADD CONSTRAINT agent_schedule_pkey PRIMARY KEY (id);


--
-- Name: agents_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
--

ALTER TABLE ONLY agents
    ADD CONSTRAINT agents_pkey PRIMARY KEY (id);


--
-- Name: api_tokens_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
--

ALTER TABLE ONLY api_tokens
    ADD CONSTRAINT api_tokens_pkey PRIMARY KEY (id);


--
-- Name: audio_url_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
--

ALTER TABLE ONLY audio_urls
    ADD CONSTRAINT audio_url_pkey PRIMARY KEY (id);


--
-- Name: block_number_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
--

ALTER TABLE ONLY block_numbers
    ADD CONSTRAINT block_number_pkey PRIMARY KEY (id);


--
-- Name: contact_notes_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
--

ALTER TABLE ONLY contact_notes
    ADD CONSTRAINT contact_notes_pkey PRIMARY KEY (id);


--
-- Name: contacts_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
--

ALTER TABLE ONLY contacts
    ADD CONSTRAINT contacts_pkey PRIMARY KEY (id);


--
-- Name: coupons_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
--

ALTER TABLE ONLY coupons
    ADD CONSTRAINT coupons_pkey PRIMARY KEY (id);


--
-- Name: credit_cards_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
--

ALTER TABLE ONLY credit_cards
    ADD CONSTRAINT credit_cards_pkey PRIMARY KEY (id);


--
-- Name: external_api_service_provider_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
--

ALTER TABLE ONLY external_api_service_providers
    ADD CONSTRAINT external_api_service_provider_pkey PRIMARY KEY (id);


--
-- Name: external_form_fields_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
--

ALTER TABLE ONLY external_form_fields
    ADD CONSTRAINT external_form_fields_pkey PRIMARY KEY (form_id, field_id);


--
-- Name: external_forms_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
--

ALTER TABLE ONLY external_forms
    ADD CONSTRAINT external_forms_pkey PRIMARY KEY (id);


--
-- Name: form_lead_fields_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
--

ALTER TABLE ONLY form_lead_fields
    ADD CONSTRAINT form_lead_fields_pkey PRIMARY KEY (lead_id, field_id);


--
-- Name: form_leads_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
--

ALTER TABLE ONLY form_leads
    ADD CONSTRAINT form_leads_pkey PRIMARY KEY (id);


--
-- Name: form_logs_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
--

ALTER TABLE ONLY form_logs
    ADD CONSTRAINT form_logs_pkey PRIMARY KEY (id);


--
-- Name: holdmusic_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
--

ALTER TABLE ONLY holdmusic
    ADD CONSTRAINT holdmusic_pkey PRIMARY KEY (id);


--
-- Name: invoices_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
--

ALTER TABLE ONLY invoices
    ADD CONSTRAINT invoices_pkey PRIMARY KEY (id);


--
-- Name: issues_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
--

ALTER TABLE ONLY issues
    ADD CONSTRAINT issues_pkey PRIMARY KEY (id);


--
-- Name: lead_notes_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
--

ALTER TABLE ONLY lead_notes
    ADD CONSTRAINT lead_notes_pkey PRIMARY KEY (id);


--
-- Name: leads_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
--

ALTER TABLE ONLY leads
    ADD CONSTRAINT leads_pkey PRIMARY KEY (id);


--
-- Name: messages_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
--

ALTER TABLE ONLY messages
    ADD CONSTRAINT messages_pkey PRIMARY KEY (id);


--
-- Name: partnership_account_groups_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
--

ALTER TABLE ONLY partnership_account_groups
    ADD CONSTRAINT partnership_account_groups_pkey PRIMARY KEY (id);


--
-- Name: partnership_accounts_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
--

ALTER TABLE ONLY partnership_accounts
    ADD CONSTRAINT partnership_accounts_pkey PRIMARY KEY (id);


--
-- Name: partnerships_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
--

ALTER TABLE ONLY partnerships
    ADD CONSTRAINT partnerships_pkey PRIMARY KEY (id);


--
-- Name: phonenumbers_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
--

ALTER TABLE ONLY phonenumbers
    ADD CONSTRAINT phonenumbers_pkey PRIMARY KEY (id);


--
-- Name: pk_user_reports; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
--

ALTER TABLE ONLY report_user_tie
    ADD CONSTRAINT pk_user_reports PRIMARY KEY (user_id, report_id);


--
-- Name: reports_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
--

ALTER TABLE ONLY reports
    ADD CONSTRAINT reports_pkey PRIMARY KEY (id);


--
-- Name: subscriptions_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
--

ALTER TABLE ONLY subscriptions
    ADD CONSTRAINT subscriptions_pkey PRIMARY KEY (id);


--
-- Name: users_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
--

ALTER TABLE ONLY users
    ADD CONSTRAINT users_pkey PRIMARY KEY (id);


--
-- Name: widget_agents_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
--

ALTER TABLE ONLY widget_agents
    ADD CONSTRAINT widget_agents_pkey PRIMARY KEY (widget_id, agent_id);


--
-- Name: widget_files_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
--

ALTER TABLE ONLY widget_files
    ADD CONSTRAINT widget_files_pkey PRIMARY KEY (guid);


--
-- Name: widgets_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
--

ALTER TABLE ONLY widgets
    ADD CONSTRAINT widgets_pkey PRIMARY KEY (id);


--
-- Name: audio_url_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE UNIQUE INDEX audio_url_index ON audio_urls USING btree (id);


--
-- Name: block_number_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE UNIQUE INDEX block_number_index ON block_numbers USING btree (id);


--
-- Name: contacts_id_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE UNIQUE INDEX contacts_id_index ON contacts USING btree (id);


--
-- Name: external_api_service_provider_id_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE UNIQUE INDEX external_api_service_provider_id_index ON external_api_service_providers USING btree (id);


--
-- Name: ix_agent_schedules_day; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_agent_schedules_day ON agent_schedules USING btree (day);


--
-- Name: ix_agent_schedules_partnership_account_id; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_agent_schedules_partnership_account_id ON agent_schedules USING btree (partnership_account_id);


--
-- Name: ix_agents_firstname; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_agents_firstname ON agents USING btree (firstname);


--
-- Name: ix_agents_partnership_account_id; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_agents_partnership_account_id ON agents USING btree (partnership_account_id);


--
-- Name: ix_agents_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_agents_user_id ON agents USING btree (user_id);


--
-- Name: ix_block_numbers_partnership_accounts_id; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_block_numbers_partnership_accounts_id ON block_numbers USING btree (partnership_accounts_id);


--
-- Name: ix_contact_notes_contact_id; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_contact_notes_contact_id ON contact_notes USING btree (contact_id);


--
-- Name: ix_contact_notes_partnership_account_id; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_contact_notes_partnership_account_id ON contact_notes USING btree (partnership_account_id);


--
-- Name: ix_contact_notes_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_contact_notes_user_id ON contact_notes USING btree (user_id);


--
-- Name: ix_contacts_partnership_account_id; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_contacts_partnership_account_id ON contacts USING btree (partnership_account_id);


--
-- Name: ix_coupons_code; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE UNIQUE INDEX ix_coupons_code ON coupons USING btree (code);


--
-- Name: ix_coupons_duration; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_coupons_duration ON coupons USING btree (duration);


--
-- Name: ix_coupons_max_redemptions; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_coupons_max_redemptions ON coupons USING btree (max_redemptions);


--
-- Name: ix_coupons_redeem_by; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_coupons_redeem_by ON coupons USING btree (redeem_by);


--
-- Name: ix_coupons_times_redeemed; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_coupons_times_redeemed ON coupons USING btree (times_redeemed);


--
-- Name: ix_credit_cards_cc_name; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_credit_cards_cc_name ON credit_cards USING btree (cc_name);


--
-- Name: ix_credit_cards_exp_date; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_credit_cards_exp_date ON credit_cards USING btree (exp_date);


--
-- Name: ix_external_forms_partnership_account_id; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_external_forms_partnership_account_id ON external_forms USING btree (partnership_account_id);


--
-- Name: ix_external_forms_public_id; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_external_forms_public_id ON external_forms USING btree (public_id);


--
-- Name: ix_external_forms_send_auto_sms_inbound_id; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_external_forms_send_auto_sms_inbound_id ON external_forms USING btree (send_auto_sms_inbound_id);


--
-- Name: ix_form_leads_contact_id; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_form_leads_contact_id ON form_leads USING btree (contact_id);


--
-- Name: ix_form_leads_partnership_account_id; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_form_leads_partnership_account_id ON form_leads USING btree (partnership_account_id);


--
-- Name: ix_form_logs_form_id; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_form_logs_form_id ON form_logs USING btree (form_id);


--
-- Name: ix_form_logs_form_lead_id; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_form_logs_form_lead_id ON form_logs USING btree (form_lead_id);


--
-- Name: ix_holdmusic_partnership_account_id; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_holdmusic_partnership_account_id ON holdmusic USING btree (partnership_account_id);


--
-- Name: ix_invoices_credit_card_id; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_invoices_credit_card_id ON invoices USING btree (credit_card_id);


--
-- Name: ix_invoices_partnership_account_id; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_invoices_partnership_account_id ON invoices USING btree (partnership_account_id);


--
-- Name: ix_invoices_partnership_id; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_invoices_partnership_id ON invoices USING btree (partnership_id);


--
-- Name: ix_invoices_plan; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_invoices_plan ON invoices USING btree (plan);


--
-- Name: ix_invoices_receipt_number; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_invoices_receipt_number ON invoices USING btree (receipt_number);


--
-- Name: ix_issues_email; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_issues_email ON issues USING btree (email);


--
-- Name: ix_issues_label; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_issues_label ON issues USING btree (label);


--
-- Name: ix_issues_partnership_account_id; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_issues_partnership_account_id ON issues USING btree (partnership_account_id);


--
-- Name: ix_issues_partnership_id; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_issues_partnership_id ON issues USING btree (partnership_id);


--
-- Name: ix_issues_status; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_issues_status ON issues USING btree (status);


--
-- Name: ix_lead_notes_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_lead_notes_user_id ON lead_notes USING btree (user_id);


--
-- Name: ix_leads_call_sid; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_leads_call_sid ON leads USING btree (call_sid);


--
-- Name: ix_leads_contact_id; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_leads_contact_id ON leads USING btree (contact_id);


--
-- Name: ix_leads_email; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_leads_email ON leads USING btree (email);


--
-- Name: ix_leads_firstname; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_leads_firstname ON leads USING btree (firstname);


--
-- Name: ix_leads_lastname; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_leads_lastname ON leads USING btree (lastname);


--
-- Name: ix_leads_partnership_account_id; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_leads_partnership_account_id ON leads USING btree (partnership_account_id);


--
-- Name: ix_leads_phonenumber; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_leads_phonenumber ON leads USING btree (phonenumber);


--
-- Name: ix_leads_progress_status; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_leads_progress_status ON leads USING btree (progress_status);


--
-- Name: ix_leads_status; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_leads_status ON leads USING btree (status);


--
-- Name: ix_messages_contact_id; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_messages_contact_id ON messages USING btree (contact_id);


--
-- Name: ix_messages_inbound_id; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_messages_inbound_id ON messages USING btree (inbound_id);


--
-- Name: ix_messages_partnership_account_id; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_messages_partnership_account_id ON messages USING btree (partnership_account_id);


--
-- Name: ix_messages_provider; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_messages_provider ON messages USING btree (provider);


--
-- Name: ix_messages_to; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_messages_to ON messages USING btree ("to");


--
-- Name: ix_partnership_accounts_billing_type; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_partnership_accounts_billing_type ON partnership_accounts USING btree (billing_type);


--
-- Name: ix_partnership_accounts_name; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_partnership_accounts_name ON partnership_accounts USING btree (name);


--
-- Name: ix_partnership_accounts_partnership_id; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_partnership_accounts_partnership_id ON partnership_accounts USING btree (partnership_id);


--
-- Name: ix_partnership_accounts_subscription_id; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_partnership_accounts_subscription_id ON partnership_accounts USING btree (subscription_id);


--
-- Name: ix_partnerships_account_invitation_url_token; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_partnerships_account_invitation_url_token ON partnerships USING btree (account_invitation_url_token);


--
-- Name: ix_partnerships_default_billing_type; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_partnerships_default_billing_type ON partnerships USING btree (default_billing_type);


--
-- Name: ix_partnerships_default_provider; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_partnerships_default_provider ON partnerships USING btree (default_provider);


--
-- Name: ix_partnerships_logo; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_partnerships_logo ON partnerships USING btree (logo);


--
-- Name: ix_partnerships_name; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_partnerships_name ON partnerships USING btree (name);


--
-- Name: ix_partnerships_subscription_id; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_partnerships_subscription_id ON partnerships USING btree (subscription_id);


--
-- Name: ix_phonenumbers_partnership_account_id; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_phonenumbers_partnership_account_id ON phonenumbers USING btree (partnership_account_id);


--
-- Name: ix_phonenumbers_provider; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_phonenumbers_provider ON phonenumbers USING btree (provider);


--
-- Name: ix_report_user_tie_partnership_accounts_id; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_report_user_tie_partnership_accounts_id ON report_user_tie USING btree (partnership_accounts_id);


--
-- Name: ix_reports_name; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_reports_name ON reports USING btree (name);


--
-- Name: ix_subscriptions_credit_card_id; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_subscriptions_credit_card_id ON subscriptions USING btree (credit_card_id);


--
-- Name: ix_subscriptions_payment_id; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_subscriptions_payment_id ON subscriptions USING btree (payment_id);


--
-- Name: ix_subscriptions_status; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_subscriptions_status ON subscriptions USING btree (status);


--
-- Name: ix_users_email; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE UNIQUE INDEX ix_users_email ON users USING btree (email);


--
-- Name: ix_users_firstname; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_users_firstname ON users USING btree (firstname);


--
-- Name: ix_users_lastname; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_users_lastname ON users USING btree (lastname);


--
-- Name: ix_users_partnership_account_id; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_users_partnership_account_id ON users USING btree (partnership_account_id);


--
-- Name: ix_users_partnership_id; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_users_partnership_id ON users USING btree (partnership_id);


--
-- Name: ix_users_role; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_users_role ON users USING btree (role);


--
-- Name: ix_users_username; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE UNIQUE INDEX ix_users_username ON users USING btree (username);


--
-- Name: ix_widget_files_partnership_account_id; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_widget_files_partnership_account_id ON widget_files USING btree (partnership_account_id);


--
-- Name: ix_widgets_guid; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE UNIQUE INDEX ix_widgets_guid ON widgets USING btree (guid);


--
-- Name: ix_widgets_name; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_widgets_name ON widgets USING btree (name);


--
-- Name: ix_widgets_partnership_account_id; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE INDEX ix_widgets_partnership_account_id ON widgets USING btree (partnership_account_id);


--
-- Name: messages_id_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE UNIQUE INDEX messages_id_index ON messages USING btree (id);


--
-- Name: partnership_account_groups_id_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
--

CREATE UNIQUE INDEX partnership_account_groups_id_index ON partnership_account_groups USING btree (id);


--
-- Name: agent_groups_agent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY agent_groups
    ADD CONSTRAINT agent_groups_agent_id_fkey FOREIGN KEY (agent_id) REFERENCES agents(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: agent_groups_group_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY agent_groups
    ADD CONSTRAINT agent_groups_group_id_fkey FOREIGN KEY (group_id) REFERENCES agents(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: agent_schedules_partnership_account_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY agent_schedules
    ADD CONSTRAINT agent_schedules_partnership_account_id_fkey FOREIGN KEY (partnership_account_id) REFERENCES partnership_accounts(id);


--
-- Name: agents_partnership_account_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY agents
    ADD CONSTRAINT agents_partnership_account_id_fkey FOREIGN KEY (partnership_account_id) REFERENCES partnership_accounts(id);


--
-- Name: agents_schedule_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY agent_schedules
    ADD CONSTRAINT agents_schedule_id_fkey FOREIGN KEY (agent_id) REFERENCES agents(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: agents_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY agents
    ADD CONSTRAINT agents_user_id_fkey FOREIGN KEY (user_id) REFERENCES users(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: block_numbers_partnership_accounts_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY block_numbers
    ADD CONSTRAINT block_numbers_partnership_accounts_id_fkey FOREIGN KEY (partnership_accounts_id) REFERENCES partnership_accounts(id) ON UPDATE CASCADE ON DELETE SET NULL;


--
-- Name: contact_note_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY contact_notes
    ADD CONSTRAINT contact_note_fkey FOREIGN KEY (contact_id) REFERENCES contacts(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: contact_note_partnership_account_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY contact_notes
    ADD CONSTRAINT contact_note_partnership_account_fkey FOREIGN KEY (partnership_account_id) REFERENCES partnership_accounts(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: contact_notes_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY contact_notes
    ADD CONSTRAINT contact_notes_user_id_fkey FOREIGN KEY (user_id) REFERENCES users(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: contact_partnership_account_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY contacts
    ADD CONSTRAINT contact_partnership_account_fkey FOREIGN KEY (partnership_account_id) REFERENCES partnership_accounts(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: external_api_service_provider_account_tie_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY external_api_service_providers_partnership_account_tie
    ADD CONSTRAINT external_api_service_provider_account_tie_id_fkey FOREIGN KEY (partnership_account_id) REFERENCES partnership_accounts(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: external_api_service_provider_id_tie_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY external_api_service_providers_partnership_account_tie
    ADD CONSTRAINT external_api_service_provider_id_tie_fkey FOREIGN KEY (external_api_service_provider_id) REFERENCES external_api_service_providers(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: external_form_fields_form_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY external_form_fields
    ADD CONSTRAINT external_form_fields_form_id_fkey FOREIGN KEY (form_id) REFERENCES external_forms(id);


--
-- Name: external_form_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY form_logs
    ADD CONSTRAINT external_form_fkey FOREIGN KEY (form_id) REFERENCES external_forms(id);


--
-- Name: external_forms_partnership_account_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY external_forms
    ADD CONSTRAINT external_forms_partnership_account_id_fkey FOREIGN KEY (partnership_account_id) REFERENCES partnership_accounts(id);


--
-- Name: external_forms_routing_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY external_forms
    ADD CONSTRAINT external_forms_routing_id_fkey FOREIGN KEY (routing_id) REFERENCES widgets(id) ON UPDATE CASCADE ON DELETE SET NULL;


--
-- Name: form_lead_contact_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY form_leads
    ADD CONSTRAINT form_lead_contact_fkey FOREIGN KEY (contact_id) REFERENCES contacts(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: form_lead_fields_lead_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY form_lead_fields
    ADD CONSTRAINT form_lead_fields_lead_id_fkey FOREIGN KEY (lead_id) REFERENCES form_leads(id);


--
-- Name: form_leads_form_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY form_leads
    ADD CONSTRAINT form_leads_form_id_fkey FOREIGN KEY (form_id) REFERENCES external_forms(id);


--
-- Name: form_leads_partnership_account_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY form_leads
    ADD CONSTRAINT form_leads_partnership_account_id_fkey FOREIGN KEY (partnership_account_id) REFERENCES partnership_accounts(id);


--
-- Name: form_log_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY form_logs
    ADD CONSTRAINT form_log_fkey FOREIGN KEY (form_lead_id) REFERENCES form_leads(id);


--
-- Name: holdmusic_partnership_account_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY holdmusic
    ADD CONSTRAINT holdmusic_partnership_account_id_fkey FOREIGN KEY (partnership_account_id) REFERENCES partnership_accounts(id);


--
-- Name: invoices_credit_card_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY invoices
    ADD CONSTRAINT invoices_credit_card_id_fkey FOREIGN KEY (credit_card_id) REFERENCES credit_cards(id);


--
-- Name: invoices_partnership_account_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY invoices
    ADD CONSTRAINT invoices_partnership_account_id_fkey FOREIGN KEY (partnership_account_id) REFERENCES partnership_accounts(id);


--
-- Name: invoices_partnership_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY invoices
    ADD CONSTRAINT invoices_partnership_id_fkey FOREIGN KEY (partnership_id) REFERENCES partnerships(id);


--
-- Name: issues_partnership_account_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY issues
    ADD CONSTRAINT issues_partnership_account_id_fkey FOREIGN KEY (partnership_account_id) REFERENCES partnership_accounts(id);


--
-- Name: issues_partnership_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY issues
    ADD CONSTRAINT issues_partnership_id_fkey FOREIGN KEY (partnership_id) REFERENCES partnerships(id);


--
-- Name: lead_contact_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY leads
    ADD CONSTRAINT lead_contact_fkey FOREIGN KEY (contact_id) REFERENCES contacts(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: lead_notes_leads_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY lead_notes
    ADD CONSTRAINT lead_notes_leads_id_fkey FOREIGN KEY (lead_id) REFERENCES leads(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: lead_notes_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY lead_notes
    ADD CONSTRAINT lead_notes_user_id_fkey FOREIGN KEY (user_id) REFERENCES users(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: leads_agent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY leads
    ADD CONSTRAINT leads_agent_id_fkey FOREIGN KEY (agent_id) REFERENCES agents(id) ON UPDATE CASCADE ON DELETE SET NULL;


--
-- Name: leads_inbound_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY leads
    ADD CONSTRAINT leads_inbound_fkey FOREIGN KEY (inbound_id) REFERENCES phonenumbers(id) ON UPDATE CASCADE ON DELETE SET NULL;


--
-- Name: leads_partnership_account_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY leads
    ADD CONSTRAINT leads_partnership_account_id_fkey FOREIGN KEY (partnership_account_id) REFERENCES partnership_accounts(id);


--
-- Name: message_contact_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY messages
    ADD CONSTRAINT message_contact_fkey FOREIGN KEY (contact_id) REFERENCES contacts(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: message_inbound_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY messages
    ADD CONSTRAINT message_inbound_fkey FOREIGN KEY (inbound_id) REFERENCES phonenumbers(id) ON UPDATE CASCADE ON DELETE SET NULL;


--
-- Name: message_inbound_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY external_forms
    ADD CONSTRAINT message_inbound_fkey FOREIGN KEY (send_auto_sms_inbound_id) REFERENCES phonenumbers(id) ON UPDATE CASCADE ON DELETE SET NULL;


--
-- Name: message_partnership_account_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY messages
    ADD CONSTRAINT message_partnership_account_fkey FOREIGN KEY (partnership_account_id) REFERENCES partnership_accounts(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: partnership_account_group_account_tie_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY partnership_account_group_tie
    ADD CONSTRAINT partnership_account_group_account_tie_id_fkey FOREIGN KEY (partnership_account_id) REFERENCES partnership_accounts(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: partnership_account_group_id_tie_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY partnership_account_group_tie
    ADD CONSTRAINT partnership_account_group_id_tie_fkey FOREIGN KEY (partnership_account_group_id) REFERENCES partnership_account_groups(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: partnership_accounts_api_token_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY partnership_accounts
    ADD CONSTRAINT partnership_accounts_api_token_id_fkey FOREIGN KEY (api_token_id) REFERENCES api_tokens(id);


--
-- Name: partnership_accounts_partnership_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY partnership_accounts
    ADD CONSTRAINT partnership_accounts_partnership_id_fkey FOREIGN KEY (partnership_id) REFERENCES partnerships(id);


--
-- Name: partnership_accounts_subscription_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY partnership_accounts
    ADD CONSTRAINT partnership_accounts_subscription_id_fkey FOREIGN KEY (subscription_id) REFERENCES subscriptions(id);


--
-- Name: partnership_api_token_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY partnerships
    ADD CONSTRAINT partnership_api_token_id_fkey FOREIGN KEY (api_token_id) REFERENCES api_tokens(id);


--
-- Name: partnerships_subscription_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY partnerships
    ADD CONSTRAINT partnerships_subscription_id_fkey FOREIGN KEY (subscription_id) REFERENCES subscriptions(id);


--
-- Name: phonenumbers_partnership_account_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY phonenumbers
    ADD CONSTRAINT phonenumbers_partnership_account_id_fkey FOREIGN KEY (partnership_account_id) REFERENCES partnership_accounts(id);


--
-- Name: reports_partnership_accounts_id_tie_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY report_user_tie
    ADD CONSTRAINT reports_partnership_accounts_id_tie_fkey FOREIGN KEY (partnership_accounts_id) REFERENCES partnership_accounts(id) ON DELETE CASCADE;


--
-- Name: reports_user_tie_report_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY report_user_tie
    ADD CONSTRAINT reports_user_tie_report_id_fkey FOREIGN KEY (report_id) REFERENCES reports(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: reports_user_tie_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY report_user_tie
    ADD CONSTRAINT reports_user_tie_user_id_fkey FOREIGN KEY (user_id) REFERENCES users(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: subscriptions_credit_card_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY subscriptions
    ADD CONSTRAINT subscriptions_credit_card_id_fkey FOREIGN KEY (credit_card_id) REFERENCES credit_cards(id);


--
-- Name: users_partnership_account_group_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY users
    ADD CONSTRAINT users_partnership_account_group_id_fkey FOREIGN KEY (partnership_account_group_id) REFERENCES partnership_account_groups(id);


--
-- Name: users_partnership_account_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY users
    ADD CONSTRAINT users_partnership_account_id_fkey FOREIGN KEY (partnership_account_id) REFERENCES partnership_accounts(id);


--
-- Name: users_partnership_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY users
    ADD CONSTRAINT users_partnership_id_fkey FOREIGN KEY (partnership_id) REFERENCES partnerships(id);


--
-- Name: widget_agents_agent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY widget_agents
    ADD CONSTRAINT widget_agents_agent_id_fkey FOREIGN KEY (agent_id) REFERENCES agents(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: widget_agents_widget_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY widget_agents
    ADD CONSTRAINT widget_agents_widget_id_fkey FOREIGN KEY (widget_id) REFERENCES widgets(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: widget_files_partnership_account_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY widget_files
    ADD CONSTRAINT widget_files_partnership_account_id_fkey FOREIGN KEY (partnership_account_id) REFERENCES partnership_accounts(id);


--
-- Name: widgets_partnership_account_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY widgets
    ADD CONSTRAINT widgets_partnership_account_id_fkey FOREIGN KEY (partnership_account_id) REFERENCES partnership_accounts(id);


--
-- Name: widgets_phone_number_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY widgets
    ADD CONSTRAINT widgets_phone_number_id_fkey FOREIGN KEY (phone_number_id) REFERENCES phonenumbers(id) ON UPDATE CASCADE ON DELETE SET NULL;


--
-- Name: public; Type: ACL; Schema: -; Owner: -
--

REVOKE ALL ON SCHEMA public FROM PUBLIC;
REVOKE ALL ON SCHEMA public FROM postgres;
GRANT ALL ON SCHEMA public TO postgres;
GRANT ALL ON SCHEMA public TO PUBLIC;


--
-- PostgreSQL database dump complete
--