diff --git a/.eslintignore b/.eslintignore index f729b9f..55eed62 100644 --- a/.eslintignore +++ b/.eslintignore @@ -4,3 +4,4 @@ lib esm prism.js packages/create-react-admin/templates/** +.github \ No newline at end of file diff --git a/.eslintrc b/.eslintrc.json similarity index 94% rename from .eslintrc rename to .eslintrc.json index 0f80d13..4d73b97 100644 --- a/.eslintrc +++ b/.eslintrc.json @@ -1,4 +1,3 @@ - { "parser": "@typescript-eslint/parser", "parserOptions": { @@ -30,11 +29,11 @@ ], "no-redeclare": "off", "import/no-anonymous-default-export": "off", - "@typescript-eslint/no-redeclare": ["error"], + "@typescript-eslint/no-redeclare": "error", "no-unused-vars": "off", "@typescript-eslint/no-unused-vars": [ "warn", // or "error" - { + { "argsIgnorePattern": "^_", "varsIgnorePattern": "^_", "caughtErrorsIgnorePattern": "^_", diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml new file mode 100644 index 0000000..5f1ba43 --- /dev/null +++ b/.github/workflows/check.yml @@ -0,0 +1,67 @@ +name: 🚀 Deploy +on: + push: + branches: + - main + pull_request: + types: + - opened + - reopened + - synchronize + - ready_for_review + +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} + cancel-in-progress: true + +permissions: + contents: write + checks: write + +jobs: + lint: + name: 🔎 ESLint + runs-on: ubuntu-latest + timeout-minutes: 10 + if: ${{ !github.event.pull_request.draft || github.event_name == 'push' }} + steps: + - name: 📥 Checkout repo + uses: actions/checkout@v4 + + - name: ⚙️ Setup node + uses: actions/setup-node@v4 + with: + node-version: 20 + cache: npm + + - name: 📥 Download deps + run: npm install + + - name: 🔬 Lint + uses: wearerequired/lint-action@v2 + with: + eslint: true + eslint_args: "**/*.{mjs,ts,tsx}" + prettier: true + prettier_args: "--config ./.prettierrc.mjs \"**/*.{js,json,ts,tsx,css,md,html}\"" + + build: + name: 🔨 Build + timeout-minutes: 10 + runs-on: ubuntu-latest + if: ${{ !github.event.pull_request.draft || github.event_name == 'push' }} + steps: + - name: 📥 Checkout repo + uses: actions/checkout@v4 + + - name: ⚙️ Setup node + uses: actions/setup-node@v4 + with: + node-version: 20 + cache: npm + + - name: 📥 Download deps + run: npm install + + - name: 🔨 Build + run: make build diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..1b50008 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,51 @@ +name: 🚀 Deploy +on: + push: + branches: + - main + +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} + cancel-in-progress: true + +jobs: + deploy: + name: 🚀 Deploy + runs-on: ubuntu-latest + timeout-minutes: 10 + + env: + SUPABASE_ACCESS_TOKEN: ${{ secrets.SUPABASE_ACCESS_TOKEN }} + SUPABASE_DB_PASSWORD: ${{ secrets.SUPABASE_DB_PASSWORD }} + SUPABASE_PROJECT_ID: ${{ secrets.SUPABASE_PROJECT_ID }} + + steps: + - name: 📥 Checkout repo + uses: actions/checkout@v4 + + - name: ⚙️ Setup node + uses: actions/setup-node@v4 + with: + node-version: 20 + cache: npm + + - name: ⚙️ Setup supabase + uses: supabase/setup-cli@v1 + + - name: 📥 Download deps + run: npm install + + - name: 🔨 Build + run: make build + + - name: 🔗 Supabase Link + run: npx supabase link --project-ref $SUPABASE_PROJECT_ID + + - name: 📡 Push supabase migrations + run: npx supabase db push + + - name: 📡 Deploy supabase functions + run: npx supabase functions deploy + + - name: 📡 Deploy GitHub pages + run: npm run ghpages:deploy diff --git a/.prettierignore b/.prettierignore index 4d29bce..c7827ed 100644 --- a/.prettierignore +++ b/.prettierignore @@ -23,4 +23,5 @@ cypress/screenshots !.yarn/plugins !.yarn/releases !.yarn/sdks -!.yarn/versions \ No newline at end of file +!.yarn/versions +.github \ No newline at end of file diff --git a/.prettierrc.mjs b/.prettierrc.mjs index d624582..bf30783 100644 --- a/.prettierrc.mjs +++ b/.prettierrc.mjs @@ -11,5 +11,5 @@ export default { singleQuote: true, tabWidth: 4, trailingComma: 'es5', - useTabs: false -} + useTabs: false, +}; diff --git a/README.md b/README.md index 35644f5..617949b 100644 --- a/README.md +++ b/README.md @@ -87,4 +87,16 @@ make prod-start Note: It will apply migrations and deploy edge functions. -You can then access the app via [`http://localhost:3000/`](http://localhost:3000/). \ No newline at end of file +You can then access the app via [`http://localhost:3000/`](http://localhost:3000/). + + +# GitHub Actions + +This project supports github actions for continuous integration and delivery. To enable GitHub actions on this repo, you will +have to create the following secrets for the `deploy` environment: + +```bash +SUPABASE_ACCESS_TOKEN: Your personal access token, can be found at https://supabase.com/dashboard/account/tokens +SUPABASE_DB_PASSWORD: Your supabase database password +SUPABASE_PROJECT_ID: Your supabase project id +``` \ No newline at end of file diff --git a/index.html b/index.html index ac5e949..0bcc416 100644 --- a/index.html +++ b/index.html @@ -1,4 +1,4 @@ - +
diff --git a/makefile b/makefile index 989ccc9..632ba56 100644 --- a/makefile +++ b/makefile @@ -35,3 +35,7 @@ supabase-remote-init: supabase-deploy: npx supabase db push npx supabase functions deploy + +lint: + npm run lint:check + npm run prettier:check \ No newline at end of file diff --git a/package.json b/package.json index 366e42b..b84f8f8 100644 --- a/package.json +++ b/package.json @@ -62,8 +62,10 @@ "dev": "vite --force", "build": "tsc && vite build", "preview": "vite preview", - "lint": "eslint --ext .js,.ts,.tsx \"./src/**/*.{js,ts,tsx}\"", - "prettier": "prettier --config ./.prettierrc.mjs --write --list-different \"src/**/*.{js,json,ts,tsx,css,md}\"", + "lint:apply": "eslint **/*.{mjs,ts,tsx} --fix", + "lint:check": "eslint **/*.{mjs,ts,tsx}", + "prettier:apply": "prettier --config ./.prettierrc.mjs --write --list-different \"**/*.{js,json,ts,tsx,css,md,html}\"", + "prettier:check": "prettier --config ./.prettierrc.mjs --check \"**/*.{js,json,ts,tsx,css,md,html}\"", "ghpages:deploy": "node ./scripts/ghpages-deploy.mjs", "supabase:remote:init": "node ./scripts/supabase-remote-init.mjs" } diff --git a/scripts/seed.ts b/scripts/seed.ts deleted file mode 100644 index 2b740e1..0000000 --- a/scripts/seed.ts +++ /dev/null @@ -1,197 +0,0 @@ -import { createClient } from "@supabase/supabase-js"; -import dotenv from "dotenv"; -import pg from "pg"; - -import generateData from "../src/dataGenerator/index.js"; - -const dataMappers = { - tags: (tag) => ({ - id: tag.id, - name: tag.name, - color: tag.color, - }), - companies: (company) => ({ - id: company.id, - name: company.name, - logo: company.logo, - sector: company.sector, - size: company.size, - linkedIn: company.linkedIn, - website: company.website, - phone_number: company.phone_number, - address: company.address, - zipcode: company.zipcode, - city: company.city, - stateAbbr: company.stateAbbr, - sales_id: company.sales_id, - created_at: company.created_at, - }), - contacts: (contact) => ({ - id: contact.id, - first_name: contact.first_name, - last_name: contact.last_name, - gender: contact.gender, - title: contact.title, - company_id: contact.company_id, - email: contact.email, - phone_number1: contact.phone_number1, - phone_number2: contact.phone_number2, - background: contact.background, - acquisition: contact.acquisition, - avatar: contact.avatar, - first_seen: contact.first_seen, - last_seen: contact.last_seen, - has_newsletter: contact.has_newsletter, - status: contact.status, - tags: contact.tags, - sales_id: contact.sales_id, - }), - contactNotes: (contactNote) => ({ - id: contactNote.id, - contact_id: contactNote.contact_id, - type: contactNote.type, - text: contactNote.text, - date: contactNote.date, - sales_id: contactNote.sales_id, - status: contactNote.status, - }), - deals: (deal) => ({ - id: deal.id, - name: deal.name, - company_id: deal.company_id, - contact_ids: deal.contact_ids, - type: deal.type, - stage: deal.stage, - description: deal.description, - amount: deal.amount, - created_at: deal.created_at, - updated_at: deal.updated_at, - start_at: deal.start_at, - sales_id: deal.sales_id, - index: deal.index, - }), - dealNotes: (dealNote) => ({ - id: dealNote.id, - deal_id: dealNote.deal_id, - type: dealNote.type, - text: dealNote.text, - date: dealNote.date, - sales_id: dealNote.sales_id, - }), - tasks: (task) => ({ - id: task.id, - contact_id: task.contact_id, - type: task.type, - text: task.text, - due_date: task.due_date, - sales_id: task.sales_id, - }), -}; - -const seed = async () => { - dotenv.config(); - if (process.env.VITE_SUPABASE_URL === undefined) { - throw new Error("Please set the VITE_SUPABASE_URL environment variable"); - } - if (process.env.SUPABASE_SERVICE_ROLE_KEY === undefined) { - throw new Error( - "Please set the SUPABASE_SERVICE_ROLE_KEY environment variable" - ); - } - if (process.env.DATABASE_URL === undefined) { - throw new Error("Please set the DATABASE_URL environment variable"); - } - const supabase = createClient( - process.env.VITE_SUPABASE_URL, - process.env.SUPABASE_SERVICE_ROLE_KEY - ); - const data = generateData(); - - for (const sale of data.sales) { - const { data, error } = await supabase.auth.admin.createUser({ - email: sale.email, - password: "Password123", - email_confirm: true, - }); - - if (error) { - console.error(error); - throw new Error(`Failed to create user ${sale.email}`); - } - - const { error: errorProfile } = await supabase.from("sales").insert({ - id: sale.id, - first_name: sale.first_name, - last_name: sale.last_name, - email: sale.email, - user_id: data.user.id, - }); - - if (errorProfile) { - console.error(error); - throw new Error( - `Failed to create user ${sale.email}: ${errorProfile.message}` - ); - } - } - - const resources = [ - "tags", - "companies", - "contacts", - "contactNotes", - "deals", - "dealNotes", - "tasks", - ]; - for (const resource of resources) { - const { error } = await supabase - .from(resource) - .insert(data[resource].map(dataMappers[resource])); - - if (error) { - console.error(error); - throw new Error(`Failed to insert ${resource}: ${error.message}`); - } - } - - const client = new pg.Client({ - connectionString: process.env.DATABASE_URL, - }); - await client.connect(); - await client.query( - `SELECT setval('"sales_id_seq\"', COALESCE((SELECT MAX(id)+1 FROM \"sales\"), 1), false);` - ); - await client.query( - `SELECT setval('"tags_id_seq\"', COALESCE((SELECT MAX(id)+1 FROM \"tags\"), 1), false);` - ); - await client.query( - `SELECT setval('"companies_id_seq\"', COALESCE((SELECT MAX(id)+1 FROM \"companies\"), 1), false);` - ); - await client.query( - `SELECT setval('"contacts_id_seq\"', COALESCE((SELECT MAX(id)+1 FROM \"contacts\"), 1), false);` - ); - await client.query( - `SELECT setval('"contactNotes_id_seq\"', COALESCE((SELECT MAX(id)+1 FROM \"contactNotes\"), 1), false);` - ); - await client.query( - `SELECT setval('"deals_id_seq\"', COALESCE((SELECT MAX(id)+1 FROM \"deals\"), 1), false);` - ); - await client.query( - `SELECT setval('"dealNotes_id_seq\"', COALESCE((SELECT MAX(id)+1 FROM \"dealNotes\"), 1), false);` - ); - await client.query( - `SELECT setval('"tasks_id_seq\"', COALESCE((SELECT MAX(id)+1 FROM \"tasks\"), 1), false);` - ); - await client.end(); -}; - -seed() - .then(() => { - console.log("Populated database successfully"); - process.exit(0); - }) - .catch((error) => { - console.error(error); - process.exit(1); - }); diff --git a/test-data/contacts.csv b/test-data/contacts.csv new file mode 100644 index 0000000..3014424 --- /dev/null +++ b/test-data/contacts.csv @@ -0,0 +1,219 @@ +id,first_name,last_name,gender,title,company_id,company_name,email,phone_number1.number,phone_number1.type,phone_number2.number,phone_number2.type,background,acquisition,avatar,first_seen,last_seen,has_newsletter,status,tags,sales_id,nb_notes,nb_tasks,company,sales +301,Manuel,Goyette,male,Strategic,50,"Kuhn, Koelpin and Osinski",Manuel_Goyette@yahoo.com,264-600-4031,Home,(484) 491-4638 x417,Home,Vel eveniet eum quidem sit.,outbound,https://marmelab.com/posters/avatar-141.jpeg,2024-08-01T02:50:46.854Z,2024-08-01T08:26:19.131Z,true,hot,,0,5,1,"Kuhn, Koelpin and Osinski",Jane Doe +95,Walter,Orn,male,Proactive,39,Armstrong and Sons,Walter31@gmail.com,510.863.7227 x152,Work,(660) 483-0733 x82828,Other,Tenetur aut voluptatibus.,inbound,,2024-06-06T01:31:40.756Z,2024-08-01T08:15:49.206Z,false,hot,,0,3,0,Armstrong and Sons,Jane Doe +36,Bruce,Kohler,male,E-business,53,Baumbach - Gibson,Bruce_Kohler93@hotmail.com,1-589-233-6081,Other,926.743.6909 x102,Home,Delectus asperiores quo molestias explicabo.,inbound,https://marmelab.com/posters/avatar-216.jpeg,2024-07-31T00:25:11.250Z,2024-08-01T07:59:36.658Z,false,hot,,0,3,1,Baumbach - Gibson,Jane Doe +173,Silvia,Anderson,female,Frictionless,26,"Nienow, Kuhic and Wunsch",Silvia16@hotmail.com,1-787-299-9241 x198,Work,876.548.6520,Work,Id sunt veniam sint.,inbound,https://marmelab.com/posters/avatar-171.jpeg,2024-07-20T16:07:08.754Z,2024-08-01T07:59:15.991Z,false,hot,manager,0,3,0,"Nienow, Kuhic and Wunsch",Jane Doe +230,Richard,Durgan,male,User-centric,5,Heidenreich and Sons,Richard75@yahoo.com,471.330.5978 x775,Home,1-691-894-1995,Other,Voluptas in et nemo et explicabo enim.,outbound,,2024-07-26T22:56:45.383Z,2024-08-01T06:50:55.268Z,true,hot,,0,3,3,Heidenreich and Sons,Jane Doe +493,Jayson,Nader,nonbinary,Revolutionary,50,"Kuhn, Koelpin and Osinski",Jayson_Nader52@yahoo.com,510-235-4669 x62908,Home,1-469-870-2877 x07594,Other,Suscipit quia non quia sint architecto ut et aut tempore.,inbound,,2024-07-26T02:26:57.871Z,2024-08-01T05:49:01.947Z,true,hot,vip,0,1,2,"Kuhn, Koelpin and Osinski",Jane Doe +325,Theresa,Von,female,Cutting-edge,50,"Kuhn, Koelpin and Osinski",Theresa24@hotmail.com,712.377.3423,Other,1-230-615-4022 x845,Work,Exercitationem possimus iste.,inbound,,2024-07-31T05:30:39.303Z,2024-08-01T04:39:45.772Z,true,warm,,0,2,1,"Kuhn, Koelpin and Osinski",Jane Doe +83,Nadine,Legros,female,Bricks-and-clicks,45,"Rogahn, Homenick and Ward",Nadine_Legros@hotmail.com,267.410.0156 x2004,Work,383-886-7884,Work,Vel et quam omnis voluptates.,inbound,,2024-05-02T09:57:12.185Z,2024-08-01T03:25:41.274Z,true,cold,"football-fan, musician",0,2,1,"Rogahn, Homenick and Ward",Jane Doe +404,Darren,Jacobi,male,End-to-end,50,"Kuhn, Koelpin and Osinski",Darren1@gmail.com,223-744-2851 x114,Home,(775) 875-0214 x007,Work,Nemo velit ex in non maiores totam et.,outbound,,2024-07-30T01:40:51.321Z,2024-08-01T03:19:26.992Z,false,hot,musician,0,4,2,"Kuhn, Koelpin and Osinski",Jane Doe +391,Delia,Schiller,female,Proactive,50,"Kuhn, Koelpin and Osinski",Delia10@gmail.com,1-889-252-9570,Work,911.512.5897,Other,Quidem non dolores et tempora repudiandae impedit odio suscipit enim.,outbound,,2024-07-27T12:50:27.374Z,2024-08-01T02:04:01.238Z,false,in-contract,,0,5,0,"Kuhn, Koelpin and Osinski",Jane Doe +413,Loretta,Lehner,female,Scalable,50,"Kuhn, Koelpin and Osinski",Loretta.Lehner@gmail.com,1-861-533-9932 x664,Home,1-922-770-2749,Other,Odio asperiores aut omnis.,inbound,,2024-07-28T20:03:26.473Z,2024-08-01T01:18:55.522Z,true,hot,,0,5,1,"Kuhn, Koelpin and Osinski",Jane Doe +279,Doug,Jacobson,male,Rich,50,"Kuhn, Koelpin and Osinski",Doug39@hotmail.com,353.902.4192 x3826,Home,1-585-218-4487 x0468,Work,Voluptatem quo ut voluptatem sint qui.,inbound,,2024-07-29T00:23:50.856Z,2024-07-31T23:54:53.214Z,true,hot,,0,2,0,"Kuhn, Koelpin and Osinski",Jane Doe +228,Betsy,Luettgen,female,User-centric,50,"Kuhn, Koelpin and Osinski",Betsy_Luettgen@hotmail.com,358.712.9121 x452,Other,734-482-5012 x636,Other,Repudiandae doloremque aperiam odit.,inbound,https://marmelab.com/posters/avatar-157.jpeg,2024-07-19T05:21:24.044Z,2024-07-31T23:18:12.396Z,false,hot,holiday-card,0,1,2,"Kuhn, Koelpin and Osinski",Jane Doe +238,Blake,Oberbrunner,male,Ubiquitous,10,"Koch, Carter and Cummings",Blake_Oberbrunner23@yahoo.com,708-953-3201 x46883,Work,325-476-5527,Other,Enim atque ad et exercitationem harum voluptas impedit in maxime.,outbound,https://marmelab.com/posters/avatar-155.jpeg,2024-05-29T14:23:36.700Z,2024-07-31T22:13:40.787Z,false,hot,,0,1,0,"Koch, Carter and Cummings",Jane Doe +468,Yesenia,Miller,nonbinary,Dynamic,24,Kihn LLC,Yesenia0@hotmail.com,877.770.7073 x9174,Home,210.452.0730 x1720,Work,Nam sint quibusdam reprehenderit magnam.,inbound,,2024-05-29T07:54:28.792Z,2024-07-31T22:06:57.366Z,false,in-contract,,0,1,0,Kihn LLC,Jane Doe +153,Adella,Breitenberg,nonbinary,Leading-edge,5,Heidenreich and Sons,Adella88@yahoo.com,(563) 619-2463 x09908,Work,755.946.9998 x516,Work,Unde quia placeat at ratione amet atque.,inbound,,2024-07-23T17:55:20.114Z,2024-07-31T20:55:38.379Z,true,warm,,0,5,0,Heidenreich and Sons,Jane Doe +30,Cecilia,Morissette,female,Mission-critical,24,Kihn LLC,Cecilia.Morissette48@gmail.com,211.206.5533 x1339,Home,398.909.3226 x4638,Home,Minima et quae fugit nostrum molestiae.,outbound,,2024-07-25T08:47:03.481Z,2024-07-31T19:45:31.635Z,true,cold,,0,1,1,Kihn LLC,Jane Doe +125,Rashawn,Lehner,nonbinary,Scalable,26,"Nienow, Kuhic and Wunsch",Rashawn_Lehner@gmail.com,366.210.2843 x3798,Work,1-564-715-9558 x122,Work,Et doloremque optio ipsa iure et.,inbound,https://marmelab.com/posters/avatar-188.jpeg,2024-07-29T03:28:22.607Z,2024-07-31T19:18:51.235Z,false,warm,football-fan,0,4,1,"Nienow, Kuhic and Wunsch",Jane Doe +235,Brennon,Deckow,nonbinary,Holistic,26,"Nienow, Kuhic and Wunsch",Brennon.Deckow95@yahoo.com,653.434.6030,Home,1-531-811-6245 x73550,Work,Impedit assumenda atque eaque est eius in.,outbound,,2024-07-26T22:45:33.553Z,2024-07-31T17:34:05.342Z,false,warm,,0,6,2,"Nienow, Kuhic and Wunsch",Jane Doe +201,Nettie,Murray,female,Frictionless,5,Heidenreich and Sons,Nettie.Murray@hotmail.com,1-706-367-5350 x534,Home,323-450-2788,Work,Ad doloremque voluptas sed.,outbound,https://marmelab.com/posters/avatar-162.jpeg,2024-07-23T10:07:06.575Z,2024-07-31T17:20:34.837Z,false,cold,,0,2,0,Heidenreich and Sons,Jane Doe +382,Cassie,Leffler,nonbinary,Back-end,11,Von Group,Cassie19@hotmail.com,770-662-1762 x523,Other,429.896.0703 x9399,Home,Voluptas quia laudantium distinctio.,outbound,,2024-06-09T19:42:36.791Z,2024-07-31T14:08:10.174Z,false,warm,"manager, musician",0,6,0,Von Group,Jane Doe +320,Brandon,Satterfield,male,Magnetic,33,Rosenbaum - Olson,Brandon87@gmail.com,1-523-542-0743,Work,686.991.5975,Home,Eaque rerum soluta qui dolorem porro sit earum vel.,outbound,,2023-03-19T09:42:38.730Z,2024-07-31T12:36:11.008Z,true,hot,,0,2,0,Rosenbaum - Olson,Jane Doe +196,Shawn,Wyman,male,Scalable,45,"Rogahn, Homenick and Ward",Shawn35@hotmail.com,632-871-6098 x874,Other,789-973-4859 x58771,Work,Quis architecto cupiditate quia dolorem delectus.,outbound,,2024-06-11T04:40:21.093Z,2024-07-31T11:55:12.011Z,true,warm,,0,3,0,"Rogahn, Homenick and Ward",Jane Doe +38,Darren,Romaguera,male,B2B,45,"Rogahn, Homenick and Ward",Darren64@yahoo.com,1-498-811-7702,Home,553.990.2307 x162,Other,Dolorem deserunt sed qui placeat cupiditate vero magni optio.,outbound,,2024-07-27T11:39:51.894Z,2024-07-31T11:00:20.524Z,false,in-contract,,0,3,1,"Rogahn, Homenick and Ward",Jane Doe +388,Warren,Morar,male,24/7,26,"Nienow, Kuhic and Wunsch",Warren_Morar@yahoo.com,(981) 463-8438 x160,Home,(736) 932-6918,Home,Nihil sed voluptatem quis.,inbound,,2024-07-24T02:08:50.462Z,2024-07-31T09:31:44.335Z,false,cold,football-fan,0,2,0,"Nienow, Kuhic and Wunsch",Jane Doe +453,Royal,Senger,nonbinary,User-centric,50,"Kuhn, Koelpin and Osinski",Royal83@gmail.com,522-707-1411,Work,621.656.8395 x508,Work,Id sapiente dolorem quia aut facere corporis harum.,inbound,,2024-07-24T09:28:08.851Z,2024-07-31T09:06:08.901Z,true,warm,,0,6,1,"Kuhn, Koelpin and Osinski",Jane Doe +184,Elijah,Grant,male,World-class,6,Lemke - Thompson,Elijah55@hotmail.com,868.549.6044 x93974,Home,666-895-1099 x36733,Other,Dolore nobis dolor inventore ipsam molestias quidem.,inbound,,2024-05-17T07:23:42.143Z,2024-07-31T08:08:32.034Z,true,in-contract,,0,2,0,Lemke - Thompson,Jane Doe +383,Leonard,Parker,male,Front-end,54,"Howe, Predovic and Hessel",Leonard91@yahoo.com,936.560.7450,Other,239.375.6920 x13709,Work,Quo dolore cumque temporibus perspiciatis officia possimus.,outbound,,2023-03-27T11:51:11.202Z,2024-07-31T07:59:56.340Z,false,hot,,0,1,0,"Howe, Predovic and Hessel",Jane Doe +463,Alberta,Blanda,female,Ubiquitous,54,"Howe, Predovic and Hessel",Alberta.Blanda@yahoo.com,792.889.3148 x003,Other,1-491-563-0457,Work,Sit incidunt totam aliquid in minima quia.,outbound,,2023-03-08T02:54:49.823Z,2024-07-31T04:36:04.776Z,false,cold,football-fan,0,3,0,"Howe, Predovic and Hessel",Jane Doe +234,Wilson,Buckridge,male,Scalable,39,Armstrong and Sons,Wilson.Buckridge@hotmail.com,287-370-1011,Work,(507) 447-0225,Work,Aut ea ex facere.,inbound,,2024-07-24T22:31:04.647Z,2024-07-31T04:22:29.877Z,true,warm,,0,1,3,Armstrong and Sons,Jane Doe +457,Fannie,Mohr,female,Leading-edge,26,"Nienow, Kuhic and Wunsch",Fannie65@hotmail.com,1-704-435-8251,Other,1-787-584-3182,Work,Aut exercitationem deleniti veniam reprehenderit est atque a numquam et.,outbound,https://marmelab.com/posters/avatar-109.jpeg,2024-07-20T20:01:39.001Z,2024-07-31T04:07:50.912Z,true,cold,"holiday-card, vip",0,3,1,"Nienow, Kuhic and Wunsch",Jane Doe +114,Graham,Kautzer,nonbinary,Mission-critical,26,"Nienow, Kuhic and Wunsch",Graham74@gmail.com,882.854.6745,Home,1-244-661-6854 x043,Home,Mollitia libero et aliquam aliquid et corporis.,inbound,https://marmelab.com/posters/avatar-193.jpeg,2024-07-13T04:02:08.537Z,2024-07-31T02:37:20.803Z,false,hot,,0,1,0,"Nienow, Kuhic and Wunsch",Jane Doe +473,Ava,Rutherford,nonbinary,Open-source,26,"Nienow, Kuhic and Wunsch",Ava_Rutherford27@gmail.com,(474) 684-7909 x74564,Home,(906) 346-5858 x378,Work,Recusandae ex voluptate tenetur iusto nulla dignissimos asperiores.,outbound,,2024-07-27T19:49:48.141Z,2024-07-31T00:49:08.986Z,false,cold,,0,3,0,"Nienow, Kuhic and Wunsch",Jane Doe +142,Terrill,Purdy,nonbinary,E-business,50,"Kuhn, Koelpin and Osinski",Terrill.Purdy52@gmail.com,600.582.1843 x3926,Other,(880) 307-1452 x468,Home,Non ab libero aliquam nemo et consequatur.,outbound,https://marmelab.com/posters/avatar-182.jpeg,2024-07-29T08:14:47.574Z,2024-07-31T00:44:26.543Z,false,hot,"musician, vip",0,2,2,"Kuhn, Koelpin and Osinski",Jane Doe +35,Jason,McDermott,male,Scalable,45,"Rogahn, Homenick and Ward",Jason.McDermott@hotmail.com,837.952.8372 x84412,Work,658-766-8340,Home,Quae ducimus dolorem eos excepturi.,inbound,https://marmelab.com/posters/avatar-217.jpeg,2024-07-11T18:11:05.457Z,2024-07-31T00:16:02.590Z,false,warm,,0,5,0,"Rogahn, Homenick and Ward",Jane Doe +305,Lela,Dare,female,Front-end,12,"Price, Macejkovic and Bahringer",Lela_Dare99@yahoo.com,865.578.9727,Work,884.803.6321,Home,Reiciendis eaque quis nihil quibusdam modi a iste.,inbound,,2023-10-14T17:44:10.166Z,2024-07-30T23:03:31.826Z,false,in-contract,,0,2,0,"Price, Macejkovic and Bahringer",Jane Doe +342,George,Goodwin,male,Viral,24,Kihn LLC,George98@yahoo.com,411-832-3705,Work,(802) 396-1900,Home,Neque ducimus aliquid sunt a.,inbound,,2024-05-16T19:00:20.430Z,2024-07-30T20:50:01.032Z,false,cold,"influencer, manager",0,3,1,Kihn LLC,Jane Doe +281,Joanne,Buckridge,female,Frictionless,54,"Howe, Predovic and Hessel",Joanne33@hotmail.com,1-716-507-3034,Home,979.328.5253 x9057,Work,Quas quia incidunt quasi inventore distinctio maxime ducimus.,inbound,,2024-07-25T03:39:37.375Z,2024-07-30T18:37:11.125Z,false,warm,"holiday-card, manager",0,3,1,"Howe, Predovic and Hessel",Jane Doe +316,Caesar,Bruen,nonbinary,Vertical,24,Kihn LLC,Caesar.Bruen@hotmail.com,1-601-611-5008,Home,1-827-208-3557,Work,Ut recusandae quidem vero.,outbound,,2024-04-12T08:31:50.618Z,2024-07-30T17:33:57.492Z,true,in-contract,,0,1,1,Kihn LLC,Jane Doe +65,Barry,Kozey,male,Bricks-and-clicks,45,"Rogahn, Homenick and Ward",Barry.Kozey20@hotmail.com,766.474.2383 x26114,Other,287-461-5210,Other,Expedita similique totam velit.,outbound,,2024-04-11T20:40:34.284Z,2024-07-30T17:02:47.973Z,false,warm,"influencer, musician",0,5,0,"Rogahn, Homenick and Ward",Jane Doe +345,Edyth,Grady,nonbinary,Proactive,4,Corkery - Considine,Edyth_Grady@yahoo.com,(482) 943-1349,Home,986-964-7470,Other,Nam et dignissimos saepe in quidem.,outbound,,2024-05-23T17:40:32.346Z,2024-07-30T12:19:02.286Z,false,cold,manager,0,2,1,Corkery - Considine,Jane Doe +206,Antonia,Torp,female,Clicks-and-mortar,4,Corkery - Considine,Antonia_Torp15@gmail.com,1-384-767-8772,Work,(328) 303-4008 x179,Work,Cumque quo itaque.,outbound,,2024-07-13T18:50:28.876Z,2024-07-30T12:04:54.136Z,false,cold,,0,5,0,Corkery - Considine,Jane Doe +430,Sarina,Nicolas,nonbinary,Integrated,13,Predovic - Cummerata,Sarina48@yahoo.com,1-386-375-6273,Other,766.522.4635 x1808,Home,Sunt voluptatibus eaque eligendi est sit facilis qui aspernatur.,inbound,,2024-06-05T05:32:35.515Z,2024-07-30T08:35:55.207Z,false,hot,musician,0,5,1,Predovic - Cummerata,Jane Doe +482,Justin,Kilback,male,Synergistic,24,Kihn LLC,Justin_Kilback@gmail.com,826-683-4413,Other,(379) 469-5502,Work,Eligendi totam excepturi nam.,inbound,,2024-07-03T18:58:54.407Z,2024-07-30T06:59:10.889Z,false,cold,,0,3,1,Kihn LLC,Jane Doe +309,Josephine,Witting,female,Cross-platform,26,"Nienow, Kuhic and Wunsch",Josephine_Witting@gmail.com,1-956-260-8163 x03506,Work,852-942-2897,Work,Magnam debitis nemo repellat perferendis nam reprehenderit eos.,outbound,,2024-07-22T17:29:36.522Z,2024-07-30T04:14:43.677Z,false,hot,,0,1,1,"Nienow, Kuhic and Wunsch",Jane Doe +443,Sanford,Rowe,nonbinary,24/365,24,Kihn LLC,Sanford31@yahoo.com,(625) 278-6680 x8434,Other,(673) 881-2381,Other,Ducimus pariatur tempora nulla quia sit nesciunt aperiam.,outbound,https://marmelab.com/posters/avatar-113.jpeg,2024-07-02T22:03:00.571Z,2024-07-29T23:40:36.018Z,true,in-contract,holiday-card,0,4,0,Kihn LLC,Jane Doe +152,Vernon,Jast,male,Vertical,26,"Nienow, Kuhic and Wunsch",Vernon.Jast@yahoo.com,760-817-8891 x025,Other,(568) 334-2168,Home,Enim maxime quaerat blanditiis error nihil.,inbound,,2024-07-29T17:28:47.734Z,2024-07-29T17:28:47.734Z,false,in-contract,,0,0,2,"Nienow, Kuhic and Wunsch",Jane Doe +364,Santos,Shanahan,male,End-to-end,4,Corkery - Considine,Santos_Shanahan@hotmail.com,1-639-908-7189,Other,730-273-3097 x847,Other,Impedit vitae sit voluptate suscipit.,outbound,,2024-06-30T20:10:17.527Z,2024-07-29T16:42:54.442Z,false,hot,,0,2,3,Corkery - Considine,Jane Doe +470,Joana,Treutel,nonbinary,Value-added,5,Heidenreich and Sons,Joana.Treutel96@yahoo.com,482-514-3852,Home,(469) 218-5147 x69039,Home,Aut iste quia qui ut voluptatem quae explicabo.,outbound,https://marmelab.com/posters/avatar-105.jpeg,2024-07-17T01:23:22.998Z,2024-07-29T16:29:37.325Z,false,cold,"holiday-card, influencer",0,4,1,Heidenreich and Sons,Jane Doe +381,Erik,Keebler,male,Mission-critical,12,"Price, Macejkovic and Bahringer",Erik10@gmail.com,628.915.3664 x376,Home,(620) 952-6562,Other,Corporis ut quos repudiandae fugiat fugiat.,inbound,,2024-06-19T03:08:50.042Z,2024-07-29T16:16:25.575Z,true,in-contract,football-fan,0,3,2,"Price, Macejkovic and Bahringer",Jane Doe +363,Janet,Bednar,female,Magnetic,39,Armstrong and Sons,Janet63@gmail.com,1-469-903-3956,Other,808.489.6922,Work,Exercitationem et architecto exercitationem aut eligendi et et quis.,inbound,,2024-07-26T04:25:59.780Z,2024-07-29T15:11:47.600Z,true,in-contract,"holiday-card, manager",0,2,0,Armstrong and Sons,Jane Doe +360,Rachel,McClure,female,Seamless,12,"Price, Macejkovic and Bahringer",Rachel.McClure75@hotmail.com,(990) 573-6739,Other,1-603-580-6646,Other,Impedit eum ut velit quo ducimus ipsa et quia iure.,outbound,,2024-03-15T21:09:46.482Z,2024-07-29T14:53:55.776Z,false,cold,vip,0,4,0,"Price, Macejkovic and Bahringer",Jane Doe +41,Lester,Hoppe,male,Next-generation,54,"Howe, Predovic and Hessel",Lester_Hoppe55@gmail.com,1-201-860-2376,Work,1-548-239-5405,Other,Tempore repellendus quia sunt qui repudiandae iure sint voluptas.,outbound,,2023-10-13T07:52:57.198Z,2024-07-29T05:26:22.773Z,true,cold,football-fan,0,10,1,"Howe, Predovic and Hessel",Jane Doe +366,Laverna,Durgan,nonbinary,Plug-and-play,5,Heidenreich and Sons,Laverna24@hotmail.com,501.794.4927 x274,Work,981-691-0484 x3719,Other,Labore id est libero tempora sequi debitis libero.,outbound,,2024-06-26T07:24:28.518Z,2024-07-29T05:03:03.571Z,false,cold,,0,1,1,Heidenreich and Sons,Jane Doe +33,Faye,Cassin,female,Next-generation,13,Predovic - Cummerata,Faye_Cassin96@yahoo.com,881.972.6582 x3246,Work,902.536.9724 x362,Other,Voluptatem et harum dicta sint impedit aut.,outbound,,2024-06-04T23:14:55.733Z,2024-07-29T04:15:33.794Z,false,warm,,0,3,1,Predovic - Cummerata,Jane Doe +341,Sylvester,Graham,male,Frictionless,26,"Nienow, Kuhic and Wunsch",Sylvester17@yahoo.com,669-485-4158,Work,868-303-3191,Work,Temporibus sint voluptatem qui autem et.,inbound,,2024-07-17T10:03:58.970Z,2024-07-29T04:12:42.298Z,false,hot,,0,2,1,"Nienow, Kuhic and Wunsch",Jane Doe +494,Kayley,Kling,nonbinary,User-centric,24,Kihn LLC,Kayley.Kling@gmail.com,617-373-1742,Home,(590) 396-2739 x041,Work,Qui modi ipsam omnis deserunt.,outbound,,2024-06-30T08:19:09.532Z,2024-07-29T04:02:00.145Z,false,hot,musician,0,4,0,Kihn LLC,Jane Doe +397,Garett,Lockman,nonbinary,Bricks-and-clicks,26,"Nienow, Kuhic and Wunsch",Garett.Lockman@yahoo.com,1-245-651-6852,Other,(689) 446-2954 x6940,Other,Aut debitis excepturi.,outbound,,2024-07-26T02:35:14.581Z,2024-07-29T01:42:07.599Z,false,warm,,0,1,1,"Nienow, Kuhic and Wunsch",Jane Doe +445,Javier,Abernathy,male,Turn-key,4,Corkery - Considine,Javier.Abernathy@yahoo.com,875.713.7984,Other,1-889-554-9553 x2828,Home,Et deserunt blanditiis.,outbound,,2024-07-10T01:28:34.791Z,2024-07-29T01:05:41.164Z,true,in-contract,,0,2,0,Corkery - Considine,Jane Doe +223,Floyd,Rutherford,nonbinary,Granular,50,"Kuhn, Koelpin and Osinski",Floyd70@gmail.com,908.549.3821 x648,Other,600.411.3352 x01538,Home,Nam quibusdam est assumenda occaecati.,outbound,,2024-07-20T02:15:45.693Z,2024-07-28T19:57:28.005Z,true,in-contract,"football-fan, manager",0,3,1,"Kuhn, Koelpin and Osinski",Jane Doe +496,Stella,Christiansen,female,Seamless,24,Kihn LLC,Stella89@hotmail.com,880.729.4930,Work,(817) 566-2258 x45377,Other,Qui rerum voluptatem ratione vel.,outbound,,2024-04-16T02:55:50.801Z,2024-07-28T18:38:23.163Z,true,in-contract,,0,3,0,Kihn LLC,Jane Doe +218,Colleen,Aufderhar,female,User-centric,45,"Rogahn, Homenick and Ward",Colleen_Aufderhar@yahoo.com,317-466-1270,Other,1-927-507-8388 x58761,Work,Ab quos ut.,outbound,,2024-02-06T21:03:24.910Z,2024-07-28T16:03:15.729Z,false,hot,,0,4,0,"Rogahn, Homenick and Ward",Jane Doe +272,Aubree,Langosh,nonbinary,Back-end,39,Armstrong and Sons,Aubree_Langosh@hotmail.com,778.389.8658 x5505,Other,643.850.7603 x5224,Home,Ut nemo dolores quidem.,outbound,https://marmelab.com/posters/avatar-147.jpeg,2024-04-17T14:17:15.876Z,2024-07-28T15:54:28.636Z,false,cold,football-fan,0,2,0,Armstrong and Sons,Jane Doe +219,Rudolph,Lindgren,nonbinary,Global,45,"Rogahn, Homenick and Ward",Rudolph.Lindgren@hotmail.com,312.929.7151 x44021,Home,777-634-6611 x945,Other,Consequatur ipsum sapiente.,outbound,,2024-07-08T05:00:28.480Z,2024-07-28T11:32:32.790Z,true,cold,vip,0,3,0,"Rogahn, Homenick and Ward",Jane Doe +428,Raegan,Jones,nonbinary,Next-generation,24,Kihn LLC,Raegan23@gmail.com,307.443.6853,Work,788.269.9203,Home,Sit itaque magni quibusdam quis nihil vitae illum illum.,outbound,https://marmelab.com/posters/avatar-116.jpeg,2024-06-22T02:25:31.482Z,2024-07-28T06:36:11.918Z,false,in-contract,,0,3,1,Kihn LLC,Jane Doe +490,Esther,Prosacco,nonbinary,Real-time,24,Kihn LLC,Esther_Prosacco@hotmail.com,1-338-328-8918 x088,Home,403-924-5936 x784,Work,Repellat et natus minima qui cumque.,outbound,,2024-07-06T19:55:39.731Z,2024-07-28T02:05:25.435Z,false,warm,,0,5,1,Kihn LLC,Jane Doe +189,Florence,Koelpin,female,Enterprise,24,Kihn LLC,Florence_Koelpin24@gmail.com,983.529.2433 x118,Home,934.478.7285 x060,Work,Earum facilis veniam delectus ut aspernatur dolor sequi aspernatur.,inbound,,2024-05-02T22:40:20.285Z,2024-07-28T01:46:21.928Z,true,cold,,0,3,0,Kihn LLC,Jane Doe +202,Estelle,Dooley,female,Collaborative,50,"Kuhn, Koelpin and Osinski",Estelle19@hotmail.com,1-245-979-0615 x223,Work,(342) 669-5241 x1139,Other,Quia ullam non repellat ut corporis occaecati voluptatibus soluta.,outbound,,2024-07-22T07:18:54.726Z,2024-07-27T20:46:05.017Z,false,warm,,0,2,1,"Kuhn, Koelpin and Osinski",Jane Doe +319,Green,Ratke,nonbinary,Distributed,4,Corkery - Considine,Green_Ratke@gmail.com,723-634-5078 x0070,Other,(817) 515-7064 x0995,Work,Dicta labore ducimus odit facere quae est reprehenderit aut.,inbound,,2023-10-30T08:00:01.794Z,2024-07-27T19:36:15.050Z,false,in-contract,"football-fan, vip",0,5,2,Corkery - Considine,Jane Doe +217,Cory,Wolf,male,Sticky,4,Corkery - Considine,Cory22@gmail.com,829-839-3002 x878,Work,(754) 425-8084 x1683,Other,Nemo veritatis quas et provident.,outbound,,2024-07-05T10:17:24.984Z,2024-07-27T17:52:26.021Z,true,hot,,0,2,0,Corkery - Considine,Jane Doe +291,Jean,Torphy,male,Transparent,26,"Nienow, Kuhic and Wunsch",Jean26@hotmail.com,(348) 454-5620,Work,1-433-227-4651 x861,Home,Veritatis ullam neque.,inbound,,2024-07-12T22:46:40.425Z,2024-07-27T15:20:57.631Z,true,in-contract,"holiday-card, manager",0,2,0,"Nienow, Kuhic and Wunsch",Jane Doe +354,Sherri,Hartmann,female,Sexy,13,Predovic - Cummerata,Sherri.Hartmann@hotmail.com,934.809.1815 x263,Home,1-420-207-4383 x71296,Other,Et rerum corrupti perspiciatis a et adipisci.,inbound,https://marmelab.com/posters/avatar-130.jpeg,2024-05-19T09:52:37.332Z,2024-07-27T14:23:05.201Z,false,warm,vip,0,1,1,Predovic - Cummerata,Jane Doe +205,Loren,Simonis,male,Open-source,35,Lynch and Sons,Loren_Simonis87@hotmail.com,1-957-874-4285 x0097,Home,1-483-291-9596,Work,Natus distinctio sequi incidunt ut occaecati quia suscipit numquam earum.,inbound,,2024-02-06T09:03:41.836Z,2024-07-27T14:15:29.941Z,false,cold,"influencer, musician",0,2,0,Lynch and Sons,Jane Doe +487,Earl,O'Kon,male,Compelling,4,Corkery - Considine,Earl_OKon@hotmail.com,341-349-2838 x93055,Home,297-944-0608 x6020,Work,Ut excepturi dicta voluptas eum eveniet animi accusamus.,outbound,,2024-04-25T13:44:37.132Z,2024-07-27T12:02:48.284Z,false,hot,,0,3,2,Corkery - Considine,Jane Doe +60,Ruben,Gislason,male,Cutting-edge,35,Lynch and Sons,Ruben_Gislason5@yahoo.com,789-417-9018 x45862,Work,(202) 414-4437 x27507,Home,Cumque odit magnam distinctio.,inbound,,2024-07-10T02:45:45.668Z,2024-07-27T11:36:50.083Z,true,hot,manager,0,3,0,Lynch and Sons,Jane Doe +20,Kathleen,Legros,nonbinary,World-class,15,Stokes and Sons,Kathleen.Legros25@yahoo.com,799.278.5700 x81994,Other,1-521-851-2244,Home,Laboriosam non eos voluptas.,inbound,https://marmelab.com/posters/avatar-219.jpeg,2024-07-18T02:17:49.449Z,2024-07-27T06:18:51.782Z,true,cold,musician,0,3,0,Stokes and Sons,Jane Doe +124,Whitney,Lueilwitz,female,Out-of-the-box,10,"Koch, Carter and Cummings",Whitney79@yahoo.com,1-801-947-5510 x4444,Other,1-986-252-4317 x8446,Other,Dolores dolorem libero recusandae id asperiores commodi.,outbound,,2024-01-17T16:48:33.687Z,2024-07-27T05:56:37.326Z,false,warm,,0,4,0,"Koch, Carter and Cummings",Jane Doe +91,Rita,Hahn,nonbinary,Impactful,50,"Kuhn, Koelpin and Osinski",Rita_Hahn@yahoo.com,404-771-3527 x20705,Work,768.442.9908 x4241,Home,Qui vel quia a esse iusto saepe.,outbound,,2024-07-22T18:37:15.654Z,2024-07-27T01:50:26.835Z,false,warm,,0,2,2,"Kuhn, Koelpin and Osinski",Jane Doe +427,Philip,Gerlach,nonbinary,Leading-edge,11,Von Group,Philip.Gerlach1@gmail.com,1-314-570-0435 x1881,Other,1-783-709-2219,Home,Libero omnis totam voluptas placeat sed impedit harum suscipit placeat.,outbound,,2024-04-28T19:24:54.891Z,2024-07-27T01:01:23.329Z,true,in-contract,,0,3,1,Von Group,Jane Doe +190,Valentin,Dickens,nonbinary,Out-of-the-box,5,Heidenreich and Sons,Valentin37@hotmail.com,(523) 615-3053,Other,943-366-5570,Work,Saepe voluptatem praesentium magni.,outbound,,2024-07-13T14:21:40.007Z,2024-07-26T22:42:11.731Z,false,in-contract,holiday-card,0,2,0,Heidenreich and Sons,Jane Doe +116,Esther,Hintz,female,Viral,53,Baumbach - Gibson,Esther30@gmail.com,1-632-362-3981 x422,Other,627-759-7061 x95227,Other,Consequatur doloremque aliquam exercitationem et asperiores est et.,outbound,https://marmelab.com/posters/avatar-192.jpeg,2024-07-13T19:01:09.830Z,2024-07-26T22:07:39.307Z,false,cold,"influencer, manager",0,2,2,Baumbach - Gibson,Jane Doe +170,Estell,Walker,nonbinary,Vertical,24,Kihn LLC,Estell13@yahoo.com,1-865-535-1972 x681,Work,817.999.3094 x41851,Work,Eius voluptatem amet sint recusandae sint repudiandae aut.,outbound,https://marmelab.com/posters/avatar-173.jpeg,2024-05-24T06:48:58.084Z,2024-07-26T11:09:37.127Z,false,hot,,0,5,0,Kihn LLC,Jane Doe +244,Stacey,Padberg,female,Extensible,4,Corkery - Considine,Stacey_Padberg@hotmail.com,523-551-7163 x0091,Other,285-231-0961 x5177,Work,Et nostrum sit ea non quas.,outbound,,2024-07-05T20:07:46.108Z,2024-07-26T10:08:33.440Z,true,hot,,0,5,1,Corkery - Considine,Jane Doe +75,Raul,Stiedemann,nonbinary,Seamless,4,Corkery - Considine,Raul.Stiedemann78@gmail.com,(812) 303-7139,Home,691.565.1767 x433,Home,Voluptatem commodi nihil et.,inbound,,2024-06-14T17:19:20.509Z,2024-07-26T08:21:11.000Z,true,hot,,0,1,0,Corkery - Considine,Jane Doe +200,Johnathan,Corkery,male,Best-of-breed,39,Armstrong and Sons,Johnathan.Corkery43@yahoo.com,430.891.7151 x7471,Home,290.492.7512,Home,Voluptatem in et dolorem cumque rerum est in.,inbound,,2024-07-26T04:58:49.997Z,2024-07-26T04:58:49.997Z,false,cold,manager,0,0,1,Armstrong and Sons,Jane Doe +322,Shelly,Sipes,female,Dynamic,54,"Howe, Predovic and Hessel",Shelly.Sipes@gmail.com,990-804-0920,Other,803-200-6314,Work,Sapiente numquam aliquid est.,inbound,,2024-05-22T03:35:04.617Z,2024-07-26T01:30:07.143Z,true,hot,,0,2,0,"Howe, Predovic and Hessel",Jane Doe +144,Tammy,Nicolas,female,Visionary,45,"Rogahn, Homenick and Ward",Tammy.Nicolas@gmail.com,394-974-2678,Home,446-721-8313 x6193,Other,Error temporibus maxime et earum assumenda reprehenderit modi minus ut.,outbound,,2024-06-04T03:37:28.411Z,2024-07-26T00:48:21.154Z,true,hot,vip,0,2,0,"Rogahn, Homenick and Ward",Jane Doe +454,Mavis,Lueilwitz,nonbinary,Plug-and-play,13,Predovic - Cummerata,Mavis1@gmail.com,505.459.1128,Other,329-569-0055,Other,Natus voluptate repellat quidem placeat consequatur voluptate a.,outbound,https://marmelab.com/posters/avatar-111.jpeg,2024-06-06T10:18:28.312Z,2024-07-25T22:30:02.886Z,false,cold,,0,3,0,Predovic - Cummerata,Jane Doe +409,Johnnie,Durgan,female,Virtual,24,Kihn LLC,Johnnie_Durgan@hotmail.com,538.836.7783,Work,1-466-315-3453,Other,Ut dolores temporibus eius ratione ipsam unde aut laudantium.,inbound,,2024-05-19T02:47:33.672Z,2024-07-25T20:30:18.307Z,true,in-contract,,0,4,0,Kihn LLC,Jane Doe +455,Lamar,Hackett,male,Holistic,39,Armstrong and Sons,Lamar.Hackett97@hotmail.com,1-374-289-9162,Home,202-491-1223 x9313,Work,Ut beatae dolores vitae.,outbound,,2024-05-05T08:42:22.199Z,2024-07-25T19:21:37.058Z,false,warm,"holiday-card, vip",0,2,2,Armstrong and Sons,Jane Doe +423,Lesley,Swaniawski,nonbinary,Robust,24,Kihn LLC,Lesley.Swaniawski@hotmail.com,(574) 963-6279,Other,1-934-265-2769 x36317,Other,Reiciendis ut esse.,inbound,https://marmelab.com/posters/avatar-117.jpeg,2024-05-15T04:27:22.910Z,2024-07-25T14:20:25.811Z,true,warm,"football-fan, manager",0,2,1,Kihn LLC,Jane Doe +323,Flora,Schaefer,female,Clicks-and-mortar,5,Heidenreich and Sons,Flora.Schaefer@yahoo.com,1-505-886-6940,Other,737-583-3990,Other,Libero eveniet dolorem animi molestiae modi quia et sed.,inbound,https://marmelab.com/posters/avatar-138.jpeg,2024-06-16T17:33:08.145Z,2024-07-25T13:00:20.281Z,true,warm,,0,2,0,Heidenreich and Sons,Jane Doe +344,Lee,Beahan,nonbinary,Robust,13,Predovic - Cummerata,Lee_Beahan@gmail.com,433.549.5633 x5812,Home,777.656.6622 x545,Work,Hic sequi animi minus odio culpa ut dignissimos.,inbound,,2024-06-16T16:13:34.184Z,2024-07-25T08:23:16.357Z,false,cold,,0,4,2,Predovic - Cummerata,Jane Doe +474,Regina,Beer,female,Magnetic,4,Corkery - Considine,Regina.Beer22@gmail.com,(394) 423-2426 x046,Home,780.545.3409 x109,Other,Dicta tempora nobis sequi et ut.,outbound,,2024-04-23T14:19:16.925Z,2024-07-25T05:33:29.656Z,false,hot,"manager, vip",0,3,2,Corkery - Considine,Jane Doe +498,Geraldine,Boehm,nonbinary,Out-of-the-box,45,"Rogahn, Homenick and Ward",Geraldine_Boehm75@yahoo.com,519-479-8676,Home,523-578-8717 x20269,Home,Est consequatur nesciunt est facilis aperiam dolorem ut.,outbound,https://marmelab.com/posters/avatar-101.jpeg,2024-04-26T13:23:03.908Z,2024-07-25T03:05:53.767Z,true,hot,,0,4,0,"Rogahn, Homenick and Ward",Jane Doe +68,Meta,Hagenes,nonbinary,Plug-and-play,39,Armstrong and Sons,Meta_Hagenes@hotmail.com,456-512-8435 x2073,Home,619.628.8267,Other,Omnis aut perferendis vero enim.,outbound,,2024-07-02T17:27:07.894Z,2024-07-24T13:44:56.715Z,false,in-contract,manager,0,3,0,Armstrong and Sons,Jane Doe +229,Velma,Luettgen,female,Plug-and-play,12,"Price, Macejkovic and Bahringer",Velma.Luettgen@yahoo.com,1-294-792-4668 x92760,Other,253.249.2109 x46358,Other,Est necessitatibus ea vel iste ab quaerat.,inbound,,2023-11-28T22:20:17.288Z,2024-07-24T13:39:31.845Z,false,cold,,0,2,0,"Price, Macejkovic and Bahringer",Jane Doe +486,Ernie,Orn,nonbinary,Virtual,24,Kihn LLC,Ernie_Orn@gmail.com,969.760.9671,Home,941.205.9967,Other,Et porro nihil dolores nihil.,inbound,,2024-06-20T23:22:15.510Z,2024-07-24T13:22:49.547Z,false,warm,football-fan,0,3,1,Kihn LLC,Jane Doe +303,Kiara,Simonis,nonbinary,Cross-media,5,Heidenreich and Sons,Kiara_Simonis80@gmail.com,(241) 561-1516,Other,592-545-4738 x72580,Other,Quidem aliquam molestiae.,outbound,,2024-07-15T12:24:39.092Z,2024-07-24T12:04:53.681Z,false,cold,"football-fan, vip",0,3,1,Heidenreich and Sons,Jane Doe +385,Gabriel,Kuhic,nonbinary,B2B,13,Predovic - Cummerata,Gabriel15@gmail.com,748-650-9161 x1023,Work,(357) 534-7163 x56549,Work,Libero ut reiciendis aut qui reiciendis numquam quos explicabo nulla.,inbound,,2024-04-22T14:52:54.100Z,2024-07-24T11:05:47.631Z,true,in-contract,influencer,0,4,1,Predovic - Cummerata,Jane Doe +155,Jim,Kilback,male,Clicks-and-mortar,35,Lynch and Sons,Jim.Kilback15@hotmail.com,516-977-5490 x8289,Other,456-664-6888,Work,Accusamus iste omnis numquam dicta et odio pariatur molestias repellendus.,outbound,https://marmelab.com/posters/avatar-179.jpeg,2024-02-28T05:30:33.289Z,2024-07-24T09:41:25.022Z,false,in-contract,holiday-card,0,1,0,Lynch and Sons,Jane Doe +442,Shayna,Block,nonbinary,Collaborative,12,"Price, Macejkovic and Bahringer",Shayna.Block@gmail.com,808.832.5267,Work,352.664.7411 x978,Work,Dolorum optio modi.,inbound,https://marmelab.com/posters/avatar-114.jpeg,2024-02-28T20:37:44.728Z,2024-07-24T09:34:18.071Z,false,cold,"influencer, manager",0,6,0,"Price, Macejkovic and Bahringer",Jane Doe +417,Jamie,Mann,female,Compelling,4,Corkery - Considine,Jamie72@yahoo.com,1-408-741-6426,Home,1-576-382-3800 x501,Other,Consequatur id aspernatur sit et quia quasi doloribus hic quia.,outbound,https://marmelab.com/posters/avatar-120.jpeg,2024-06-16T19:07:33.633Z,2024-07-23T19:18:00.034Z,true,in-contract,,0,1,1,Corkery - Considine,Jane Doe +350,Celia,Murphy,female,B2C,54,"Howe, Predovic and Hessel",Celia_Murphy@hotmail.com,(999) 845-0411,Home,888-454-1419,Other,Minus sequi et laudantium molestiae quia odio.,inbound,,2024-06-10T23:30:22.926Z,2024-07-23T03:55:55.408Z,false,cold,,0,3,0,"Howe, Predovic and Hessel",Jane Doe +273,Katrina,Johnson,female,Viral,5,Heidenreich and Sons,Katrina.Johnson78@gmail.com,277-371-6605 x2207,Home,786.244.8282,Work,Vitae aut id quia.,inbound,,2024-06-29T22:13:31.817Z,2024-07-22T08:09:29.526Z,false,warm,musician,0,1,0,Heidenreich and Sons,Jane Doe +476,Matthew,Corwin,male,Back-end,10,"Koch, Carter and Cummings",Matthew.Corwin34@hotmail.com,554.792.5444 x5533,Other,989.711.6119 x714,Other,Atque ut et.,outbound,https://marmelab.com/posters/avatar-104.jpeg,2024-04-06T03:18:24.186Z,2024-07-21T21:39:31.999Z,false,cold,,0,6,1,"Koch, Carter and Cummings",Jane Doe +416,Jacquelyn,Ortiz,nonbinary,Visionary,39,Armstrong and Sons,Jacquelyn_Ortiz13@yahoo.com,1-902-602-6441 x5904,Work,593.721.7942,Other,Nam ut odio numquam recusandae.,outbound,,2024-02-11T04:28:34.720Z,2024-07-21T12:32:46.992Z,false,warm,vip,0,5,3,Armstrong and Sons,Jane Doe +146,Dallas,Shields,male,Rich,45,"Rogahn, Homenick and Ward",Dallas_Shields76@hotmail.com,857.898.1573 x26977,Other,941.727.8174 x4314,Work,Harum deleniti modi.,outbound,https://marmelab.com/posters/avatar-181.jpeg,2024-05-30T23:01:12.871Z,2024-07-21T10:52:47.025Z,false,warm,,0,1,0,"Rogahn, Homenick and Ward",Jane Doe +100,Gustavo,Hane,male,Granular,53,Baumbach - Gibson,Gustavo64@yahoo.com,439-457-1512 x98118,Work,1-995-706-1086 x3352,Home,Dolor voluptas pariatur dolorum dolor occaecati eveniet quos.,inbound,,2024-05-23T03:18:06.960Z,2024-07-21T05:23:09.125Z,true,hot,"holiday-card, influencer",0,2,0,Baumbach - Gibson,Jane Doe +138,Amos,Reynolds,male,Interactive,53,Baumbach - Gibson,Amos_Reynolds@gmail.com,1-409-901-8208 x9902,Work,(574) 914-6034 x49805,Work,Totam ut velit quas.,inbound,,2024-04-21T16:56:11.560Z,2024-07-20T23:51:10.485Z,false,in-contract,football-fan,0,3,0,Baumbach - Gibson,Jane Doe +137,Morgan,Homenick,nonbinary,Magnetic,45,"Rogahn, Homenick and Ward",Morgan_Homenick26@yahoo.com,274-900-1698,Work,602-233-4579 x2940,Home,Vitae quod non facere hic hic vitae dolor.,outbound,https://marmelab.com/posters/avatar-183.jpeg,2024-07-17T07:53:14.394Z,2024-07-20T23:09:58.997Z,false,in-contract,,0,1,1,"Rogahn, Homenick and Ward",Jane Doe +441,Ivan,Feil,male,Cross-media,54,"Howe, Predovic and Hessel",Ivan0@yahoo.com,1-328-571-6984 x9394,Home,1-236-245-3831,Home,Architecto soluta veritatis dolores quis.,inbound,,2024-03-15T13:55:48.602Z,2024-07-20T20:29:35.221Z,false,in-contract,"football-fan, manager",0,2,1,"Howe, Predovic and Hessel",Jane Doe +469,Don,Wolff,male,Scalable,45,"Rogahn, Homenick and Ward",Don68@yahoo.com,834.204.3800 x5245,Other,203-284-4190,Other,Quo provident occaecati.,inbound,https://marmelab.com/posters/avatar-106.jpeg,2024-04-23T07:28:28.566Z,2024-07-20T09:38:47.454Z,false,in-contract,manager,0,2,1,"Rogahn, Homenick and Ward",Jane Doe +268,Gustavo,Moore,male,Scalable,24,Kihn LLC,Gustavo79@gmail.com,784-592-0583,Home,(795) 631-2637 x18341,Home,Aut vel autem.,outbound,,2024-06-18T13:22:49.227Z,2024-07-19T17:42:05.511Z,true,hot,,0,2,0,Kihn LLC,Jane Doe +296,Regina,Lind,female,Enterprise,12,"Price, Macejkovic and Bahringer",Regina76@hotmail.com,1-961-943-7820,Home,1-796-504-0993,Other,Dolores suscipit hic porro atque nostrum.,inbound,,2024-02-29T01:36:07.878Z,2024-07-19T12:45:58.386Z,false,warm,,0,1,2,"Price, Macejkovic and Bahringer",Jane Doe +436,Marco,Harvey,male,Bleeding-edge,5,Heidenreich and Sons,Marco56@hotmail.com,1-616-690-1832,Work,267-393-9368 x84230,Home,Quae autem adipisci.,inbound,,2024-07-19T11:40:04.301Z,2024-07-19T11:40:04.301Z,true,hot,influencer,0,0,0,Heidenreich and Sons,Jane Doe +101,Loren,McClure,male,Wireless,12,"Price, Macejkovic and Bahringer",Loren.McClure@yahoo.com,619-393-2797 x9494,Other,1-807-255-3167 x69104,Other,Vel quas incidunt.,inbound,https://marmelab.com/posters/avatar-199.jpeg,2023-09-13T21:07:05.299Z,2024-07-18T08:37:53.542Z,false,in-contract,"holiday-card, vip",0,2,1,"Price, Macejkovic and Bahringer",Jane Doe +40,Lisa,Wisozk,female,Magnetic,45,"Rogahn, Homenick and Ward",Lisa.Wisozk@gmail.com,359.497.5157 x00307,Other,(501) 413-5674,Home,Aut quisquam error sint odio quam neque vero sunt excepturi.,inbound,,2024-01-16T02:13:18.985Z,2024-07-17T20:28:26.755Z,true,cold,football-fan,0,1,1,"Rogahn, Homenick and Ward",Jane Doe +375,Earnest,Koss,male,B2B,4,Corkery - Considine,Earnest_Koss@gmail.com,524-241-0197,Home,868-381-4660,Work,Est ut cum sunt aut facilis sed rerum dolor aut.,outbound,,2024-03-17T20:53:56.165Z,2024-07-17T10:13:17.073Z,false,cold,"football-fan, vip",0,2,3,Corkery - Considine,Jane Doe +174,Jaime,Goodwin,male,Cutting-edge,6,Lemke - Thompson,Jaime_Goodwin24@yahoo.com,286-728-9142,Other,(265) 932-0211,Other,Corporis placeat sequi rerum ratione aut vel aut inventore.,outbound,,2024-07-02T02:01:20.934Z,2024-07-16T16:41:11.398Z,true,hot,,0,1,3,Lemke - Thompson,Jane Doe +446,Myrna,Christiansen,nonbinary,Ubiquitous,54,"Howe, Predovic and Hessel",Myrna_Christiansen97@gmail.com,(586) 574-5685 x79418,Home,322.603.3679 x602,Work,Quo molestiae numquam architecto quibusdam culpa sunt dicta reprehenderit id.,outbound,,2024-06-13T17:19:20.629Z,2024-07-16T02:51:24.553Z,false,cold,,0,1,0,"Howe, Predovic and Hessel",Jane Doe +72,Jayde,Morar,nonbinary,Dot-com,10,"Koch, Carter and Cummings",Jayde_Morar21@gmail.com,980.470.0264,Work,1-549-388-7112,Work,Unde illum nostrum ab.,outbound,,2023-11-29T12:46:17.482Z,2024-07-16T02:22:43.406Z,false,hot,influencer,0,1,0,"Koch, Carter and Cummings",Jane Doe +299,Elbert,Steuber,male,Sexy,13,Predovic - Cummerata,Elbert.Steuber64@gmail.com,736.210.7141,Other,1-913-601-8235,Work,Aspernatur quis officia perferendis.,outbound,,2024-06-18T07:39:36.898Z,2024-07-15T16:49:48.452Z,true,warm,,0,2,2,Predovic - Cummerata,Jane Doe +140,Stacy,Murazik,nonbinary,Holistic,12,"Price, Macejkovic and Bahringer",Stacy64@yahoo.com,489.369.2209 x464,Home,(519) 982-2918 x97638,Work,Ipsam repudiandae laudantium ullam voluptatem.,outbound,,2024-07-14T22:00:08.805Z,2024-07-14T22:00:08.805Z,false,hot,influencer,0,0,3,"Price, Macejkovic and Bahringer",Jane Doe +0,Irma,Kiehn,female,Enterprise,32,Schaden LLC,Irma60@yahoo.com,324-598-4065 x223,Home,784-409-7776 x1888,Other,Autem excepturi illum tempora deserunt aspernatur magnam deleniti.,outbound,,2024-05-13T21:26:57.695Z,2024-07-14T20:37:06.124Z,false,hot,,0,2,3,Schaden LLC,Jane Doe +406,Cody,Abernathy,male,Intuitive,45,"Rogahn, Homenick and Ward",Cody31@gmail.com,(904) 901-2932 x4877,Other,1-979-538-2413,Other,Ut libero sit deleniti consequuntur corrupti.,inbound,,2024-02-10T20:08:30.398Z,2024-07-14T14:37:35.456Z,false,in-contract,,0,2,0,"Rogahn, Homenick and Ward",Jane Doe +488,Rebecca,Harris,female,Strategic,11,Von Group,Rebecca.Harris@hotmail.com,486.352.2541 x57681,Other,1-981-492-1441,Home,Aut sed voluptas numquam iure eos blanditiis et.,inbound,,2024-01-25T05:10:19.392Z,2024-07-14T12:32:03.686Z,false,hot,influencer,0,1,1,Von Group,Jane Doe +479,Hazel,Fahey,nonbinary,Web-enabled,33,Rosenbaum - Olson,Hazel99@hotmail.com,(373) 908-7825 x0453,Work,224.201.3290 x01037,Other,Ab sint voluptatum.,outbound,,2024-02-28T02:11:37.568Z,2024-07-13T23:20:51.736Z,false,cold,holiday-card,0,2,2,Rosenbaum - Olson,Jane Doe +194,Elsa,Wehner,female,Sexy,6,Lemke - Thompson,Elsa.Wehner90@gmail.com,994.667.8806 x76417,Home,1-623-679-3165,Other,Fugit reiciendis qui nam.,inbound,,2024-05-16T01:31:40.863Z,2024-07-13T16:35:29.932Z,true,hot,,0,3,1,Lemke - Thompson,Jane Doe +165,Kali,Wintheiser,nonbinary,Value-added,33,Rosenbaum - Olson,Kali57@yahoo.com,788.724.7372 x4357,Other,(941) 920-3426 x1635,Home,Suscipit delectus incidunt.,outbound,,2022-09-20T18:03:42.360Z,2024-07-12T22:53:34.719Z,false,warm,,0,3,0,Rosenbaum - Olson,Jane Doe +128,Timothy,Johns,male,E-business,13,Predovic - Cummerata,Timothy_Johns@gmail.com,615.570.7943 x166,Home,(272) 924-0033 x57383,Work,Necessitatibus voluptatem blanditiis eligendi aut deserunt.,outbound,,2024-02-26T21:36:05.105Z,2024-07-12T22:41:29.656Z,false,hot,,0,4,0,Predovic - Cummerata,Jane Doe +321,Angela,Turner,female,B2B,5,Heidenreich and Sons,Angela.Turner72@gmail.com,1-224-778-1858 x460,Work,637-714-7751 x111,Other,Voluptas et quia odio blanditiis sit et quae voluptas.,outbound,https://marmelab.com/posters/avatar-139.jpeg,2024-07-11T23:52:49.733Z,2024-07-11T23:52:49.733Z,true,in-contract,manager,0,0,1,Heidenreich and Sons,Jane Doe +148,Timothy,Mann,male,World-class,54,"Howe, Predovic and Hessel",Timothy.Mann5@yahoo.com,524-563-7757,Other,421.945.8952 x3305,Work,Cum tenetur vero velit quia autem qui voluptates.,inbound,https://marmelab.com/posters/avatar-180.jpeg,2024-06-11T06:44:27.823Z,2024-07-11T20:08:35.084Z,false,hot,holiday-card,0,2,2,"Howe, Predovic and Hessel",Jane Doe +54,Nicolette,Greenholt,nonbinary,Visionary,24,Kihn LLC,Nicolette34@gmail.com,1-394-440-5544,Work,1-395-861-7254,Work,Enim accusantium quis sunt voluptas eligendi.,inbound,,2024-02-22T11:42:44.041Z,2024-07-11T13:15:31.618Z,true,in-contract,musician,0,1,1,Kihn LLC,Jane Doe +370,Gideon,Hyatt,nonbinary,Customized,10,"Koch, Carter and Cummings",Gideon55@hotmail.com,511-983-9681,Home,680-545-4110 x6005,Home,Nihil iure sunt iusto id voluptatem.,outbound,,2023-12-29T05:36:33.756Z,2024-07-10T23:08:02.403Z,false,warm,,0,3,1,"Koch, Carter and Cummings",Jane Doe +213,Delpha,Heidenreich,nonbinary,Open-source,45,"Rogahn, Homenick and Ward",Delpha.Heidenreich6@gmail.com,(233) 570-8211 x495,Other,858.351.9616 x2763,Home,Consectetur quisquam sit delectus qui corporis.,inbound,,2024-05-11T19:22:18.090Z,2024-07-10T21:51:07.098Z,false,cold,vip,0,3,1,"Rogahn, Homenick and Ward",Jane Doe +14,Noemi,Kovacek,nonbinary,Integrated,43,O'Hara - Terry,Noemi_Kovacek@yahoo.com,784-466-8027,Other,844.617.1561,Work,Tempora unde culpa alias nobis iste et maiores et voluptates.,inbound,,2023-12-05T16:19:38.021Z,2024-07-10T10:38:12.048Z,false,hot,holiday-card,0,1,1,O'Hara - Terry,Jane Doe +313,Stuart,Zboncak,nonbinary,World-class,54,"Howe, Predovic and Hessel",Stuart_Zboncak63@gmail.com,1-306-576-9744,Work,610-741-3053,Home,Quo at aut quis rem dicta.,inbound,,2024-01-25T11:43:48.112Z,2024-07-08T13:59:49.008Z,false,in-contract,"influencer, musician",0,2,2,"Howe, Predovic and Hessel",Jane Doe +395,Jake,Carroll,nonbinary,Dot-com,24,Kihn LLC,Jake.Carroll30@gmail.com,(639) 480-3111,Home,762-482-2159,Work,Alias consectetur assumenda.,outbound,https://marmelab.com/posters/avatar-122.jpeg,2024-03-22T23:34:41.062Z,2024-07-08T11:26:53.136Z,true,warm,,0,4,1,Kihn LLC,Jane Doe +96,Merle,Hackett,male,Robust,5,Heidenreich and Sons,Merle.Hackett23@yahoo.com,916.870.9131 x0760,Home,(230) 304-6975,Home,Doloremque iste explicabo facilis dolore velit est consequatur vel.,inbound,,2024-06-05T05:56:41.400Z,2024-07-06T18:53:56.159Z,false,in-contract,holiday-card,0,1,2,Heidenreich and Sons,Jane Doe +318,Monica,Zulauf,female,Frictionless,4,Corkery - Considine,Monica65@hotmail.com,(626) 388-1458 x521,Home,285.251.8718 x909,Work,Ea incidunt eveniet.,inbound,,2024-04-29T16:37:37.734Z,2024-07-06T13:44:35.310Z,true,warm,,0,2,0,Corkery - Considine,Jane Doe +182,Iris,Dickens,female,Integrated,54,"Howe, Predovic and Hessel",Iris.Dickens26@hotmail.com,1-397-478-0574,Work,1-280-976-9794 x31893,Work,Saepe dolor tempore unde.,inbound,,2023-06-24T04:41:59.115Z,2024-07-06T04:41:00.164Z,false,warm,,0,4,0,"Howe, Predovic and Hessel",Jane Doe +425,Carrie,Steuber,female,Bleeding-edge,39,Armstrong and Sons,Carrie.Steuber31@hotmail.com,367-467-1751 x38257,Other,951.390.8886,Work,Et praesentium saepe repellendus.,outbound,,2024-02-29T06:02:36.175Z,2024-07-04T14:26:08.865Z,false,cold,,0,2,0,Armstrong and Sons,Jane Doe +271,Connie,Cormier,female,Global,12,"Price, Macejkovic and Bahringer",Connie64@yahoo.com,1-854-649-3470 x662,Home,1-323-725-4279 x925,Home,Eligendi eaque cum autem qui vero totam possimus quaerat quis.,inbound,,2023-05-04T08:43:02.249Z,2024-07-03T05:46:36.752Z,true,in-contract,,0,5,1,"Price, Macejkovic and Bahringer",Jane Doe +260,Nancy,Kirlin,female,Visionary,24,Kihn LLC,Nancy_Kirlin7@gmail.com,1-806-380-3093 x07023,Work,841.277.4650 x52565,Home,Consequatur magni quo dolore omnis et deleniti placeat et.,inbound,https://marmelab.com/posters/avatar-149.jpeg,2024-04-17T13:13:05.998Z,2024-07-02T22:23:00.520Z,false,hot,"holiday-card, manager",0,2,0,Kihn LLC,Jane Doe +336,Rosie,Tromp,nonbinary,Plug-and-play,13,Predovic - Cummerata,Rosie.Tromp64@gmail.com,840-573-2941 x501,Work,1-837-646-7457 x2939,Other,Delectus earum similique.,outbound,,2024-03-05T20:08:41.846Z,2024-07-02T11:21:00.353Z,true,warm,,0,1,2,Predovic - Cummerata,Jane Doe +4,Anderson,Jaskolski,nonbinary,B2C,40,"Prohaska, Nienow and Langworth",Anderson_Jaskolski@hotmail.com,858.930.2361 x30452,Other,1-755-530-0260,Other,Sint inventore dignissimos sapiente sed ea nam porro.,outbound,https://marmelab.com/posters/avatar-222.jpeg,2023-06-29T06:47:07.884Z,2024-07-02T06:35:05.260Z,false,hot,"manager, musician",0,1,0,"Prohaska, Nienow and Langworth",Jane Doe +77,Cesar,Howe,male,Visionary,13,Predovic - Cummerata,Cesar.Howe79@hotmail.com,269.719.6579 x057,Work,501-875-0788 x868,Work,Quos possimus temporibus aperiam officia tenetur sit.,inbound,,2024-03-20T14:50:47.214Z,2024-06-29T18:06:48.679Z,false,warm,influencer,0,3,1,Predovic - Cummerata,Jane Doe +134,Clifton,Jaskolski,male,B2C,14,Kuhlman and Sons,Clifton72@yahoo.com,290-703-5312,Work,684-734-7412 x81541,Work,Illo sit quam iure est amet.,outbound,https://marmelab.com/posters/avatar-184.jpeg,2024-02-25T05:04:54.581Z,2024-06-27T21:33:49.518Z,false,warm,,0,5,3,Kuhlman and Sons,Jane Doe +362,Cordell,Grant,nonbinary,Dot-com,39,Armstrong and Sons,Cordell_Grant@yahoo.com,1-800-742-0197,Work,301-253-8055 x17861,Other,Pariatur est omnis amet.,outbound,,2024-05-21T22:07:28.567Z,2024-06-27T09:37:43.465Z,false,hot,influencer,0,2,1,Armstrong and Sons,Jane Doe +399,Timmothy,O'Reilly,nonbinary,24/365,11,Von Group,Timmothy44@hotmail.com,984.556.7730,Work,916-917-5691 x5311,Other,Voluptatem eius asperiores ab aspernatur ad enim.,outbound,,2023-09-10T04:48:58.512Z,2024-06-27T09:05:06.433Z,false,cold,,0,3,3,Von Group,Jane Doe +136,Kobe,King,nonbinary,Ubiquitous,24,Kihn LLC,Kobe.King@gmail.com,204.577.3353 x69131,Home,702.320.6151 x2304,Home,Libero omnis sunt est non deleniti quo.,outbound,,2024-06-26T03:40:16.357Z,2024-06-26T03:40:16.357Z,false,hot,musician,0,0,1,Kihn LLC,Jane Doe +227,Raquel,Green,nonbinary,Distributed,45,"Rogahn, Homenick and Ward",Raquel36@gmail.com,463-793-8057 x528,Home,1-963-697-9523,Work,Eius qui sint ut laborum aut quae neque et.,outbound,https://marmelab.com/posters/avatar-158.jpeg,2024-05-19T18:22:02.725Z,2024-06-25T05:56:50.074Z,false,cold,,0,1,0,"Rogahn, Homenick and Ward",Jane Doe +293,Rochelle,Toy,female,Seamless,33,Rosenbaum - Olson,Rochelle.Toy79@yahoo.com,928.208.1651 x55064,Work,456.926.3898 x339,Work,Aspernatur consequatur sed praesentium expedita eum.,outbound,https://marmelab.com/posters/avatar-143.jpeg,2023-02-17T18:02:36.162Z,2024-06-23T15:46:23.943Z,true,warm,influencer,0,3,0,Rosenbaum - Olson,Jane Doe +37,Doyle,Oberbrunner,male,Out-of-the-box,24,Kihn LLC,Doyle_Oberbrunner@yahoo.com,796-786-3732,Other,989-556-4440 x474,Other,Alias quia rerum hic fugit id incidunt.,inbound,,2024-03-18T20:08:06.464Z,2024-06-23T07:48:05.131Z,false,warm,holiday-card,0,2,2,Kihn LLC,Jane Doe +23,Emory,Feeney,nonbinary,Web-enabled,13,Predovic - Cummerata,Emory49@yahoo.com,493.941.1252,Home,770-706-0724,Work,Sunt sit totam aperiam sapiente et sunt explicabo odio.,inbound,,2023-06-19T12:53:34.887Z,2024-06-21T18:21:31.747Z,true,in-contract,manager,0,5,1,Predovic - Cummerata,Jane Doe +253,Alberta,Dare,female,Seamless,33,Rosenbaum - Olson,Alberta30@yahoo.com,1-536-538-5692 x74931,Work,489-240-0618 x2333,Other,Dolores tenetur voluptatem aut aut accusantium deserunt ullam est occaecati.,outbound,,2024-06-02T18:57:50.352Z,2024-06-21T14:01:12.038Z,false,cold,football-fan,0,2,0,Rosenbaum - Olson,Jane Doe +180,Jeanne,Abshire,female,Dot-com,12,"Price, Macejkovic and Bahringer",Jeanne_Abshire85@hotmail.com,926.854.6870,Other,1-692-892-9138 x4493,Other,Quos ut velit repellat aut sed explicabo iste accusantium.,inbound,,2024-04-19T12:10:15.015Z,2024-06-21T12:30:59.858Z,false,in-contract,holiday-card,0,1,2,"Price, Macejkovic and Bahringer",Jane Doe +13,Noel,Hane,male,Intuitive,54,"Howe, Predovic and Hessel",Noel_Hane14@yahoo.com,1-825-332-5607 x972,Other,937.244.6179 x419,Home,Similique dolorum consequatur magnam odio.,inbound,,2023-06-07T16:14:55.052Z,2024-06-21T10:24:14.318Z,true,hot,vip,0,4,2,"Howe, Predovic and Hessel",Jane Doe +396,Jamie,Donnelly,female,Cross-platform,45,"Rogahn, Homenick and Ward",Jamie57@yahoo.com,972-653-3018 x32469,Home,216.791.4846 x1509,Home,Sit eaque eum ipsum culpa.,inbound,,2024-06-20T06:00:08.495Z,2024-06-20T06:00:08.495Z,false,cold,,0,0,0,"Rogahn, Homenick and Ward",Jane Doe +86,Isidro,Kovacek,nonbinary,Rich,24,Kihn LLC,Isidro20@yahoo.com,(548) 665-8912 x387,Home,653-507-8131 x9801,Home,Est corrupti sit unde eveniet sed architecto recusandae inventore.,inbound,,2024-02-22T16:08:45.284Z,2024-06-19T03:23:09.277Z,true,warm,,0,4,0,Kihn LLC,Jane Doe +447,Joshua,Oberbrunner,male,Sexy,5,Heidenreich and Sons,Joshua40@gmail.com,545.410.3427 x710,Other,(762) 932-3331 x781,Home,Optio reiciendis facere aliquid voluptatum quia.,outbound,,2024-06-18T17:48:07.165Z,2024-06-18T17:48:07.165Z,false,cold,"musician, vip",0,0,1,Heidenreich and Sons,Jane Doe +19,Chandler,Lind,nonbinary,Dynamic,45,"Rogahn, Homenick and Ward",Chandler.Lind46@hotmail.com,669-810-4744,Other,447-819-7019,Other,Tempora id consequatur tempore qui dolorem.,inbound,,2024-05-03T07:47:51.385Z,2024-06-16T17:54:23.811Z,false,hot,,0,2,0,"Rogahn, Homenick and Ward",Jane Doe +18,Kent,Homenick,male,Leading-edge,11,Von Group,Kent.Homenick57@hotmail.com,659.461.2635,Home,866.695.7839 x15369,Work,Tempora voluptates dolorem.,outbound,,2023-06-26T11:20:25.354Z,2024-06-13T03:43:28.087Z,true,in-contract,,0,3,0,Von Group,Jane Doe +374,Devin,Johns,male,Killer,54,"Howe, Predovic and Hessel",Devin55@gmail.com,(728) 448-6900,Home,395-748-9740 x754,Other,Porro libero quo labore architecto.,outbound,,2024-06-11T14:25:31.793Z,2024-06-11T14:25:31.793Z,true,cold,musician,0,0,0,"Howe, Predovic and Hessel",Jane Doe +129,Reginald,Abshire,nonbinary,Impactful,13,Predovic - Cummerata,Reginald12@hotmail.com,260-377-4575 x92226,Other,830-530-5169 x038,Other,Aut sunt delectus voluptatem et sint explicabo quisquam illo in.,outbound,https://marmelab.com/posters/avatar-187.jpeg,2023-10-08T14:25:36.161Z,2024-06-09T00:46:56.864Z,true,hot,,0,4,2,Predovic - Cummerata,Jane Doe +102,Conrad,Howell,male,Impactful,6,Lemke - Thompson,Conrad.Howell@hotmail.com,766.705.1120,Work,(633) 325-1091 x5829,Work,Laborum nesciunt qui mollitia et tenetur.,inbound,,2024-04-27T06:22:46.985Z,2024-06-04T19:52:37.083Z,false,cold,,0,1,0,Lemke - Thompson,Jane Doe +352,Pat,McClure,male,End-to-end,39,Armstrong and Sons,Pat_McClure28@yahoo.com,436.557.1956 x15253,Work,715.383.2101,Home,Consectetur autem reprehenderit occaecati commodi earum.,inbound,,2024-03-19T10:17:11.056Z,2024-06-04T06:37:01.486Z,false,warm,holiday-card,0,4,0,Armstrong and Sons,Jane Doe +415,Maggie,Fadel,nonbinary,Seamless,13,Predovic - Cummerata,Maggie26@gmail.com,729-397-3648 x789,Other,767.964.2550,Other,Nihil eligendi cum dolores corrupti eum qui accusantium officia.,outbound,,2024-01-13T23:46:56.421Z,2024-06-03T22:23:42.211Z,true,warm,"holiday-card, musician",0,2,0,Predovic - Cummerata,Jane Doe +277,Nathan,Miller,male,Ubiquitous,10,"Koch, Carter and Cummings",Nathan56@gmail.com,212-413-1136,Home,1-364-416-5097 x608,Other,Et magnam sunt aliquam ipsa voluptate odio.,outbound,,2024-03-03T13:52:55.216Z,2024-05-31T04:05:40.395Z,false,cold,"football-fan, manager",0,1,1,"Koch, Carter and Cummings",Jane Doe +3,Kayden,Fisher,nonbinary,Enterprise,13,Predovic - Cummerata,Kayden.Fisher@gmail.com,(709) 565-9442 x76250,Home,289.672.5729 x5976,Home,Consequatur odit cupiditate accusantium eligendi esse est.,outbound,https://marmelab.com/posters/avatar-223.jpeg,2023-10-18T22:11:26.984Z,2024-05-27T03:38:08.637Z,true,warm,,0,2,0,Predovic - Cummerata,Jane Doe +51,Wellington,Strosin,nonbinary,Visionary,35,Lynch and Sons,Wellington_Strosin@hotmail.com,(486) 387-7634,Work,(637) 763-9370 x825,Home,Aut quia iure quo dolor laborum corrupti dolor rem.,inbound,https://marmelab.com/posters/avatar-211.jpeg,2024-05-26T15:00:04.614Z,2024-05-26T15:00:04.614Z,false,in-contract,influencer,0,0,0,Lynch and Sons,Jane Doe +139,Herman,Schoen,male,Customized,13,Predovic - Cummerata,Herman.Schoen22@hotmail.com,1-380-708-3372,Work,1-549-622-3505,Home,Quo fuga cum rerum id et nulla officiis doloremque.,inbound,,2024-05-25T17:14:02.828Z,2024-05-25T17:14:02.828Z,false,in-contract,vip,0,0,0,Predovic - Cummerata,Jane Doe +403,Marsha,Gislason,female,Customized,13,Predovic - Cummerata,Marsha89@gmail.com,608-413-4687 x23250,Work,1-854-618-4541 x4173,Work,Aut ad tempora omnis corporis provident.,outbound,,2023-07-20T17:19:23.786Z,2024-05-24T20:34:52.223Z,true,hot,musician,0,1,0,Predovic - Cummerata,Jane Doe +394,Jon,Schimmel,nonbinary,End-to-end,10,"Koch, Carter and Cummings",Jon12@gmail.com,(963) 415-2715,Work,1-978-285-1718,Other,Ullam voluptatibus voluptas optio.,inbound,,2023-10-30T08:10:06.267Z,2024-05-24T05:44:07.082Z,false,cold,vip,0,2,0,"Koch, Carter and Cummings",Jane Doe +481,Beulah,Grady,female,Collaborative,33,Rosenbaum - Olson,Beulah68@gmail.com,469-654-5841 x1429,Work,1-355-552-9563,Home,Dolorem aut qui.,inbound,,2023-12-02T21:34:16.902Z,2024-05-23T18:59:00.975Z,false,hot,vip,0,2,0,Rosenbaum - Olson,Jane Doe +233,Susanna,Murphy,nonbinary,Killer,12,"Price, Macejkovic and Bahringer",Susanna.Murphy42@yahoo.com,1-901-474-4428 x9825,Other,832-257-6225 x8294,Home,Possimus odio a.,outbound,,2024-05-21T03:27:51.422Z,2024-05-21T03:27:51.422Z,false,hot,"manager, vip",0,0,0,"Price, Macejkovic and Bahringer",Jane Doe +27,Andrea,Padberg,female,End-to-end,12,"Price, Macejkovic and Bahringer",Andrea_Padberg@gmail.com,966-548-2758 x045,Work,533-296-5921,Home,Ipsa beatae consequatur ad eligendi non quaerat enim.,inbound,,2023-07-18T22:59:36.374Z,2024-05-19T21:50:14.264Z,false,hot,"holiday-card, vip",0,3,1,"Price, Macejkovic and Bahringer",Jane Doe +286,Cecil,Spencer,male,Cross-media,12,"Price, Macejkovic and Bahringer",Cecil_Spencer86@gmail.com,1-251-345-0377,Work,542.550.6487,Other,Molestiae et mollitia nisi eius doloremque.,outbound,https://marmelab.com/posters/avatar-144.jpeg,2023-09-29T12:14:57.537Z,2024-05-17T09:23:15.723Z,true,hot,,0,1,0,"Price, Macejkovic and Bahringer",Jane Doe +377,Minnie,Hegmann,nonbinary,Impactful,13,Predovic - Cummerata,Minnie84@yahoo.com,1-753-689-4802 x950,Home,771.358.2431,Other,Quisquam dolor nesciunt libero enim nulla id.,inbound,,2023-10-25T14:10:10.360Z,2024-05-16T04:58:43.912Z,true,hot,"influencer, musician",0,3,0,Predovic - Cummerata,Jane Doe +162,Grant,Casper,male,Efficient,54,"Howe, Predovic and Hessel",Grant67@hotmail.com,(845) 894-5392,Work,281-316-9601 x744,Other,Quam ullam laboriosam est molestias ex est nihil natus.,outbound,,2023-10-28T19:56:02.195Z,2024-05-13T13:50:05.113Z,false,cold,football-fan,0,2,1,"Howe, Predovic and Hessel",Jane Doe +143,Carlo,Lindgren,nonbinary,Intuitive,12,"Price, Macejkovic and Bahringer",Carlo_Lindgren67@yahoo.com,(542) 685-3424 x548,Work,1-626-812-9122,Other,Molestias tempore temporibus recusandae.,inbound,,2023-03-29T00:21:40.410Z,2024-05-12T15:10:30.104Z,true,in-contract,"football-fan, influencer",0,2,1,"Price, Macejkovic and Bahringer",Jane Doe +438,Lora,Monahan,nonbinary,Mission-critical,4,Corkery - Considine,Lora.Monahan@yahoo.com,(901) 262-5878 x569,Home,933.529.1007 x1140,Other,Esse ut consequatur cupiditate ab magni ut aut fugit sit.,inbound,,2024-03-11T19:49:45.508Z,2024-05-04T22:27:30.447Z,false,in-contract,,0,1,1,Corkery - Considine,Jane Doe +329,Carla,Dicki,female,User-centric,10,"Koch, Carter and Cummings",Carla82@yahoo.com,494.658.6290 x570,Work,(248) 813-5972,Home,Officia sequi earum reiciendis.,inbound,https://marmelab.com/posters/avatar-136.jpeg,2023-11-24T07:57:02.240Z,2024-05-04T09:32:46.713Z,false,warm,manager,0,3,3,"Koch, Carter and Cummings",Jane Doe +458,Maiya,Kilback,nonbinary,Transparent,10,"Koch, Carter and Cummings",Maiya.Kilback32@yahoo.com,1-733-387-0883 x920,Home,1-676-906-4972 x0654,Work,Quisquam quis aut eaque officia quia debitis illum in.,outbound,,2024-02-28T00:34:42.484Z,2024-05-03T04:10:29.981Z,false,cold,,0,1,0,"Koch, Carter and Cummings",Jane Doe +215,Jean,Thiel,male,Virtual,10,"Koch, Carter and Cummings",Jean.Thiel86@hotmail.com,1-577-448-1378,Home,(328) 512-4601 x78051,Home,Iusto adipisci fugiat id voluptas similique voluptatem id.,inbound,,2023-09-05T03:21:41.687Z,2024-05-01T19:54:43.703Z,false,warm,,0,1,2,"Koch, Carter and Cummings",Jane Doe +59,Allan,Sipes,male,Efficient,13,Predovic - Cummerata,Allan.Sipes@hotmail.com,466.527.6024,Home,737.995.5313,Other,Quisquam temporibus rerum pariatur numquam.,outbound,,2024-02-09T08:32:31.135Z,2024-04-30T08:50:01.816Z,false,hot,,0,2,1,Predovic - Cummerata,Jane Doe +440,Tracy,Hayes,male,Frictionless,54,"Howe, Predovic and Hessel",Tracy.Hayes48@gmail.com,901-629-8023,Home,1-860-480-5802 x080,Home,Deserunt provident dolor laudantium vel sit aliquid corrupti.,outbound,https://marmelab.com/posters/avatar-115.jpeg,2022-09-01T08:53:16.431Z,2024-04-27T18:35:13.222Z,false,cold,,0,1,1,"Howe, Predovic and Hessel",Jane Doe +326,Karla,Huel,female,Efficient,11,Von Group,Karla54@gmail.com,549-771-0094,Work,(870) 538-7021 x879,Work,Vel nulla nisi aut quia error qui.,outbound,,2022-04-23T08:16:54.917Z,2024-04-25T04:32:00.327Z,true,cold,,0,4,1,Von Group,Jane Doe +259,Tara,Mayert,nonbinary,Back-end,33,Rosenbaum - Olson,Tara93@hotmail.com,(700) 625-0371 x54185,Other,(905) 946-1902 x050,Work,Quae id harum itaque iste repudiandae maxime consequatur.,inbound,,2022-12-16T04:33:40.847Z,2024-04-14T23:22:48.110Z,false,hot,,0,2,0,Rosenbaum - Olson,Jane Doe +424,Esta,Turcotte,nonbinary,Clicks-and-mortar,13,Predovic - Cummerata,Esta_Turcotte@hotmail.com,639.382.7223,Home,1-901-757-3503 x8250,Home,Temporibus est nam omnis ex ut nostrum.,outbound,,2024-03-03T06:40:31.291Z,2024-04-06T20:45:38.092Z,false,cold,,0,1,1,Predovic - Cummerata,Jane Doe +160,Rylee,Cremin,nonbinary,Global,11,Von Group,Rylee73@yahoo.com,(534) 585-7783,Other,1-691-955-8506 x178,Other,Minus debitis vitae.,outbound,,2022-10-19T04:55:05.820Z,2024-04-04T04:01:01.199Z,true,hot,,0,3,1,Von Group,Jane Doe +258,Andy,Walter,male,Dynamic,33,Rosenbaum - Olson,Andy.Walter@gmail.com,222.954.2239,Work,411.766.5260 x543,Home,Adipisci qui quo nemo distinctio provident et soluta.,inbound,,2023-02-26T18:06:11.369Z,2024-04-03T05:35:12.161Z,false,cold,,0,1,1,Rosenbaum - Olson,Jane Doe +483,Maggie,Schumm,female,Distributed,33,Rosenbaum - Olson,Maggie_Schumm@gmail.com,934.430.0464,Other,(712) 730-4764 x58973,Other,Hic iure fuga.,inbound,,2023-11-17T09:09:33.843Z,2024-04-02T18:10:10.517Z,false,in-contract,football-fan,0,3,1,Rosenbaum - Olson,Jane Doe +130,Saul,Wehner,male,Best-of-breed,11,Von Group,Saul.Wehner16@hotmail.com,308-754-6671,Other,1-515-396-7799 x50033,Work,Distinctio non praesentium.,inbound,https://marmelab.com/posters/avatar-186.jpeg,2023-06-20T06:56:33.010Z,2024-04-01T01:54:35.704Z,true,hot,,0,1,0,Von Group,Jane Doe +429,Daniel,Kling,male,Holistic,33,Rosenbaum - Olson,Daniel_Kling@gmail.com,230-901-6488,Other,(819) 830-7557 x4912,Work,Ut quas qui magni illo in.,outbound,,2022-02-27T09:53:49.445Z,2024-03-31T03:33:41.140Z,false,warm,"football-fan, influencer",0,2,0,Rosenbaum - Olson,Jane Doe +11,Tina,Farrell,nonbinary,Customized,10,"Koch, Carter and Cummings",Tina36@hotmail.com,1-699-397-5099 x132,Work,(454) 847-7713 x3492,Work,Quia error deleniti vero quo ut.,outbound,https://marmelab.com/posters/avatar-220.jpeg,2024-03-27T03:41:23.541Z,2024-03-27T03:41:23.541Z,false,warm,"holiday-card, musician",0,0,1,"Koch, Carter and Cummings",Jane Doe +254,Gregory,Willms,male,Wireless,11,Von Group,Gregory_Willms63@yahoo.com,335-359-8057 x7272,Work,213-559-1217,Other,Et doloribus omnis quo aliquid vel eveniet et.,outbound,,2023-12-15T02:47:48.720Z,2024-03-24T03:44:08.412Z,false,hot,,0,1,0,Von Group,Jane Doe +434,Hassan,Bartell,nonbinary,User-centric,12,"Price, Macejkovic and Bahringer",Hassan_Bartell98@gmail.com,757-804-2028,Home,1-366-666-0353,Other,Qui omnis qui vel sit perspiciatis doloribus ad harum.,inbound,,2023-03-19T11:54:48.689Z,2024-03-12T16:56:21.845Z,false,cold,,0,1,1,"Price, Macejkovic and Bahringer",Jane Doe +497,Adalberto,Bauch,nonbinary,End-to-end,12,"Price, Macejkovic and Bahringer",Adalberto.Bauch63@hotmail.com,767-471-9618,Work,1-274-617-6670 x996,Other,Saepe consectetur culpa accusantium rerum necessitatibus.,outbound,,2024-03-10T12:22:06.846Z,2024-03-10T12:22:06.846Z,false,in-contract,,0,0,0,"Price, Macejkovic and Bahringer",Jane Doe +149,Wilber,O'Kon,nonbinary,Compelling,45,"Rogahn, Homenick and Ward",Wilber13@hotmail.com,(488) 442-3631 x9305,Work,421.585.7600,Home,Esse asperiores dolorem magnam harum nobis perspiciatis pariatur.,outbound,,2024-01-20T19:44:39.893Z,2024-03-06T00:26:32.214Z,false,in-contract,"holiday-card, manager",0,1,2,"Rogahn, Homenick and Ward",Jane Doe +462,Silvia,Krajcik,female,Global,10,"Koch, Carter and Cummings",Silvia23@hotmail.com,(526) 678-7418,Home,(916) 799-6177,Home,Itaque iusto nemo.,outbound,https://marmelab.com/posters/avatar-108.jpeg,2023-12-27T02:39:36.843Z,2024-02-24T07:02:20.712Z,false,in-contract,,0,1,0,"Koch, Carter and Cummings",Jane Doe +131,Joanny,Hagenes,nonbinary,Enterprise,4,Corkery - Considine,Joanny.Hagenes51@yahoo.com,662-279-1321 x26538,Home,1-863-451-4164,Home,Id rerum quas necessitatibus distinctio mollitia quia soluta debitis.,inbound,https://marmelab.com/posters/avatar-185.jpeg,2023-11-16T09:28:24.080Z,2024-02-16T14:43:30.176Z,true,hot,musician,0,1,0,Corkery - Considine,Jane Doe +338,Ruth,Ullrich,female,End-to-end,12,"Price, Macejkovic and Bahringer",Ruth42@hotmail.com,988-914-8766 x15156,Other,227-907-0237,Home,Est placeat nulla aliquam officia tempora culpa fugit.,inbound,,2024-02-16T00:08:50.053Z,2024-02-16T00:08:50.053Z,true,warm,"musician, vip",0,0,0,"Price, Macejkovic and Bahringer",Jane Doe +466,Gerardo,Lynch,male,B2B,4,Corkery - Considine,Gerardo.Lynch@yahoo.com,1-901-251-9891 x80414,Other,(340) 319-2431,Home,Aperiam nihil quae sit.,inbound,,2024-02-09T07:10:25.778Z,2024-02-09T07:10:25.778Z,false,cold,vip,0,0,1,Corkery - Considine,Jane Doe +109,Latoya,Cole,female,End-to-end,13,Predovic - Cummerata,Latoya.Cole50@yahoo.com,493.606.6320 x646,Other,1-977-533-0948 x1300,Other,Enim totam ea et ut optio.,outbound,,2024-02-06T17:14:43.540Z,2024-02-06T17:14:43.540Z,false,cold,,0,0,2,Predovic - Cummerata,Jane Doe +437,Thomas,Predovic,male,User-centric,39,Armstrong and Sons,Thomas7@yahoo.com,(482) 443-0625,Work,639-768-8860,Home,Incidunt similique laborum ea nostrum.,inbound,,2024-02-04T09:48:58.262Z,2024-02-04T09:48:58.262Z,false,in-contract,,0,0,0,Armstrong and Sons,Jane Doe +419,Dangelo,Lindgren,nonbinary,Turn-key,12,"Price, Macejkovic and Bahringer",Dangelo69@hotmail.com,(396) 387-3871 x8914,Work,976-441-7450,Home,Voluptas sint adipisci minima dolorem maiores.,outbound,,2022-08-30T16:57:59.016Z,2024-01-15T07:48:49.107Z,false,cold,,0,2,1,"Price, Macejkovic and Bahringer",Jane Doe +284,Avery,Weber,nonbinary,Clicks-and-mortar,13,Predovic - Cummerata,Avery97@gmail.com,(728) 910-5618 x6652,Other,678-510-3132 x418,Work,Sit laboriosam aperiam praesentium.,outbound,,2024-01-11T06:32:58.626Z,2024-01-11T06:32:58.626Z,false,in-contract,,0,0,2,Predovic - Cummerata,Jane Doe +347,Dana,Swift,female,Robust,12,"Price, Macejkovic and Bahringer",Dana_Swift@hotmail.com,(221) 252-7091 x698,Other,1-388-426-6985 x58641,Home,Dolorum voluptatem qui totam accusamus.,outbound,https://marmelab.com/posters/avatar-133.jpeg,2023-04-20T03:09:26.894Z,2024-01-09T21:20:21.719Z,false,cold,,0,1,1,"Price, Macejkovic and Bahringer",Jane Doe +31,Lucy,McLaughlin,female,Sticky,4,Corkery - Considine,Lucy.McLaughlin28@hotmail.com,(427) 342-9767 x013,Work,1-969-200-6391,Other,Quam nam earum soluta sint.,outbound,,2024-01-04T04:50:15.793Z,2024-01-04T04:50:15.793Z,false,hot,,0,0,3,Corkery - Considine,Jane Doe +252,Louis,Bergstrom,male,World-class,4,Corkery - Considine,Louis.Bergstrom23@gmail.com,707.551.2189 x833,Other,(222) 559-0221 x1178,Other,Assumenda est vel officia incidunt.,outbound,,2023-12-23T13:27:52.779Z,2023-12-23T13:27:52.779Z,false,in-contract,,0,0,2,Corkery - Considine,Jane Doe +79,Kim,Emmerich,female,Cross-platform,54,"Howe, Predovic and Hessel",Kim.Emmerich26@hotmail.com,412-977-3515 x821,Home,646-517-0225,Home,Quia fuga qui.,outbound,,2023-03-16T12:40:25.005Z,2023-11-16T12:48:01.205Z,false,warm,football-fan,0,1,1,"Howe, Predovic and Hessel",Jane Doe +52,Kate,Hilll,female,Strategic,12,"Price, Macejkovic and Bahringer",Kate_Hilll78@gmail.com,233-435-5912 x861,Home,300.971.3653 x938,Home,Aut et ad excepturi non.,inbound,,2023-11-09T10:22:22.204Z,2023-11-09T10:22:22.204Z,false,hot,holiday-card,0,0,0,"Price, Macejkovic and Bahringer",Jane Doe +245,Gene,Bauch,male,Mission-critical,33,Rosenbaum - Olson,Gene44@yahoo.com,645.867.5865 x5402,Home,(828) 711-2698,Other,Quia cum temporibus minima enim dolore repudiandae iure blanditiis.,outbound,,2023-10-27T00:26:50.134Z,2023-10-27T00:26:50.134Z,false,cold,,0,0,2,Rosenbaum - Olson,Jane Doe +451,Dennis,Doyle,male,Back-end,12,"Price, Macejkovic and Bahringer",Dennis31@gmail.com,1-995-686-2065 x2887,Other,246-440-3035 x60384,Home,Excepturi eos harum.,outbound,https://marmelab.com/posters/avatar-112.jpeg,2023-09-21T05:00:53.338Z,2023-09-21T05:00:53.338Z,false,cold,musician,0,0,0,"Price, Macejkovic and Bahringer",Jane Doe +439,Tommie,Bayer,male,User-centric,54,"Howe, Predovic and Hessel",Tommie_Bayer20@yahoo.com,206.660.2139,Home,(961) 659-1995 x7847,Home,Iure fugiat excepturi asperiores deserunt in dolorum.,inbound,,2023-05-11T05:04:47.175Z,2023-05-11T05:04:47.175Z,true,in-contract,,0,0,1,"Howe, Predovic and Hessel",Jane Doe +221,Noel,Steuber,nonbinary,Next-generation,33,Rosenbaum - Olson,Noel.Steuber9@yahoo.com,748-666-3394,Home,(713) 756-9351,Home,Quidem non maiores qui iste pariatur.,outbound,,2022-06-30T08:35:08.060Z,2022-06-30T08:35:08.060Z,false,in-contract,,0,0,1,Rosenbaum - Olson,Jane Doe \ No newline at end of file diff --git a/tsconfig.node.json b/tsconfig.node.json index f48610d..13b35d0 100644 --- a/tsconfig.node.json +++ b/tsconfig.node.json @@ -1,10 +1,9 @@ { "compilerOptions": { - "composite": true, - "module": "ESNext", - "moduleResolution": "Node", - "allowSyntheticDefaultImports": true + "composite": true, + "module": "ESNext", + "moduleResolution": "Node", + "allowSyntheticDefaultImports": true }, "include": ["vite.config.ts"] - } - \ No newline at end of file +} diff --git a/vite.config.ts b/vite.config.ts index f76c9b0..3be8601 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -1,27 +1,27 @@ -import { defineConfig } from "vite"; -import react from "@vitejs/plugin-react"; -import { visualizer } from "rollup-plugin-visualizer"; +import { defineConfig } from 'vite'; +import react from '@vitejs/plugin-react'; +import { visualizer } from 'rollup-plugin-visualizer'; // https://vitejs.dev/config/ export default defineConfig({ - plugins: [ - react(), - visualizer({ - open: process.env.NODE_ENV !== "CI", - filename: "./dist/stats.html", - }), - ], - define: { - "process.env": process.env, - }, - base: "./", - esbuild: { - keepNames: true, - }, - build: { - sourcemap: true, - }, - resolve: { - preserveSymlinks: true, - }, + plugins: [ + react(), + visualizer({ + open: process.env.NODE_ENV !== 'CI', + filename: './dist/stats.html', + }), + ], + define: { + 'process.env': process.env, + }, + base: './', + esbuild: { + keepNames: true, + }, + build: { + sourcemap: true, + }, + resolve: { + preserveSymlinks: true, + }, });