From 11886463a2f4f2defe4ad0ab9fdff3c924ce8ad3 Mon Sep 17 00:00:00 2001 From: Sandbox User Date: Fri, 3 Jun 2022 16:27:44 -0500 Subject: [PATCH 1/6] vite update --- .browserslistrc | 3 - .eslintrc.js | 14 - babel.config.js | 5 - index.html | 29 ++ package.json | 63 ++- postcss.config.js | 5 - public/index.html | 25 - src/AppMenu.vue | 76 ++-- src/components/ChartDemo.vue | 751 +++++++++++++++--------------- src/components/Dashboard.vue | 858 ++++++++++++++++++++--------------- src/main.js | 376 +++++++-------- vite.config.ts | 15 + vue.config.js | 3 - 13 files changed, 1187 insertions(+), 1036 deletions(-) delete mode 100644 .browserslistrc delete mode 100644 .eslintrc.js delete mode 100644 babel.config.js create mode 100644 index.html delete mode 100644 postcss.config.js delete mode 100644 public/index.html create mode 100644 vite.config.ts delete mode 100644 vue.config.js diff --git a/.browserslistrc b/.browserslistrc deleted file mode 100644 index 214388fe..00000000 --- a/.browserslistrc +++ /dev/null @@ -1,3 +0,0 @@ -> 1% -last 2 versions -not dead diff --git a/.eslintrc.js b/.eslintrc.js deleted file mode 100644 index d84b13db..00000000 --- a/.eslintrc.js +++ /dev/null @@ -1,14 +0,0 @@ -module.exports = { - root: true, - env: { - node: true, - }, - extends: ['plugin:vue/vue3-essential', 'eslint:recommended'], - parserOptions: { - parser: 'babel-eslint', - }, - rules: { - 'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off', - 'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off', - }, -}; diff --git a/babel.config.js b/babel.config.js deleted file mode 100644 index e9558405..00000000 --- a/babel.config.js +++ /dev/null @@ -1,5 +0,0 @@ -module.exports = { - presets: [ - '@vue/cli-plugin-babel/preset' - ] -} diff --git a/index.html b/index.html new file mode 100644 index 00000000..cc46fb17 --- /dev/null +++ b/index.html @@ -0,0 +1,29 @@ + + + + + + + + + + Sakai Vue + + +
+
+
+
+
+ + + diff --git a/package.json b/package.json index bc0f98eb..d73504e8 100644 --- a/package.json +++ b/package.json @@ -1,37 +1,30 @@ { - "name": "sakai-vue", - "version": "3.4.2-SNAPSHOT", - "repository": { - "type": "git", - "url": "https://github.com/primefaces/sakai-vue.git" - }, - "license": "MIT", - "scripts": { - "serve": "vue-cli-service serve", - "build": "vue-cli-service build", - "lint": "vue-cli-service lint", - "test:unit": "vue-cli-service test:unit" - }, - "devDependencies": { - "@vue/cli-plugin-babel": "~4.5.0", - "@vue/cli-plugin-eslint": "~4.5.0", - "@vue/cli-plugin-router": "~4.5.0", - "@vue/cli-service": "~4.5.0", - "@vue/compiler-sfc": "^3.0.0", - "babel-eslint": "^10.1.0", - "eslint": "^6.7.2", - "eslint-plugin-vue": "^7.0.0", - "sass": "^1.45.0", - "sass-loader": "^8.0.2" - }, - "dependencies": { - "chart.js": "3.3.2", - "core-js": "^3.6.5", - "primeflex": "^3.1.2", - "primeicons": "^5.0.0", - "primevue": "^3.12.2", - "prismjs": "1.9.0", - "vue": "3.2.9", - "vue-router": "^4.0.0-0" - } + "name": "sakai-vue", + "version": "3.4.2-SNAPSHOT", + "repository": { + "type": "git", + "url": "https://github.com/primefaces/sakai-vue.git" + }, + "license": "MIT", + "scripts": { + "dev": "vite", + "build": "vite build", + "preview": "vite preview" + }, + "devDependencies": { + "@vitejs/plugin-vue": "^3.0.0-alpha.1", + "vite": "^3.0.0-alpha.9", + "sass": "^1.45.0", + "sass-loader": "^8.0.2" + }, + "dependencies": { + "chart.js": "3.3.2", + "core-js": "^3.6.5", + "primeflex": "^3.1.2", + "primeicons": "^5.0.0", + "primevue": "^3.12.6", + "prismjs": "1.9.0", + "vue": "^3.2.36", + "vue-router": "^4.0.15" + } } diff --git a/postcss.config.js b/postcss.config.js deleted file mode 100644 index 02dbbdbe..00000000 --- a/postcss.config.js +++ /dev/null @@ -1,5 +0,0 @@ -module.exports = { - plugins: { - autoprefixer: {} - } -} diff --git a/public/index.html b/public/index.html deleted file mode 100644 index 40ab131e..00000000 --- a/public/index.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - Sakai Vue - - - -
-
-
-
-
-
- - diff --git a/src/AppMenu.vue b/src/AppMenu.vue index 9024260b..f41f54ec 100644 --- a/src/AppMenu.vue +++ b/src/AppMenu.vue @@ -1,41 +1,49 @@ \ No newline at end of file + onKeyDown(event) { + const nodeElement = event.target; + if (event.code === "Enter" || event.code === "Space") { + nodeElement.click(); + event.preventDefault(); + } + }, + bannerImage() { + return this.$appState.darkTheme + ? "images/banner-primeblocks-dark.png" + : "images/banner-primeblocks.png"; + }, + }, + computed: { + darkTheme() { + return this.$appState.darkTheme; + }, + }, + components: { + AppSubmenu: AppSubmenu, + }, +}; + diff --git a/src/components/ChartDemo.vue b/src/components/ChartDemo.vue index 7fe88ec1..67be48d8 100644 --- a/src/components/ChartDemo.vue +++ b/src/components/ChartDemo.vue @@ -1,386 +1,407 @@ \ No newline at end of file + this.radarOptions = { + plugins: { + legend: { + labels: { + color: "#ebedef", + }, + }, + }, + scales: { + r: { + grid: { + color: "rgba(160, 167, 181, .3)", + }, + }, + }, + }; + }, + }, +}; + diff --git a/src/components/Dashboard.vue b/src/components/Dashboard.vue index efe98dc6..85941286 100644 --- a/src/components/Dashboard.vue +++ b/src/components/Dashboard.vue @@ -1,373 +1,509 @@ \ No newline at end of file + scales: { + x: { + ticks: { + color: "#495057", + }, + grid: { + color: "#ebedef", + }, + }, + y: { + ticks: { + color: "#495057", + }, + grid: { + color: "#ebedef", + }, + }, + }, + }; + }, + applyDarkTheme() { + this.lineOptions = { + plugins: { + legend: { + labels: { + color: "#ebedef", + }, + }, + }, + scales: { + x: { + ticks: { + color: "#ebedef", + }, + grid: { + color: "rgba(160, 167, 181, .3)", + }, + }, + y: { + ticks: { + color: "#ebedef", + }, + grid: { + color: "rgba(160, 167, 181, .3)", + }, + }, + }, + }; + }, + }, +}; + diff --git a/src/main.js b/src/main.js index c5a85a56..49b0196b 100644 --- a/src/main.js +++ b/src/main.js @@ -1,201 +1,205 @@ -import 'primevue/resources/primevue.min.css'; -import 'primeflex/primeflex.css'; -import 'primeicons/primeicons.css'; -import 'prismjs/themes/prism-coy.css'; -import './assets/styles/layout.scss'; -import './assets/demo/flags/flags.css'; +import "primevue/resources/primevue.min.css"; +import "primeflex/primeflex.css"; +import "primeicons/primeicons.css"; +import "primevue/resources/themes/lara-light-indigo/theme.css"; +import "prismjs/themes/prism-coy.css"; +import "./assets/styles/layout.scss"; +import "./assets/demo/flags/flags.css"; -import { createApp, reactive } from 'vue'; -import router from './router'; -import AppWrapper from './AppWrapper.vue'; -import PrimeVue from 'primevue/config'; -import AutoComplete from 'primevue/autocomplete'; -import Accordion from 'primevue/accordion'; -import AccordionTab from 'primevue/accordiontab'; -import Avatar from 'primevue/avatar'; -import AvatarGroup from 'primevue/avatargroup'; -import Badge from 'primevue/badge'; -import BadgeDirective from 'primevue/badgedirective'; -import Button from 'primevue/button'; -import Breadcrumb from 'primevue/breadcrumb'; -import Calendar from 'primevue/calendar'; -import Card from 'primevue/card'; -import Carousel from 'primevue/carousel'; -import Chart from 'primevue/chart'; -import Checkbox from 'primevue/checkbox'; -import Chip from 'primevue/chip'; -import Chips from 'primevue/chips'; -import ColorPicker from 'primevue/colorpicker'; -import Column from 'primevue/column'; -import ConfirmDialog from 'primevue/confirmdialog'; -import ConfirmPopup from 'primevue/confirmpopup'; -import ConfirmationService from 'primevue/confirmationservice'; -import ContextMenu from 'primevue/contextmenu'; -import DataTable from 'primevue/datatable'; -import DataView from 'primevue/dataview'; -import DataViewLayoutOptions from 'primevue/dataviewlayoutoptions'; -import Dialog from 'primevue/dialog'; -import Divider from 'primevue/divider'; -import Dropdown from 'primevue/dropdown'; -import Fieldset from 'primevue/fieldset'; -import FileUpload from 'primevue/fileupload'; -import Image from 'primevue/image'; -import InlineMessage from 'primevue/inlinemessage'; -import Inplace from 'primevue/inplace'; -import InputMask from 'primevue/inputmask'; -import InputNumber from 'primevue/inputnumber'; -import InputSwitch from 'primevue/inputswitch'; -import InputText from 'primevue/inputtext'; -import Knob from 'primevue/knob'; -import Galleria from 'primevue/galleria'; -import Listbox from 'primevue/listbox'; -import MegaMenu from 'primevue/megamenu'; -import Menu from 'primevue/menu'; -import Menubar from 'primevue/menubar'; -import Message from 'primevue/message'; -import MultiSelect from 'primevue/multiselect'; -import OrderList from 'primevue/orderlist'; -import OrganizationChart from 'primevue/organizationchart'; -import OverlayPanel from 'primevue/overlaypanel'; -import Paginator from 'primevue/paginator'; -import Panel from 'primevue/panel'; -import PanelMenu from 'primevue/panelmenu'; -import Password from 'primevue/password'; -import PickList from 'primevue/picklist'; -import ProgressBar from 'primevue/progressbar'; -import Rating from 'primevue/rating'; -import RadioButton from 'primevue/radiobutton'; -import Ripple from 'primevue/ripple'; -import SelectButton from 'primevue/selectbutton'; -import ScrollPanel from 'primevue/scrollpanel' -import ScrollTop from 'primevue/scrolltop'; -import Slider from 'primevue/slider'; -import Sidebar from 'primevue/sidebar'; -import Skeleton from 'primevue/skeleton'; -import SplitButton from 'primevue/splitbutton'; -import Splitter from 'primevue/splitter'; -import SplitterPanel from 'primevue/splitterpanel'; -import Steps from 'primevue/steps'; -import StyleClass from 'primevue/styleclass'; -import TabMenu from 'primevue/tabmenu'; -import Tag from 'primevue/tag'; -import TieredMenu from 'primevue/tieredmenu'; -import Textarea from 'primevue/textarea'; -import Timeline from 'primevue/timeline'; -import Toast from 'primevue/toast'; -import ToastService from 'primevue/toastservice'; -import Toolbar from 'primevue/toolbar'; -import TabView from 'primevue/tabview'; -import TabPanel from 'primevue/tabpanel'; -import Tooltip from 'primevue/tooltip'; -import ToggleButton from 'primevue/togglebutton'; -import Tree from 'primevue/tree'; -import TreeSelect from 'primevue/treeselect'; -import TreeTable from 'primevue/treetable'; -import TriStateCheckbox from 'primevue/tristatecheckbox'; +import { createApp, reactive } from "vue"; +import router from "./router"; +import AppWrapper from "./AppWrapper.vue"; +import PrimeVue from "primevue/config"; +import AutoComplete from "primevue/autocomplete"; +import Accordion from "primevue/accordion"; +import AccordionTab from "primevue/accordiontab"; +import Avatar from "primevue/avatar"; +import AvatarGroup from "primevue/avatargroup"; +import Badge from "primevue/badge"; +import BadgeDirective from "primevue/badgedirective"; +import Button from "primevue/button"; +import Breadcrumb from "primevue/breadcrumb"; +import Calendar from "primevue/calendar"; +import Card from "primevue/card"; +import Carousel from "primevue/carousel"; +import Chart from "primevue/chart"; +import Checkbox from "primevue/checkbox"; +import Chip from "primevue/chip"; +import Chips from "primevue/chips"; +import ColorPicker from "primevue/colorpicker"; +import Column from "primevue/column"; +import ConfirmDialog from "primevue/confirmdialog"; +import ConfirmPopup from "primevue/confirmpopup"; +import ConfirmationService from "primevue/confirmationservice"; +import ContextMenu from "primevue/contextmenu"; +import DataTable from "primevue/datatable"; +import DataView from "primevue/dataview"; +import DataViewLayoutOptions from "primevue/dataviewlayoutoptions"; +import Dialog from "primevue/dialog"; +import Divider from "primevue/divider"; +import Dropdown from "primevue/dropdown"; +import Fieldset from "primevue/fieldset"; +import FileUpload from "primevue/fileupload"; +import Image from "primevue/image"; +import InlineMessage from "primevue/inlinemessage"; +import Inplace from "primevue/inplace"; +import InputMask from "primevue/inputmask"; +import InputNumber from "primevue/inputnumber"; +import InputSwitch from "primevue/inputswitch"; +import InputText from "primevue/inputtext"; +import Knob from "primevue/knob"; +import Galleria from "primevue/galleria"; +import Listbox from "primevue/listbox"; +import MegaMenu from "primevue/megamenu"; +import Menu from "primevue/menu"; +import Menubar from "primevue/menubar"; +import Message from "primevue/message"; +import MultiSelect from "primevue/multiselect"; +import OrderList from "primevue/orderlist"; +import OrganizationChart from "primevue/organizationchart"; +import OverlayPanel from "primevue/overlaypanel"; +import Paginator from "primevue/paginator"; +import Panel from "primevue/panel"; +import PanelMenu from "primevue/panelmenu"; +import Password from "primevue/password"; +import PickList from "primevue/picklist"; +import ProgressBar from "primevue/progressbar"; +import Rating from "primevue/rating"; +import RadioButton from "primevue/radiobutton"; +import Ripple from "primevue/ripple"; +import SelectButton from "primevue/selectbutton"; +import ScrollPanel from "primevue/scrollpanel"; +import ScrollTop from "primevue/scrolltop"; +import Slider from "primevue/slider"; +import Sidebar from "primevue/sidebar"; +import Skeleton from "primevue/skeleton"; +import SplitButton from "primevue/splitbutton"; +import Splitter from "primevue/splitter"; +import SplitterPanel from "primevue/splitterpanel"; +import Steps from "primevue/steps"; +import StyleClass from "primevue/styleclass"; +import TabMenu from "primevue/tabmenu"; +import Tag from "primevue/tag"; +import TieredMenu from "primevue/tieredmenu"; +import Textarea from "primevue/textarea"; +import Timeline from "primevue/timeline"; +import Toast from "primevue/toast"; +import ToastService from "primevue/toastservice"; +import Toolbar from "primevue/toolbar"; +import TabView from "primevue/tabview"; +import TabPanel from "primevue/tabpanel"; +import Tooltip from "primevue/tooltip"; +import ToggleButton from "primevue/togglebutton"; +import Tree from "primevue/tree"; +import TreeSelect from "primevue/treeselect"; +import TreeTable from "primevue/treetable"; +import TriStateCheckbox from "primevue/tristatecheckbox"; -import CodeHighlight from './AppCodeHighlight'; -import BlockViewer from './BlockViewer'; +import CodeHighlight from "./AppCodeHighlight"; +import BlockViewer from "./BlockViewer.vue"; -router.beforeEach(function(to, from, next) { - window.scrollTo(0, 0); - next(); +router.beforeEach(function (to, from, next) { + window.scrollTo(0, 0); + next(); }); const app = createApp(AppWrapper); -app.config.globalProperties.$appState = reactive({ theme: 'lara-light-indigo', darkTheme: false }); +app.config.globalProperties.$appState = reactive({ + theme: "lara-light-indigo", + darkTheme: false, +}); -app.use(PrimeVue, { ripple: true, inputStyle: 'outlined' }); +app.use(PrimeVue, { ripple: true, inputStyle: "outlined" }); app.use(ConfirmationService); app.use(ToastService); app.use(router); -app.directive('tooltip', Tooltip); -app.directive('ripple', Ripple); -app.directive('code', CodeHighlight); -app.directive('badge', BadgeDirective); -app.directive('styleclass', StyleClass); +app.directive("tooltip", Tooltip); +app.directive("ripple", Ripple); +app.directive("code", CodeHighlight); +app.directive("badge", BadgeDirective); +app.directive("styleclass", StyleClass); -app.component('Accordion', Accordion); -app.component('AccordionTab', AccordionTab); -app.component('AutoComplete', AutoComplete); -app.component('Avatar', Avatar); -app.component('AvatarGroup', AvatarGroup); -app.component('Badge', Badge); -app.component('Breadcrumb', Breadcrumb); -app.component('Button', Button); -app.component('Calendar', Calendar); -app.component('Card', Card); -app.component('Carousel', Carousel); -app.component('Chart', Chart); -app.component('Checkbox', Checkbox); -app.component('Chip', Chip); -app.component('Chips', Chips); -app.component('ColorPicker', ColorPicker); -app.component('Column', Column); -app.component('ConfirmDialog', ConfirmDialog); -app.component('ConfirmPopup', ConfirmPopup); -app.component('ContextMenu', ContextMenu); -app.component('DataTable', DataTable); -app.component('DataView', DataView); -app.component('DataViewLayoutOptions', DataViewLayoutOptions); -app.component('Dialog', Dialog); -app.component('Divider', Divider); -app.component('Dropdown', Dropdown); -app.component('Fieldset', Fieldset); -app.component('FileUpload', FileUpload); -app.component('Image', Image); -app.component('InlineMessage', InlineMessage); -app.component('Inplace', Inplace); -app.component('InputMask', InputMask); -app.component('InputNumber', InputNumber); -app.component('InputSwitch', InputSwitch); -app.component('InputText', InputText); -app.component('Galleria', Galleria); -app.component('Knob', Knob); -app.component('Listbox', Listbox); -app.component('MegaMenu', MegaMenu); -app.component('Menu', Menu); -app.component('Menubar', Menubar); -app.component('Message', Message); -app.component('MultiSelect', MultiSelect); -app.component('OrderList', OrderList); -app.component('OrganizationChart', OrganizationChart); -app.component('OverlayPanel', OverlayPanel); -app.component('Paginator', Paginator); -app.component('Panel', Panel); -app.component('PanelMenu', PanelMenu); -app.component('Password', Password); -app.component('PickList', PickList); -app.component('ProgressBar', ProgressBar); -app.component('RadioButton', RadioButton); -app.component('Rating', Rating); -app.component('SelectButton', SelectButton); -app.component('ScrollPanel', ScrollPanel); -app.component('ScrollTop', ScrollTop); -app.component('Slider', Slider); -app.component('Sidebar', Sidebar); -app.component('Skeleton', Skeleton); -app.component('SplitButton', SplitButton); -app.component('Splitter', Splitter); -app.component('SplitterPanel', SplitterPanel); -app.component('Steps', Steps); -app.component('TabMenu', TabMenu); -app.component('TabView', TabView); -app.component('TabPanel', TabPanel); -app.component('Tag', Tag); -app.component('Textarea', Textarea); -app.component('TieredMenu', TieredMenu); -app.component('Timeline', Timeline); -app.component('Toast', Toast); -app.component('Toolbar', Toolbar); -app.component('ToggleButton', ToggleButton); -app.component('Tree', Tree); -app.component('TreeSelect', TreeSelect); -app.component('TreeTable', TreeTable); -app.component('TriStateCheckbox', TriStateCheckbox); +app.component("Accordion", Accordion); +app.component("AccordionTab", AccordionTab); +app.component("AutoComplete", AutoComplete); +app.component("Avatar", Avatar); +app.component("AvatarGroup", AvatarGroup); +app.component("Badge", Badge); +app.component("Breadcrumb", Breadcrumb); +app.component("Button", Button); +app.component("Calendar", Calendar); +app.component("Card", Card); +app.component("Carousel", Carousel); +app.component("Chart", Chart); +app.component("Checkbox", Checkbox); +app.component("Chip", Chip); +app.component("Chips", Chips); +app.component("ColorPicker", ColorPicker); +app.component("Column", Column); +app.component("ConfirmDialog", ConfirmDialog); +app.component("ConfirmPopup", ConfirmPopup); +app.component("ContextMenu", ContextMenu); +app.component("DataTable", DataTable); +app.component("DataView", DataView); +app.component("DataViewLayoutOptions", DataViewLayoutOptions); +app.component("Dialog", Dialog); +app.component("Divider", Divider); +app.component("Dropdown", Dropdown); +app.component("Fieldset", Fieldset); +app.component("FileUpload", FileUpload); +app.component("Image", Image); +app.component("InlineMessage", InlineMessage); +app.component("Inplace", Inplace); +app.component("InputMask", InputMask); +app.component("InputNumber", InputNumber); +app.component("InputSwitch", InputSwitch); +app.component("InputText", InputText); +app.component("Galleria", Galleria); +app.component("Knob", Knob); +app.component("Listbox", Listbox); +app.component("MegaMenu", MegaMenu); +app.component("Menu", Menu); +app.component("Menubar", Menubar); +app.component("Message", Message); +app.component("MultiSelect", MultiSelect); +app.component("OrderList", OrderList); +app.component("OrganizationChart", OrganizationChart); +app.component("OverlayPanel", OverlayPanel); +app.component("Paginator", Paginator); +app.component("Panel", Panel); +app.component("PanelMenu", PanelMenu); +app.component("Password", Password); +app.component("PickList", PickList); +app.component("ProgressBar", ProgressBar); +app.component("RadioButton", RadioButton); +app.component("Rating", Rating); +app.component("SelectButton", SelectButton); +app.component("ScrollPanel", ScrollPanel); +app.component("ScrollTop", ScrollTop); +app.component("Slider", Slider); +app.component("Sidebar", Sidebar); +app.component("Skeleton", Skeleton); +app.component("SplitButton", SplitButton); +app.component("Splitter", Splitter); +app.component("SplitterPanel", SplitterPanel); +app.component("Steps", Steps); +app.component("TabMenu", TabMenu); +app.component("TabView", TabView); +app.component("TabPanel", TabPanel); +app.component("Tag", Tag); +app.component("Textarea", Textarea); +app.component("TieredMenu", TieredMenu); +app.component("Timeline", Timeline); +app.component("Toast", Toast); +app.component("Toolbar", Toolbar); +app.component("ToggleButton", ToggleButton); +app.component("Tree", Tree); +app.component("TreeSelect", TreeSelect); +app.component("TreeTable", TreeTable); +app.component("TriStateCheckbox", TriStateCheckbox); -app.component('BlockViewer', BlockViewer); +app.component("BlockViewer", BlockViewer); -app.mount('#app'); \ No newline at end of file +app.mount("#app"); diff --git a/vite.config.ts b/vite.config.ts new file mode 100644 index 00000000..9bcdbcaa --- /dev/null +++ b/vite.config.ts @@ -0,0 +1,15 @@ +import { defineConfig } from "vite"; +import createVuePlugin from "@vitejs/plugin-vue"; + +// https://vitejs.dev/config/ + +export default defineConfig(async () => { + return { + resolve: { + alias: { + "#src": "./src", + }, + }, + plugins: [createVuePlugin()], + }; +}); diff --git a/vue.config.js b/vue.config.js deleted file mode 100644 index 90e9b42f..00000000 --- a/vue.config.js +++ /dev/null @@ -1,3 +0,0 @@ -module.exports = { - publicPath: process.env.NODE_ENV === 'production' ? '/sakai-vue' : '/' -} \ No newline at end of file From fafbbc47fc3c82b7b47fc20c97405be17ebc9e8a Mon Sep 17 00:00:00 2001 From: Sandbox User Date: Fri, 3 Jun 2022 17:28:05 -0500 Subject: [PATCH 2/6] revert to single with semi, but add vite standard prettier config going forward. --- .prettierrc | 11 + src/main.js | 370 +++++++++++++++---------------- vite.config.ts => vite.config.js | 0 3 files changed, 196 insertions(+), 185 deletions(-) create mode 100644 .prettierrc rename vite.config.ts => vite.config.js (100%) diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 00000000..e2142eb8 --- /dev/null +++ b/.prettierrc @@ -0,0 +1,11 @@ +{ + "printWidth": 80, + "tabWidth": 2, + "useTabs": false, + "semi": false, + "singleQuote": true, + "trailingComma": "none", + "bracketSpacing": true, + "jsxBracketSameLine": false, + "fluid": false +} diff --git a/src/main.js b/src/main.js index 49b0196b..bee498bd 100644 --- a/src/main.js +++ b/src/main.js @@ -1,102 +1,102 @@ -import "primevue/resources/primevue.min.css"; -import "primeflex/primeflex.css"; -import "primeicons/primeicons.css"; -import "primevue/resources/themes/lara-light-indigo/theme.css"; -import "prismjs/themes/prism-coy.css"; -import "./assets/styles/layout.scss"; -import "./assets/demo/flags/flags.css"; +import 'primevue/resources/primevue.min.css'; +import 'primeflex/primeflex.css'; +import 'primeicons/primeicons.css'; +import 'primevue/resources/themes/lara-light-indigo/theme.css'; +import 'prismjs/themes/prism-coy.css'; +import './assets/styles/layout.scss'; +import './assets/demo/flags/flags.css'; -import { createApp, reactive } from "vue"; -import router from "./router"; -import AppWrapper from "./AppWrapper.vue"; -import PrimeVue from "primevue/config"; -import AutoComplete from "primevue/autocomplete"; -import Accordion from "primevue/accordion"; -import AccordionTab from "primevue/accordiontab"; -import Avatar from "primevue/avatar"; -import AvatarGroup from "primevue/avatargroup"; -import Badge from "primevue/badge"; -import BadgeDirective from "primevue/badgedirective"; -import Button from "primevue/button"; -import Breadcrumb from "primevue/breadcrumb"; -import Calendar from "primevue/calendar"; -import Card from "primevue/card"; -import Carousel from "primevue/carousel"; -import Chart from "primevue/chart"; -import Checkbox from "primevue/checkbox"; -import Chip from "primevue/chip"; -import Chips from "primevue/chips"; -import ColorPicker from "primevue/colorpicker"; -import Column from "primevue/column"; -import ConfirmDialog from "primevue/confirmdialog"; -import ConfirmPopup from "primevue/confirmpopup"; -import ConfirmationService from "primevue/confirmationservice"; -import ContextMenu from "primevue/contextmenu"; -import DataTable from "primevue/datatable"; -import DataView from "primevue/dataview"; -import DataViewLayoutOptions from "primevue/dataviewlayoutoptions"; -import Dialog from "primevue/dialog"; -import Divider from "primevue/divider"; -import Dropdown from "primevue/dropdown"; -import Fieldset from "primevue/fieldset"; -import FileUpload from "primevue/fileupload"; -import Image from "primevue/image"; -import InlineMessage from "primevue/inlinemessage"; -import Inplace from "primevue/inplace"; -import InputMask from "primevue/inputmask"; -import InputNumber from "primevue/inputnumber"; -import InputSwitch from "primevue/inputswitch"; -import InputText from "primevue/inputtext"; -import Knob from "primevue/knob"; -import Galleria from "primevue/galleria"; -import Listbox from "primevue/listbox"; -import MegaMenu from "primevue/megamenu"; -import Menu from "primevue/menu"; -import Menubar from "primevue/menubar"; -import Message from "primevue/message"; -import MultiSelect from "primevue/multiselect"; -import OrderList from "primevue/orderlist"; -import OrganizationChart from "primevue/organizationchart"; -import OverlayPanel from "primevue/overlaypanel"; -import Paginator from "primevue/paginator"; -import Panel from "primevue/panel"; -import PanelMenu from "primevue/panelmenu"; -import Password from "primevue/password"; -import PickList from "primevue/picklist"; -import ProgressBar from "primevue/progressbar"; -import Rating from "primevue/rating"; -import RadioButton from "primevue/radiobutton"; -import Ripple from "primevue/ripple"; -import SelectButton from "primevue/selectbutton"; -import ScrollPanel from "primevue/scrollpanel"; -import ScrollTop from "primevue/scrolltop"; -import Slider from "primevue/slider"; -import Sidebar from "primevue/sidebar"; -import Skeleton from "primevue/skeleton"; -import SplitButton from "primevue/splitbutton"; -import Splitter from "primevue/splitter"; -import SplitterPanel from "primevue/splitterpanel"; -import Steps from "primevue/steps"; -import StyleClass from "primevue/styleclass"; -import TabMenu from "primevue/tabmenu"; -import Tag from "primevue/tag"; -import TieredMenu from "primevue/tieredmenu"; -import Textarea from "primevue/textarea"; -import Timeline from "primevue/timeline"; -import Toast from "primevue/toast"; -import ToastService from "primevue/toastservice"; -import Toolbar from "primevue/toolbar"; -import TabView from "primevue/tabview"; -import TabPanel from "primevue/tabpanel"; -import Tooltip from "primevue/tooltip"; -import ToggleButton from "primevue/togglebutton"; -import Tree from "primevue/tree"; -import TreeSelect from "primevue/treeselect"; -import TreeTable from "primevue/treetable"; -import TriStateCheckbox from "primevue/tristatecheckbox"; +import { createApp, reactive } from 'vue'; +import router from './router'; +import AppWrapper from './AppWrapper.vue'; +import PrimeVue from 'primevue/config'; +import AutoComplete from 'primevue/autocomplete'; +import Accordion from 'primevue/accordion'; +import AccordionTab from 'primevue/accordiontab'; +import Avatar from 'primevue/avatar'; +import AvatarGroup from 'primevue/avatargroup'; +import Badge from 'primevue/badge'; +import BadgeDirective from 'primevue/badgedirective'; +import Button from 'primevue/button'; +import Breadcrumb from 'primevue/breadcrumb'; +import Calendar from 'primevue/calendar'; +import Card from 'primevue/card'; +import Carousel from 'primevue/carousel'; +import Chart from 'primevue/chart'; +import Checkbox from 'primevue/checkbox'; +import Chip from 'primevue/chip'; +import Chips from 'primevue/chips'; +import ColorPicker from 'primevue/colorpicker'; +import Column from 'primevue/column'; +import ConfirmDialog from 'primevue/confirmdialog'; +import ConfirmPopup from 'primevue/confirmpopup'; +import ConfirmationService from 'primevue/confirmationservice'; +import ContextMenu from 'primevue/contextmenu'; +import DataTable from 'primevue/datatable'; +import DataView from 'primevue/dataview'; +import DataViewLayoutOptions from 'primevue/dataviewlayoutoptions'; +import Dialog from 'primevue/dialog'; +import Divider from 'primevue/divider'; +import Dropdown from 'primevue/dropdown'; +import Fieldset from 'primevue/fieldset'; +import FileUpload from 'primevue/fileupload'; +import Image from 'primevue/image'; +import InlineMessage from 'primevue/inlinemessage'; +import Inplace from 'primevue/inplace'; +import InputMask from 'primevue/inputmask'; +import InputNumber from 'primevue/inputnumber'; +import InputSwitch from 'primevue/inputswitch'; +import InputText from 'primevue/inputtext'; +import Knob from 'primevue/knob'; +import Galleria from 'primevue/galleria'; +import Listbox from 'primevue/listbox'; +import MegaMenu from 'primevue/megamenu'; +import Menu from 'primevue/menu'; +import Menubar from 'primevue/menubar'; +import Message from 'primevue/message'; +import MultiSelect from 'primevue/multiselect'; +import OrderList from 'primevue/orderlist'; +import OrganizationChart from 'primevue/organizationchart'; +import OverlayPanel from 'primevue/overlaypanel'; +import Paginator from 'primevue/paginator'; +import Panel from 'primevue/panel'; +import PanelMenu from 'primevue/panelmenu'; +import Password from 'primevue/password'; +import PickList from 'primevue/picklist'; +import ProgressBar from 'primevue/progressbar'; +import Rating from 'primevue/rating'; +import RadioButton from 'primevue/radiobutton'; +import Ripple from 'primevue/ripple'; +import SelectButton from 'primevue/selectbutton'; +import ScrollPanel from 'primevue/scrollpanel'; +import ScrollTop from 'primevue/scrolltop'; +import Slider from 'primevue/slider'; +import Sidebar from 'primevue/sidebar'; +import Skeleton from 'primevue/skeleton'; +import SplitButton from 'primevue/splitbutton'; +import Splitter from 'primevue/splitter'; +import SplitterPanel from 'primevue/splitterpanel'; +import Steps from 'primevue/steps'; +import StyleClass from 'primevue/styleclass'; +import TabMenu from 'primevue/tabmenu'; +import Tag from 'primevue/tag'; +import TieredMenu from 'primevue/tieredmenu'; +import Textarea from 'primevue/textarea'; +import Timeline from 'primevue/timeline'; +import Toast from 'primevue/toast'; +import ToastService from 'primevue/toastservice'; +import Toolbar from 'primevue/toolbar'; +import TabView from 'primevue/tabview'; +import TabPanel from 'primevue/tabpanel'; +import Tooltip from 'primevue/tooltip'; +import ToggleButton from 'primevue/togglebutton'; +import Tree from 'primevue/tree'; +import TreeSelect from 'primevue/treeselect'; +import TreeTable from 'primevue/treetable'; +import TriStateCheckbox from 'primevue/tristatecheckbox'; -import CodeHighlight from "./AppCodeHighlight"; -import BlockViewer from "./BlockViewer.vue"; +import CodeHighlight from './AppCodeHighlight'; +import BlockViewer from './BlockViewer.vue'; router.beforeEach(function (to, from, next) { window.scrollTo(0, 0); @@ -106,100 +106,100 @@ router.beforeEach(function (to, from, next) { const app = createApp(AppWrapper); app.config.globalProperties.$appState = reactive({ - theme: "lara-light-indigo", - darkTheme: false, + theme: 'lara-light-indigo', + darkTheme: false }); -app.use(PrimeVue, { ripple: true, inputStyle: "outlined" }); +app.use(PrimeVue, { ripple: true, inputStyle: 'outlined' }); app.use(ConfirmationService); app.use(ToastService); app.use(router); -app.directive("tooltip", Tooltip); -app.directive("ripple", Ripple); -app.directive("code", CodeHighlight); -app.directive("badge", BadgeDirective); -app.directive("styleclass", StyleClass); +app.directive('tooltip', Tooltip); +app.directive('ripple', Ripple); +app.directive('code', CodeHighlight); +app.directive('badge', BadgeDirective); +app.directive('styleclass', StyleClass); -app.component("Accordion", Accordion); -app.component("AccordionTab", AccordionTab); -app.component("AutoComplete", AutoComplete); -app.component("Avatar", Avatar); -app.component("AvatarGroup", AvatarGroup); -app.component("Badge", Badge); -app.component("Breadcrumb", Breadcrumb); -app.component("Button", Button); -app.component("Calendar", Calendar); -app.component("Card", Card); -app.component("Carousel", Carousel); -app.component("Chart", Chart); -app.component("Checkbox", Checkbox); -app.component("Chip", Chip); -app.component("Chips", Chips); -app.component("ColorPicker", ColorPicker); -app.component("Column", Column); -app.component("ConfirmDialog", ConfirmDialog); -app.component("ConfirmPopup", ConfirmPopup); -app.component("ContextMenu", ContextMenu); -app.component("DataTable", DataTable); -app.component("DataView", DataView); -app.component("DataViewLayoutOptions", DataViewLayoutOptions); -app.component("Dialog", Dialog); -app.component("Divider", Divider); -app.component("Dropdown", Dropdown); -app.component("Fieldset", Fieldset); -app.component("FileUpload", FileUpload); -app.component("Image", Image); -app.component("InlineMessage", InlineMessage); -app.component("Inplace", Inplace); -app.component("InputMask", InputMask); -app.component("InputNumber", InputNumber); -app.component("InputSwitch", InputSwitch); -app.component("InputText", InputText); -app.component("Galleria", Galleria); -app.component("Knob", Knob); -app.component("Listbox", Listbox); -app.component("MegaMenu", MegaMenu); -app.component("Menu", Menu); -app.component("Menubar", Menubar); -app.component("Message", Message); -app.component("MultiSelect", MultiSelect); -app.component("OrderList", OrderList); -app.component("OrganizationChart", OrganizationChart); -app.component("OverlayPanel", OverlayPanel); -app.component("Paginator", Paginator); -app.component("Panel", Panel); -app.component("PanelMenu", PanelMenu); -app.component("Password", Password); -app.component("PickList", PickList); -app.component("ProgressBar", ProgressBar); -app.component("RadioButton", RadioButton); -app.component("Rating", Rating); -app.component("SelectButton", SelectButton); -app.component("ScrollPanel", ScrollPanel); -app.component("ScrollTop", ScrollTop); -app.component("Slider", Slider); -app.component("Sidebar", Sidebar); -app.component("Skeleton", Skeleton); -app.component("SplitButton", SplitButton); -app.component("Splitter", Splitter); -app.component("SplitterPanel", SplitterPanel); -app.component("Steps", Steps); -app.component("TabMenu", TabMenu); -app.component("TabView", TabView); -app.component("TabPanel", TabPanel); -app.component("Tag", Tag); -app.component("Textarea", Textarea); -app.component("TieredMenu", TieredMenu); -app.component("Timeline", Timeline); -app.component("Toast", Toast); -app.component("Toolbar", Toolbar); -app.component("ToggleButton", ToggleButton); -app.component("Tree", Tree); -app.component("TreeSelect", TreeSelect); -app.component("TreeTable", TreeTable); -app.component("TriStateCheckbox", TriStateCheckbox); +app.component('Accordion', Accordion); +app.component('AccordionTab', AccordionTab); +app.component('AutoComplete', AutoComplete); +app.component('Avatar', Avatar); +app.component('AvatarGroup', AvatarGroup); +app.component('Badge', Badge); +app.component('Breadcrumb', Breadcrumb); +app.component('Button', Button); +app.component('Calendar', Calendar); +app.component('Card', Card); +app.component('Carousel', Carousel); +app.component('Chart', Chart); +app.component('Checkbox', Checkbox); +app.component('Chip', Chip); +app.component('Chips', Chips); +app.component('ColorPicker', ColorPicker); +app.component('Column', Column); +app.component('ConfirmDialog', ConfirmDialog); +app.component('ConfirmPopup', ConfirmPopup); +app.component('ContextMenu', ContextMenu); +app.component('DataTable', DataTable); +app.component('DataView', DataView); +app.component('DataViewLayoutOptions', DataViewLayoutOptions); +app.component('Dialog', Dialog); +app.component('Divider', Divider); +app.component('Dropdown', Dropdown); +app.component('Fieldset', Fieldset); +app.component('FileUpload', FileUpload); +app.component('Image', Image); +app.component('InlineMessage', InlineMessage); +app.component('Inplace', Inplace); +app.component('InputMask', InputMask); +app.component('InputNumber', InputNumber); +app.component('InputSwitch', InputSwitch); +app.component('InputText', InputText); +app.component('Galleria', Galleria); +app.component('Knob', Knob); +app.component('Listbox', Listbox); +app.component('MegaMenu', MegaMenu); +app.component('Menu', Menu); +app.component('Menubar', Menubar); +app.component('Message', Message); +app.component('MultiSelect', MultiSelect); +app.component('OrderList', OrderList); +app.component('OrganizationChart', OrganizationChart); +app.component('OverlayPanel', OverlayPanel); +app.component('Paginator', Paginator); +app.component('Panel', Panel); +app.component('PanelMenu', PanelMenu); +app.component('Password', Password); +app.component('PickList', PickList); +app.component('ProgressBar', ProgressBar); +app.component('RadioButton', RadioButton); +app.component('Rating', Rating); +app.component('SelectButton', SelectButton); +app.component('ScrollPanel', ScrollPanel); +app.component('ScrollTop', ScrollTop); +app.component('Slider', Slider); +app.component('Sidebar', Sidebar); +app.component('Skeleton', Skeleton); +app.component('SplitButton', SplitButton); +app.component('Splitter', Splitter); +app.component('SplitterPanel', SplitterPanel); +app.component('Steps', Steps); +app.component('TabMenu', TabMenu); +app.component('TabView', TabView); +app.component('TabPanel', TabPanel); +app.component('Tag', Tag); +app.component('Textarea', Textarea); +app.component('TieredMenu', TieredMenu); +app.component('Timeline', Timeline); +app.component('Toast', Toast); +app.component('Toolbar', Toolbar); +app.component('ToggleButton', ToggleButton); +app.component('Tree', Tree); +app.component('TreeSelect', TreeSelect); +app.component('TreeTable', TreeTable); +app.component('TriStateCheckbox', TriStateCheckbox); -app.component("BlockViewer", BlockViewer); +app.component('BlockViewer', BlockViewer); -app.mount("#app"); +app.mount('#app'); diff --git a/vite.config.ts b/vite.config.js similarity index 100% rename from vite.config.ts rename to vite.config.js From 0daa1d9cdfe53c2a9aba4836ee01f89c752b5e45 Mon Sep 17 00:00:00 2001 From: Sandbox User Date: Fri, 10 Jun 2022 14:39:05 -0500 Subject: [PATCH 3/6] LF fix --- vite.config.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/vite.config.js b/vite.config.js index 9bcdbcaa..0acbe4bc 100644 --- a/vite.config.js +++ b/vite.config.js @@ -1,5 +1,5 @@ -import { defineConfig } from "vite"; -import createVuePlugin from "@vitejs/plugin-vue"; +import { defineConfig } from 'vite' +import createVuePlugin from '@vitejs/plugin-vue' // https://vitejs.dev/config/ @@ -7,9 +7,9 @@ export default defineConfig(async () => { return { resolve: { alias: { - "#src": "./src", - }, + '#src': './src' + } }, - plugins: [createVuePlugin()], - }; -}); + plugins: [createVuePlugin()] + } +}) From 240ff4907185959bb0f738e55b9d67a0c4705281 Mon Sep 17 00:00:00 2001 From: Sandbox User Date: Fri, 10 Jun 2022 14:54:05 -0500 Subject: [PATCH 4/6] path fix --- package.json | 10 ++++++---- vite.config.js | 3 ++- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index d73504e8..063fba7e 100644 --- a/package.json +++ b/package.json @@ -12,10 +12,9 @@ "preview": "vite preview" }, "devDependencies": { - "@vitejs/plugin-vue": "^3.0.0-alpha.1", - "vite": "^3.0.0-alpha.9", - "sass": "^1.45.0", - "sass-loader": "^8.0.2" + "@vitejs/plugin-vue": "^2.3.3", + "vite": "^2.9.12", + "sass": "^1.52.3" }, "dependencies": { "chart.js": "3.3.2", @@ -26,5 +25,8 @@ "prismjs": "1.9.0", "vue": "^3.2.36", "vue-router": "^4.0.15" + }, + "imports": { + "#src/*": "./src/*" } } diff --git a/vite.config.js b/vite.config.js index 0acbe4bc..928c2cb5 100644 --- a/vite.config.js +++ b/vite.config.js @@ -1,5 +1,6 @@ import { defineConfig } from 'vite' import createVuePlugin from '@vitejs/plugin-vue' +import path from 'path' // https://vitejs.dev/config/ @@ -7,7 +8,7 @@ export default defineConfig(async () => { return { resolve: { alias: { - '#src': './src' + '#src': path.resolve('./src') } }, plugins: [createVuePlugin()] From 22270049f68a9ff09d9dee4d3c7535fac3be99a7 Mon Sep 17 00:00:00 2001 From: Sandbox User Date: Fri, 10 Jun 2022 15:00:43 -0500 Subject: [PATCH 5/6] remove heavy unused code --- public/data/customers-xlarge.json | 8004 ----------------------------- src/service/CustomerService.js | 47 +- 2 files changed, 25 insertions(+), 8026 deletions(-) delete mode 100644 public/data/customers-xlarge.json diff --git a/public/data/customers-xlarge.json b/public/data/customers-xlarge.json deleted file mode 100644 index 14543ff2..00000000 --- a/public/data/customers-xlarge.json +++ /dev/null @@ -1,8004 +0,0 @@ -{ - "data": [ - { - "id": 1000, - "name": "James Butt", - "country": { - "name": "Algeria", - "code": "dz" - }, - "company": "Benton, John B Jr", - "date": "2015-09-13", - "status": "unqualified", - "activity": 17, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1001, - "name": "Josephine Darakjy", - "country": { - "name": "Egypt", - "code": "eg" - }, - "company": "Chanay, Jeffrey A Esq", - "date": "2019-02-09", - "status": "proposal", - "activity": 0, - "representative": { - "name": "Amy Elsner", - "image": "amyelsner.png" - } - }, - { - "id": 1002, - "name": "Art Venere", - "country": { - "name": "Panama", - "code": "pa" - }, - "company": "Chemel, James L Cpa", - "date": "2017-05-13", - "status": "qualified", - "activity": 63, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1003, - "name": "Lenna Paprocki", - "country": { - "name": "Slovenia", - "code": "si" - }, - "company": "Feltz Printing Service", - "date": "2020-09-15", - "status": "new", - "activity": 37, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1004, - "name": "Donette Foller", - "country": { - "name": "South Africa", - "code": "za" - }, - "company": "Printing Dimensions", - "date": "2016-05-20", - "status": "proposal", - "activity": 33, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1005, - "name": "Simona Morasca", - "country": { - "name": "Egypt", - "code": "eg" - }, - "company": "Chapman, Ross E Esq", - "date": "2018-02-16", - "status": "qualified", - "activity": 68, - "representative": { - "name": "Ivan Magalhaes", - "image": "ivanmagalhaes.png" - } - }, - { - "id": 1006, - "name": "Mitsue Tollner", - "country": { - "name": "Paraguay", - "code": "py" - }, - "company": "Morlong Associates", - "date": "2018-02-19", - "status": "renewal", - "activity": 54, - "representative": { - "name": "Ivan Magalhaes", - "image": "ivanmagalhaes.png" - } - }, - { - "id": 1007, - "name": "Leota Dilliard", - "country": { - "name": "Serbia", - "code": "rs" - }, - "company": "Commercial Press", - "date": "2019-08-13", - "status": "renewal", - "activity": 69, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1008, - "name": "Sage Wieser", - "country": { - "name": "Egypt", - "code": "eg" - }, - "company": "Truhlar And Truhlar Attys", - "date": "2018-11-21", - "status": "unqualified", - "activity": 76, - "representative": { - "name": "Ivan Magalhaes", - "image": "ivanmagalhaes.png" - } - }, - { - "id": 1009, - "name": "Kris Marrier", - "country": { - "name": "Mexico", - "code": "mx" - }, - "company": "King, Christopher A Esq", - "date": "2015-07-07", - "status": "proposal", - "activity": 3, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1010, - "name": "Minna Amigon", - "country": { - "name": "Romania", - "code": "ro" - }, - "company": "Dorl, James J Esq", - "date": "2018-11-07", - "status": "qualified", - "activity": 38, - "representative": { - "name": "Anna Fali", - "image": "annafali.png" - } - }, - { - "id": 1011, - "name": "Abel Maclead", - "country": { - "name": "Singapore", - "code": "sg" - }, - "company": "Rangoni Of Florence", - "date": "2017-03-11", - "status": "qualified", - "activity": 87, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1012, - "name": "Kiley Caldarera", - "country": { - "name": "Serbia", - "code": "rs" - }, - "company": "Feiner Bros", - "date": "2015-10-20", - "status": "unqualified", - "activity": 80, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1013, - "name": "Graciela Ruta", - "country": { - "name": "Chile", - "code": "cl" - }, - "company": "Buckley Miller \u0026 Wright", - "date": "2016-07-25", - "status": "negotiation", - "activity": 59, - "representative": { - "name": "Amy Elsner", - "image": "amyelsner.png" - } - }, - { - "id": 1014, - "name": "Cammy Albares", - "country": { - "name": "Philippines", - "code": "ph" - }, - "company": "Rousseaux, Michael Esq", - "date": "2019-06-25", - "status": "new", - "activity": 90, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1015, - "name": "Mattie Poquette", - "country": { - "name": "Venezuela", - "code": "ve" - }, - "company": "Century Communications", - "date": "2017-12-12", - "status": "negotiation", - "activity": 52, - "representative": { - "name": "Anna Fali", - "image": "annafali.png" - } - }, - { - "id": 1016, - "name": "Meaghan Garufi", - "country": { - "name": "Malaysia", - "code": "my" - }, - "company": "Bolton, Wilbur Esq", - "date": "2018-07-04", - "status": "unqualified", - "activity": 31, - "representative": { - "name": "Ivan Magalhaes", - "image": "ivanmagalhaes.png" - } - }, - { - "id": 1017, - "name": "Gladys Rim", - "country": { - "name": "Netherlands", - "code": "nl" - }, - "company": "T M Byxbee Company Pc", - "date": "2020-02-27", - "status": "renewal", - "activity": 48, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1018, - "name": "Yuki Whobrey", - "country": { - "name": "Israel", - "code": "il" - }, - "company": "Farmers Insurance Group", - "date": "2017-12-21", - "status": "negotiation", - "activity": 16, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1019, - "name": "Fletcher Flosi", - "country": { - "name": "Argentina", - "code": "ar" - }, - "company": "Post Box Services Plus", - "date": "2016-01-04", - "status": "renewal", - "activity": 19, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1020, - "name": "Bette Nicka", - "country": { - "name": "Paraguay", - "code": "py" - }, - "company": "Sport En Art", - "date": "2016-10-21", - "status": "renewal", - "activity": 100, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1021, - "name": "Veronika Inouye", - "country": { - "name": "Ecuador", - "code": "ec" - }, - "company": "C 4 Network Inc", - "date": "2017-03-24", - "status": "renewal", - "activity": 72, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1022, - "name": "Willard Kolmetz", - "country": { - "name": "Tunisia", - "code": "tn" - }, - "company": "Ingalls, Donald R Esq", - "date": "2017-04-15", - "status": "renewal", - "activity": 94, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1023, - "name": "Maryann Royster", - "country": { - "name": "Belarus", - "code": "by" - }, - "company": "Franklin, Peter L Esq", - "date": "2017-03-11", - "status": "qualified", - "activity": 56, - "representative": { - "name": "Elwin Sharvill", - "image": "elwinsharvill.png" - } - }, - { - "id": 1024, - "name": "Alisha Slusarski", - "country": { - "name": "Iceland", - "code": "is" - }, - "company": "Wtlz Power 107 Fm", - "date": "2018-03-27", - "status": "qualified", - "activity": 7, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1025, - "name": "Allene Iturbide", - "country": { - "name": "Italy", - "code": "it" - }, - "company": "Ledecky, David Esq", - "date": "2016-02-20", - "status": "qualified", - "activity": 1, - "representative": { - "name": "Ivan Magalhaes", - "image": "ivanmagalhaes.png" - } - }, - { - "id": 1026, - "name": "Chanel Caudy", - "country": { - "name": "Argentina", - "code": "ar" - }, - "company": "Professional Image Inc", - "date": "2018-06-24", - "status": "new", - "activity": 26, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1027, - "name": "Ezekiel Chui", - "country": { - "name": "Ireland", - "code": "ie" - }, - "company": "Sider, Donald C Esq", - "date": "2016-09-24", - "status": "new", - "activity": 76, - "representative": { - "name": "Amy Elsner", - "image": "amyelsner.png" - } - }, - { - "id": 1028, - "name": "Willow Kusko", - "country": { - "name": "Romania", - "code": "ro" - }, - "company": "U Pull It", - "date": "2020-04-11", - "status": "qualified", - "activity": 7, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1029, - "name": "Bernardo Figeroa", - "country": { - "name": "Israel", - "code": "il" - }, - "company": "Clark, Richard Cpa", - "date": "2018-04-11", - "status": "renewal", - "activity": 81, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1030, - "name": "Ammie Corrio", - "country": { - "name": "Hungary", - "code": "hu" - }, - "company": "Moskowitz, Barry S", - "date": "2016-06-11", - "status": "negotiation", - "activity": 56, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1031, - "name": "Francine Vocelka", - "country": { - "name": "Honduras", - "code": "hn" - }, - "company": "Cascade Realty Advisors Inc", - "date": "2017-08-02", - "status": "qualified", - "activity": 94, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1032, - "name": "Ernie Stenseth", - "country": { - "name": "Australia", - "code": "au" - }, - "company": "Knwz Newsradio", - "date": "2018-06-06", - "status": "renewal", - "activity": 68, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1033, - "name": "Albina Glick", - "country": { - "name": "Ukraine", - "code": "ua" - }, - "company": "Giampetro, Anthony D", - "date": "2019-08-08", - "status": "proposal", - "activity": 85, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1034, - "name": "Alishia Sergi", - "country": { - "name": "Qatar", - "code": "qa" - }, - "company": "Milford Enterprises Inc", - "date": "2018-05-19", - "status": "negotiation", - "activity": 46, - "representative": { - "name": "Ivan Magalhaes", - "image": "ivanmagalhaes.png" - } - }, - { - "id": 1035, - "name": "Solange Shinko", - "country": { - "name": "Cameroon", - "code": "cm" - }, - "company": "Mosocco, Ronald A", - "date": "2015-02-12", - "status": "qualified", - "activity": 32, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1036, - "name": "Jose Stockham", - "country": { - "name": "Italy", - "code": "it" - }, - "company": "Tri State Refueler Co", - "date": "2018-04-25", - "status": "qualified", - "activity": 77, - "representative": { - "name": "Amy Elsner", - "image": "amyelsner.png" - } - }, - { - "id": 1037, - "name": "Rozella Ostrosky", - "country": { - "name": "Venezuela", - "code": "ve" - }, - "company": "Parkway Company", - "date": "2016-02-27", - "status": "unqualified", - "activity": 66, - "representative": { - "name": "Amy Elsner", - "image": "amyelsner.png" - } - }, - { - "id": 1038, - "name": "Valentine Gillian", - "country": { - "name": "Paraguay", - "code": "py" - }, - "company": "Fbs Business Finance", - "date": "2019-09-17", - "status": "qualified", - "activity": 25, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1039, - "name": "Kati Rulapaugh", - "country": { - "name": "Puerto Rico", - "code": "pr" - }, - "company": "Eder Assocs Consltng Engrs Pc", - "date": "2016-12-03", - "status": "renewal", - "activity": 51, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1040, - "name": "Youlanda Schemmer", - "country": { - "name": "Bolivia", - "code": "bo" - }, - "company": "Tri M Tool Inc", - "date": "2017-12-15", - "status": "negotiation", - "activity": 49, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1041, - "name": "Dyan Oldroyd", - "country": { - "name": "Argentina", - "code": "ar" - }, - "company": "International Eyelets Inc", - "date": "2017-02-02", - "status": "qualified", - "activity": 5, - "representative": { - "name": "Amy Elsner", - "image": "amyelsner.png" - } - }, - { - "id": 1042, - "name": "Roxane Campain", - "country": { - "name": "France", - "code": "fr" - }, - "company": "Rapid Trading Intl", - "date": "2018-12-25", - "status": "unqualified", - "activity": 100, - "representative": { - "name": "Anna Fali", - "image": "annafali.png" - } - }, - { - "id": 1043, - "name": "Lavera Perin", - "country": { - "name": "Vietnam", - "code": "vn" - }, - "company": "Abc Enterprises Inc", - "date": "2018-04-10", - "status": "qualified", - "activity": 71, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1044, - "name": "Erick Ferencz", - "country": { - "name": "Belgium", - "code": "be" - }, - "company": "Cindy Turner Associates", - "date": "2018-05-06", - "status": "unqualified", - "activity": 54, - "representative": { - "name": "Amy Elsner", - "image": "amyelsner.png" - } - }, - { - "id": 1045, - "name": "Fatima Saylors", - "country": { - "name": "Canada", - "code": "ca" - }, - "company": "Stanton, James D Esq", - "date": "2019-07-10", - "status": "renewal", - "activity": 93, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1046, - "name": "Jina Briddick", - "country": { - "name": "Mexico", - "code": "mx" - }, - "company": "Grace Pastries Inc", - "date": "2018-02-19", - "status": "unqualified", - "activity": 97, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1047, - "name": "Kanisha Waycott", - "country": { - "name": "Ecuador", - "code": "ec" - }, - "company": "Schroer, Gene E Esq", - "date": "2019-11-27", - "status": "new", - "activity": 80, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1048, - "name": "Emerson Bowley", - "country": { - "name": "Finland", - "code": "fi" - }, - "company": "Knights Inn", - "date": "2018-11-24", - "status": "new", - "activity": 63, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1049, - "name": "Blair Malet", - "country": { - "name": "Finland", - "code": "fi" - }, - "company": "Bollinger Mach Shp \u0026 Shipyard", - "date": "2018-04-19", - "status": "new", - "activity": 92, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1050, - "name": "Brock Bolognia", - "country": { - "name": "Bolivia", - "code": "bo" - }, - "company": "Orinda News", - "date": "2019-09-06", - "status": "renewal", - "activity": 72, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1051, - "name": "Lorrie Nestle", - "country": { - "name": "Germany", - "code": "de" - }, - "company": "Ballard Spahr Andrews", - "date": "2018-04-26", - "status": "renewal", - "activity": 36, - "representative": { - "name": "Anna Fali", - "image": "annafali.png" - } - }, - { - "id": 1052, - "name": "Sabra Uyetake", - "country": { - "name": "Peru", - "code": "pe" - }, - "company": "Lowy Limousine Service", - "date": "2018-04-12", - "status": "new", - "activity": 31, - "representative": { - "name": "Amy Elsner", - "image": "amyelsner.png" - } - }, - { - "id": 1053, - "name": "Marjory Mastella", - "country": { - "name": "Netherlands", - "code": "nl" - }, - "company": "Vicon Corporation", - "date": "2018-01-24", - "status": "negotiation", - "activity": 89, - "representative": { - "name": "Anna Fali", - "image": "annafali.png" - } - }, - { - "id": 1054, - "name": "Karl Klonowski", - "country": { - "name": "Saudi Arabia", - "code": "sa" - }, - "company": "Rossi, Michael M", - "date": "2017-04-17", - "status": "unqualified", - "activity": 27, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1055, - "name": "Tonette Wenner", - "country": { - "name": "Australia", - "code": "au" - }, - "company": "Northwest Publishing", - "date": "2019-04-14", - "status": "qualified", - "activity": 27, - "representative": { - "name": "Elwin Sharvill", - "image": "elwinsharvill.png" - } - }, - { - "id": 1056, - "name": "Amber Monarrez", - "country": { - "name": "Sweden", - "code": "se" - }, - "company": "Branford Wire \u0026 Mfg Co", - "date": "2019-09-09", - "status": "new", - "activity": 79, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1057, - "name": "Shenika Seewald", - "country": { - "name": "Australia", - "code": "au" - }, - "company": "East Coast Marketing", - "date": "2017-02-18", - "status": "renewal", - "activity": 39, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1058, - "name": "Delmy Ahle", - "country": { - "name": "Belgium", - "code": "be" - }, - "company": "Wye Technologies Inc", - "date": "2020-10-05", - "status": "unqualified", - "activity": 55, - "representative": { - "name": "Anna Fali", - "image": "annafali.png" - } - }, - { - "id": 1059, - "name": "Deeanna Juhas", - "country": { - "name": "Sweden", - "code": "se" - }, - "company": "Healy, George W Iv", - "date": "2018-09-28", - "status": "negotiation", - "activity": 79, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1060, - "name": "Blondell Pugh", - "country": { - "name": "Ireland", - "code": "ie" - }, - "company": "Alpenlite Inc", - "date": "2016-06-16", - "status": "renewal", - "activity": 49, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1061, - "name": "Jamal Vanausdal", - "country": { - "name": "Morocco", - "code": "ma" - }, - "company": "Hubbard, Bruce Esq", - "date": "2017-05-25", - "status": "proposal", - "activity": 87, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1062, - "name": "Cecily Hollack", - "country": { - "name": "Bolivia", - "code": "bo" - }, - "company": "Arthur A Oliver \u0026 Son Inc", - "date": "2020-05-09", - "status": "negotiation", - "activity": 5, - "representative": { - "name": "Amy Elsner", - "image": "amyelsner.png" - } - }, - { - "id": 1063, - "name": "Carmelina Lindall", - "country": { - "name": "Puerto Rico", - "code": "pr" - }, - "company": "George Jessop Carter Jewelers", - "date": "2019-09-07", - "status": "qualified", - "activity": 77, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1064, - "name": "Maurine Yglesias", - "country": { - "name": "Taiwan", - "code": "tw" - }, - "company": "Schultz, Thomas C Md", - "date": "2015-08-10", - "status": "renewal", - "activity": 94, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1065, - "name": "Tawna Buvens", - "country": { - "name": "Indonesia", - "code": "id" - }, - "company": "H H H Enterprises Inc", - "date": "2018-03-20", - "status": "new", - "activity": 25, - "representative": { - "name": "Amy Elsner", - "image": "amyelsner.png" - } - }, - { - "id": 1066, - "name": "Penney Weight", - "country": { - "name": "South Africa", - "code": "za" - }, - "company": "Hawaiian King Hotel", - "date": "2020-03-03", - "status": "qualified", - "activity": 96, - "representative": { - "name": "Amy Elsner", - "image": "amyelsner.png" - } - }, - { - "id": 1067, - "name": "Elly Morocco", - "country": { - "name": "Thailand", - "code": "th" - }, - "company": "Killion Industries", - "date": "2018-09-18", - "status": "qualified", - "activity": 38, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1068, - "name": "Ilene Eroman", - "country": { - "name": "Netherlands", - "code": "nl" - }, - "company": "Robinson, William J Esq", - "date": "2019-06-08", - "status": "new", - "activity": 49, - "representative": { - "name": "Anna Fali", - "image": "annafali.png" - } - }, - { - "id": 1069, - "name": "Vallie Mondella", - "country": { - "name": "Latvia", - "code": "lv" - }, - "company": "Private Properties", - "date": "2018-12-06", - "status": "new", - "activity": 16, - "representative": { - "name": "Ivan Magalhaes", - "image": "ivanmagalhaes.png" - } - }, - { - "id": 1070, - "name": "Kallie Blackwood", - "country": { - "name": "Iceland", - "code": "is" - }, - "company": "Rowley Schlimgen Inc", - "date": "2017-04-05", - "status": "unqualified", - "activity": 25, - "representative": { - "name": "Amy Elsner", - "image": "amyelsner.png" - } - }, - { - "id": 1071, - "name": "Johnetta Abdallah", - "country": { - "name": "Netherlands", - "code": "nl" - }, - "company": "Forging Specialties", - "date": "2015-02-02", - "status": "new", - "activity": 16, - "representative": { - "name": "Elwin Sharvill", - "image": "elwinsharvill.png" - } - }, - { - "id": 1072, - "name": "Bobbye Rhym", - "country": { - "name": "Ukraine", - "code": "ua" - }, - "company": "Smits, Patricia Garity", - "date": "2018-08-17", - "status": "qualified", - "activity": 85, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1073, - "name": "Micaela Rhymes", - "country": { - "name": "France", - "code": "fr" - }, - "company": "H Lee Leonard Attorney At Law", - "date": "2018-09-08", - "status": "renewal", - "activity": 92, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1074, - "name": "Tamar Hoogland", - "country": { - "name": "Guatemala", - "code": "gt" - }, - "company": "A K Construction Co", - "date": "2018-11-13", - "status": "proposal", - "activity": 22, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1075, - "name": "Moon Parlato", - "country": { - "name": "Czech Republic", - "code": "cz" - }, - "company": "Ambelang, Jessica M Md", - "date": "2019-08-18", - "status": "renewal", - "activity": 64, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1076, - "name": "Laurel Reitler", - "country": { - "name": "United Kingdom", - "code": "gb" - }, - "company": "Q A Service", - "date": "2015-04-02", - "status": "negotiation", - "activity": 80, - "representative": { - "name": "Amy Elsner", - "image": "amyelsner.png" - } - }, - { - "id": 1077, - "name": "Delisa Crupi", - "country": { - "name": "Taiwan", - "code": "tw" - }, - "company": "Wood \u0026 Whitacre Contractors", - "date": "2017-09-15", - "status": "unqualified", - "activity": 70, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1078, - "name": "Viva Toelkes", - "country": { - "name": "United States", - "code": "us" - }, - "company": "Mark Iv Press Ltd", - "date": "2017-03-27", - "status": "qualified", - "activity": 16, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1079, - "name": "Elza Lipke", - "country": { - "name": "Ireland", - "code": "ie" - }, - "company": "Museum Of Science \u0026 Industry", - "date": "2017-06-01", - "status": "proposal", - "activity": 90, - "representative": { - "name": "Elwin Sharvill", - "image": "elwinsharvill.png" - } - }, - { - "id": 1080, - "name": "Devorah Chickering", - "country": { - "name": "Spain", - "code": "es" - }, - "company": "Garrison Ind", - "date": "2017-03-14", - "status": "proposal", - "activity": 96, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1081, - "name": "Timothy Mulqueen", - "country": { - "name": "Netherlands", - "code": "nl" - }, - "company": "Saronix Nymph Products", - "date": "2018-07-09", - "status": "renewal", - "activity": 77, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1082, - "name": "Arlette Honeywell", - "country": { - "name": "Panama", - "code": "pa" - }, - "company": "Smc Inc", - "date": "2018-09-11", - "status": "proposal", - "activity": 46, - "representative": { - "name": "Amy Elsner", - "image": "amyelsner.png" - } - }, - { - "id": 1083, - "name": "Dominque Dickerson", - "country": { - "name": "Argentina", - "code": "ar" - }, - "company": "E A I Electronic Assocs Inc", - "date": "2017-11-12", - "status": "qualified", - "activity": 83, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1084, - "name": "Lettie Isenhower", - "country": { - "name": "Canada", - "code": "ca" - }, - "company": "Conte, Christopher A Esq", - "date": "2016-03-01", - "status": "qualified", - "activity": 83, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1085, - "name": "Myra Munns", - "country": { - "name": "Lithuania", - "code": "lt" - }, - "company": "Anker Law Office", - "date": "2016-05-21", - "status": "unqualified", - "activity": 49, - "representative": { - "name": "Elwin Sharvill", - "image": "elwinsharvill.png" - } - }, - { - "id": 1086, - "name": "Stephaine Barfield", - "country": { - "name": "Belgium", - "code": "be" - }, - "company": "Beutelschies \u0026 Company", - "date": "2016-01-22", - "status": "new", - "activity": 34, - "representative": { - "name": "Anna Fali", - "image": "annafali.png" - } - }, - { - "id": 1087, - "name": "Lai Gato", - "country": { - "name": "Nigeria", - "code": "ng" - }, - "company": "Fligg, Kenneth I Jr", - "date": "2016-07-26", - "status": "unqualified", - "activity": 64, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1088, - "name": "Stephen Emigh", - "country": { - "name": "Cuba", - "code": "cu" - }, - "company": "Sharp, J Daniel Esq", - "date": "2020-07-24", - "status": "renewal", - "activity": 51, - "representative": { - "name": "Elwin Sharvill", - "image": "elwinsharvill.png" - } - }, - { - "id": 1089, - "name": "Tyra Shields", - "country": { - "name": "Honduras", - "code": "hn" - }, - "company": "Assink, Anne H Esq", - "date": "2019-11-10", - "status": "negotiation", - "activity": 11, - "representative": { - "name": "Anna Fali", - "image": "annafali.png" - } - }, - { - "id": 1090, - "name": "Tammara Wardrip", - "country": { - "name": "Saudi Arabia", - "code": "sa" - }, - "company": "Jewel My Shop Inc", - "date": "2016-06-05", - "status": "renewal", - "activity": 64, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1091, - "name": "Cory Gibes", - "country": { - "name": "Malaysia", - "code": "my" - }, - "company": "Chinese Translation Resources", - "date": "2016-02-28", - "status": "new", - "activity": 44, - "representative": { - "name": "Anna Fali", - "image": "annafali.png" - } - }, - { - "id": 1092, - "name": "Danica Bruschke", - "country": { - "name": "Taiwan", - "code": "tw" - }, - "company": "Stevens, Charles T", - "date": "2018-12-13", - "status": "unqualified", - "activity": 62, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1093, - "name": "Wilda Giguere", - "country": { - "name": "Iceland", - "code": "is" - }, - "company": "Mclaughlin, Luther W Cpa", - "date": "2017-06-16", - "status": "new", - "activity": 79, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1094, - "name": "Elvera Benimadho", - "country": { - "name": "Malaysia", - "code": "my" - }, - "company": "Tree Musketeers", - "date": "2019-02-17", - "status": "proposal", - "activity": 50, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1095, - "name": "Carma Vanheusen", - "country": { - "name": "Turkey", - "code": "tr" - }, - "company": "Springfield Div Oh Edison Co", - "date": "2019-11-26", - "status": "renewal", - "activity": 84, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1096, - "name": "Malinda Hochard", - "country": { - "name": "Serbia", - "code": "rs" - }, - "company": "Logan Memorial Hospital", - "date": "2016-07-06", - "status": "new", - "activity": 88, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1097, - "name": "Natalie Fern", - "country": { - "name": "Canada", - "code": "ca" - }, - "company": "Kelly, Charles G Esq", - "date": "2019-10-02", - "status": "proposal", - "activity": 44, - "representative": { - "name": "Amy Elsner", - "image": "amyelsner.png" - } - }, - { - "id": 1098, - "name": "Lisha Centini", - "country": { - "name": "Netherlands", - "code": "nl" - }, - "company": "Industrial Paper Shredders Inc", - "date": "2018-07-05", - "status": "new", - "activity": 7, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1099, - "name": "Arlene Klusman", - "country": { - "name": "Jamaica", - "code": "jm" - }, - "company": "Beck Horizon Builders", - "date": "2018-05-14", - "status": "proposal", - "activity": 99, - "representative": { - "name": "Elwin Sharvill", - "image": "elwinsharvill.png" - } - }, - { - "id": 1100, - "name": "Alease Buemi", - "country": { - "name": "Costa Rica", - "code": "cr" - }, - "company": "Porto Cayo At Hawks Cay", - "date": "2018-03-14", - "status": "unqualified", - "activity": 0, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1101, - "name": "Louisa Cronauer", - "country": { - "name": "Costa Rica", - "code": "cr" - }, - "company": "Pacific Grove Museum Ntrl Hist", - "date": "2018-09-23", - "status": "qualified", - "activity": 3, - "representative": { - "name": "Anna Fali", - "image": "annafali.png" - } - }, - { - "id": 1102, - "name": "Angella Cetta", - "country": { - "name": "Vietnam", - "code": "vn" - }, - "company": "Bender \u0026 Hatley Pc", - "date": "2018-04-10", - "status": "qualified", - "activity": 88, - "representative": { - "name": "Ivan Magalhaes", - "image": "ivanmagalhaes.png" - } - }, - { - "id": 1103, - "name": "Cyndy Goldammer", - "country": { - "name": "Burkina Faso", - "code": "bf" - }, - "company": "Di Cristina J \u0026 Son", - "date": "2017-09-18", - "status": "unqualified", - "activity": 92, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1104, - "name": "Rosio Cork", - "country": { - "name": "Singapore", - "code": "sg" - }, - "company": "Green Goddess", - "date": "2017-08-19", - "status": "negotiation", - "activity": 19, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1105, - "name": "Celeste Korando", - "country": { - "name": "Costa Rica", - "code": "cr" - }, - "company": "American Arts \u0026 Graphics", - "date": "2020-06-18", - "status": "proposal", - "activity": 21, - "representative": { - "name": "Amy Elsner", - "image": "amyelsner.png" - } - }, - { - "id": 1106, - "name": "Twana Felger", - "country": { - "name": "Croatia", - "code": "hr" - }, - "company": "Opryland Hotel", - "date": "2016-11-18", - "status": "negotiation", - "activity": 97, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1107, - "name": "Estrella Samu", - "country": { - "name": "Vietnam", - "code": "vn" - }, - "company": "Marking Devices Pubg Co", - "date": "2017-06-25", - "status": "unqualified", - "activity": 27, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1108, - "name": "Donte Kines", - "country": { - "name": "Slovakia", - "code": "sk" - }, - "company": "W Tc Industries Inc", - "date": "2019-02-16", - "status": "new", - "activity": 35, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1109, - "name": "Tiffiny Steffensmeier", - "country": { - "name": "Pakistan", - "code": "pk" - }, - "company": "Whitehall Robbins Labs Divsn", - "date": "2018-03-11", - "status": "new", - "activity": 81, - "representative": { - "name": "Ivan Magalhaes", - "image": "ivanmagalhaes.png" - } - }, - { - "id": 1110, - "name": "Edna Miceli", - "country": { - "name": "France", - "code": "fr" - }, - "company": "Sampler", - "date": "2017-10-15", - "status": "renewal", - "activity": 54, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1111, - "name": "Sue Kownacki", - "country": { - "name": "Jamaica", - "code": "jm" - }, - "company": "Juno Chefs Incorporated", - "date": "2017-03-17", - "status": "proposal", - "activity": 31, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1112, - "name": "Jesusa Shin", - "country": { - "name": "Ukraine", - "code": "ua" - }, - "company": "Carroccio, A Thomas Esq", - "date": "2017-04-06", - "status": "renewal", - "activity": 28, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1113, - "name": "Rolland Francescon", - "country": { - "name": "United Kingdom", - "code": "gb" - }, - "company": "Stanley, Richard L Esq", - "date": "2019-02-03", - "status": "qualified", - "activity": 45, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1114, - "name": "Pamella Schmierer", - "country": { - "name": "Belgium", - "code": "be" - }, - "company": "K Cs Cstm Mouldings Windows", - "date": "2016-09-22", - "status": "unqualified", - "activity": 34, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1115, - "name": "Glory Kulzer", - "country": { - "name": "Croatia", - "code": "hr" - }, - "company": "Comfort Inn", - "date": "2017-09-27", - "status": "unqualified", - "activity": 36, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1116, - "name": "Shawna Palaspas", - "country": { - "name": "Estonia", - "code": "ee" - }, - "company": "Windsor, James L Esq", - "date": "2017-06-25", - "status": "unqualified", - "activity": 69, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1117, - "name": "Brandon Callaro", - "country": { - "name": "Romania", - "code": "ro" - }, - "company": "Jackson Shields Yeiser", - "date": "2016-07-13", - "status": "proposal", - "activity": 55, - "representative": { - "name": "Anna Fali", - "image": "annafali.png" - } - }, - { - "id": 1118, - "name": "Scarlet Cartan", - "country": { - "name": "Panama", - "code": "pa" - }, - "company": "Box, J Calvin Esq", - "date": "2018-09-13", - "status": "renewal", - "activity": 1, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1119, - "name": "Oretha Menter", - "country": { - "name": "Panama", - "code": "pa" - }, - "company": "Custom Engineering Inc", - "date": "2017-09-11", - "status": "renewal", - "activity": 8, - "representative": { - "name": "Elwin Sharvill", - "image": "elwinsharvill.png" - } - }, - { - "id": 1120, - "name": "Ty Smith", - "country": { - "name": "United States", - "code": "us" - }, - "company": "Bresler Eitel Framg Gllry Ltd", - "date": "2019-07-06", - "status": "unqualified", - "activity": 50, - "representative": { - "name": "Anna Fali", - "image": "annafali.png" - } - }, - { - "id": 1121, - "name": "Xuan Rochin", - "country": { - "name": "Colombia", - "code": "co" - }, - "company": "Carol, Drake Sparks Esq", - "date": "2018-05-22", - "status": "proposal", - "activity": 77, - "representative": { - "name": "Amy Elsner", - "image": "amyelsner.png" - } - }, - { - "id": 1122, - "name": "Lindsey Dilello", - "country": { - "name": "Austria", - "code": "at" - }, - "company": "Biltmore Investors Bank", - "date": "2017-07-18", - "status": "renewal", - "activity": 65, - "representative": { - "name": "Amy Elsner", - "image": "amyelsner.png" - } - }, - { - "id": 1123, - "name": "Devora Perez", - "country": { - "name": "Uruguay", - "code": "uy" - }, - "company": "Desco Equipment Corp", - "date": "2017-10-09", - "status": "unqualified", - "activity": 30, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1124, - "name": "Herman Demesa", - "country": { - "name": "Paraguay", - "code": "py" - }, - "company": "Merlin Electric Co", - "date": "2019-05-23", - "status": "proposal", - "activity": 10, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1125, - "name": "Rory Papasergi", - "country": { - "name": "Egypt", - "code": "eg" - }, - "company": "Bailey Cntl Co Div Babcock", - "date": "2019-03-02", - "status": "qualified", - "activity": 22, - "representative": { - "name": "Anna Fali", - "image": "annafali.png" - } - }, - { - "id": 1126, - "name": "Talia Riopelle", - "country": { - "name": "Guatemala", - "code": "gt" - }, - "company": "Ford Brothers Wholesale Inc", - "date": "2017-02-18", - "status": "new", - "activity": 69, - "representative": { - "name": "Elwin Sharvill", - "image": "elwinsharvill.png" - } - }, - { - "id": 1127, - "name": "Van Shire", - "country": { - "name": "Netherlands", - "code": "nl" - }, - "company": "Cambridge Inn", - "date": "2020-05-12", - "status": "new", - "activity": 4, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1128, - "name": "Lucina Lary", - "country": { - "name": "Switzerland", - "code": "ch" - }, - "company": "Matricciani, Albert J Jr", - "date": "2019-11-20", - "status": "negotiation", - "activity": 11, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1129, - "name": "Bok Isaacs", - "country": { - "name": "Chile", - "code": "cl" - }, - "company": "Nelson Hawaiian Ltd", - "date": "2016-11-10", - "status": "proposal", - "activity": 41, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1130, - "name": "Rolande Spickerman", - "country": { - "name": "Panama", - "code": "pa" - }, - "company": "Neland Travel Agency", - "date": "2016-07-11", - "status": "renewal", - "activity": 84, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1131, - "name": "Howard Paulas", - "country": { - "name": "Indonesia", - "code": "id" - }, - "company": "Asendorf, J Alan Esq", - "date": "2017-07-17", - "status": "negotiation", - "activity": 22, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1132, - "name": "Kimbery Madarang", - "country": { - "name": "Senegal", - "code": "sn" - }, - "company": "Silberman, Arthur L Esq", - "date": "2018-08-19", - "status": "negotiation", - "activity": 63, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1133, - "name": "Thurman Manno", - "country": { - "name": "Colombia", - "code": "co" - }, - "company": "Honey Bee Breeding Genetics \u0026", - "date": "2016-05-02", - "status": "qualified", - "activity": 47, - "representative": { - "name": "Ivan Magalhaes", - "image": "ivanmagalhaes.png" - } - }, - { - "id": 1134, - "name": "Becky Mirafuentes", - "country": { - "name": "Serbia", - "code": "rs" - }, - "company": "Wells Kravitz Schnitzer", - "date": "2018-04-13", - "status": "unqualified", - "activity": 62, - "representative": { - "name": "Elwin Sharvill", - "image": "elwinsharvill.png" - } - }, - { - "id": 1135, - "name": "Beatriz Corrington", - "country": { - "name": "South Africa", - "code": "za" - }, - "company": "Prohab Rehabilitation Servs", - "date": "2020-01-04", - "status": "renewal", - "activity": 55, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1136, - "name": "Marti Maybury", - "country": { - "name": "Thailand", - "code": "th" - }, - "company": "Eldridge, Kristin K Esq", - "date": "2016-02-05", - "status": "unqualified", - "activity": 3, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1137, - "name": "Nieves Gotter", - "country": { - "name": "Latvia", - "code": "lv" - }, - "company": "Vlahos, John J Esq", - "date": "2017-03-12", - "status": "proposal", - "activity": 3, - "representative": { - "name": "Elwin Sharvill", - "image": "elwinsharvill.png" - } - }, - { - "id": 1138, - "name": "Leatha Hagele", - "country": { - "name": "Ukraine", - "code": "ua" - }, - "company": "Ninas Indian Grs \u0026 Videos", - "date": "2019-03-27", - "status": "unqualified", - "activity": 67, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1139, - "name": "Valentin Klimek", - "country": { - "name": "Ivory Coast", - "code": "ci" - }, - "company": "Schmid, Gayanne K Esq", - "date": "2019-08-06", - "status": "unqualified", - "activity": 14, - "representative": { - "name": "Ivan Magalhaes", - "image": "ivanmagalhaes.png" - } - }, - { - "id": 1140, - "name": "Melissa Wiklund", - "country": { - "name": "Japan", - "code": "jp" - }, - "company": "Moapa Valley Federal Credit Un", - "date": "2018-03-20", - "status": "qualified", - "activity": 8, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1141, - "name": "Sheridan Zane", - "country": { - "name": "Croatia", - "code": "hr" - }, - "company": "Kentucky Tennessee Clay Co", - "date": "2016-02-15", - "status": "qualified", - "activity": 17, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1142, - "name": "Bulah Padilla", - "country": { - "name": "Philippines", - "code": "ph" - }, - "company": "Admiral Party Rentals \u0026 Sales", - "date": "2016-02-10", - "status": "proposal", - "activity": 58, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1143, - "name": "Audra Kohnert", - "country": { - "name": "Netherlands", - "code": "nl" - }, - "company": "Nelson, Karolyn King Esq", - "date": "2019-07-16", - "status": "unqualified", - "activity": 82, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1144, - "name": "Daren Weirather", - "country": { - "name": "Israel", - "code": "il" - }, - "company": "Panasystems", - "date": "2015-07-23", - "status": "negotiation", - "activity": 96, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1145, - "name": "Fernanda Jillson", - "country": { - "name": "Mexico", - "code": "mx" - }, - "company": "Shank, Edward L Esq", - "date": "2017-07-02", - "status": "unqualified", - "activity": 92, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1146, - "name": "Gearldine Gellinger", - "country": { - "name": "Egypt", - "code": "eg" - }, - "company": "Megibow \u0026 Edwards", - "date": "2019-08-17", - "status": "proposal", - "activity": 18, - "representative": { - "name": "Anna Fali", - "image": "annafali.png" - } - }, - { - "id": 1147, - "name": "Chau Kitzman", - "country": { - "name": "Paraguay", - "code": "py" - }, - "company": "Benoff, Edward Esq", - "date": "2019-07-04", - "status": "new", - "activity": 9, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1148, - "name": "Theola Frey", - "country": { - "name": "Vietnam", - "code": "vn" - }, - "company": "Woodbridge Free Public Library", - "date": "2020-03-14", - "status": "unqualified", - "activity": 44, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1149, - "name": "Cheryl Haroldson", - "country": { - "name": "France", - "code": "fr" - }, - "company": "New York Life John Thune", - "date": "2018-04-03", - "status": "new", - "activity": 55, - "representative": { - "name": "Elwin Sharvill", - "image": "elwinsharvill.png" - } - }, - { - "id": 1150, - "name": "Laticia Merced", - "country": { - "name": "Burkina Faso", - "code": "bf" - }, - "company": "Alinabal Inc", - "date": "2017-03-04", - "status": "unqualified", - "activity": 21, - "representative": { - "name": "Ivan Magalhaes", - "image": "ivanmagalhaes.png" - } - }, - { - "id": 1151, - "name": "Carissa Batman", - "country": { - "name": "Greece", - "code": "gr" - }, - "company": "Poletto, Kim David Esq", - "date": "2016-05-05", - "status": "negotiation", - "activity": 91, - "representative": { - "name": "Ivan Magalhaes", - "image": "ivanmagalhaes.png" - } - }, - { - "id": 1152, - "name": "Lezlie Craghead", - "country": { - "name": "Panama", - "code": "pa" - }, - "company": "Chang, Carolyn Esq", - "date": "2019-05-28", - "status": "renewal", - "activity": 30, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1153, - "name": "Ozell Shealy", - "country": { - "name": "Pakistan", - "code": "pk" - }, - "company": "Silver Bros Inc", - "date": "2016-08-19", - "status": "proposal", - "activity": 14, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1154, - "name": "Arminda Parvis", - "country": { - "name": "Indonesia", - "code": "id" - }, - "company": "Newtec Inc", - "date": "2020-02-09", - "status": "proposal", - "activity": 77, - "representative": { - "name": "Elwin Sharvill", - "image": "elwinsharvill.png" - } - }, - { - "id": 1155, - "name": "Reita Leto", - "country": { - "name": "Belgium", - "code": "be" - }, - "company": "Creative Business Systems", - "date": "2020-04-03", - "status": "unqualified", - "activity": 58, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1156, - "name": "Yolando Luczki", - "country": { - "name": "France", - "code": "fr" - }, - "company": "Dal Tile Corporation", - "date": "2015-01-27", - "status": "renewal", - "activity": 78, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1157, - "name": "Lizette Stem", - "country": { - "name": "Slovakia", - "code": "sk" - }, - "company": "Edward S Katz", - "date": "2018-08-06", - "status": "new", - "activity": 67, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1158, - "name": "Gregoria Pawlowicz", - "country": { - "name": "Egypt", - "code": "eg" - }, - "company": "Oh My Goodknits Inc", - "date": "2020-02-20", - "status": "renewal", - "activity": 29, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1159, - "name": "Carin Deleo", - "country": { - "name": "China", - "code": "cn" - }, - "company": "Redeker, Debbie", - "date": "2015-05-28", - "status": "qualified", - "activity": 13, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1160, - "name": "Chantell Maynerich", - "country": { - "name": "Estonia", - "code": "ee" - }, - "company": "Desert Sands Motel", - "date": "2016-09-05", - "status": "unqualified", - "activity": 75, - "representative": { - "name": "Ivan Magalhaes", - "image": "ivanmagalhaes.png" - } - }, - { - "id": 1161, - "name": "Dierdre Yum", - "country": { - "name": "Czech Republic", - "code": "cz" - }, - "company": "Cummins Southern Plains Inc", - "date": "2016-12-20", - "status": "negotiation", - "activity": 1, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1162, - "name": "Larae Gudroe", - "country": { - "name": "Slovenia", - "code": "si" - }, - "company": "Lehigh Furn Divsn Lehigh", - "date": "2015-11-28", - "status": "unqualified", - "activity": 13, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1163, - "name": "Latrice Tolfree", - "country": { - "name": "Jamaica", - "code": "jm" - }, - "company": "United Van Lines Agent", - "date": "2018-11-11", - "status": "renewal", - "activity": 73, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1164, - "name": "Kerry Theodorov", - "country": { - "name": "Romania", - "code": "ro" - }, - "company": "Capitol Reporters", - "date": "2016-11-05", - "status": "unqualified", - "activity": 76, - "representative": { - "name": "Amy Elsner", - "image": "amyelsner.png" - } - }, - { - "id": 1165, - "name": "Dorthy Hidvegi", - "country": { - "name": "Poland", - "code": "pl" - }, - "company": "Kwik Kopy Printing", - "date": "2020-08-13", - "status": "qualified", - "activity": 60, - "representative": { - "name": "Ivan Magalhaes", - "image": "ivanmagalhaes.png" - } - }, - { - "id": 1166, - "name": "Fannie Lungren", - "country": { - "name": "Belarus", - "code": "by" - }, - "company": "Centro Inc", - "date": "2015-07-06", - "status": "negotiation", - "activity": 24, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1167, - "name": "Evangelina Radde", - "country": { - "name": "Ivory Coast", - "code": "ci" - }, - "company": "Campbell, Jan Esq", - "date": "2020-02-25", - "status": "unqualified", - "activity": 93, - "representative": { - "name": "Anna Fali", - "image": "annafali.png" - } - }, - { - "id": 1168, - "name": "Novella Degroot", - "country": { - "name": "Slovenia", - "code": "si" - }, - "company": "Evans, C Kelly Esq", - "date": "2017-12-19", - "status": "unqualified", - "activity": 30, - "representative": { - "name": "Amy Elsner", - "image": "amyelsner.png" - } - }, - { - "id": 1169, - "name": "Clay Hoa", - "country": { - "name": "Paraguay", - "code": "py" - }, - "company": "Scat Enterprises", - "date": "2016-02-22", - "status": "negotiation", - "activity": 93, - "representative": { - "name": "Amy Elsner", - "image": "amyelsner.png" - } - }, - { - "id": 1170, - "name": "Jennifer Fallick", - "country": { - "name": "Australia", - "code": "au" - }, - "company": "Nagle, Daniel J Esq", - "date": "2016-12-24", - "status": "unqualified", - "activity": 88, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1171, - "name": "Irma Wolfgramm", - "country": { - "name": "Belgium", - "code": "be" - }, - "company": "Serendiquity Bed \u0026 Breakfast", - "date": "2020-10-18", - "status": "negotiation", - "activity": 70, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1172, - "name": "Eun Coody", - "country": { - "name": "Taiwan", - "code": "tw" - }, - "company": "Ray Carolyne Realty", - "date": "2018-02-12", - "status": "qualified", - "activity": 61, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1173, - "name": "Sylvia Cousey", - "country": { - "name": "Ireland", - "code": "ie" - }, - "company": "Berg, Charles E", - "date": "2018-06-10", - "status": "unqualified", - "activity": 91, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1174, - "name": "Nana Wrinkles", - "country": { - "name": "Austria", - "code": "at" - }, - "company": "Ray, Milbern D", - "date": "2017-04-11", - "status": "renewal", - "activity": 98, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1175, - "name": "Layla Springe", - "country": { - "name": "South Africa", - "code": "za" - }, - "company": "Chadds Ford Winery", - "date": "2019-07-27", - "status": "unqualified", - "activity": 97, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1176, - "name": "Joesph Degonia", - "country": { - "name": "Serbia", - "code": "rs" - }, - "company": "A R Packaging", - "date": "2020-04-23", - "status": "renewal", - "activity": 56, - "representative": { - "name": "Elwin Sharvill", - "image": "elwinsharvill.png" - } - }, - { - "id": 1177, - "name": "Annabelle Boord", - "country": { - "name": "Guatemala", - "code": "gt" - }, - "company": "Corn Popper", - "date": "2020-09-16", - "status": "proposal", - "activity": 76, - "representative": { - "name": "Anna Fali", - "image": "annafali.png" - } - }, - { - "id": 1178, - "name": "Stephaine Vinning", - "country": { - "name": "Australia", - "code": "au" - }, - "company": "Birite Foodservice Distr", - "date": "2016-05-14", - "status": "negotiation", - "activity": 43, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1179, - "name": "Nelida Sawchuk", - "country": { - "name": "South Africa", - "code": "za" - }, - "company": "Anchorage Museum Of Hist \u0026 Art", - "date": "2018-06-22", - "status": "qualified", - "activity": 58, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1180, - "name": "Marguerita Hiatt", - "country": { - "name": "United Kingdom", - "code": "gb" - }, - "company": "Haber, George D Md", - "date": "2018-10-25", - "status": "qualified", - "activity": 72, - "representative": { - "name": "Anna Fali", - "image": "annafali.png" - } - }, - { - "id": 1181, - "name": "Carmela Cookey", - "country": { - "name": "France", - "code": "fr" - }, - "company": "Royal Pontiac Olds Inc", - "date": "2018-07-19", - "status": "proposal", - "activity": 24, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1182, - "name": "Junita Brideau", - "country": { - "name": "Indonesia", - "code": "id" - }, - "company": "Leonards Antiques Inc", - "date": "2015-03-15", - "status": "proposal", - "activity": 86, - "representative": { - "name": "Anna Fali", - "image": "annafali.png" - } - }, - { - "id": 1183, - "name": "Claribel Varriano", - "country": { - "name": "Ecuador", - "code": "ec" - }, - "company": "Meca", - "date": "2017-04-14", - "status": "unqualified", - "activity": 15, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1184, - "name": "Benton Skursky", - "country": { - "name": "Iceland", - "code": "is" - }, - "company": "Nercon Engineering \u0026 Mfg Inc", - "date": "2015-02-19", - "status": "proposal", - "activity": 9, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1185, - "name": "Hillary Skulski", - "country": { - "name": "France", - "code": "fr" - }, - "company": "Replica I", - "date": "2016-03-25", - "status": "unqualified", - "activity": 82, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1186, - "name": "Merilyn Bayless", - "country": { - "name": "Jamaica", - "code": "jm" - }, - "company": "20 20 Printing Inc", - "date": "2020-10-13", - "status": "unqualified", - "activity": 13, - "representative": { - "name": "Ivan Magalhaes", - "image": "ivanmagalhaes.png" - } - }, - { - "id": 1187, - "name": "Teri Ennaco", - "country": { - "name": "Pakistan", - "code": "pk" - }, - "company": "Publishers Group West", - "date": "2019-12-21", - "status": "unqualified", - "activity": 57, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1188, - "name": "Merlyn Lawler", - "country": { - "name": "Germany", - "code": "de" - }, - "company": "Nischwitz, Jeffrey L Esq", - "date": "2016-02-26", - "status": "renewal", - "activity": 45, - "representative": { - "name": "Ivan Magalhaes", - "image": "ivanmagalhaes.png" - } - }, - { - "id": 1189, - "name": "Georgene Montezuma", - "country": { - "name": "Senegal", - "code": "sn" - }, - "company": "Payne Blades \u0026 Wellborn Pa", - "date": "2018-10-11", - "status": "new", - "activity": 64, - "representative": { - "name": "Elwin Sharvill", - "image": "elwinsharvill.png" - } - }, - { - "id": 1190, - "name": "Jettie Mconnell", - "country": { - "name": "Denmark", - "code": "dk" - }, - "company": "Coldwell Bnkr Wright Real Est", - "date": "2015-10-18", - "status": "negotiation", - "activity": 74, - "representative": { - "name": "Ivan Magalhaes", - "image": "ivanmagalhaes.png" - } - }, - { - "id": 1191, - "name": "Lemuel Latzke", - "country": { - "name": "Colombia", - "code": "co" - }, - "company": "Computer Repair Service", - "date": "2016-02-13", - "status": "proposal", - "activity": 79, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1192, - "name": "Melodie Knipp", - "country": { - "name": "Finland", - "code": "fi" - }, - "company": "Fleetwood Building Block Inc", - "date": "2018-03-08", - "status": "negotiation", - "activity": 19, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1193, - "name": "Candida Corbley", - "country": { - "name": "Poland", - "code": "pl" - }, - "company": "Colts Neck Medical Assocs Inc", - "date": "2017-12-02", - "status": "negotiation", - "activity": 11, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1194, - "name": "Karan Karpin", - "country": { - "name": "Estonia", - "code": "ee" - }, - "company": "New England Taxidermy", - "date": "2019-01-07", - "status": "proposal", - "activity": 4, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1195, - "name": "Andra Scheyer", - "country": { - "name": "Romania", - "code": "ro" - }, - "company": "Ludcke, George O Esq", - "date": "2016-08-14", - "status": "qualified", - "activity": 62, - "representative": { - "name": "Elwin Sharvill", - "image": "elwinsharvill.png" - } - }, - { - "id": 1196, - "name": "Felicidad Poullion", - "country": { - "name": "Greece", - "code": "gr" - }, - "company": "Mccorkle, Tom S Esq", - "date": "2016-03-05", - "status": "renewal", - "activity": 64, - "representative": { - "name": "Elwin Sharvill", - "image": "elwinsharvill.png" - } - }, - { - "id": 1197, - "name": "Belen Strassner", - "country": { - "name": "Ivory Coast", - "code": "ci" - }, - "company": "Eagle Software Inc", - "date": "2015-12-14", - "status": "qualified", - "activity": 91, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1198, - "name": "Gracia Melnyk", - "country": { - "name": "Costa Rica", - "code": "cr" - }, - "company": "Juvenile \u0026 Adult Super", - "date": "2019-06-01", - "status": "unqualified", - "activity": 40, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1199, - "name": "Jolanda Hanafan", - "country": { - "name": "Cameroon", - "code": "cm" - }, - "company": "Perez, Joseph J Esq", - "date": "2015-12-09", - "status": "qualified", - "activity": 27, - "representative": { - "name": "Ivan Magalhaes", - "image": "ivanmagalhaes.png" - } - }, - { - "id": 1200, - "name": "Barrett Toyama", - "country": { - "name": "Thailand", - "code": "th" - }, - "company": "Case Foundation Co", - "date": "2019-08-16", - "status": "new", - "activity": 82, - "representative": { - "name": "Ivan Magalhaes", - "image": "ivanmagalhaes.png" - } - }, - { - "id": 1201, - "name": "Helga Fredicks", - "country": { - "name": "Guatemala", - "code": "gt" - }, - "company": "Eis Environmental Engrs Inc", - "date": "2018-06-20", - "status": "new", - "activity": 33, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1202, - "name": "Ashlyn Pinilla", - "country": { - "name": "Japan", - "code": "jp" - }, - "company": "Art Crafters", - "date": "2018-04-11", - "status": "unqualified", - "activity": 5, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1203, - "name": "Fausto Agramonte", - "country": { - "name": "Belgium", - "code": "be" - }, - "company": "Marriott Hotels Resorts Suites", - "date": "2019-06-25", - "status": "new", - "activity": 22, - "representative": { - "name": "Ivan Magalhaes", - "image": "ivanmagalhaes.png" - } - }, - { - "id": 1204, - "name": "Ronny Caiafa", - "country": { - "name": "Argentina", - "code": "ar" - }, - "company": "Remaco Inc", - "date": "2020-07-21", - "status": "new", - "activity": 61, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1205, - "name": "Marge Limmel", - "country": { - "name": "Cameroon", - "code": "cm" - }, - "company": "Bjork, Robert D Jr", - "date": "2015-03-12", - "status": "unqualified", - "activity": 90, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1206, - "name": "Norah Waymire", - "country": { - "name": "United States", - "code": "us" - }, - "company": "Carmichael, Jeffery L Esq", - "date": "2019-06-11", - "status": "renewal", - "activity": 48, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1207, - "name": "Aliza Baltimore", - "country": { - "name": "Malaysia", - "code": "my" - }, - "company": "Andrews, J Robert Esq", - "date": "2020-11-25", - "status": "unqualified", - "activity": 59, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1208, - "name": "Mozell Pelkowski", - "country": { - "name": "Latvia", - "code": "lv" - }, - "company": "Winship \u0026 Byrne", - "date": "2018-04-13", - "status": "unqualified", - "activity": 94, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1209, - "name": "Viola Bitsuie", - "country": { - "name": "Denmark", - "code": "dk" - }, - "company": "Burton \u0026 Davis", - "date": "2018-07-07", - "status": "new", - "activity": 94, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1210, - "name": "Franklyn Emard", - "country": { - "name": "Iceland", - "code": "is" - }, - "company": "Olympic Graphic Arts", - "date": "2018-02-25", - "status": "qualified", - "activity": 95, - "representative": { - "name": "Anna Fali", - "image": "annafali.png" - } - }, - { - "id": 1211, - "name": "Willodean Konopacki", - "country": { - "name": "Hong Kong", - "code": "hk" - }, - "company": "Magnuson", - "date": "2017-10-03", - "status": "renewal", - "activity": 20, - "representative": { - "name": "Anna Fali", - "image": "annafali.png" - } - }, - { - "id": 1212, - "name": "Beckie Silvestrini", - "country": { - "name": "Poland", - "code": "pl" - }, - "company": "A All American Travel Inc", - "date": "2016-11-26", - "status": "renewal", - "activity": 81, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1213, - "name": "Rebecka Gesick", - "country": { - "name": "Philippines", - "code": "ph" - }, - "company": "Polykote Inc", - "date": "2019-06-22", - "status": "renewal", - "activity": 45, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1214, - "name": "Frederica Blunk", - "country": { - "name": "Lithuania", - "code": "lt" - }, - "company": "Jets Cybernetics", - "date": "2019-06-07", - "status": "renewal", - "activity": 56, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1215, - "name": "Glen Bartolet", - "country": { - "name": "Germany", - "code": "de" - }, - "company": "Metlab Testing Services", - "date": "2015-02-13", - "status": "proposal", - "activity": 99, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1216, - "name": "Freeman Gochal", - "country": { - "name": "Slovenia", - "code": "si" - }, - "company": "Kellermann, William T Esq", - "date": "2019-08-27", - "status": "negotiation", - "activity": 2, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1217, - "name": "Vincent Meinerding", - "country": { - "name": "United States", - "code": "us" - }, - "company": "Arturi, Peter D Esq", - "date": "2018-06-18", - "status": "new", - "activity": 58, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1218, - "name": "Rima Bevelacqua", - "country": { - "name": "Taiwan", - "code": "tw" - }, - "company": "Mcauley Mfg Co", - "date": "2019-05-18", - "status": "new", - "activity": 31, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1219, - "name": "Glendora Sarbacher", - "country": { - "name": "Lithuania", - "code": "lt" - }, - "company": "Defur Voran Hanley Radcliff", - "date": "2018-04-21", - "status": "new", - "activity": 79, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1220, - "name": "Avery Steier", - "country": { - "name": "Mexico", - "code": "mx" - }, - "company": "Dill Dill Carr \u0026 Stonbraker Pc", - "date": "2017-07-27", - "status": "proposal", - "activity": 63, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1221, - "name": "Cristy Lother", - "country": { - "name": "Burkina Faso", - "code": "bf" - }, - "company": "Kleensteel", - "date": "2018-05-19", - "status": "renewal", - "activity": 55, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1222, - "name": "Nicolette Brossart", - "country": { - "name": "Egypt", - "code": "eg" - }, - "company": "Goulds Pumps Inc Slurry Pump", - "date": "2015-05-26", - "status": "new", - "activity": 25, - "representative": { - "name": "Anna Fali", - "image": "annafali.png" - } - }, - { - "id": 1223, - "name": "Tracey Modzelewski", - "country": { - "name": "Denmark", - "code": "dk" - }, - "company": "Kansas City Insurance Report", - "date": "2019-07-02", - "status": "renewal", - "activity": 4, - "representative": { - "name": "Anna Fali", - "image": "annafali.png" - } - }, - { - "id": 1224, - "name": "Virgina Tegarden", - "country": { - "name": "Cameroon", - "code": "cm" - }, - "company": "Berhanu International Foods", - "date": "2017-10-09", - "status": "qualified", - "activity": 62, - "representative": { - "name": "Amy Elsner", - "image": "amyelsner.png" - } - }, - { - "id": 1225, - "name": "Tiera Frankel", - "country": { - "name": "India", - "code": "in" - }, - "company": "Roland Ashcroft", - "date": "2018-03-27", - "status": "unqualified", - "activity": 90, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1226, - "name": "Alaine Bergesen", - "country": { - "name": "Peru", - "code": "pe" - }, - "company": "Hispanic Magazine", - "date": "2017-08-10", - "status": "qualified", - "activity": 34, - "representative": { - "name": "Anna Fali", - "image": "annafali.png" - } - }, - { - "id": 1227, - "name": "Earleen Mai", - "country": { - "name": "Italy", - "code": "it" - }, - "company": "Little Sheet Metal Co", - "date": "2016-06-22", - "status": "proposal", - "activity": 38, - "representative": { - "name": "Ivan Magalhaes", - "image": "ivanmagalhaes.png" - } - }, - { - "id": 1228, - "name": "Leonida Gobern", - "country": { - "name": "Cuba", - "code": "cu" - }, - "company": "Holmes, Armstead J Esq", - "date": "2020-02-24", - "status": "renewal", - "activity": 96, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1229, - "name": "Ressie Auffrey", - "country": { - "name": "Japan", - "code": "jp" - }, - "company": "Faw, James C Cpa", - "date": "2016-10-21", - "status": "negotiation", - "activity": 28, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1230, - "name": "Justine Mugnolo", - "country": { - "name": "Argentina", - "code": "ar" - }, - "company": "Evans Rule Company", - "date": "2016-02-21", - "status": "negotiation", - "activity": 83, - "representative": { - "name": "Ivan Magalhaes", - "image": "ivanmagalhaes.png" - } - }, - { - "id": 1231, - "name": "Eladia Saulter", - "country": { - "name": "Switzerland", - "code": "ch" - }, - "company": "Tyee Productions Inc", - "date": "2016-03-10", - "status": "new", - "activity": 16, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1232, - "name": "Chaya Malvin", - "country": { - "name": "Cuba", - "code": "cu" - }, - "company": "Dunnells \u0026 Duvall", - "date": "2016-07-22", - "status": "renewal", - "activity": 12, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1233, - "name": "Gwenn Suffield", - "country": { - "name": "Austria", - "code": "at" - }, - "company": "Deltam Systems Inc", - "date": "2019-06-23", - "status": "qualified", - "activity": 67, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1234, - "name": "Salena Karpel", - "country": { - "name": "Puerto Rico", - "code": "pr" - }, - "company": "Hammill Mfg Co", - "date": "2016-08-02", - "status": "renewal", - "activity": 0, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1235, - "name": "Yoko Fishburne", - "country": { - "name": "Croatia", - "code": "hr" - }, - "company": "Sams Corner Store", - "date": "2017-08-06", - "status": "unqualified", - "activity": 73, - "representative": { - "name": "Anna Fali", - "image": "annafali.png" - } - }, - { - "id": 1236, - "name": "Taryn Moyd", - "country": { - "name": "Serbia", - "code": "rs" - }, - "company": "Siskin, Mark J Esq", - "date": "2016-12-18", - "status": "negotiation", - "activity": 57, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1237, - "name": "Katina Polidori", - "country": { - "name": "Nigeria", - "code": "ng" - }, - "company": "Cape \u0026 Associates Real Estate", - "date": "2016-08-25", - "status": "unqualified", - "activity": 37, - "representative": { - "name": "Elwin Sharvill", - "image": "elwinsharvill.png" - } - }, - { - "id": 1238, - "name": "Rickie Plumer", - "country": { - "name": "Turkey", - "code": "tr" - }, - "company": "Merrill Lynch", - "date": "2018-11-04", - "status": "unqualified", - "activity": 71, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1239, - "name": "Alex Loader", - "country": { - "name": "Italy", - "code": "it" - }, - "company": "Sublett, Scott Esq", - "date": "2016-01-07", - "status": "unqualified", - "activity": 22, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1240, - "name": "Lashon Vizarro", - "country": { - "name": "Ecuador", - "code": "ec" - }, - "company": "Sentry Signs", - "date": "2019-08-02", - "status": "negotiation", - "activity": 46, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1241, - "name": "Lauran Burnard", - "country": { - "name": "Czech Republic", - "code": "cz" - }, - "company": "Professionals Unlimited", - "date": "2016-04-27", - "status": "renewal", - "activity": 30, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1242, - "name": "Ceola Setter", - "country": { - "name": "Taiwan", - "code": "tw" - }, - "company": "Southern Steel Shelving Co", - "date": "2017-05-13", - "status": "qualified", - "activity": 43, - "representative": { - "name": "Ivan Magalhaes", - "image": "ivanmagalhaes.png" - } - }, - { - "id": 1243, - "name": "My Rantanen", - "country": { - "name": "Philippines", - "code": "ph" - }, - "company": "Bosco, Paul J", - "date": "2017-09-11", - "status": "proposal", - "activity": 60, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1244, - "name": "Lorrine Worlds", - "country": { - "name": "Argentina", - "code": "ar" - }, - "company": "Longo, Nicholas J Esq", - "date": "2018-05-10", - "status": "renewal", - "activity": 51, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1245, - "name": "Peggie Sturiale", - "country": { - "name": "Malaysia", - "code": "my" - }, - "company": "Henry County Middle School", - "date": "2019-11-03", - "status": "renewal", - "activity": 41, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1246, - "name": "Marvel Raymo", - "country": { - "name": "Belgium", - "code": "be" - }, - "company": "Edison Supply \u0026 Equipment Co", - "date": "2016-03-08", - "status": "renewal", - "activity": 9, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1247, - "name": "Daron Dinos", - "country": { - "name": "Hungary", - "code": "hu" - }, - "company": "Wolf, Warren R Esq", - "date": "2016-03-25", - "status": "unqualified", - "activity": 30, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1248, - "name": "An Fritz", - "country": { - "name": "Netherlands", - "code": "nl" - }, - "company": "Linguistic Systems Inc", - "date": "2017-08-04", - "status": "proposal", - "activity": 86, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1249, - "name": "Portia Stimmel", - "country": { - "name": "Australia", - "code": "au" - }, - "company": "Peace Christian Center", - "date": "2020-01-13", - "status": "qualified", - "activity": 30, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1250, - "name": "Rhea Aredondo", - "country": { - "name": "Greece", - "code": "gr" - }, - "company": "Double B Foods Inc", - "date": "2016-06-19", - "status": "qualified", - "activity": 68, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1251, - "name": "Benedict Sama", - "country": { - "name": "Israel", - "code": "il" - }, - "company": "Alexander \u0026 Alexander Inc", - "date": "2018-08-18", - "status": "negotiation", - "activity": 79, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1252, - "name": "Alyce Arias", - "country": { - "name": "Egypt", - "code": "eg" - }, - "company": "Fairbanks Scales", - "date": "2018-09-14", - "status": "new", - "activity": 77, - "representative": { - "name": "Anna Fali", - "image": "annafali.png" - } - }, - { - "id": 1253, - "name": "Heike Berganza", - "country": { - "name": "Bulgaria", - "code": "bg" - }, - "company": "Cali Sportswear Cutting Dept", - "date": "2019-01-21", - "status": "unqualified", - "activity": 95, - "representative": { - "name": "Elwin Sharvill", - "image": "elwinsharvill.png" - } - }, - { - "id": 1254, - "name": "Carey Dopico", - "country": { - "name": "Saudi Arabia", - "code": "sa" - }, - "company": "Garofani, John Esq", - "date": "2020-05-25", - "status": "negotiation", - "activity": 35, - "representative": { - "name": "Anna Fali", - "image": "annafali.png" - } - }, - { - "id": 1255, - "name": "Dottie Hellickson", - "country": { - "name": "Chile", - "code": "cl" - }, - "company": "Thompson Fabricating Co", - "date": "2016-02-12", - "status": "qualified", - "activity": 7, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1256, - "name": "Deandrea Hughey", - "country": { - "name": "South Africa", - "code": "za" - }, - "company": "Century 21 Krall Real Estate", - "date": "2018-09-26", - "status": "unqualified", - "activity": 96, - "representative": { - "name": "Elwin Sharvill", - "image": "elwinsharvill.png" - } - }, - { - "id": 1257, - "name": "Kimberlie Duenas", - "country": { - "name": "Bulgaria", - "code": "bg" - }, - "company": "Mid Contntl Rlty \u0026 Prop Mgmt", - "date": "2015-07-27", - "status": "qualified", - "activity": 96, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1258, - "name": "Martina Staback", - "country": { - "name": "Luxembourg", - "code": "lu" - }, - "company": "Ace Signs Inc", - "date": "2017-02-14", - "status": "new", - "activity": 47, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1259, - "name": "Skye Fillingim", - "country": { - "name": "Belgium", - "code": "be" - }, - "company": "Rodeway Inn", - "date": "2017-02-12", - "status": "new", - "activity": 86, - "representative": { - "name": "Anna Fali", - "image": "annafali.png" - } - }, - { - "id": 1260, - "name": "Jade Farrar", - "country": { - "name": "Mexico", - "code": "mx" - }, - "company": "Bonnet \u0026 Daughter", - "date": "2017-02-23", - "status": "new", - "activity": 73, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1261, - "name": "Charlene Hamilton", - "country": { - "name": "India", - "code": "in" - }, - "company": "Oshins \u0026 Gibbons", - "date": "2017-09-23", - "status": "unqualified", - "activity": 32, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1262, - "name": "Geoffrey Acey", - "country": { - "name": "Hong Kong", - "code": "hk" - }, - "company": "Price Business Services", - "date": "2019-10-11", - "status": "proposal", - "activity": 98, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1263, - "name": "Stevie Westerbeck", - "country": { - "name": "Lithuania", - "code": "lt" - }, - "company": "Wise, Dennis W Md", - "date": "2017-08-01", - "status": "renewal", - "activity": 57, - "representative": { - "name": "Amy Elsner", - "image": "amyelsner.png" - } - }, - { - "id": 1264, - "name": "Pamella Fortino", - "country": { - "name": "Panama", - "code": "pa" - }, - "company": "Super 8 Motel", - "date": "2018-09-03", - "status": "new", - "activity": 100, - "representative": { - "name": "Ivan Magalhaes", - "image": "ivanmagalhaes.png" - } - }, - { - "id": 1265, - "name": "Harrison Haufler", - "country": { - "name": "Malaysia", - "code": "my" - }, - "company": "John Wagner Associates", - "date": "2016-08-25", - "status": "qualified", - "activity": 85, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1266, - "name": "Johnna Engelberg", - "country": { - "name": "Thailand", - "code": "th" - }, - "company": "Thrifty Oil Co", - "date": "2019-06-02", - "status": "renewal", - "activity": 1, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1267, - "name": "Buddy Cloney", - "country": { - "name": "Hungary", - "code": "hu" - }, - "company": "Larkfield Photo", - "date": "2020-05-14", - "status": "qualified", - "activity": 9, - "representative": { - "name": "Anna Fali", - "image": "annafali.png" - } - }, - { - "id": 1268, - "name": "Dalene Riden", - "country": { - "name": "Bolivia", - "code": "bo" - }, - "company": "Silverman Planetarium", - "date": "2019-08-23", - "status": "renewal", - "activity": 31, - "representative": { - "name": "Elwin Sharvill", - "image": "elwinsharvill.png" - } - }, - { - "id": 1269, - "name": "Jerry Zurcher", - "country": { - "name": "Ukraine", - "code": "ua" - }, - "company": "J \u0026 F Lumber", - "date": "2015-05-11", - "status": "renewal", - "activity": 52, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1270, - "name": "Haydee Denooyer", - "country": { - "name": "Ivory Coast", - "code": "ci" - }, - "company": "Cleaning Station Inc", - "date": "2016-04-17", - "status": "qualified", - "activity": 80, - "representative": { - "name": "Amy Elsner", - "image": "amyelsner.png" - } - }, - { - "id": 1271, - "name": "Joseph Cryer", - "country": { - "name": "Philippines", - "code": "ph" - }, - "company": "Ames Stationers", - "date": "2019-11-26", - "status": "qualified", - "activity": 53, - "representative": { - "name": "Anna Fali", - "image": "annafali.png" - } - }, - { - "id": 1272, - "name": "Deonna Kippley", - "country": { - "name": "South Africa", - "code": "za" - }, - "company": "Midas Muffler Shops", - "date": "2017-08-26", - "status": "qualified", - "activity": 52, - "representative": { - "name": "Amy Elsner", - "image": "amyelsner.png" - } - }, - { - "id": 1273, - "name": "Raymon Calvaresi", - "country": { - "name": "South Africa", - "code": "za" - }, - "company": "Seaboard Securities Inc", - "date": "2017-07-09", - "status": "qualified", - "activity": 45, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1274, - "name": "Alecia Bubash", - "country": { - "name": "Poland", - "code": "pl" - }, - "company": "Petersen, James E Esq", - "date": "2016-05-19", - "status": "new", - "activity": 28, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1275, - "name": "Ma Layous", - "country": { - "name": "Latvia", - "code": "lv" - }, - "company": "Development Authority", - "date": "2016-02-11", - "status": "qualified", - "activity": 2, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1276, - "name": "Detra Coyier", - "country": { - "name": "Ivory Coast", - "code": "ci" - }, - "company": "Schott Fiber Optics Inc", - "date": "2019-06-05", - "status": "proposal", - "activity": 95, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1277, - "name": "Terrilyn Rodeigues", - "country": { - "name": "Thailand", - "code": "th" - }, - "company": "Stuart J Agins", - "date": "2016-08-04", - "status": "renewal", - "activity": 35, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1278, - "name": "Salome Lacovara", - "country": { - "name": "Romania", - "code": "ro" - }, - "company": "Mitsumi Electronics Corp", - "date": "2015-06-05", - "status": "unqualified", - "activity": 78, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1279, - "name": "Garry Keetch", - "country": { - "name": "Luxembourg", - "code": "lu" - }, - "company": "Italian Express Franchise Corp", - "date": "2015-06-20", - "status": "unqualified", - "activity": 86, - "representative": { - "name": "Ivan Magalhaes", - "image": "ivanmagalhaes.png" - } - }, - { - "id": 1280, - "name": "Matthew Neither", - "country": { - "name": "United Kingdom", - "code": "gb" - }, - "company": "American Council On Sci \u0026 Hlth", - "date": "2018-06-24", - "status": "qualified", - "activity": 4, - "representative": { - "name": "Elwin Sharvill", - "image": "elwinsharvill.png" - } - }, - { - "id": 1281, - "name": "Theodora Restrepo", - "country": { - "name": "Paraguay", - "code": "py" - }, - "company": "Kleri, Patricia S Esq", - "date": "2017-08-15", - "status": "renewal", - "activity": 66, - "representative": { - "name": "Elwin Sharvill", - "image": "elwinsharvill.png" - } - }, - { - "id": 1282, - "name": "Noah Kalafatis", - "country": { - "name": "Saudi Arabia", - "code": "sa" - }, - "company": "Twiggs Abrams Blanchard", - "date": "2020-06-24", - "status": "negotiation", - "activity": 35, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1283, - "name": "Carmen Sweigard", - "country": { - "name": "Bolivia", - "code": "bo" - }, - "company": "Maui Research \u0026 Technology Pk", - "date": "2019-08-08", - "status": "new", - "activity": 96, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1284, - "name": "Lavonda Hengel", - "country": { - "name": "Hungary", - "code": "hu" - }, - "company": "Bradley Nameplate Corp", - "date": "2019-10-25", - "status": "negotiation", - "activity": 48, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1285, - "name": "Junita Stoltzman", - "country": { - "name": "Turkey", - "code": "tr" - }, - "company": "Geonex Martel Inc", - "date": "2015-03-19", - "status": "proposal", - "activity": 64, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1286, - "name": "Herminia Nicolozakes", - "country": { - "name": "Venezuela", - "code": "ve" - }, - "company": "Sea Island Div Of Fstr Ind Inc", - "date": "2019-09-09", - "status": "negotiation", - "activity": 0, - "representative": { - "name": "Anna Fali", - "image": "annafali.png" - } - }, - { - "id": 1287, - "name": "Casie Good", - "country": { - "name": "Japan", - "code": "jp" - }, - "company": "Papay, Debbie J Esq", - "date": "2016-11-27", - "status": "new", - "activity": 87, - "representative": { - "name": "Elwin Sharvill", - "image": "elwinsharvill.png" - } - }, - { - "id": 1288, - "name": "Reena Maisto", - "country": { - "name": "Panama", - "code": "pa" - }, - "company": "Lane Promotions", - "date": "2016-08-22", - "status": "new", - "activity": 16, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1289, - "name": "Mirta Mallett", - "country": { - "name": "Singapore", - "code": "sg" - }, - "company": "Stephen Kennerly Archts Inc Pc", - "date": "2017-11-27", - "status": "renewal", - "activity": 14, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1290, - "name": "Cathrine Pontoriero", - "country": { - "name": "Finland", - "code": "fi" - }, - "company": "Business Systems Of Wis Inc", - "date": "2020-02-07", - "status": "negotiation", - "activity": 58, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1291, - "name": "Filiberto Tawil", - "country": { - "name": "Panama", - "code": "pa" - }, - "company": "Flash, Elena Salerno Esq", - "date": "2018-01-28", - "status": "proposal", - "activity": 0, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1292, - "name": "Raul Upthegrove", - "country": { - "name": "Panama", - "code": "pa" - }, - "company": "Neeley, Gregory W Esq", - "date": "2019-11-16", - "status": "renewal", - "activity": 59, - "representative": { - "name": "Ivan Magalhaes", - "image": "ivanmagalhaes.png" - } - }, - { - "id": 1293, - "name": "Sarah Candlish", - "country": { - "name": "Hong Kong", - "code": "hk" - }, - "company": "Alabama Educational Tv Comm", - "date": "2019-06-09", - "status": "proposal", - "activity": 30, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1294, - "name": "Lucy Treston", - "country": { - "name": "Jamaica", - "code": "jm" - }, - "company": "Franz Inc", - "date": "2017-02-07", - "status": "proposal", - "activity": 59, - "representative": { - "name": "Elwin Sharvill", - "image": "elwinsharvill.png" - } - }, - { - "id": 1295, - "name": "Judy Aquas", - "country": { - "name": "Romania", - "code": "ro" - }, - "company": "Plantation Restaurant", - "date": "2020-09-14", - "status": "renewal", - "activity": 86, - "representative": { - "name": "Ivan Magalhaes", - "image": "ivanmagalhaes.png" - } - }, - { - "id": 1296, - "name": "Yvonne Tjepkema", - "country": { - "name": "United Kingdom", - "code": "gb" - }, - "company": "Radio Communications Co", - "date": "2017-01-06", - "status": "renewal", - "activity": 33, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1297, - "name": "Kayleigh Lace", - "country": { - "name": "Denmark", - "code": "dk" - }, - "company": "Dentalaw Divsn Hlth Care", - "date": "2019-11-04", - "status": "negotiation", - "activity": 70, - "representative": { - "name": "Elwin Sharvill", - "image": "elwinsharvill.png" - } - }, - { - "id": 1298, - "name": "Felix Hirpara", - "country": { - "name": "Panama", - "code": "pa" - }, - "company": "American Speedy Printing Ctrs", - "date": "2015-03-13", - "status": "new", - "activity": 8, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1299, - "name": "Tresa Sweely", - "country": { - "name": "Germany", - "code": "de" - }, - "company": "Grayson, Grant S Esq", - "date": "2019-12-22", - "status": "proposal", - "activity": 22, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1300, - "name": "Kristeen Turinetti", - "country": { - "name": "Burkina Faso", - "code": "bf" - }, - "company": "Jeanerette Middle School", - "date": "2017-09-28", - "status": "new", - "activity": 67, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1301, - "name": "Jenelle Regusters", - "country": { - "name": "Hungary", - "code": "hu" - }, - "company": "Haavisto, Brian F Esq", - "date": "2019-07-27", - "status": "qualified", - "activity": 13, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1302, - "name": "Renea Monterrubio", - "country": { - "name": "Greece", - "code": "gr" - }, - "company": "Wmmt Radio Station", - "date": "2016-03-28", - "status": "proposal", - "activity": 73, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1303, - "name": "Olive Matuszak", - "country": { - "name": "Germany", - "code": "de" - }, - "company": "Colony Paints Sales Ofc \u0026 Plnt", - "date": "2018-04-15", - "status": "unqualified", - "activity": 70, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1304, - "name": "Ligia Reiber", - "country": { - "name": "Cameroon", - "code": "cm" - }, - "company": "Floral Expressions", - "date": "2017-02-02", - "status": "negotiation", - "activity": 51, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1305, - "name": "Christiane Eschberger", - "country": { - "name": "Romania", - "code": "ro" - }, - "company": "Casco Services Inc", - "date": "2018-03-27", - "status": "unqualified", - "activity": 81, - "representative": { - "name": "Elwin Sharvill", - "image": "elwinsharvill.png" - } - }, - { - "id": 1306, - "name": "Goldie Schirpke", - "country": { - "name": "Paraguay", - "code": "py" - }, - "company": "Reuter, Arthur C Jr", - "date": "2015-04-21", - "status": "renewal", - "activity": 8, - "representative": { - "name": "Elwin Sharvill", - "image": "elwinsharvill.png" - } - }, - { - "id": 1307, - "name": "Loreta Timenez", - "country": { - "name": "Burkina Faso", - "code": "bf" - }, - "company": "Kaminski, Katherine Andritsaki", - "date": "2015-07-17", - "status": "proposal", - "activity": 29, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1308, - "name": "Fabiola Hauenstein", - "country": { - "name": "Czech Republic", - "code": "cz" - }, - "company": "Sidewinder Products Corp", - "date": "2015-12-12", - "status": "renewal", - "activity": 42, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1309, - "name": "Amie Perigo", - "country": { - "name": "Russia", - "code": "ru" - }, - "company": "General Foam Corporation", - "date": "2016-06-13", - "status": "new", - "activity": 55, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1310, - "name": "Raina Brachle", - "country": { - "name": "Greece", - "code": "gr" - }, - "company": "Ikg Borden Divsn Harsco Corp", - "date": "2016-11-28", - "status": "negotiation", - "activity": 12, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1311, - "name": "Erinn Canlas", - "country": { - "name": "United Kingdom", - "code": "gb" - }, - "company": "Anchor Computer Inc", - "date": "2018-12-08", - "status": "proposal", - "activity": 89, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1312, - "name": "Cherry Lietz", - "country": { - "name": "Bulgaria", - "code": "bg" - }, - "company": "Sebring \u0026 Co", - "date": "2017-11-04", - "status": "qualified", - "activity": 22, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1313, - "name": "Kattie Vonasek", - "country": { - "name": "Austria", - "code": "at" - }, - "company": "H A C Farm Lines Co Optv Assoc", - "date": "2017-02-17", - "status": "proposal", - "activity": 58, - "representative": { - "name": "Elwin Sharvill", - "image": "elwinsharvill.png" - } - }, - { - "id": 1314, - "name": "Lilli Scriven", - "country": { - "name": "Egypt", - "code": "eg" - }, - "company": "Hunter, John J Esq", - "date": "2017-04-15", - "status": "qualified", - "activity": 79, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1315, - "name": "Whitley Tomasulo", - "country": { - "name": "Qatar", - "code": "qa" - }, - "company": "Freehold Fence Co", - "date": "2017-11-16", - "status": "qualified", - "activity": 6, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1316, - "name": "Barbra Adkin", - "country": { - "name": "Nigeria", - "code": "ng" - }, - "company": "Binswanger", - "date": "2019-07-24", - "status": "qualified", - "activity": 64, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1317, - "name": "Hermila Thyberg", - "country": { - "name": "Argentina", - "code": "ar" - }, - "company": "Chilton Malting Co", - "date": "2016-11-05", - "status": "qualified", - "activity": 57, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1318, - "name": "Jesusita Flister", - "country": { - "name": "Ukraine", - "code": "ua" - }, - "company": "Schoen, Edward J Jr", - "date": "2017-03-03", - "status": "proposal", - "activity": 29, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1319, - "name": "Caitlin Julia", - "country": { - "name": "Israel", - "code": "il" - }, - "company": "Helderman, Seymour Cpa", - "date": "2018-03-13", - "status": "renewal", - "activity": 19, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1320, - "name": "Roosevelt Hoffis", - "country": { - "name": "Puerto Rico", - "code": "pr" - }, - "company": "Denbrook, Myron", - "date": "2019-04-14", - "status": "new", - "activity": 49, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1321, - "name": "Helaine Halter", - "country": { - "name": "Estonia", - "code": "ee" - }, - "company": "Lippitt, Mike", - "date": "2019-09-28", - "status": "renewal", - "activity": 62, - "representative": { - "name": "Elwin Sharvill", - "image": "elwinsharvill.png" - } - }, - { - "id": 1322, - "name": "Lorean Martabano", - "country": { - "name": "Slovakia", - "code": "sk" - }, - "company": "Hiram, Hogg P Esq", - "date": "2017-03-23", - "status": "negotiation", - "activity": 8, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1323, - "name": "France Buzick", - "country": { - "name": "Nigeria", - "code": "ng" - }, - "company": "In Travel Agency", - "date": "2016-12-14", - "status": "renewal", - "activity": 22, - "representative": { - "name": "Amy Elsner", - "image": "amyelsner.png" - } - }, - { - "id": 1324, - "name": "Justine Ferrario", - "country": { - "name": "Ukraine", - "code": "ua" - }, - "company": "Newhart Foods Inc", - "date": "2015-09-07", - "status": "unqualified", - "activity": 7, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1325, - "name": "Adelina Nabours", - "country": { - "name": "Mexico", - "code": "mx" - }, - "company": "Courtyard By Marriott", - "date": "2018-05-26", - "status": "renewal", - "activity": 59, - "representative": { - "name": "Amy Elsner", - "image": "amyelsner.png" - } - }, - { - "id": 1326, - "name": "Derick Dhamer", - "country": { - "name": "Hungary", - "code": "hu" - }, - "company": "Studer, Eugene A Esq", - "date": "2020-07-04", - "status": "new", - "activity": 72, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1327, - "name": "Jerry Dallen", - "country": { - "name": "Egypt", - "code": "eg" - }, - "company": "Seashore Supply Co Waretown", - "date": "2015-10-23", - "status": "renewal", - "activity": 21, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1328, - "name": "Leota Ragel", - "country": { - "name": "Qatar", - "code": "qa" - }, - "company": "Mayar Silk Inc", - "date": "2019-06-15", - "status": "negotiation", - "activity": 74, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1329, - "name": "Jutta Amyot", - "country": { - "name": "Cameroon", - "code": "cm" - }, - "company": "National Medical Excess Corp", - "date": "2019-09-01", - "status": "proposal", - "activity": 8, - "representative": { - "name": "Amy Elsner", - "image": "amyelsner.png" - } - }, - { - "id": 1330, - "name": "Aja Gehrett", - "country": { - "name": "Sweden", - "code": "se" - }, - "company": "Stero Company", - "date": "2018-01-28", - "status": "qualified", - "activity": 46, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1331, - "name": "Kirk Herritt", - "country": { - "name": "Morocco", - "code": "ma" - }, - "company": "Hasting, H Duane Esq", - "date": "2018-10-24", - "status": "renewal", - "activity": 2, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1332, - "name": "Leonora Mauson", - "country": { - "name": "Hong Kong", - "code": "hk" - }, - "company": "Insty Prints", - "date": "2019-02-02", - "status": "proposal", - "activity": 8, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1333, - "name": "Winfred Brucato", - "country": { - "name": "Austria", - "code": "at" - }, - "company": "Glenridge Manor Mobile Home Pk", - "date": "2019-08-16", - "status": "renewal", - "activity": 8, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1334, - "name": "Tarra Nachor", - "country": { - "name": "Panama", - "code": "pa" - }, - "company": "Circuit Solution Inc", - "date": "2019-07-10", - "status": "proposal", - "activity": 88, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1335, - "name": "Corinne Loder", - "country": { - "name": "Brazil", - "code": "br" - }, - "company": "Local Office", - "date": "2016-05-21", - "status": "proposal", - "activity": 85, - "representative": { - "name": "Elwin Sharvill", - "image": "elwinsharvill.png" - } - }, - { - "id": 1336, - "name": "Dulce Labreche", - "country": { - "name": "South Africa", - "code": "za" - }, - "company": "Lee Kilkelly Paulson \u0026 Kabaker", - "date": "2019-11-10", - "status": "qualified", - "activity": 24, - "representative": { - "name": "Amy Elsner", - "image": "amyelsner.png" - } - }, - { - "id": 1337, - "name": "Kate Keneipp", - "country": { - "name": "Latvia", - "code": "lv" - }, - "company": "Davis, Maxon R Esq", - "date": "2019-06-20", - "status": "proposal", - "activity": 44, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1338, - "name": "Kaitlyn Ogg", - "country": { - "name": "Tunisia", - "code": "tn" - }, - "company": "Garrison, Paul E Esq", - "date": "2019-08-01", - "status": "proposal", - "activity": 91, - "representative": { - "name": "Elwin Sharvill", - "image": "elwinsharvill.png" - } - }, - { - "id": 1339, - "name": "Sherita Saras", - "country": { - "name": "Taiwan", - "code": "tw" - }, - "company": "Black History Resource Center", - "date": "2017-06-09", - "status": "unqualified", - "activity": 79, - "representative": { - "name": "Anna Fali", - "image": "annafali.png" - } - }, - { - "id": 1340, - "name": "Lashawnda Stuer", - "country": { - "name": "Indonesia", - "code": "id" - }, - "company": "Rodriguez, J Christopher Esq", - "date": "2018-01-08", - "status": "negotiation", - "activity": 6, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1341, - "name": "Ernest Syrop", - "country": { - "name": "Jamaica", - "code": "jm" - }, - "company": "Grant Family Health Center", - "date": "2016-10-06", - "status": "unqualified", - "activity": 90, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1342, - "name": "Nobuko Halsey", - "country": { - "name": "Argentina", - "code": "ar" - }, - "company": "Goeman Wood Products Inc", - "date": "2019-01-02", - "status": "unqualified", - "activity": 72, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1343, - "name": "Lavonna Wolny", - "country": { - "name": "Czech Republic", - "code": "cz" - }, - "company": "Linhares, Kenneth A Esq", - "date": "2019-03-09", - "status": "negotiation", - "activity": 77, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1344, - "name": "Lashaunda Lizama", - "country": { - "name": "Ecuador", - "code": "ec" - }, - "company": "Earnhardt Printing", - "date": "2016-02-16", - "status": "negotiation", - "activity": 76, - "representative": { - "name": "Amy Elsner", - "image": "amyelsner.png" - } - }, - { - "id": 1345, - "name": "Mariann Bilden", - "country": { - "name": "Argentina", - "code": "ar" - }, - "company": "H P G Industrys Inc", - "date": "2019-12-15", - "status": "proposal", - "activity": 20, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1346, - "name": "Helene Rodenberger", - "country": { - "name": "Bolivia", - "code": "bo" - }, - "company": "Bailey Transportation Prod Inc", - "date": "2016-09-22", - "status": "unqualified", - "activity": 26, - "representative": { - "name": "Ivan Magalhaes", - "image": "ivanmagalhaes.png" - } - }, - { - "id": 1347, - "name": "Roselle Estell", - "country": { - "name": "Hungary", - "code": "hu" - }, - "company": "Mcglynn Bliss Pc", - "date": "2016-11-25", - "status": "negotiation", - "activity": 80, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1348, - "name": "Samira Heintzman", - "country": { - "name": "Vietnam", - "code": "vn" - }, - "company": "Mutual Fish Co", - "date": "2019-11-26", - "status": "qualified", - "activity": 70, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1349, - "name": "Margart Meisel", - "country": { - "name": "Serbia", - "code": "rs" - }, - "company": "Yeates, Arthur L Aia", - "date": "2019-10-27", - "status": "negotiation", - "activity": 77, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1350, - "name": "Kristofer Bennick", - "country": { - "name": "Tunisia", - "code": "tn" - }, - "company": "Logan, Ronald J Esq", - "date": "2016-02-13", - "status": "proposal", - "activity": 5, - "representative": { - "name": "Anna Fali", - "image": "annafali.png" - } - }, - { - "id": 1351, - "name": "Weldon Acuff", - "country": { - "name": "Estonia", - "code": "ee" - }, - "company": "Advantage Martgage Company", - "date": "2019-10-22", - "status": "qualified", - "activity": 38, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1352, - "name": "Shalon Shadrick", - "country": { - "name": "Iceland", - "code": "is" - }, - "company": "Germer And Gertz Llp", - "date": "2015-01-03", - "status": "proposal", - "activity": 66, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1353, - "name": "Denise Patak", - "country": { - "name": "Uruguay", - "code": "uy" - }, - "company": "Spence Law Offices", - "date": "2016-11-03", - "status": "qualified", - "activity": 77, - "representative": { - "name": "Anna Fali", - "image": "annafali.png" - } - }, - { - "id": 1354, - "name": "Louvenia Beech", - "country": { - "name": "Ecuador", - "code": "ec" - }, - "company": "John Ortiz Nts Therapy Center", - "date": "2016-04-11", - "status": "renewal", - "activity": 62, - "representative": { - "name": "Ivan Magalhaes", - "image": "ivanmagalhaes.png" - } - }, - { - "id": 1355, - "name": "Audry Yaw", - "country": { - "name": "Portugal", - "code": "pt" - }, - "company": "Mike Uchrin Htg \u0026 Air Cond Inc", - "date": "2017-11-22", - "status": "unqualified", - "activity": 12, - "representative": { - "name": "Ivan Magalhaes", - "image": "ivanmagalhaes.png" - } - }, - { - "id": 1356, - "name": "Kristel Ehmann", - "country": { - "name": "Israel", - "code": "il" - }, - "company": "Mccoy, Joy Reynolds Esq", - "date": "2016-06-23", - "status": "new", - "activity": 67, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1357, - "name": "Vincenza Zepp", - "country": { - "name": "Pakistan", - "code": "pk" - }, - "company": "Kbor 1600 Am", - "date": "2016-01-04", - "status": "qualified", - "activity": 25, - "representative": { - "name": "Anna Fali", - "image": "annafali.png" - } - }, - { - "id": 1358, - "name": "Elouise Gwalthney", - "country": { - "name": "Netherlands", - "code": "nl" - }, - "company": "Quality Inn Northwest", - "date": "2016-04-05", - "status": "proposal", - "activity": 14, - "representative": { - "name": "Ivan Magalhaes", - "image": "ivanmagalhaes.png" - } - }, - { - "id": 1359, - "name": "Venita Maillard", - "country": { - "name": "Poland", - "code": "pl" - }, - "company": "Wallace Church Assoc Inc", - "date": "2016-03-23", - "status": "negotiation", - "activity": 69, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1360, - "name": "Kasandra Semidey", - "country": { - "name": "Indonesia", - "code": "id" - }, - "company": "Can Tron", - "date": "2015-09-03", - "status": "new", - "activity": 25, - "representative": { - "name": "Ivan Magalhaes", - "image": "ivanmagalhaes.png" - } - }, - { - "id": 1361, - "name": "Xochitl Discipio", - "country": { - "name": "Slovakia", - "code": "sk" - }, - "company": "Ravaal Enterprises Inc", - "date": "2016-11-14", - "status": "qualified", - "activity": 47, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1362, - "name": "Maile Linahan", - "country": { - "name": "Nigeria", - "code": "ng" - }, - "company": "Thompson Steel Company Inc", - "date": "2016-07-24", - "status": "new", - "activity": 0, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1363, - "name": "Krissy Rauser", - "country": { - "name": "Thailand", - "code": "th" - }, - "company": "Anderson, Mark A Esq", - "date": "2020-03-06", - "status": "renewal", - "activity": 33, - "representative": { - "name": "Amy Elsner", - "image": "amyelsner.png" - } - }, - { - "id": 1364, - "name": "Pete Dubaldi", - "country": { - "name": "Bolivia", - "code": "bo" - }, - "company": "Womack \u0026 Galich", - "date": "2015-11-22", - "status": "unqualified", - "activity": 31, - "representative": { - "name": "Anna Fali", - "image": "annafali.png" - } - }, - { - "id": 1365, - "name": "Linn Paa", - "country": { - "name": "Bolivia", - "code": "bo" - }, - "company": "Valerie \u0026 Company", - "date": "2015-08-12", - "status": "unqualified", - "activity": 26, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1366, - "name": "Paris Wide", - "country": { - "name": "Uruguay", - "code": "uy" - }, - "company": "Gehring Pumps Inc", - "date": "2018-10-21", - "status": "proposal", - "activity": 90, - "representative": { - "name": "Elwin Sharvill", - "image": "elwinsharvill.png" - } - }, - { - "id": 1367, - "name": "Wynell Dorshorst", - "country": { - "name": "Romania", - "code": "ro" - }, - "company": "Haehnel, Craig W Esq", - "date": "2018-05-10", - "status": "new", - "activity": 60, - "representative": { - "name": "Amy Elsner", - "image": "amyelsner.png" - } - }, - { - "id": 1368, - "name": "Quentin Birkner", - "country": { - "name": "Senegal", - "code": "sn" - }, - "company": "Spoor Behrins Campbell \u0026 Young", - "date": "2019-02-03", - "status": "unqualified", - "activity": 68, - "representative": { - "name": "Anna Fali", - "image": "annafali.png" - } - }, - { - "id": 1369, - "name": "Regenia Kannady", - "country": { - "name": "Portugal", - "code": "pt" - }, - "company": "Ken Jeter Store Equipment Inc", - "date": "2018-07-13", - "status": "new", - "activity": 74, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1370, - "name": "Sheron Louissant", - "country": { - "name": "France", - "code": "fr" - }, - "company": "Potter, Brenda J Cpa", - "date": "2017-01-04", - "status": "qualified", - "activity": 86, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1371, - "name": "Izetta Funnell", - "country": { - "name": "Hong Kong", - "code": "hk" - }, - "company": "Baird Kurtz \u0026 Dobson", - "date": "2019-11-05", - "status": "new", - "activity": 67, - "representative": { - "name": "Anna Fali", - "image": "annafali.png" - } - }, - { - "id": 1372, - "name": "Rodolfo Butzen", - "country": { - "name": "Taiwan", - "code": "tw" - }, - "company": "Minor, Cynthia A Esq", - "date": "2020-09-25", - "status": "proposal", - "activity": 17, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1373, - "name": "Zona Colla", - "country": { - "name": "Switzerland", - "code": "ch" - }, - "company": "Solove, Robert A Esq", - "date": "2020-10-08", - "status": "negotiation", - "activity": 64, - "representative": { - "name": "Anna Fali", - "image": "annafali.png" - } - }, - { - "id": 1374, - "name": "Serina Zagen", - "country": { - "name": "Paraguay", - "code": "py" - }, - "company": "Mark Ii Imports Inc", - "date": "2018-07-14", - "status": "negotiation", - "activity": 46, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1375, - "name": "Paz Sahagun", - "country": { - "name": "Colombia", - "code": "co" - }, - "company": "White Sign Div Ctrl Equip Co", - "date": "2018-03-23", - "status": "negotiation", - "activity": 49, - "representative": { - "name": "Elwin Sharvill", - "image": "elwinsharvill.png" - } - }, - { - "id": 1376, - "name": "Markus Lukasik", - "country": { - "name": "Burkina Faso", - "code": "bf" - }, - "company": "M \u0026 M Store Fixtures Co Inc", - "date": "2018-03-21", - "status": "negotiation", - "activity": 23, - "representative": { - "name": "Anna Fali", - "image": "annafali.png" - } - }, - { - "id": 1377, - "name": "Jaclyn Bachman", - "country": { - "name": "Slovakia", - "code": "sk" - }, - "company": "Judah Caster \u0026 Wheel Co", - "date": "2020-10-20", - "status": "new", - "activity": 10, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1378, - "name": "Cyril Daufeldt", - "country": { - "name": "India", - "code": "in" - }, - "company": "Galaxy International Inc", - "date": "2019-02-11", - "status": "qualified", - "activity": 79, - "representative": { - "name": "Amy Elsner", - "image": "amyelsner.png" - } - }, - { - "id": 1379, - "name": "Gayla Schnitzler", - "country": { - "name": "Brazil", - "code": "br" - }, - "company": "Sigma Corp Of America", - "date": "2017-09-15", - "status": "new", - "activity": 14, - "representative": { - "name": "Amy Elsner", - "image": "amyelsner.png" - } - }, - { - "id": 1380, - "name": "Erick Nievas", - "country": { - "name": "Argentina", - "code": "ar" - }, - "company": "Soward, Anne Esq", - "date": "2018-10-07", - "status": "proposal", - "activity": 28, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1381, - "name": "Jennie Drymon", - "country": { - "name": "Egypt", - "code": "eg" - }, - "company": "Osborne, Michelle M Esq", - "date": "2016-09-14", - "status": "negotiation", - "activity": 80, - "representative": { - "name": "Elwin Sharvill", - "image": "elwinsharvill.png" - } - }, - { - "id": 1382, - "name": "Mitsue Scipione", - "country": { - "name": "Ecuador", - "code": "ec" - }, - "company": "Students In Free Entrprs Natl", - "date": "2019-07-28", - "status": "qualified", - "activity": 24, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1383, - "name": "Ciara Ventura", - "country": { - "name": "Sweden", - "code": "se" - }, - "company": "Johnson, Robert M Esq", - "date": "2018-04-02", - "status": "renewal", - "activity": 24, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1384, - "name": "Galen Cantres", - "country": { - "name": "Saudi Arabia", - "code": "sa" - }, - "company": "Del Charro Apartments", - "date": "2020-02-16", - "status": "unqualified", - "activity": 61, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1385, - "name": "Truman Feichtner", - "country": { - "name": "Iceland", - "code": "is" - }, - "company": "Legal Search Inc", - "date": "2019-10-16", - "status": "renewal", - "activity": 98, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1386, - "name": "Gail Kitty", - "country": { - "name": "Pakistan", - "code": "pk" - }, - "company": "Service Supply Co Inc", - "date": "2020-01-15", - "status": "negotiation", - "activity": 67, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1387, - "name": "Dalene Schoeneck", - "country": { - "name": "Latvia", - "code": "lv" - }, - "company": "Sameshima, Douglas J Esq", - "date": "2019-11-27", - "status": "proposal", - "activity": 85, - "representative": { - "name": "Ivan Magalhaes", - "image": "ivanmagalhaes.png" - } - }, - { - "id": 1388, - "name": "Gertude Witten", - "country": { - "name": "Morocco", - "code": "ma" - }, - "company": "Thompson, John Randolph Jr", - "date": "2017-08-13", - "status": "proposal", - "activity": 40, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1389, - "name": "Lizbeth Kohl", - "country": { - "name": "Serbia", - "code": "rs" - }, - "company": "E T Balancing Co Inc", - "date": "2019-04-20", - "status": "qualified", - "activity": 57, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1390, - "name": "Glenn Berray", - "country": { - "name": "Poland", - "code": "pl" - }, - "company": "Griswold, John E Esq", - "date": "2017-08-13", - "status": "negotiation", - "activity": 68, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1391, - "name": "Lashandra Klang", - "country": { - "name": "Bulgaria", - "code": "bg" - }, - "company": "Acqua Group", - "date": "2016-06-08", - "status": "negotiation", - "activity": 32, - "representative": { - "name": "Elwin Sharvill", - "image": "elwinsharvill.png" - } - }, - { - "id": 1392, - "name": "Lenna Newville", - "country": { - "name": "Venezuela", - "code": "ve" - }, - "company": "Brooks, Morris J Jr", - "date": "2020-09-12", - "status": "qualified", - "activity": 82, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1393, - "name": "Laurel Pagliuca", - "country": { - "name": "Russia", - "code": "ru" - }, - "company": "Printing Images Corp", - "date": "2017-05-26", - "status": "unqualified", - "activity": 21, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1394, - "name": "Mireya Frerking", - "country": { - "name": "Belarus", - "code": "by" - }, - "company": "Roberts Supply Co Inc", - "date": "2017-04-21", - "status": "renewal", - "activity": 54, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1395, - "name": "Annelle Tagala", - "country": { - "name": "Colombia", - "code": "co" - }, - "company": "Vico Products Mfg Co", - "date": "2017-10-02", - "status": "proposal", - "activity": 53, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1396, - "name": "Dean Ketelsen", - "country": { - "name": "Ivory Coast", - "code": "ci" - }, - "company": "J M Custom Design Millwork", - "date": "2019-07-25", - "status": "negotiation", - "activity": 98, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1397, - "name": "Levi Munis", - "country": { - "name": "Pakistan", - "code": "pk" - }, - "company": "Farrell \u0026 Johnson Office Equip", - "date": "2017-06-24", - "status": "proposal", - "activity": 39, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1398, - "name": "Sylvie Ryser", - "country": { - "name": "India", - "code": "in" - }, - "company": "Millers Market \u0026 Deli", - "date": "2016-02-23", - "status": "unqualified", - "activity": 89, - "representative": { - "name": "Elwin Sharvill", - "image": "elwinsharvill.png" - } - }, - { - "id": 1399, - "name": "Sharee Maile", - "country": { - "name": "Ireland", - "code": "ie" - }, - "company": "Holiday Inn Naperville", - "date": "2020-07-17", - "status": "renewal", - "activity": 0, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1400, - "name": "Cordelia Storment", - "country": { - "name": "Guatemala", - "code": "gt" - }, - "company": "Burrows, Jon H Esq", - "date": "2020-02-17", - "status": "negotiation", - "activity": 45, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1401, - "name": "Mollie Mcdoniel", - "country": { - "name": "Vietnam", - "code": "vn" - }, - "company": "Dock Seal Specialty", - "date": "2017-08-13", - "status": "unqualified", - "activity": 59, - "representative": { - "name": "Amy Elsner", - "image": "amyelsner.png" - } - }, - { - "id": 1402, - "name": "Brett Mccullan", - "country": { - "name": "Senegal", - "code": "sn" - }, - "company": "Five Star Limousines Of Tx Inc", - "date": "2015-05-21", - "status": "qualified", - "activity": 9, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1403, - "name": "Teddy Pedrozo", - "country": { - "name": "Burkina Faso", - "code": "bf" - }, - "company": "Barkan, Neal J Esq", - "date": "2019-02-19", - "status": "proposal", - "activity": 38, - "representative": { - "name": "Elwin Sharvill", - "image": "elwinsharvill.png" - } - }, - { - "id": 1404, - "name": "Tasia Andreason", - "country": { - "name": "Venezuela", - "code": "ve" - }, - "company": "Campbell, Robert A", - "date": "2016-03-06", - "status": "renewal", - "activity": 25, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1405, - "name": "Hubert Walthall", - "country": { - "name": "Mexico", - "code": "mx" - }, - "company": "Dee, Deanna", - "date": "2020-12-19", - "status": "renewal", - "activity": 32, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1406, - "name": "Arthur Farrow", - "country": { - "name": "Brazil", - "code": "br" - }, - "company": "Young, Timothy L Esq", - "date": "2019-02-05", - "status": "proposal", - "activity": 55, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1407, - "name": "Vilma Berlanga", - "country": { - "name": "Tunisia", - "code": "tn" - }, - "company": "Wells, D Fred Esq", - "date": "2016-02-09", - "status": "unqualified", - "activity": 26, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1408, - "name": "Billye Miro", - "country": { - "name": "Hungary", - "code": "hu" - }, - "company": "Gray, Francine H Esq", - "date": "2015-09-05", - "status": "new", - "activity": 70, - "representative": { - "name": "Anna Fali", - "image": "annafali.png" - } - }, - { - "id": 1409, - "name": "Glenna Slayton", - "country": { - "name": "Iceland", - "code": "is" - }, - "company": "Toledo Iv Care", - "date": "2016-03-10", - "status": "unqualified", - "activity": 86, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1410, - "name": "Mitzie Hudnall", - "country": { - "name": "Iceland", - "code": "is" - }, - "company": "Cangro Transmission Co", - "date": "2020-05-04", - "status": "new", - "activity": 19, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1411, - "name": "Bernardine Rodefer", - "country": { - "name": "Switzerland", - "code": "ch" - }, - "company": "Sat Poly Inc", - "date": "2020-10-19", - "status": "proposal", - "activity": 69, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1412, - "name": "Staci Schmaltz", - "country": { - "name": "Iceland", - "code": "is" - }, - "company": "Midwest Contracting \u0026 Mfg Inc", - "date": "2018-03-14", - "status": "unqualified", - "activity": 81, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1413, - "name": "Nichelle Meteer", - "country": { - "name": "Denmark", - "code": "dk" - }, - "company": "Print Doctor", - "date": "2016-09-23", - "status": "renewal", - "activity": 39, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1414, - "name": "Janine Rhoden", - "country": { - "name": "Nigeria", - "code": "ng" - }, - "company": "Nordic Group Inc", - "date": "2018-08-13", - "status": "qualified", - "activity": 95, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1415, - "name": "Ettie Hoopengardner", - "country": { - "name": "Switzerland", - "code": "ch" - }, - "company": "Jackson Millwork Co", - "date": "2017-07-24", - "status": "renewal", - "activity": 23, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1416, - "name": "Eden Jayson", - "country": { - "name": "Sweden", - "code": "se" - }, - "company": "Harris Corporation", - "date": "2018-03-15", - "status": "renewal", - "activity": 9, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1417, - "name": "Lynelle Auber", - "country": { - "name": "Netherlands", - "code": "nl" - }, - "company": "United Cerebral Palsy Of Ne Pa", - "date": "2020-12-11", - "status": "proposal", - "activity": 0, - "representative": { - "name": "Elwin Sharvill", - "image": "elwinsharvill.png" - } - }, - { - "id": 1418, - "name": "Merissa Tomblin", - "country": { - "name": "Jamaica", - "code": "jm" - }, - "company": "One Day Surgery Center Inc", - "date": "2018-03-05", - "status": "new", - "activity": 50, - "representative": { - "name": "Anna Fali", - "image": "annafali.png" - } - }, - { - "id": 1419, - "name": "Golda Kaniecki", - "country": { - "name": "Burkina Faso", - "code": "bf" - }, - "company": "Calaveras Prospect", - "date": "2019-04-17", - "status": "negotiation", - "activity": 91, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1420, - "name": "Catarina Gleich", - "country": { - "name": "Malaysia", - "code": "my" - }, - "company": "Terk, Robert E Esq", - "date": "2017-01-26", - "status": "unqualified", - "activity": 12, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1421, - "name": "Virgie Kiel", - "country": { - "name": "Latvia", - "code": "lv" - }, - "company": "Cullen, Terrence P Esq", - "date": "2016-06-28", - "status": "renewal", - "activity": 89, - "representative": { - "name": "Elwin Sharvill", - "image": "elwinsharvill.png" - } - }, - { - "id": 1422, - "name": "Jolene Ostolaza", - "country": { - "name": "Puerto Rico", - "code": "pr" - }, - "company": "Central Die Casting Mfg Co Inc", - "date": "2016-08-08", - "status": "negotiation", - "activity": 85, - "representative": { - "name": "Elwin Sharvill", - "image": "elwinsharvill.png" - } - }, - { - "id": 1423, - "name": "Keneth Borgman", - "country": { - "name": "Qatar", - "code": "qa" - }, - "company": "Centerline Engineering", - "date": "2019-02-04", - "status": "unqualified", - "activity": 41, - "representative": { - "name": "Ivan Magalhaes", - "image": "ivanmagalhaes.png" - } - }, - { - "id": 1424, - "name": "Rikki Nayar", - "country": { - "name": "Norway", - "code": "no" - }, - "company": "Targan \u0026 Kievit Pa", - "date": "2017-03-06", - "status": "negotiation", - "activity": 47, - "representative": { - "name": "Ivan Magalhaes", - "image": "ivanmagalhaes.png" - } - }, - { - "id": 1425, - "name": "Elke Sengbusch", - "country": { - "name": "Canada", - "code": "ca" - }, - "company": "Riley Riper Hollin \u0026 Colagreco", - "date": "2019-05-28", - "status": "renewal", - "activity": 76, - "representative": { - "name": "Anna Fali", - "image": "annafali.png" - } - }, - { - "id": 1426, - "name": "Hoa Sarao", - "country": { - "name": "Sweden", - "code": "se" - }, - "company": "Kaplan, Joel S Esq", - "date": "2020-08-13", - "status": "negotiation", - "activity": 0, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1427, - "name": "Trinidad Mcrae", - "country": { - "name": "Burkina Faso", - "code": "bf" - }, - "company": "Water Office", - "date": "2020-12-26", - "status": "renewal", - "activity": 76, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1428, - "name": "Mari Lueckenbach", - "country": { - "name": "Cuba", - "code": "cu" - }, - "company": "Westbrooks, Nelson E Jr", - "date": "2017-10-27", - "status": "new", - "activity": 34, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1429, - "name": "Selma Husser", - "country": { - "name": "Morocco", - "code": "ma" - }, - "company": "Armon Communications", - "date": "2018-02-16", - "status": "proposal", - "activity": 84, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1430, - "name": "Antione Onofrio", - "country": { - "name": "Taiwan", - "code": "tw" - }, - "company": "Jacobs \u0026 Gerber Inc", - "date": "2017-11-07", - "status": "negotiation", - "activity": 37, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1431, - "name": "Luisa Jurney", - "country": { - "name": "Canada", - "code": "ca" - }, - "company": "Forest Fire Laboratory", - "date": "2018-06-12", - "status": "unqualified", - "activity": 96, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1432, - "name": "Clorinda Heimann", - "country": { - "name": "Israel", - "code": "il" - }, - "company": "Haughey, Charles Jr", - "date": "2016-11-03", - "status": "proposal", - "activity": 63, - "representative": { - "name": "Ivan Magalhaes", - "image": "ivanmagalhaes.png" - } - }, - { - "id": 1433, - "name": "Dick Wenzinger", - "country": { - "name": "Mexico", - "code": "mx" - }, - "company": "Wheaton Plastic Products", - "date": "2017-04-05", - "status": "negotiation", - "activity": 92, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1434, - "name": "Ahmed Angalich", - "country": { - "name": "Australia", - "code": "au" - }, - "company": "Reese Plastics", - "date": "2018-11-20", - "status": "unqualified", - "activity": 83, - "representative": { - "name": "Elwin Sharvill", - "image": "elwinsharvill.png" - } - }, - { - "id": 1435, - "name": "Iluminada Ohms", - "country": { - "name": "Croatia", - "code": "hr" - }, - "company": "Nazette Marner Good Wendt", - "date": "2015-08-18", - "status": "proposal", - "activity": 66, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1436, - "name": "Joanna Leinenbach", - "country": { - "name": "Thailand", - "code": "th" - }, - "company": "Levinson Axelrod Wheaton", - "date": "2016-02-11", - "status": "proposal", - "activity": 64, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1437, - "name": "Caprice Suell", - "country": { - "name": "Algeria", - "code": "dz" - }, - "company": "Egnor, W Dan Esq", - "date": "2018-07-09", - "status": "unqualified", - "activity": 99, - "representative": { - "name": "Amy Elsner", - "image": "amyelsner.png" - } - }, - { - "id": 1438, - "name": "Stephane Myricks", - "country": { - "name": "Honduras", - "code": "hn" - }, - "company": "Portland Central Thriftlodge", - "date": "2018-05-28", - "status": "renewal", - "activity": 51, - "representative": { - "name": "Elwin Sharvill", - "image": "elwinsharvill.png" - } - }, - { - "id": 1439, - "name": "Quentin Swayze", - "country": { - "name": "Tunisia", - "code": "tn" - }, - "company": "Ulbrich Trucking", - "date": "2019-02-11", - "status": "negotiation", - "activity": 37, - "representative": { - "name": "Ivan Magalhaes", - "image": "ivanmagalhaes.png" - } - }, - { - "id": 1440, - "name": "Annmarie Castros", - "country": { - "name": "Jamaica", - "code": "jm" - }, - "company": "Tipiak Inc", - "date": "2015-08-24", - "status": "qualified", - "activity": 46, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1441, - "name": "Shonda Greenbush", - "country": { - "name": "Costa Rica", - "code": "cr" - }, - "company": "Saint George Well Drilling", - "date": "2018-06-01", - "status": "negotiation", - "activity": 16, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1442, - "name": "Cecil Lapage", - "country": { - "name": "Malaysia", - "code": "my" - }, - "company": "Hawkes, Douglas D", - "date": "2018-11-09", - "status": "qualified", - "activity": 43, - "representative": { - "name": "Amy Elsner", - "image": "amyelsner.png" - } - }, - { - "id": 1443, - "name": "Jeanice Claucherty", - "country": { - "name": "Lithuania", - "code": "lt" - }, - "company": "Accurel Systems Intrntl Corp", - "date": "2016-06-02", - "status": "qualified", - "activity": 48, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1444, - "name": "Josphine Villanueva", - "country": { - "name": "Japan", - "code": "jp" - }, - "company": "Santa Cruz Community Internet", - "date": "2019-11-08", - "status": "unqualified", - "activity": 39, - "representative": { - "name": "Amy Elsner", - "image": "amyelsner.png" - } - }, - { - "id": 1445, - "name": "Daniel Perruzza", - "country": { - "name": "Malaysia", - "code": "my" - }, - "company": "Gersh \u0026 Danielson", - "date": "2017-09-24", - "status": "renewal", - "activity": 86, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1446, - "name": "Cassi Wildfong", - "country": { - "name": "Tunisia", - "code": "tn" - }, - "company": "Cobb, James O Esq", - "date": "2015-09-08", - "status": "qualified", - "activity": 85, - "representative": { - "name": "Ivan Magalhaes", - "image": "ivanmagalhaes.png" - } - }, - { - "id": 1447, - "name": "Britt Galam", - "country": { - "name": "Poland", - "code": "pl" - }, - "company": "Wheatley Trucking Company", - "date": "2020-10-26", - "status": "new", - "activity": 69, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1448, - "name": "Adell Lipkin", - "country": { - "name": "Saudi Arabia", - "code": "sa" - }, - "company": "Systems Graph Inc Ab Dick Dlr", - "date": "2017-05-09", - "status": "unqualified", - "activity": 92, - "representative": { - "name": "Elwin Sharvill", - "image": "elwinsharvill.png" - } - }, - { - "id": 1449, - "name": "Jacqueline Rowling", - "country": { - "name": "Qatar", - "code": "qa" - }, - "company": "John Hancock Mutl Life Ins Co", - "date": "2019-06-28", - "status": "negotiation", - "activity": 79, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1450, - "name": "Lonny Weglarz", - "country": { - "name": "Chile", - "code": "cl" - }, - "company": "History Division Of State", - "date": "2016-08-12", - "status": "new", - "activity": 49, - "representative": { - "name": "Elwin Sharvill", - "image": "elwinsharvill.png" - } - }, - { - "id": 1451, - "name": "Lonna Diestel", - "country": { - "name": "Philippines", - "code": "ph" - }, - "company": "Dimmock, Thomas J Esq", - "date": "2017-02-10", - "status": "proposal", - "activity": 9, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1452, - "name": "Cristal Samara", - "country": { - "name": "Australia", - "code": "au" - }, - "company": "Intermed Inc", - "date": "2016-08-17", - "status": "qualified", - "activity": 99, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1453, - "name": "Kenneth Grenet", - "country": { - "name": "Croatia", - "code": "hr" - }, - "company": "Bank Of New York", - "date": "2020-07-24", - "status": "negotiation", - "activity": 78, - "representative": { - "name": "Anna Fali", - "image": "annafali.png" - } - }, - { - "id": 1454, - "name": "Elli Mclaird", - "country": { - "name": "Switzerland", - "code": "ch" - }, - "company": "Sportmaster Intrnatl", - "date": "2017-06-10", - "status": "qualified", - "activity": 61, - "representative": { - "name": "Elwin Sharvill", - "image": "elwinsharvill.png" - } - }, - { - "id": 1455, - "name": "Alline Jeanty", - "country": { - "name": "Denmark", - "code": "dk" - }, - "company": "W W John Holden Inc", - "date": "2015-12-08", - "status": "renewal", - "activity": 74, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1456, - "name": "Sharika Eanes", - "country": { - "name": "Chile", - "code": "cl" - }, - "company": "Maccani \u0026 Delp", - "date": "2018-08-16", - "status": "qualified", - "activity": 14, - "representative": { - "name": "Amy Elsner", - "image": "amyelsner.png" - } - }, - { - "id": 1457, - "name": "Nu Mcnease", - "country": { - "name": "Pakistan", - "code": "pk" - }, - "company": "Amazonia Film Project", - "date": "2018-07-03", - "status": "negotiation", - "activity": 47, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1458, - "name": "Daniela Comnick", - "country": { - "name": "Tunisia", - "code": "tn" - }, - "company": "Water \u0026 Sewer Department", - "date": "2017-07-07", - "status": "negotiation", - "activity": 31, - "representative": { - "name": "Anna Fali", - "image": "annafali.png" - } - }, - { - "id": 1459, - "name": "Cecilia Colaizzo", - "country": { - "name": "Costa Rica", - "code": "cr" - }, - "company": "Switchcraft Inc", - "date": "2019-06-08", - "status": "proposal", - "activity": 21, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1460, - "name": "Leslie Threets", - "country": { - "name": "Sweden", - "code": "se" - }, - "company": "C W D C Metal Fabricators", - "date": "2016-11-26", - "status": "unqualified", - "activity": 50, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1461, - "name": "Nan Koppinger", - "country": { - "name": "Norway", - "code": "no" - }, - "company": "Shimotani, Grace T", - "date": "2020-11-15", - "status": "proposal", - "activity": 94, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1462, - "name": "Izetta Dewar", - "country": { - "name": "Cuba", - "code": "cu" - }, - "company": "Lisatoni, Jean Esq", - "date": "2019-11-22", - "status": "renewal", - "activity": 41, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1463, - "name": "Tegan Arceo", - "country": { - "name": "Iceland", - "code": "is" - }, - "company": "Ceramic Tile Sales Inc", - "date": "2016-08-07", - "status": "new", - "activity": 79, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1464, - "name": "Ruthann Keener", - "country": { - "name": "Morocco", - "code": "ma" - }, - "company": "Maiden Craft Inc", - "date": "2019-04-25", - "status": "negotiation", - "activity": 43, - "representative": { - "name": "Elwin Sharvill", - "image": "elwinsharvill.png" - } - }, - { - "id": 1465, - "name": "Joni Breland", - "country": { - "name": "Uruguay", - "code": "uy" - }, - "company": "Carriage House Cllsn Rpr Inc", - "date": "2018-07-20", - "status": "new", - "activity": 18, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1466, - "name": "Vi Rentfro", - "country": { - "name": "Malaysia", - "code": "my" - }, - "company": "Video Workshop", - "date": "2018-10-01", - "status": "negotiation", - "activity": 99, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1467, - "name": "Colette Kardas", - "country": { - "name": "Honduras", - "code": "hn" - }, - "company": "Fresno Tile Center Inc", - "date": "2017-08-22", - "status": "new", - "activity": 14, - "representative": { - "name": "Ivan Magalhaes", - "image": "ivanmagalhaes.png" - } - }, - { - "id": 1468, - "name": "Malcolm Tromblay", - "country": { - "name": "Uruguay", - "code": "uy" - }, - "company": "Versatile Sash \u0026 Woodwork", - "date": "2019-11-25", - "status": "renewal", - "activity": 23, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1469, - "name": "Ryan Harnos", - "country": { - "name": "Paraguay", - "code": "py" - }, - "company": "Warner Electric Brk \u0026 Cltch Co", - "date": "2019-02-12", - "status": "qualified", - "activity": 71, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1470, - "name": "Jess Chaffins", - "country": { - "name": "Belarus", - "code": "by" - }, - "company": "New York Public Library", - "date": "2017-02-12", - "status": "qualified", - "activity": 91, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1471, - "name": "Sharen Bourbon", - "country": { - "name": "Saudi Arabia", - "code": "sa" - }, - "company": "Mccaleb, John A Esq", - "date": "2017-06-13", - "status": "renewal", - "activity": 35, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1472, - "name": "Nickolas Juvera", - "country": { - "name": "Finland", - "code": "fi" - }, - "company": "United Oil Co Inc", - "date": "2019-01-06", - "status": "negotiation", - "activity": 14, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1473, - "name": "Gary Nunlee", - "country": { - "name": "Turkey", - "code": "tr" - }, - "company": "Irving Foot Center", - "date": "2015-07-22", - "status": "renewal", - "activity": 72, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1474, - "name": "Diane Devreese", - "country": { - "name": "Bolivia", - "code": "bo" - }, - "company": "Acme Supply Co", - "date": "2018-05-13", - "status": "renewal", - "activity": 78, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1475, - "name": "Roslyn Chavous", - "country": { - "name": "Israel", - "code": "il" - }, - "company": "Mcrae, James L", - "date": "2018-03-20", - "status": "proposal", - "activity": 45, - "representative": { - "name": "Bernardo Dominic", - "image": "bernardodominic.png" - } - }, - { - "id": 1476, - "name": "Glory Schieler", - "country": { - "name": "Italy", - "code": "it" - }, - "company": "Mcgraths Seafood", - "date": "2017-05-13", - "status": "proposal", - "activity": 34, - "representative": { - "name": "Anna Fali", - "image": "annafali.png" - } - }, - { - "id": 1477, - "name": "Rasheeda Sayaphon", - "country": { - "name": "Latvia", - "code": "lv" - }, - "company": "Kummerer, J Michael Esq", - "date": "2017-02-21", - "status": "proposal", - "activity": 12, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1478, - "name": "Alpha Palaia", - "country": { - "name": "Costa Rica", - "code": "cr" - }, - "company": "Stoffer, James M Jr", - "date": "2017-07-21", - "status": "renewal", - "activity": 4, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1479, - "name": "Refugia Jacobos", - "country": { - "name": "China", - "code": "cn" - }, - "company": "North Central Fl Sfty Cncl", - "date": "2020-11-25", - "status": "negotiation", - "activity": 18, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1480, - "name": "Shawnda Yori", - "country": { - "name": "Luxembourg", - "code": "lu" - }, - "company": "Fiorucci Foods Usa Inc", - "date": "2018-05-09", - "status": "unqualified", - "activity": 11, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1481, - "name": "Mona Delasancha", - "country": { - "name": "Hong Kong", - "code": "hk" - }, - "company": "Sign All", - "date": "2017-10-06", - "status": "renewal", - "activity": 61, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1482, - "name": "Gilma Liukko", - "country": { - "name": "Morocco", - "code": "ma" - }, - "company": "Sammys Steak Den", - "date": "2018-10-06", - "status": "unqualified", - "activity": 34, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1483, - "name": "Janey Gabisi", - "country": { - "name": "Israel", - "code": "il" - }, - "company": "Dobscha, Stephen F Esq", - "date": "2019-05-22", - "status": "unqualified", - "activity": 38, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1484, - "name": "Lili Paskin", - "country": { - "name": "Costa Rica", - "code": "cr" - }, - "company": "Morgan Custom Homes", - "date": "2018-06-11", - "status": "unqualified", - "activity": 69, - "representative": { - "name": "Ivan Magalhaes", - "image": "ivanmagalhaes.png" - } - }, - { - "id": 1485, - "name": "Loren Asar", - "country": { - "name": "Italy", - "code": "it" - }, - "company": "Olsen Payne \u0026 Company", - "date": "2017-12-11", - "status": "unqualified", - "activity": 16, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1486, - "name": "Dorothy Chesterfield", - "country": { - "name": "Spain", - "code": "es" - }, - "company": "Cowan \u0026 Kelly", - "date": "2015-08-11", - "status": "renewal", - "activity": 31, - "representative": { - "name": "Anna Fali", - "image": "annafali.png" - } - }, - { - "id": 1487, - "name": "Gail Similton", - "country": { - "name": "Malaysia", - "code": "my" - }, - "company": "Johnson, Wes Esq", - "date": "2016-08-10", - "status": "qualified", - "activity": 63, - "representative": { - "name": "Xuxue Feng", - "image": "xuxuefeng.png" - } - }, - { - "id": 1488, - "name": "Catalina Tillotson", - "country": { - "name": "Pakistan", - "code": "pk" - }, - "company": "Icn Pharmaceuticals Inc", - "date": "2018-08-04", - "status": "negotiation", - "activity": 13, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1489, - "name": "Lawrence Lorens", - "country": { - "name": "Egypt", - "code": "eg" - }, - "company": "New England Sec Equip Co Inc", - "date": "2020-04-15", - "status": "negotiation", - "activity": 82, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1490, - "name": "Carlee Boulter", - "country": { - "name": "Vietnam", - "code": "vn" - }, - "company": "Tippett, Troy M Ii", - "date": "2016-09-22", - "status": "renewal", - "activity": 71, - "representative": { - "name": "Ivan Magalhaes", - "image": "ivanmagalhaes.png" - } - }, - { - "id": 1491, - "name": "Thaddeus Ankeny", - "country": { - "name": "Qatar", - "code": "qa" - }, - "company": "Atc Contracting", - "date": "2015-03-08", - "status": "unqualified", - "activity": 78, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1492, - "name": "Jovita Oles", - "country": { - "name": "Sweden", - "code": "se" - }, - "company": "Pagano, Philip G Esq", - "date": "2019-07-18", - "status": "negotiation", - "activity": 42, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1493, - "name": "Alesia Hixenbaugh", - "country": { - "name": "Thailand", - "code": "th" - }, - "company": "Kwikprint", - "date": "2017-07-24", - "status": "negotiation", - "activity": 23, - "representative": { - "name": "Ivan Magalhaes", - "image": "ivanmagalhaes.png" - } - }, - { - "id": 1494, - "name": "Lai Harabedian", - "country": { - "name": "Serbia", - "code": "rs" - }, - "company": "Buergi \u0026 Madden Scale", - "date": "2018-11-11", - "status": "new", - "activity": 28, - "representative": { - "name": "Asiya Javayant", - "image": "asiyajavayant.png" - } - }, - { - "id": 1495, - "name": "Brittni Gillaspie", - "country": { - "name": "Senegal", - "code": "sn" - }, - "company": "Inner Label", - "date": "2019-11-23", - "status": "renewal", - "activity": 14, - "representative": { - "name": "Ioni Bowcher", - "image": "ionibowcher.png" - } - }, - { - "id": 1496, - "name": "Raylene Kampa", - "country": { - "name": "Belgium", - "code": "be" - }, - "company": "Hermar Inc", - "date": "2020-04-22", - "status": "unqualified", - "activity": 65, - "representative": { - "name": "Stephen Shaw", - "image": "stephenshaw.png" - } - }, - { - "id": 1497, - "name": "Flo Bookamer", - "country": { - "name": "Argentina", - "code": "ar" - }, - "company": "Simonton Howe \u0026 Schneider Pc", - "date": "2020-08-10", - "status": "unqualified", - "activity": 30, - "representative": { - "name": "Amy Elsner", - "image": "amyelsner.png" - } - }, - { - "id": 1498, - "name": "Jani Biddy", - "country": { - "name": "Switzerland", - "code": "ch" - }, - "company": "Warehouse Office \u0026 Paper Prod", - "date": "2019-11-07", - "status": "negotiation", - "activity": 20, - "representative": { - "name": "Onyama Limba", - "image": "onyamalimba.png" - } - }, - { - "id": 1499, - "name": "Chauncey Motley", - "country": { - "name": "Argentina", - "code": "ar" - }, - "company": "Affiliated With Travelodge", - "date": "2019-04-23", - "status": "renewal", - "activity": 42, - "representative": { - "name": "Amy Elsner", - "image": "amyelsner.png" - } - } - ] -} \ No newline at end of file diff --git a/src/service/CustomerService.js b/src/service/CustomerService.js index 095a0335..bd46da1a 100755 --- a/src/service/CustomerService.js +++ b/src/service/CustomerService.js @@ -1,25 +1,28 @@ export default class CustomerService { + getCustomersSmall() { + return fetch('data/customers-small.json') + .then((res) => res.json()) + .then((d) => d.data) + } - getCustomersSmall() { - return fetch('data/customers-small.json').then(res => res.json()).then(d => d.data); - } - - getCustomersMedium() { - return fetch('data/customers-medium.json').then(res => res.json()).then(d => d.data); - } - - getCustomersLarge() { - return fetch('data/customers-large.json').then(res => res.json()).then(d => d.data); - } - - getCustomersXLarge() { - return fetch('data/customers-xlarge.json').then(res => res.json()).then(d => d.data); - } - - getCustomers(params) { - const queryParams = Object.keys(params).map(k => encodeURIComponent(k) + '=' + encodeURIComponent(params[k])).join('&'); - return fetch('https://www.primefaces.org/data/customers?' + queryParams).then(res => res.json()) - } - + getCustomersMedium() { + return fetch('data/customers-medium.json') + .then((res) => res.json()) + .then((d) => d.data) + } + + getCustomersLarge() { + return fetch('data/customers-large.json') + .then((res) => res.json()) + .then((d) => d.data) + } + + getCustomers(params) { + const queryParams = Object.keys(params) + .map((k) => encodeURIComponent(k) + '=' + encodeURIComponent(params[k])) + .join('&') + return fetch( + 'https://www.primefaces.org/data/customers?' + queryParams + ).then((res) => res.json()) + } } - \ No newline at end of file From 44759372cecf44c190ee1dbdcf2f724f85d19710 Mon Sep 17 00:00:00 2001 From: Sandbox User Date: Fri, 10 Jun 2022 15:08:29 -0500 Subject: [PATCH 6/6] vulnerability fix --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 063fba7e..78c5d578 100644 --- a/package.json +++ b/package.json @@ -13,8 +13,8 @@ }, "devDependencies": { "@vitejs/plugin-vue": "^2.3.3", - "vite": "^2.9.12", - "sass": "^1.52.3" + "sass": "^1.52.3", + "vite": "^2.9.12" }, "dependencies": { "chart.js": "3.3.2", @@ -22,7 +22,7 @@ "primeflex": "^3.1.2", "primeicons": "^5.0.0", "primevue": "^3.12.6", - "prismjs": "1.9.0", + "prismjs": "^1.28.0", "vue": "^3.2.36", "vue-router": "^4.0.15" },